/* Add here all your CSS customizations */

.my-cart {
    background-color: #fb610d;
    border-radius: 20px;
    color: #fff;
    display: inline-block;
    height: 24px;
    line-height: 24px;
    margin-left: 3px;
    text-align: center;
    width: 24px;
}

select.input-sm,
select.form-group-sm .form-control {
    height: auto !important;
    line-height: 34px !important;
    padding: 6px 12px !important;
}

select.form-control {
    height: auto !important;
}

.table td, .table th {
    vertical-align: middle;
}

.alert a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
}

.captcha-img img {
    border: 1px solid #5e5f60;
    border-radius: 4px;
    display: inline-block;
    margin-right: 10px;
    padding-right: 10px;
    vertical-align: middle;
    width: auto;
    max-width: 190px;
    height: 100% !important;
}

/* ========== TIER 1 & TIER 2 ENHANCEMENTS ========== */

/* 1. SCROLL PROGRESS BAR */
#scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    background: linear-gradient(90deg, #d35400, #f39c12);
    z-index: 999998;
    transition: width 0.1s ease;
    box-shadow: 0 0 10px rgba(211, 84, 0, 0.3);
}

/* 2. ANIMATED GRADIENT BACKGROUNDS */
.animated-gradient {
    background: linear-gradient(-45deg, #ff9505, #e98905, #d35400, #f39c12);
    background-size: 400% 400%;
    animation: gradientShift 15s ease infinite;
}

@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

/* 3. ENHANCED HOVER EFFECTS */
.btn-primary {
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 149, 5, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 149, 5, 0.4);
}

.feature-box {
    transition: all 0.3s ease;
}

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

.team-item {
    transition: all 0.3s ease;
}

.team-item:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.team-item img {
    transition: all 0.3s ease;
}

.team-item:hover img {
    transform: scale(1.1);
}

.widget-profile {
    transition: all 0.3s ease;
}

.widget-profile:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.widget-profile img {
    transition: all 0.3s ease;
}

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

/* 4. COUNTDOWN TIMER */
#event-countdown {
    text-align: center;
    padding: 30px;
    margin-bottom: 30px;
}

.countdown-timer {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 80px;
}

.countdown-number {
    font-size: 48px;
    font-weight: bold;
    color: #e98905;
    background: linear-gradient(135deg, #ff9505, #e98905);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: pulseNumber 1s ease infinite;
}

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

.countdown-label {
    font-size: 14px;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: 5px;
}

/* 5. GLASSMORPHISM CARDS */
.glass-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.glass-card:hover {
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
    transform: translateY(-5px);
}

/* 6. PARALLAX EFFECTS */
.parallax-section {
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}

.parallax-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

/* 7. FLOATING WHATSAPP BUTTON */
.floating-wa {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999997;
    background: linear-gradient(135deg, #25D366, #128C7E);
    border-radius: 50px;
    padding: 15px 20px;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: #fff;
    font-weight: bold;
    animation: waPulse 2s infinite;
}

@keyframes waPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

.floating-wa:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 35px rgba(37, 211, 102, 0.6);
}

.floating-wa i {
    font-size: 24px;
}

/* 8. ENHANCED TESTIMONIAL CAROUSEL */
.testimonial-card {
    background: #fff;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

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

.testimonial-card .testimonial-text {
    font-style: italic;
    color: #555;
    font-size: 16px;
    line-height: 1.6;
}

.testimonial-card .testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 2px solid #eee;
}

.testimonial-card .testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #e98905;
}

/* Page Transition Styles */
#page-transition-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    z-index: 999999;
    opacity: 1;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

#page-transition-overlay.fade-out {
    opacity: 0;
}

body.page-loading {
    overflow: hidden;
}

body.page-transitioning {
    overflow: hidden;
}

body.fade-in {
    animation: fadeInPage 0.5s ease forwards;
}

body.fade-out {
    animation: fadeOutPage 0.3s ease forwards;
}

@keyframes fadeInPage {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes fadeOutPage {
    from {
        opacity: 1;
    }
    to {
        opacity: 0;
    }
}

/* Animation Delays */
.appear-animation-delay-100 {
    animation-delay: 100ms !important;
}

.appear-animation-delay-200 {
    animation-delay: 200ms !important;
}

.appear-animation-delay-300 {
    animation-delay: 300ms !important;
}

.appear-animation-delay-400 {
    animation-delay: 400ms !important;
}

.appear-animation-delay-500 {
    animation-delay: 500ms !important;
}

/* Lazy Load Placeholder */
img[data-src],
iframe[data-src] {
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    min-height: 200px;
}

iframe[data-src] {
    min-height: 300px;
}

/* ENHANCED TABLE ROW HOVER */
.table tr:hover td {
    background: linear-gradient(135deg, rgba(255, 149, 5, 0.05), rgba(233, 137, 5, 0.05));
    transform: scale(1.01);
    transition: all 0.3s ease;
}

/* GLASSMORPHISM FOR HOTEL CARDS */
.hotel-card {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    overflow: hidden;
    transition: all 0.4s ease;
    position: relative;
}

.hotel-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 149, 5, 0.1), rgba(233, 137, 5, 0.1));
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.hotel-card:hover::before {
    opacity: 1;
}

.hotel-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

.hotel-card img {
    transition: transform 0.4s ease;
}

.hotel-card:hover img {
    transform: scale(1.1);
}

.hotel-info {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.85) 100%);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 15px;
}

/* PARALLAX FOR HOTEL BACKGROUND */
.hotel-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
}
.form-control {
    min-height: 50px !important;

}
.form-control:focus {
    box-shadow: 0 0 0 0.2rem rgba(243, 156, 18, 0.25) !important;
    border-color: #e98905 !important;
}
.modal-title {
    font-weight: bold;
    color: #fff;
}
