/* WOW Factor - Premium Hotel Design */

/* Hero entrance animation */
.hero .badge { animation: fadeSlideUp 0.8s ease-out; }
.hero h1 { animation: fadeSlideUp 0.9s ease-out 0.1s both; }
.hero .lead { animation: fadeSlideUp 1s ease-out 0.2s both; }
.hero .d-flex.gap-3 { animation: fadeSlideUp 1.1s ease-out 0.3s both; }
.hero .bg-white.bg-opacity-10 { animation: fadeSlideUp 1s ease-out 0.4s both; }
@keyframes fadeSlideUp {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Hero badge - premium pill */
.hero .badge {
    background: linear-gradient(135deg, rgba(212, 168, 83, 0.95), rgba(184, 134, 11, 0.9)) !important;
    color: #0f172a !important;
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 600;
    letter-spacing: 0.05em;
    border: 1px solid rgba(255,255,255,0.3);
}

/* Hero typography - larger, bolder */
.hero h1 { font-size: clamp(2rem, 5vw, 3.5rem); line-height: 1.15; text-shadow: 0 2px 30px rgba(0,0,0,0.3); }
.hero .lead { font-size: 1.15rem; opacity: 0.95; text-shadow: 0 1px 10px rgba(0,0,0,0.2); }

/* Hero CTA buttons - glow effect */
.hero .btn-gold { padding: 16px 32px !important; font-size: 1.1rem; border-radius: 12px; transition: all 0.3s ease !important; }
.hero .btn-outline-light { padding: 16px 32px !important; border-width: 2px; border-radius: 12px; transition: all 0.3s ease; }
.hero .btn-outline-light:hover { background: rgba(255,255,255,0.15); transform: translateY(-2px); }

/* Nearby Institutions - glass card */
.hero .bg-white.bg-opacity-10 {
    background: rgba(255,255,255,0.08) !important;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 24px;
    padding: 1.75rem !important;
    box-shadow: 0 8px 32px rgba(0,0,0,0.2);
}
.hero .bg-white.bg-opacity-10 h5 { font-size: 1.1rem; letter-spacing: 0.05em; }

/* Trust badges - premium stat cards */
/* Luxury Trust Bar - JW Marriott / Taj style */
.trust-bar {
    background: linear-gradient(180deg, #fafaf9 0%, #f5f5f4 100%);
    border-top: 1px solid rgba(0,0,0,0.04);
    border-bottom: 1px solid rgba(0,0,0,0.04);
}
.trust-item {
    text-align: center;
    padding: 1.5rem 0.75rem;
    min-height: 120px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
}
@media (min-width: 768px) {
    .trust-item { padding: 1.75rem 1rem; min-height: 130px; }
}
@media (min-width: 992px) {
    .trust-item { min-height: 140px; }
}
.trust-bar .row > [class*="col-"]:not(:last-child) .trust-item::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 40px;
    width: 1px;
    background: linear-gradient(180deg, transparent, rgba(212, 168, 83, 0.3), transparent);
    display: none;
}
@media (min-width: 992px) {
    .trust-bar .row > [class*="col-"]:not(:last-child) .trust-item::after { display: block; }
}
.trust-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: #1e3a5f;
    font-size: 1.25rem;
    font-weight: 300;
    opacity: 0.9;
}
.trust-label {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: #0f172a;
    letter-spacing: 0.02em;
    margin-bottom: 0.25rem;
}
.trust-detail {
    font-size: 0.8rem;
    color: #78716c;
    letter-spacing: 0.03em;
    font-weight: 400;
}

/* Trust bar - equal height & centered alignment */
.trust-bar .row > [class*="col-"] {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Luxury section backgrounds */
.bg-white { background-color: #ffffff !important; }
.bg-light { background-color: #fafaf9 !important; }
.section-padding { padding: 5rem 0 !important; }
@media (min-width: 768px) {
    .section-padding { padding: 6rem 0 !important; }
}

/* Section titles - luxury editorial */
.section-padding .text-uppercase.fw-bold { letter-spacing: 0.25em; font-size: 0.7rem; color: #d4a853 !important; }
.section-padding .text-primary { color: #d4a853 !important; }
.section-padding h2 { font-size: clamp(1.75rem, 4vw, 2.5rem); color: #0f172a; }
.section-padding .lead.text-muted { font-size: 1.05rem; }

/* Why Choose Us cards - premium hover */
.card-hover.card {
    border-radius: 20px;
    overflow: hidden;
    border: none;
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.card-hover.card:hover {
    transform: translateY(-12px);
    box-shadow: 0 24px 50px rgba(30, 58, 95, 0.15);
}
.card-hover .rounded-circle { background: linear-gradient(135deg, rgba(30, 58, 95, 0.1), rgba(109, 40, 217, 0.08)) !important; color: #1e3a5f !important; }

/* Nav link hover - gold accent */
.navbar .nav-link { transition: color 0.3s ease; }
.navbar .nav-link:hover { color: #d4a853 !important; }

/* CTA banner - prominent */
.cta-banner { padding: 3rem 0 !important; }
.cta-banner h3 { font-size: 1.75rem; }
.cta-banner .btn-gold { padding: 16px 36px !important; font-size: 1.1rem; }

/* Attraction cards - premium hover */
.attraction-card {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
}
.attraction-card:hover {
    box-shadow: 0 20px 50px rgba(30, 58, 95, 0.2);
    transform: translateY(-8px);
}
.attraction-card .card-body { background: linear-gradient(to top, #0f172a, #1e3a5f); color: white; border-radius: 0 0 20px 20px; }
.attraction-card .card-body h6 { font-weight: 600; margin: 0; color: white !important; }

/* Footer - refined */
.footer a.text-white-50:hover { color: #d4a853 !important; }

/* Global gold button - premium */
.btn-gold {
    background: linear-gradient(135deg, #d4a853 0%, #b8860b 100%) !important;
    color: #0f172a !important;
    box-shadow: 0 4px 20px rgba(212, 168, 83, 0.4);
}
.btn-gold:hover {
    background: linear-gradient(135deg, #e6c068 0%, #d4a853 100%) !important;
    color: #0f172a !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(212, 168, 83, 0.5);
}

/* Inner page heroes - premium */
.page-hero {
    background: linear-gradient(105deg, rgba(15, 23, 42, 0.9) 50%, rgba(30, 58, 95, 0.7) 100%) !important;
    min-height: 45vh !important;
}
.page-hero h1 { text-shadow: 0 2px 20px rgba(0,0,0,0.3); }

/* Testimonial - elegant quote card */
.testimonial-card {
    background: linear-gradient(145deg, #ffffff 0%, #f8fafc 100%) !important;
    border-radius: 24px !important;
    border: 1px solid rgba(212, 168, 83, 0.2) !important;
    box-shadow: 0 20px 60px rgba(0,0,0,0.08) !important;
    padding: 2.5rem 2.5rem !important;
}
.testimonial-card .quote-icon { color: #d4a853 !important; opacity: 0.6; }
.testimonial-card .testimonial-text { font-size: 1.12rem; color: #334155; line-height: 1.8; }

/* WhatsApp button - pulse glow */
.whatsapp-fixed {
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.5), 0 0 0 0 rgba(37, 211, 102, 0.4);
    animation: whatsappPulse 2s infinite;
}
@keyframes whatsappPulse {
    0%, 100% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.5), 0 0 0 0 rgba(37, 211, 102, 0.4); }
    50% { box-shadow: 0 4px 25px rgba(37, 211, 102, 0.6), 0 0 0 15px rgba(37, 211, 102, 0); }
}
