/* Targeting the specific page via a style block in promotion.php */
.promo-link.current-menu-item a,
.promo-link a:hover {
    background-color: transparent !important;
    background-image: none !important;
}

/* ===== COMING SOON SECTION ===== */
.coming-soon-section {
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(26, 60, 75, 0.97) 0%, rgba(42, 79, 96, 0.97) 100%), 
                url('https://images.unsplash.com/photo-1517248135467-4c7edcad34c4?auto=format&fit=crop&w=1920&q=80') center/cover no-repeat fixed;
    padding: 80px 20px;
    text-align: center;
    color: #fff;
    position: relative;
    overflow: hidden;
}

/* Floating Background Elements Animation */
.floating-element {
    position: absolute;
    border-radius: 50%;
    background: rgba(197, 160, 89, 0.08);
    animation: float 8s ease-in-out infinite;
    z-index: 1;
}

.floating-element-1 {
    width: 400px;
    height: 400px;
    top: -150px;
    right: -100px;
    animation-delay: 0s;
}

.floating-element-2 {
    width: 250px;
    height: 250px;
    bottom: -80px;
    left: -80px;
    animation-delay: 2s;
}

.floating-element-3 {
    width: 150px;
    height: 150px;
    top: 40%;
    left: 10%;
    animation-delay: 4s;
    background: rgba(255, 255, 255, 0.05);
}

@keyframes float {
    0%, 100% { transform: translateY(0px) scale(1); }
    50% { transform: translateY(-30px) scale(1.05); }
}

.coming-soon-content {
    max-width: 850px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

/* Badge Pulse Animation */
.coming-soon-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(197, 160, 89, 0.15);
    border: 1px solid rgba(197, 160, 89, 0.4);
    color: #c5a059;
    padding: 10px 28px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 30px;
    backdrop-filter: blur(10px);
    animation: badgePulse 3s ease-in-out infinite;
}

@keyframes badgePulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(197, 160, 89, 0.4); }
    50% { box-shadow: 0 0 0 10px rgba(197, 160, 89, 0); }
}

/* Shimmer Text Animation */
.coming-soon-title {
    font-family: 'Playfair Display', serif;
    font-size: 4.5rem;
    font-weight: 700;
    margin-bottom: 25px;
    line-height: 1.1;
    color: #fff;
}

.coming-soon-title span {
    background: linear-gradient(135deg, #c5a059 0%, #f0d78c 50%, #c5a059 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 4s linear infinite;
}

@keyframes shimmer {
    to { background-position: 200% center; }
}

.coming-soon-description {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.8;
    margin-bottom: 50px;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
}

/* Countdown Timer with Hover Sweep Animation */
.countdown-container {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.countdown-item {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    padding: 25px 35px;
    min-width: 110px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.countdown-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
    transition: left 0.6s ease;
}

.countdown-item:hover::before {
    left: 100%;
}

.countdown-item:hover {
    transform: translateY(-8px) scale(1.05);
    border-color: rgba(197, 160, 89, 0.5);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.countdown-number {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: #c5a059;
    line-height: 1;
    margin-bottom: 8px;
    transition: color 0.3s ease;
}

.countdown-item:hover .countdown-number {
    color: #f0d78c;
}

.countdown-label {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
}

/* Contact Info with Icon Bounce Animation */
.contact-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    margin-bottom: 40px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.contact-item i {
    color: #c5a059;
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.contact-item:hover {
    color: #fff;
    transform: translateX(5px);
}

.contact-item:hover i {
    transform: scale(1.2) rotate(10deg);
}

.contact-item a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: #c5a059;
}

/* CTA Buttons with Hover Fill Animation */
.coming-soon-cta-group {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.coming-soon-cta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    padding: 18px 40px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.coming-soon-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background: rgba(255, 255, 255, 0.15);
    transition: width 0.4s ease;
    z-index: -1;
}

.coming-soon-cta:hover::before {
    width: 100%;
}

.whatsapp-cta {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: #fff;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3);
    animation: whatsappPulse 2s infinite;
}

@keyframes whatsappPulse {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.4); }
    70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

.whatsapp-cta:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 35px rgba(37, 211, 102, 0.5);
    color: #fff;
    animation: none;
}

.home-cta {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: #fff;
    backdrop-filter: blur(10px);
}

.home-cta:hover {
    background: #fff;
    color: #1a3c4b;
    border-color: #fff;
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 35px rgba(255, 255, 255, 0.2);
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 768px) {
    .coming-soon-title {
        font-size: 3rem;
    }
    
    .coming-soon-description {
        font-size: 1.1rem;
    }
    
    .countdown-container {
        gap: 15px;
    }
    
    .countdown-item {
        padding: 20px 25px;
        min-width: 90px;
    }
    
    .countdown-number {
        font-size: 2.5rem;
    }
    
    .coming-soon-cta-group {
        flex-direction: column;
        align-items: center;
    }
    
    .coming-soon-cta {
        width: 100%;
        max-width: 320px;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .coming-soon-title {
        font-size: 2.2rem;
    }
    
    .countdown-container {
        gap: 10px;
    }
    
    .countdown-item {
        padding: 15px 20px;
        min-width: 75px;
    }
    
    .countdown-number {
        font-size: 2rem;
    }
    
    .countdown-label {
        font-size: 0.7rem;
        letter-spacing: 1px;
    }
    
    .contact-item {
        font-size: 0.95rem;
        flex-direction: column;
        gap: 5px;
        text-align: center;
    }
}