/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-green: #1a5f3f;
    --primary-red: #8b2635;
    --dark-green: #0d3d26;
    --dark-red: #5a1a1f;
    --gold: #ffd700;
    --white: #ffffff;
    --snow: #f8f9fa;
    --text-light: rgba(255, 255, 255, 0.9);
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(180deg, var(--primary-green) 0%, var(--dark-green) 50%, var(--dark-red) 100%);
    background-attachment: fixed;
    color: var(--white);
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
}

/* Animated Background Pattern */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(255, 215, 0, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
    animation: backgroundPulse 8s ease-in-out infinite;
}

@keyframes backgroundPulse {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

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

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

.snowflake {
    position: absolute;
    color: var(--white);
    font-size: 1.5em;
    animation: fall linear infinite;
    opacity: 0.7;
}

.snowflake:nth-child(1) { left: 10%; animation-duration: 10s; animation-delay: 0s; }
.snowflake:nth-child(2) { left: 20%; animation-duration: 12s; animation-delay: 1s; }
.snowflake:nth-child(3) { left: 30%; animation-duration: 11s; animation-delay: 2s; }
.snowflake:nth-child(4) { left: 40%; animation-duration: 13s; animation-delay: 0.5s; }
.snowflake:nth-child(5) { left: 50%; animation-duration: 10s; animation-delay: 1.5s; }
.snowflake:nth-child(6) { left: 60%; animation-duration: 12s; animation-delay: 2.5s; }
.snowflake:nth-child(7) { left: 70%; animation-duration: 11s; animation-delay: 0.8s; }
.snowflake:nth-child(8) { left: 80%; animation-duration: 13s; animation-delay: 1.8s; }
.snowflake:nth-child(9) { left: 90%; animation-duration: 10s; animation-delay: 0.3s; }
.snowflake:nth-child(10) { left: 15%; animation-duration: 12s; animation-delay: 1.2s; }
.snowflake:nth-child(11) { left: 25%; animation-duration: 11s; animation-delay: 2.2s; }
.snowflake:nth-child(12) { left: 35%; animation-duration: 13s; animation-delay: 0.7s; }

@keyframes fall {
    0% {
        transform: translateY(-100px) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 0.7;
    }
    90% {
        opacity: 0.7;
    }
    100% {
        transform: translateY(100vh) rotate(360deg);
        opacity: 0;
    }
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(26, 95, 63, 0.95);
    backdrop-filter: blur(10px);
    z-index: 100;
    padding: 1rem 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--white);
    height: 50px;
}

.logo-img {
    height: 45px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
    transition: transform 0.3s;
}

.logo-img:hover {
    transform: scale(1.05);
}

.logo-fallback {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-icon {
    font-size: 2rem;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s;
    font-weight: 500;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--gold);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--white);
    transition: all 0.3s;
}

/* Hero Section */
.hero {
    padding: 150px 20px 100px;
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    z-index: 1;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

.hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    animation: backgroundZoom 20s ease-in-out infinite;
    filter: brightness(0.7);
}

@keyframes backgroundZoom {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.hero-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, 
        rgba(26, 95, 63, 0.7) 0%, 
        rgba(13, 61, 38, 0.6) 50%, 
        rgba(90, 26, 31, 0.7) 100%);
    z-index: 1;
}

.hero-bg-decoration {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.twinkling-star {
    position: absolute;
    font-size: 1.5rem;
    animation: twinkle 2s ease-in-out infinite;
    opacity: 0.8;
}

.star-bg-1 { top: 10%; left: 5%; animation-delay: 0s; }
.star-bg-2 { top: 20%; right: 15%; animation-delay: 0.5s; }
.star-bg-3 { top: 40%; left: 10%; animation-delay: 1s; }
.star-bg-4 { top: 60%; right: 8%; animation-delay: 1.5s; }
.star-bg-5 { top: 80%; left: 20%; animation-delay: 0.3s; }
.star-bg-6 { top: 30%; right: 30%; animation-delay: 0.8s; }

.floating-reindeer {
    position: absolute;
    font-size: 3rem;
    animation: floatHorizontal 8s ease-in-out infinite;
    opacity: 0.6;
    z-index: 2;
}

.reindeer-1 { top: 15%; left: -50px; animation-delay: 0s; }
.reindeer-2 { bottom: 20%; right: -50px; animation-delay: 4s; }

.floating-santa {
    position: absolute;
    font-size: 4rem;
    animation: floatDiagonal 10s ease-in-out infinite;
    opacity: 0.7;
    z-index: 2;
}

.santa-1 { top: 10%; right: 10%; animation-delay: 2s; }

.floating-snowman {
    position: absolute;
    font-size: 3rem;
    animation: floatVertical 6s ease-in-out infinite;
    opacity: 0.6;
    z-index: 2;
}

.snowman-1 { bottom: 15%; left: 5%; animation-delay: 1s; }

@keyframes floatDiagonal {
    0% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(30px, -30px) rotate(5deg); }
    50% { transform: translate(60px, 0) rotate(0deg); }
    75% { transform: translate(30px, 30px) rotate(-5deg); }
    100% { transform: translate(0, 0) rotate(0deg); }
}

@keyframes floatVertical {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-25px); }
}

@keyframes twinkle {
    0%, 100% { opacity: 0.3; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.2); }
}

@keyframes floatHorizontal {
    0% { transform: translateX(0) translateY(0); }
    25% { transform: translateX(100px) translateY(-20px); }
    50% { transform: translateX(200px) translateY(0); }
    75% { transform: translateX(100px) translateY(20px); }
    100% { transform: translateX(0) translateY(0); }
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 10;
}

.hero-decoration {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 5;
}

.star, .christmas-tree, .gift-box, .bell {
    position: absolute;
    font-size: 2rem;
    animation: float 3s ease-in-out infinite;
}

.star-1 { top: 10%; left: 5%; animation-delay: 0s; }
.star-2 { top: 20%; right: 10%; animation-delay: 1s; }
.star-3 { bottom: 30%; left: 15%; animation-delay: 2s; }
.star-4 { top: 50%; right: 5%; animation-delay: 0.5s; }
.star-5 { bottom: 15%; right: 20%; animation-delay: 1.5s; }

.tree-1 { bottom: 20%; left: 0%; font-size: 3rem; animation-delay: 0.5s; }
.tree-2 { top: 30%; right: 0%; font-size: 3rem; animation-delay: 1.5s; }
.tree-3 { top: 60%; left: 8%; font-size: 2.5rem; animation-delay: 2.5s; }

.gift-1 { top: 50%; left: 10%; animation-delay: 1s; }
.gift-2 { bottom: 10%; right: 5%; animation-delay: 2.5s; }
.gift-3 { top: 15%; right: 25%; animation-delay: 1.8s; }

.bell-1 { top: 25%; left: 12%; animation-delay: 0.7s; }
.bell-2 { bottom: 25%; right: 15%; animation-delay: 2.2s; }

.twinkle {
    animation: twinkle 2s ease-in-out infinite;
}

.twinkle-delay-1 { animation-delay: 0.3s; }
.twinkle-delay-2 { animation-delay: 0.6s; }
.twinkle-delay-3 { animation-delay: 0.9s; }
.twinkle-delay-4 { animation-delay: 1.2s; }

.bounce {
    animation: bounce 2s ease-in-out infinite;
}

.bounce-delay-1 { animation-delay: 0.5s; }
.bounce-delay-2 { animation-delay: 1s; }

.swing {
    animation: swing 3s ease-in-out infinite;
    transform-origin: top center;
}

.swing-delay-1 { animation-delay: 1.5s; }

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(5deg); }
}

@keyframes bounce {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
}

@keyframes swing {
    0%, 100% { transform: rotate(-5deg); }
    50% { transform: rotate(5deg); }
}

.hero-text {
    z-index: 10;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 215, 0, 0.2);
    border: 2px solid var(--gold);
    padding: 0.5rem 1rem;
    border-radius: 30px;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--gold);
    animation: pulse 2s ease-in-out infinite;
}

.badge-icon {
    font-size: 1.2rem;
    animation: rotate 3s linear infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(255, 215, 0, 0.4); }
    50% { transform: scale(1.05); box-shadow: 0 0 0 10px rgba(255, 215, 0, 0); }
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.hero-title {
    font-size: 3.5rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.title-line {
    display: block;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.title-glow {
    animation: titleGlow 3s ease-in-out infinite;
}

.title-glow-delay {
    animation: titleGlow 3s ease-in-out infinite;
    animation-delay: 1.5s;
}

@keyframes titleGlow {
    0%, 100% { 
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3), 0 0 20px rgba(255, 215, 0, 0.3);
    }
    50% { 
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3), 0 0 30px rgba(255, 215, 0, 0.6);
    }
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: var(--text-light);
    line-height: 1.6;
}

.hero-stats {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    min-width: 100px;
    transition: transform 0.3s;
}

.stat-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
}

.stat-number {
    font-size: 1.8rem;
    font-weight: bold;
    color: var(--gold);
    margin-bottom: 0.3rem;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-light);
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-image {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    position: relative;
    z-index: 10;
}

/* Phone Mockup Container */
.phone-mockup-container {
    position: relative;
    z-index: 10;
}

.phone-frame {
    width: 280px;
    height: 580px;
    background: #1a1a1a;
    border-radius: 40px;
    padding: 8px;
    box-shadow: 
        0 0 0 2px rgba(255, 255, 255, 0.1),
        0 30px 80px rgba(0, 0, 0, 0.5),
        inset 0 0 0 1px rgba(255, 255, 255, 0.1);
    position: relative;
    animation: phoneFloat 3s ease-in-out infinite;
}

.phone-notch {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 25px;
    background: #1a1a1a;
    border-radius: 0 0 15px 15px;
    z-index: 20;
}

.phone-screen-inner {
    width: 100%;
    height: 100%;
    background: #000;
    border-radius: 32px;
    overflow: hidden;
    position: relative;
}

.app-screenshot {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transform: scale(0.95);
    transition: opacity 0.8s ease, transform 0.8s ease;
    pointer-events: none;
}

.app-screenshot.active {
    opacity: 1;
    transform: scale(1);
    pointer-events: auto;
}

.app-screenshot img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.screenshot-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--primary-red) 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    text-align: center;
}

.plan-mockup, .progress-mockup {
    color: var(--white);
}

.plan-mockup h3, .progress-mockup h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--gold);
}

.phone-home-indicator {
    position: absolute;
    bottom: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 4px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 2px;
}

.screenshot-indicators {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 1.5rem;
}

.indicator {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s;
}

.indicator.active {
    background: var(--gold);
    width: 30px;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.indicator:hover {
    background: rgba(255, 255, 255, 0.6);
}

@keyframes phoneFloat {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    25% { transform: translateY(-15px) rotate(2deg); }
    50% { transform: translateY(-20px) rotate(0deg); }
    75% { transform: translateY(-15px) rotate(-2deg); }
}

.santa-sleigh-container {
    position: absolute;
    top: -50px;
    right: -30px;
    font-size: 6rem;
    animation: slideAround 8s ease-in-out infinite;
    z-index: 5;
    opacity: 0.8;
}

.sleigh-trail {
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 150px;
    height: 20px;
    background: radial-gradient(ellipse, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    animation: trailGlow 2s ease-in-out infinite;
}

@keyframes trailGlow {
    0%, 100% { opacity: 0.3; transform: translateX(-50%) scaleX(1); }
    50% { opacity: 0.6; transform: translateX(-50%) scaleX(1.2); }
}

@keyframes slideAround {
    0% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(30px, -20px) rotate(5deg); }
    50% { transform: translate(0, -40px) rotate(0deg); }
    75% { transform: translate(-30px, -20px) rotate(-5deg); }
    100% { transform: translate(0, 0) rotate(0deg); }
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 12px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn span, .btn-icon {
    position: relative;
    z-index: 1;
}

.btn-icon {
    font-size: 1.2rem;
    transition: transform 0.3s;
}

.btn:hover .btn-icon {
    transform: scale(1.2) rotate(5deg);
}

.btn-primary {
    background: var(--primary-red);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(139, 38, 53, 0.4);
}

.btn-primary:hover {
    background: var(--dark-red);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(139, 38, 53, 0.6);
}

.btn-glow {
    animation: buttonGlow 2s ease-in-out infinite;
}

@keyframes buttonGlow {
    0%, 100% { 
        box-shadow: 0 4px 15px rgba(139, 38, 53, 0.4), 0 0 0 0 rgba(255, 215, 0, 0);
    }
    50% { 
        box-shadow: 0 4px 15px rgba(139, 38, 53, 0.4), 0 0 20px 5px rgba(255, 215, 0, 0.3);
    }
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

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

.btn-large {
    padding: 15px 40px;
    font-size: 1.1rem;
}

/* Sections */
section {
    padding: 80px 20px;
    position: relative;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.section-title-glow {
    animation: sectionTitleGlow 3s ease-in-out infinite;
}

@keyframes sectionTitleGlow {
    0%, 100% { 
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3), 0 0 15px rgba(255, 215, 0, 0.2);
    }
    50% { 
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3), 0 0 25px rgba(255, 215, 0, 0.4);
    }
}

.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 3rem;
    opacity: 0.9;
}

.section-header {
    margin-bottom: 3rem;
}

.section-decoration {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.decoration-star {
    position: absolute;
    top: 10%;
    right: 10%;
    font-size: 3rem;
    animation: twinkle 2s ease-in-out infinite;
    opacity: 0.6;
}

.decoration-gift {
    position: absolute;
    bottom: 10%;
    left: 10%;
    font-size: 3rem;
    animation: bounce 2s ease-in-out infinite;
    opacity: 0.6;
}

/* Features Section */
.features {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    position: relative;
    z-index: 1;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 10;
}

.feature-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.feature-card-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1) 0%, rgba(139, 38, 53, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.4s;
    z-index: 0;
}

.feature-card:hover .feature-card-bg {
    opacity: 1;
}

.feature-card-hover {
    cursor: pointer;
}

.feature-card-hover:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4), 0 0 30px rgba(255, 215, 0, 0.2);
    border-color: var(--gold);
}

.feature-icon-wrapper {
    position: relative;
    display: inline-block;
    margin-bottom: 1rem;
}

.feature-icon {
    font-size: 3.5rem;
    margin-bottom: 0;
    position: relative;
    z-index: 2;
    transition: transform 0.3s;
}

.feature-card:hover .feature-icon {
    transform: scale(1.2) rotate(5deg);
}

.feature-icon-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.4s;
    z-index: 1;
}

.feature-card:hover .feature-icon-glow {
    opacity: 1;
    animation: iconGlow 2s ease-in-out infinite;
}

@keyframes iconGlow {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.5; }
    50% { transform: translate(-50%, -50%) scale(1.3); opacity: 0.8; }
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--gold);
    position: relative;
    z-index: 2;
}

.feature-card p {
    color: var(--text-light);
    line-height: 1.6;
    position: relative;
    z-index: 2;
}

.feature-arrow {
    position: absolute;
    bottom: 1.5rem;
    right: 1.5rem;
    font-size: 1.5rem;
    color: var(--gold);
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s;
    z-index: 2;
}

.feature-card:hover .feature-arrow {
    opacity: 1;
    transform: translateX(0);
}

/* How It Works Section */
.how-it-works {
    background: linear-gradient(180deg, rgba(13, 61, 38, 0.8) 0%, rgba(90, 26, 31, 0.8) 100%);
}

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

.step {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--primary-red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(139, 38, 53, 0.4);
}

.step-content h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--gold);
}

.step-content p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Holidays Section */
.holidays {
    background: rgba(255, 255, 255, 0.05);
}

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

.holiday-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    transition: transform 0.3s;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.holiday-card.active {
    border-color: var(--gold);
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
}

.holiday-card.coming-soon {
    opacity: 0.7;
}

.holiday-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.holiday-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.status-badge {
    display: inline-block;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.status-badge.active {
    background: var(--gold);
    color: var(--dark-green);
}

.status-badge.coming-soon {
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
}

.holiday-card p {
    color: var(--text-light);
    line-height: 1.6;
}

/* CTA Section */
.cta {
    background: linear-gradient(135deg, var(--primary-red) 0%, var(--dark-red) 100%);
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: var(--text-light);
}

/* Footer */
.footer {
    background: var(--dark-green);
    padding: 3rem 20px 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.3rem;
    font-weight: bold;
    margin-bottom: 1rem;
    height: 40px;
}

.footer-logo-img {
    height: 40px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.footer-section h4 {
    margin-bottom: 1rem;
    color: var(--gold);
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s;
}

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

.footer-section p {
    color: var(--text-light);
    line-height: 1.6;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    color: var(--text-light);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: rgba(26, 95, 63, 0.98);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        padding: 2rem 0;
        gap: 1rem;
    }

    .nav-menu.active {
        left: 0;
    }

    .hero {
        padding: 120px 20px 80px;
        min-height: auto;
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

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

    .hero-stats {
        justify-content: center;
        gap: 1rem;
    }

    .stat-item {
        min-width: 80px;
        padding: 0.8rem;
    }

    .stat-number {
        font-size: 1.5rem;
    }

    .stat-label {
        font-size: 0.8rem;
    }

    .phone-frame {
        width: 200px;
        height: 420px;
        border-radius: 28px;
        padding: 6px;
    }

    .phone-notch {
        width: 90px;
        height: 18px;
    }

    .santa-sleigh-container {
        font-size: 4rem;
        top: -30px;
        right: -20px;
    }

    .section-title {
        font-size: 2rem;
    }

    .section-subtitle {
        font-size: 1rem;
    }

    .hero-buttons {
        justify-content: center;
        flex-direction: column;
        width: 100%;
    }

    .btn {
        width: 100%;
        justify-content: center;
    }

    .hero-decoration .star,
    .hero-decoration .christmas-tree,
    .hero-decoration .gift-box,
    .hero-decoration .bell {
        font-size: 1.5rem;
    }

    .tree-1, .tree-2, .tree-3 {
        font-size: 2rem !important;
    }

    .floating-reindeer {
        display: none;
    }

    .hero-bg-decoration .twinkling-star {
        font-size: 1rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .steps {
        grid-template-columns: 1fr;
    }

    .holidays-grid {
        grid-template-columns: 1fr;
    }
}

/* Page Content Styles */
.page-content {
    padding: 120px 20px 80px;
    max-width: 900px;
    margin: 0 auto;
}

.page-content h1 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-align: center;
    color: var(--gold);
}

.page-content h2 {
    font-size: 2rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: var(--gold);
}

.page-content h3 {
    font-size: 1.5rem;
    margin-top: 1.5rem;
    margin-bottom: 1rem;
    color: var(--gold);
}

.page-content p {
    margin-bottom: 1rem;
    line-height: 1.8;
    color: var(--text-light);
}

.page-content ul, .page-content ol {
    margin-left: 2rem;
    margin-bottom: 1rem;
    color: var(--text-light);
}

.page-content li {
    margin-bottom: 0.5rem;
    line-height: 1.8;
}

.page-content a {
    color: var(--gold);
    text-decoration: underline;
}

.page-content a:hover {
    color: var(--white);
}

