.wpo-story-img {
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.waze__btnWrap {
    display: flex;
}

.waze__btn {
    max-width: 180px;
    transition: 500ms all;
}

.waze__btn:hover {
    opacity: 0.8;
    scale: 1.1;
}

.waze__btnWrap-right {
    justify-content: flex-end;
}

/* Preloader */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
}

.loader {
    text-align: center;
}

.spinner {
    width: 50px;
    height: 50px;
    border: 5px solid #f3f3f3;
    border-top: 5px solid #3498db;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 20px;
}

.loading-text {
    font-size: 18px;
    color: #333;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* RSVP Form Styles */
/* .wpo-contact-form-area {
    background: #fff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0,0,0,0.1);
} */

.wpo-contact-form-area .form-control {
    height: 50px;
    border: 1px solid #e4e4e4;
    border-radius: 5px;
    padding: 0 20px;
    margin-bottom: 20px;
    font-size: 16px;
}

.wpo-contact-form-area textarea.form-control {
    height: 120px;
    padding: 15px 20px;
    resize: none;
}

.wpo-contact-form-area .radio-buttons {
    margin-bottom: 20px;
}

.wpo-contact-form-area .radio-buttons p {
    margin-bottom: 10px;
}

.wpo-contact-form-area .radio-buttons input[type="radio"] {
    margin-right: 10px;
}

.wpo-contact-form-area .radio-buttons label {
    font-size: 16px;
    color: #333;
    cursor: pointer;
}

.wpo-contact-form-area .attendance-dependent {
    display: block;
    margin-bottom: 20px;
}

.wpo-contact-form-area .submit-area {
    position: relative;
    margin-top: 30px;
}

.wpo-contact-form-area .theme-btn {
    width: 100%;
    height: 50px;
    background: #99337f;
    color: #fff;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.wpo-contact-form-area .theme-btn:hover {
    background: #d1a2c4;
}

.wpo-contact-form-area #c-loader {
    display: none;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: #fff;
    font-size: 20px;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: translateY(-50%) rotate(0deg); }
    100% { transform: translateY(-50%) rotate(360deg); }
}

/* SweetAlert2 Custom Styles */
.swal2-popup {
    border-radius: 10px;
    padding: 30px;
}

.swal2-title {
    font-size: 24px;
    color: #333;
    margin-bottom: 15px;
}

.swal2-content {
    font-size: 16px;
    color: #666;
}

.swal2-confirm {
    background: #3498db !important;
    border-radius: 5px !important;
    padding: 10px 30px !important;
    font-size: 16px !important;
}

.swal2-confirm:hover {
    background: #2980b9 !important;
}

/* Timer Styles */
.clock-grids {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.clock-item {
    text-align: center;
    min-width: 80px;
    background: rgba(255, 255, 255, 0.1);
    padding: 15px;
    border-radius: 10px;
    backdrop-filter: blur(5px);
}

.clock-item .count {
    display: block;
    font-size: 36px;
    font-weight: 700;
    color: #fff;
    line-height: 1;
    margin-bottom: 5px;
}

.clock-item .title {
    font-size: 14px;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.formSection {
    padding-top: 0!important;
}

.wpo-section-title {
    margin-top: 20px;
}

.main__h3 {
    font-size: clamp(40px, calc(2.5rem + ((1vw - 3.8px) * 4.8721)), 80px)!important;
}

.static-hero-s2 .wpo-static-hero-inner .slide-title h2 {
    margin: 20px 0 0!important;
}

input.form-control:read-only {
    background-color: #f9ecf5!important;
}

@media(max-width: 576px) {
   .header__iconImg {
    margin-bottom: -50px;
   }

   .static-hero-s2 {
    padding-bottom: 0!important;
   }

   .timer__label {
    font-size: 16px!important;
   }

   .box__wrap {
    display: flex;
    flex-direction: column!important;
   }

   .waze__btnWrap {
    justify-content: center!important;
   }
}