body, html {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
}

h1 {
    color: #b30000;
    text-shadow: 0 0 10px rgba(255, 255, 255, .7);
    font-weight: 700;
    text-align: center;
    font-size: 45px;
}

.section-services {
    padding: 60px 15px;
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    margin-top: 25px;
}

.custom-container {
    max-width: 1200px;
    margin: 0 auto;
}

.wrapper-navigation ul {
    list-style: none;
    padding: 0;
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.wrapper-navigation a, .wrapper-navigation span {
    color: #730000;
    text-decoration: none;
}

/* --- Wrapper Items (Video + Form) --- */
.wrapper-items {
    display: flex; /* Make it flex container */
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap; /* Allow wrapping on small screens */
    margin-top: 40px;
}

.wrapper-video, .wrapper-form {
    flex: 1 1 455px; /* Flexible, min width 455px */
    max-width: 100%; /* Never exceed parent width */
}

.wrapper-video video {
    width: 100%; /* Fully responsive */
    height: auto;
    border-radius: 10px;
    border: 4px solid #fff;
    box-shadow: 0 0 15px rgba(255, 0, 0, .3);
}

.wrapper-form {
    position: relative;
    padding: 25px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 12px;
    backdrop-filter: blur(8px);
    box-shadow: 0 0 15px rgba(255, 0, 0, .2);
    animation: glowLights 3s infinite alternate;
}

.wrapper-home-santa-section {

    padding-top: 0;
}

.wrapper-home-santa {

    margin-right: 40px;
    margin-top: 0;
}
@media(max-width: 991px) {
    .wrapper-home-santa {
        margin-right:0;
    }
}

@keyframes glowLights {
    0% { box-shadow: 0 0 15px #ff0000, 0 0 20px #ffcc00 inset; }
    25% { box-shadow: 0 0 25px #ff6600, 0 0 25px #ffff00 inset; }
    50% { box-shadow: 0 0 20px #ff0000, 0 0 30px #ffd700 inset; }
    75% { box-shadow: 0 0 25px #ff4500, 0 0 25px #ffdf00 inset; }
    100% { box-shadow: 0 0 15px #ff0000, 0 0 20px #ffcc00 inset; }
}

.wrapper-form .wrapper-input {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 15px;
}

.section-services .wrapper-form .wrapper-input input, .section-services textarea {
    width: 100%;
    padding: 14px;
    border-radius: 10px;
    margin-bottom: 12px;
    background: rgba(255, 255, 255, 0.9);
    font-size: 15px;
    outline: none;
    transition: .2s;
}

.section-services .wrapper-form .wrapper-input input:focus, .section-services .wrapper-form textarea:focus {
    border-color: #ff7200;
    background: white;
}

.main-button {
    background: linear-gradient(#ff0000, #930000);
    border: none;
    padding: 12px;
    color: white;
    font-size: 17px;
    border-radius: 30px;
    cursor: pointer;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1px;
    box-shadow: 0 0 12px rgba(255, 0, 0, .4);
    animation: pulseButton 0.8s infinite alternate;
    transition: 0.3s;
}

@keyframes pulseButton {
    from { transform: scale(1); box-shadow: 0 0 12px rgba(255, 0, 0, .4); }
    to { transform: scale(1.05); box-shadow: 0 0 25px rgba(255, 220, 0, .7); }
}

.main-button:hover {
    transform: scale(1.08) rotate(-2deg);
    box-shadow: 0 0 30px rgba(255, 255, 0, .9);
    background: linear-gradient(#d60000, #5e0000);
}

/* --- Snow & Reindeer Animation --- */
.snowflake {
    position: fixed;
    top: -10px;
    color: #01b5ff;
    user-select: none;
    pointer-events: none;
    animation-name: fall;
    z-index: 9999;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
}

@keyframes fall {
    0% {
        transform: translateY(0) rotate(0deg);
    }
    100% {
        transform: translateY(100vh) rotate(360deg);
    }
}

/* --- Media Queries for Mobile --- */
@media (max-width: 992px) {
    .wrapper-items {
        flex-direction: column;
        gap: 25px;
        align-items: center;
    }

    h1 {
        font-size: 38px;
    }
}

@media (max-width: 768px) {
    .wrapper-video, .wrapper-form {
        flex: 1 1 100%;
    }

    h1 {
        font-size: 32px;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 28px;
    }

    .wrapper-form input,
    .wrapper-form textarea {
        font-size: 14px;
        padding: 12px;
    }

    .main-button {
        font-size: 16px;
        padding: 10px;
    }

    .section-services {
        padding: 40px 10px;
    }
}

/* --- Cropper Modal Styles --- */
.crop-modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.85);
    z-index: 10000;
    align-items: center;
    justify-content: center;
    padding: 10px;
    overflow-y: auto;
}

.crop-modal-content {
    background: #fff;
    padding: 20px;
    border-radius: 12px;
    width: 100%;
    max-width: 700px;
    max-height: 95vh;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.crop-container {
    width: 100%;
    height: 60vh;
    min-height: 300px;
    max-height: 80vh;
    background: #000;
    overflow: hidden;
    margin-top: 10px;
    position: relative;
}

.crop-container img {
    display: block;
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
}

.crop-info {
    margin-top: 15px;
    color: #666;
    font-size: 14px;
    text-align: center;
    padding: 10px;
    background: #f5f5f5;
    border-radius: 8px;
    width: 100%;
}

.crop-actions {
    display: flex;
    justify-content: space-between;
    width: 100%;
    margin-top: 15px;
    flex-wrap: wrap;
    gap: 10px;
}

.crop-actions button {
    flex: 1;
    padding: 12px 20px;
    border-radius: 8px;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s;
    border: none;
}

#cropCancel {
    background: #f0f0f0;
    color: #333;
    border: 1px solid #ddd;
}

#cropCancel:hover {
    background: #e0e0e0;
}

#cropConfirm {
    background: linear-gradient(#ff0000, #930000);
    color: white;
}

#cropConfirm:hover {
    background: linear-gradient(#d60000, #5e0000);
    transform: scale(1.05);
}

@media (max-width: 480px) {
    .crop-modal-content {
        padding: 15px;
    }
    .crop-actions button {
        flex: 1 1 100%;
        margin-bottom: 10px;
    }
}
.music-control {
    text-align: center;
    margin: 20px 0;
}

#musicToggle {
    font-size: 16px;
    padding: 10px 20px;
}

.santa-pricing-info {
    margin-top: 16px;
    padding: 14px;
    background: #fff7f7;
    border-radius: 14px;
    text-align: center;
}

.pricing-title {
    font-size: 18px;
    font-weight: 700;
    color: #b30000;
    margin-bottom: 10px;
}

.pricing-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pricing-list li {
    margin-bottom: 10px;
    font-size: 16px;
}

.pricing-note {
    font-size: 14px;
    color: #555;
    margin-top: 10px;
}