/* Premium Luxury Theme Enhancements for Hotel AVG Palace */

/* 1. Glassy Header Styling */
.header-area.style-3 {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.4s ease;
}

.header-area.style-3:hover {
    background: rgba(255, 255, 255, 1);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
}

.menu-list li a {
    transition: color 0.3s ease, transform 0.3s ease;
}
.menu-list li a:hover {
    transform: translateY(-2px);
    color: var(--primary-color1) !important;
}

/* 2. Hero Banner Modern Overlay & Animations */
.banner-section2 .banner-content {
    background: rgba(9, 22, 29, 0.75);
    padding: 40px;
    border-radius: 15px;
    backdrop-filter: blur(8px);
    border: 1px solid rgba(191, 148, 68, 0.2);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    animation: fadeInUp 1s ease-out forwards;
}

.banner-section2 .banner-content h1 {
    color: #ffffff;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.banner-section2 .banner-content span {
    color: var(--primary-color1);
    font-weight: 600;
    letter-spacing: 2px;
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

.h2-banner-img1, .h2-banner-img2, .h2-banner-img3, .h2-banner-img4 {
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
    transition: transform 0.5s ease;
}
.banner-right:hover img {
    transform: scale(1.02);
}

/* 3. Facilities & Rooms (Soft Shadows & Hover) */
.h3-facilities-card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.04);
    transition: all 0.4s ease;
    border: 1px solid transparent;
    overflow: hidden;
}

.h3-facilities-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
    border-color: var(--primary-color1);
}

.cooking-expart-wrap {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.05);
    transition: all 0.4s ease;
}
.cooking-expart-wrap:hover {
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}
.cooking-expart-wrap img {
    transition: transform 0.6s ease;
}
.cooking-expart-wrap:hover img {
    transform: scale(1.05);
}
.exparts-content {
    background: #fff;
    border-top: 3px solid var(--primary-color1);
}

/* 4. Statistics (Elegant Typography & Rich Background) */
.counter-area {
    background: linear-gradient(135deg, var(--title-color-dark) 0%, #1a2a35 100%);
    border-radius: 20px;
    padding: 50px 30px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    border: 1px solid rgba(255,255,255,0.05);
}

.counter-single .coundown h3 {
    font-family: var(--font-cormorant);
    color: var(--primary-color1) !important;
    font-size: 3.5rem;
    font-weight: 600;
}
.counter-single .coundown span {
    color: var(--primary-color1);
    font-size: 2.5rem;
}
.counter-single .coundown p {
    color: #ffffff;
    opacity: 0.9;
    font-size: 1.1rem;
    letter-spacing: 1px;
}

/* 5. Testimonials Premium Blocks */
.testimonial-wrap {
    background: #ffffff;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.06);
    border-left: 4px solid var(--primary-color1);
    transition: transform 0.4s ease;
    height: 100%;
}
.testimonial-wrap:hover {
    transform: translateY(-5px);
}
.testimonial-wrap .testimonial-content p {
    font-family: var(--font-cormorant);
    font-size: 1.25rem;
    font-style: italic;
    color: var(--text-color1);
    line-height: 1.8;
}

/* 6. Popular Food Cards */
.h3-popular-food-card {
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: all 0.4s ease;
    overflow: hidden;
}
.h3-popular-food-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}
.h3-popular-food-card .food-img img {
    transition: transform 0.6s ease;
}
.h3-popular-food-card:hover .food-img img {
    transform: scale(1.08);
}

/* =========================================================
   7. Premium Glassmorphism Food Cards
   ========================================================= */

.premium-food-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    margin: 15px auto;
    max-width: 380px;
    width: 100%;
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
    cursor: pointer;
    background: #000;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease, box-shadow 0.4s ease;
    transform-style: preserve-3d;
}

.premium-food-card.pf-visible {
    opacity: 1;
    transform: translateY(0);
}

.premium-food-card:hover {
    box-shadow: 0 25px 50px rgba(0,0,0,0.4);
}

.pf-img-wrapper {
    position: relative;
    width: 100%;
    height: 350px;
    overflow: hidden;
}

.pf-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.premium-food-card:hover .pf-image {
    transform: scale(1.1);
}

.pf-price-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 8px 16px;
    border-radius: 30px;
    color: #fff;
    font-weight: 700;
    font-size: 1.1rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    z-index: 2;
}

.pf-content-glass {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px 20px;
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.5) 60%, transparent 100%);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    color: #fff;
    z-index: 2;
    transform: translateY(0);
    transition: padding 0.4s ease;
}

.pf-category span {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary-color1);
    font-weight: 600;
    margin-bottom: 10px;
    display: block;
}

.pf-title {
    font-family: var(--font-cormorant);
    font-size: 2rem;
    color: #fff;
    margin-bottom: 15px;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.8);
    transition: color 0.3s ease;
}

.premium-food-card:hover .pf-title {
    color: var(--primary-color1);
}

.pf-desc {
    font-size: 0.95rem;
    color: rgba(255,255,255,0.8);
    line-height: 1.6;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, opacity 0.4s ease, margin-top 0.4s ease;
}

.premium-food-card:hover .pf-desc {
    max-height: 100px;
    opacity: 1;
    margin-top: 15px;
}

/* Ensure Swiper buttons are clickable */
.populer-food-area .slider-btn {
    z-index: 999 !important;
    position: relative;
    pointer-events: none;
}
.populer-food-area .slider-btn .prev-btn-3, 
.populer-food-area .slider-btn .next-btn-3 {
    pointer-events: auto;
    z-index: 1000 !important;
}

/* 7. Offers & Spa Split Sections */
.offers-wrapper {
    background: var(--white);
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.06);
    overflow: hidden;
}
.offers-img {
    height: 100%;
}
.offers-img img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    min-height: 400px;
}
.offers-content {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.exclusive-offers-area .offers-content {
    background: var(--title-color-dark);
    color: var(--white);
}
.exclusive-offers-area .offers-content h2,
.exclusive-offers-area .offers-content p {
    color: var(--white);
}
.offer-features li {
    font-size: 1.1rem;
    margin-bottom: 10px;
}
.offer-features i {
    color: var(--primary-color1) !important;
}

/* 8. Photo Gallery Grid */
.gallery-item {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    height: 250px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}
.gallery-large {
    height: 400px;
}
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.gallery-item:hover img {
    transform: scale(1.1);
}
.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    display: flex;
    align-items: flex-end;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.4s ease;
}
.gallery-item:hover .gallery-overlay {
    opacity: 1;
}
.gallery-overlay h5 {
    color: #fff;
    margin: 0;
    font-size: 1.3rem;
    transform: translateY(20px);
    transition: transform 0.4s ease;
}
.gallery-item:hover .gallery-overlay h5 {
    transform: translateY(0);
}

/* 9. Nearby Attractions */
.attraction-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: all 0.4s ease;
    border-bottom: 4px solid transparent;
    height: 100%;
}
.attraction-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    border-color: var(--primary-color1);
}
.attraction-icon {
    width: 80px;
    height: 80px;
    background: rgba(132, 169, 140, 0.1); /* fallback if var fails */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--primary-color1);
    font-size: 2rem;
    transition: all 0.4s ease;
}
.attraction-card:hover .attraction-icon {
    background: var(--primary-color1);
    color: #fff;
}

/* 10. CTA Banner */
.cta-banner-area {
    background: var(--title-color-dark);
    padding: 80px 0;
    margin-top: 120px;
    position: relative;
    overflow: hidden;
}
.cta-banner-area::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(132,169,140,0.1) 0%, transparent 60%);
}
.cta-wrapper {
    position: relative;
    z-index: 2;
}
.cta-wrapper h2 {
    color: #fff;
    font-size: 3rem;
    font-family: var(--font-cormorant);
    margin-bottom: 20px;
}
.cta-wrapper p {
    color: rgba(255,255,255,0.8);
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
}

/* 11. VIP Club Creative Section */
.vip-club-area {
    background: url('https://images.unsplash.com/photo-1542314831-c6a4d14d837e?w=1600&q=80') center/cover no-repeat fixed; /* Parallax effect */
    padding: 120px 0;
    position: relative;
    border-radius: 30px;
    margin: 0 20px 120px 20px;
    box-shadow: 0 25px 50px rgba(0,0,0,0.2);
}
.vip-club-area::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(9, 22, 29, 0.9) 0%, rgba(9, 22, 29, 0.6) 100%);
    border-radius: 30px;
}
.vip-glass-card {
    position: relative;
    z-index: 2;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 60px 40px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.1);
}
.vip-subtitle {
    color: rgba(255,255,255,0.85);
    font-size: 1.15rem;
    max-width: 650px;
    margin: 0 auto 40px;
    line-height: 1.8;
}
.vip-form {
    display: flex;
    max-width: 550px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.1);
    padding: 8px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}
.vip-form:focus-within {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--primary-color1);
    box-shadow: 0 0 20px rgba(191, 148, 68, 0.3); /* Assuming gold primary color */
}
.vip-form input {
    flex: 1;
    background: transparent;
    border: none;
    padding: 15px 25px;
    color: #fff;
    font-size: 1.05rem;
    outline: none;
}
.vip-form input::placeholder {
    color: rgba(255,255,255,0.6);
}
.vip-submit-btn {
    background: var(--primary-color1);
    color: #fff;
    border: none;
    padding: 0 35px;
    border-radius: 40px;
    font-weight: 600;
    font-size: 1.05rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
}
.vip-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
    background: #fff;
    color: var(--title-color-dark);
}

/* 12. Floating WhatsApp Icon */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background-color: #25d366;
    color: #FFF !important;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px #999;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    animation: whatsapp-pulse 2s infinite;
    transition: all 0.3s ease;
}
.whatsapp-float:hover {
    background-color: #128C7E;
    transform: scale(1.1);
}
@keyframes whatsapp-pulse {
    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); }
}

/* =========================================================
   8. Luxury Culinary Experience (Accordion Gallery)
   ========================================================= */

.luxury-culinary-experience {
    background-color: var(--white);
}

.lux-section-title .lux-subtitle {
    display: inline-block;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--primary-color1);
    margin-bottom: 15px;
    font-weight: 600;
}

.lux-section-title .lux-title {
    font-family: var(--font-cormorant);
    font-size: 3.5rem;
    color: var(--title-color-dark);
}

.lux-gallery-container {
    display: flex;
    gap: 15px;
    height: 500px;
    width: 100%;
    border-radius: 24px;
    overflow: hidden;
    padding: 10px;
    background: #09161d;
    box-shadow: 0 30px 60px rgba(0,0,0,0.15);
}

.lux-gallery-item {
    flex: 1;
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: flex 0.6s cubic-bezier(0.25, 1, 0.5, 1), transform 0.4s ease;
    cursor: pointer;
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.lux-gallery-item:hover, .lux-gallery-item.active {
    flex: 5;
}

.lux-gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.2) 60%, transparent 100%);
    display: flex;
    align-items: flex-end;
    padding: 30px;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease 0.2s, transform 0.5s ease 0.2s;
}

.lux-gallery-item:hover .lux-gallery-overlay, 
.lux-gallery-item.active .lux-gallery-overlay {
    opacity: 1;
    transform: translateY(0);
}

.lux-gallery-content {
    position: relative;
    width: 100%;
    color: #fff;
    min-width: 300px;
}

.lux-category {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary-color1);
    margin-bottom: 8px;
    display: block;
}

.lux-item-title {
    font-family: var(--font-cormorant);
    font-size: 2.2rem;
    margin-bottom: 10px;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.8);
}

.lux-item-desc {
    font-size: 0.95rem;
    color: rgba(255,255,255,0.8);
    line-height: 1.6;
    max-width: 400px;
}

.lux-price-tag {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    background: var(--primary-color1);
    color: #fff;
    padding: 10px 20px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 1.2rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

@media (max-width: 992px) {
    .lux-gallery-container {
        flex-direction: column;
        height: 700px;
    }
    .lux-price-tag {
        top: auto;
        bottom: 100%;
        right: auto;
        left: 0;
        margin-bottom: 15px;
        transform: none;
    }
}





@media(max-width:775px) {
 .vip-submit-btn {
    background: var(--primary-color1);
    color: #fff;
    border: none;
    padding: 8px 35px;
    border-radius: 40px;
    font-weight: 600;
    font-size: 1.05rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: center;
    width: 75%;
    margin: auto;
}

.vip-form {
    display: flex;
    max-width: 550px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.1);
    padding: 8px 8px 16px;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    flex-direction: column;
}
.vip-club-area {
    background: url('https://images.unsplash.com/photo-1542314831-c6a4d14d837e?w=1600&q=80') center/cover no-repeat fixed;
    padding: 30px 0;
    position: relative;
    border-radius: 0px;
    margin: 0 10px 10px 10px;
    box-shadow: 0 25px 50px rgba(0,0,0,0.2);
}

.cta-banner-area {
    background: var(--title-color-dark);
    padding: 40px 0;
    margin-top: 0px;
    position: relative;
    overflow: hidden;
}

.home3-testimonial.mb-120 {
    margin-bottom: 30px !IMPORTANT;
}

}
