/* ========================================
   CHRISTMAS LIGHTS PAGE SPECIFIC STYLES
   ======================================== */

:root {
    --christmas-red: #c41e3a;
    --christmas-green: #2c5f2d;
    --christmas-gold: #ffd700;
    --christmas-white: #ffffff;
    --christmas-dark: #0f1e10;
    --snow-white: #f0f8ff;
}

/* ========================================
   CHRISTMAS HERO SECTION
   ======================================== */
.christmas-hero {
    position: relative;
    min-height: 700px;
    background: url('../images/hero/xmas-slide.jpg') center center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    overflow: hidden;
}

.christmas-hero .hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    padding: 40px 20px;
}

.hero-badge {
    display: inline-block;
    background-color: var(--christmas-gold);
    color: var(--christmas-dark);
    padding: 10px 25px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 0.95rem;
    margin-bottom: 20px;
    animation: pulse 2s infinite;
}

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

.christmas-hero h1 {
    font-size: 4rem;
    margin-bottom: 15px;
    text-shadow: 3px 3px 6px rgba(0,0,0,0.5);
    animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
    from { text-shadow: 0 0 20px #fff, 0 0 30px #fff, 0 0 40px var(--christmas-gold); }
    to { text-shadow: 0 0 30px #fff, 0 0 40px var(--christmas-gold), 0 0 50px var(--christmas-gold); }
}

.hero-subtitle {
    font-size: 1.6rem;
    margin-bottom: 15px;
    color: var(--christmas-gold);
    font-weight: 600;
}

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

.hero-season-info {
    margin: 25px 0;
}

.season-badge {
    display: inline-block;
    background-color: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 12px 30px;
    border-radius: 25px;
    border: 2px solid var(--christmas-gold);
    font-size: 1.1rem;
    font-weight: 600;
}

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

@keyframes buttonGlow {
    0%, 100% { box-shadow: 0 0 20px rgba(255, 215, 0, 0.5); }
    50% { box-shadow: 0 0 40px rgba(255, 215, 0, 0.8); }
}

/* ========================================
   SNOWFLAKES ANIMATION
   ======================================== */
.snowflakes {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
    pointer-events: none;
}

.snowflake {
    position: absolute;
    top: -10%;
    color: white;
    font-size: 1.5rem;
    opacity: 0.8;
    animation: fall linear infinite;
}

.snowflake:nth-child(1) { left: 10%; animation-duration: 10s; animation-delay: 0s; }
.snowflake:nth-child(2) { left: 20%; animation-duration: 12s; animation-delay: 2s; font-size: 1.2rem; }
.snowflake:nth-child(3) { left: 30%; animation-duration: 8s; animation-delay: 4s; font-size: 1.8rem; }
.snowflake:nth-child(4) { left: 40%; animation-duration: 15s; animation-delay: 1s; }
.snowflake:nth-child(5) { left: 50%; animation-duration: 11s; animation-delay: 3s; font-size: 1.4rem; }
.snowflake:nth-child(6) { left: 60%; animation-duration: 9s; animation-delay: 5s; }
.snowflake:nth-child(7) { left: 70%; animation-duration: 13s; animation-delay: 2s; font-size: 1.6rem; }
.snowflake:nth-child(8) { left: 80%; animation-duration: 10s; animation-delay: 4s; }

@keyframes fall {
    to { top: 110%; }
}

/* ========================================
   CHRISTMAS STATUS BANNER
   ======================================== */
.christmas-status-banner {
    background: linear-gradient(90deg, var(--christmas-red), var(--christmas-green), var(--christmas-red));
    color: white;
    padding: 15px;
    text-align: center;
    font-weight: 700;
    font-size: 1.1rem;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.status-icon {
    font-size: 1.3rem;
    margin: 0 10px;
}

/* ========================================
   WHY CHOOSE SECTION
   ======================================== */
.why-choose-section {
    padding: 80px 0;
    background-color: var(--snow-white);
}

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

.benefit-card {
    background-color: white;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-top: 4px solid var(--christmas-red);
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(196, 30, 58, 0.2);
}

.benefit-icon {
    font-size: 3.5rem;
    margin-bottom: 20px;
}

.benefit-card h3 {
    color: var(--christmas-green);
    margin-bottom: 15px;
    font-size: 1.4rem;
}

/* ========================================
   SERVICES OFFERED SECTION
   ======================================== */
.services-offered-section {
    padding: 80px 0;
    background-color: white;
}

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

.christmas-service-card {
    background-color: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.christmas-service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 35px rgba(0,0,0,0.15);
}

.service-image-placeholder {
    background: linear-gradient(135deg, var(--christmas-green), var(--christmas-red));
    height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.placeholder-icon {
    font-size: 6rem;
    filter: drop-shadow(0 0 10px rgba(255,255,255,0.5));
}

.service-content {
    padding: 30px;
}

.service-content h3 {
    color: var(--christmas-green);
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.service-content p {
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.7;
}

/* ========================================
   GALLERY SECTION
   ======================================== */
.gallery-section {
    padding: 80px 0;
    background-color: var(--light-bg);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 50px;
}

.gallery-item {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    cursor: pointer;
}

.gallery-item:hover {
    transform: scale(1.05);
}

.gallery-placeholder {
    background: linear-gradient(135deg, var(--christmas-red) 0%, var(--christmas-green) 100%);
    height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    font-weight: 600;
    text-align: center;
}

.placeholder-text {
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.gallery-note {
    text-align: center;
    margin-top: 30px;
    color: var(--text-light);
    font-style: italic;
}

.gallery-note code {
    background-color: #f0f0f0;
    padding: 3px 8px;
    border-radius: 4px;
    font-family: monospace;
}

/* ========================================
   PRICING SECTION
   ======================================== */
.pricing-section {
    padding: 80px 0;
    background-color: white;
}

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

.pricing-card {
    background-color: white;
    border: 2px solid #e0e0e0;
    border-radius: 15px;
    padding: 40px 30px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.pricing-card.featured {
    border-color: var(--christmas-gold);
    border-width: 3px;
    transform: scale(1.05);
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--christmas-gold);
    color: var(--christmas-dark);
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.9rem;
}

.pricing-header h3 {
    color: var(--christmas-green);
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.price {
    font-size: 1.5rem;
    color: var(--christmas-red);
    font-weight: 700;
    margin-bottom: 25px;
}

.pricing-features {
    list-style: none;
    margin: 25px 0;
    text-align: left;
}

.pricing-features li {
    padding: 12px 0;
    border-bottom: 1px solid #f0f0f0;
    color: var(--text-dark);
}

.pricing-features li:before {
    content: "🎄 ";
    margin-right: 8px;
}

.pricing-note {
    margin-top: 40px;
    padding: 20px;
    background-color: var(--snow-white);
    border-radius: 10px;
    border-left: 4px solid var(--christmas-green);
}

/* ========================================
   PROCESS SECTION
   ======================================== */
.process-section {
    padding: 80px 0;
    background-color: var(--light-bg);
}

.process-steps {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 50px;
    flex-wrap: wrap;
    gap: 20px;
}

.process-step {
    flex: 1;
    min-width: 200px;
    text-align: center;
    padding: 20px;
}

.step-number {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--christmas-red), var(--christmas-green));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
    margin: 0 auto 20px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.process-step h3 {
    color: var(--christmas-green);
    margin-bottom: 10px;
}

.process-arrow {
    font-size: 2rem;
    color: var(--christmas-red);
    font-weight: 700;
}

/* ========================================
   QUOTE FORM SECTION
   ======================================== */
.quote-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--snow-white) 0%, white 100%);
}

.quote-form {
    max-width: 800px;
    margin: 50px auto 0;
    background-color: white;
    padding: 50px;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

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

.btn-large {
    width: 100%;
    padding: 18px;
    font-size: 1.2rem;
    margin-top: 10px;
}

/* ========================================
   FAQ SECTION
   ======================================== */
.faq-section {
    padding: 80px 0;
    background-color: white;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.faq-item {
    background-color: var(--snow-white);
    padding: 30px;
    border-radius: 10px;
    border-left: 4px solid var(--christmas-red);
}

.faq-item h3 {
    color: var(--christmas-green);
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.faq-item p {
    color: var(--text-dark);
    line-height: 1.7;
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */
@media (max-width: 768px) {
    .christmas-hero h1 {
        font-size: 2.5rem;
    }

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

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

    .process-steps {
        flex-direction: column;
    }

    .process-arrow {
        transform: rotate(90deg);
        margin: 20px 0;
    }

    .pricing-card.featured {
        transform: scale(1);
    }

    .quote-form {
        padding: 30px 20px;
    }
}