/* =====================================================
   HOME PAGE - EXTRA SECTIONS CSS
   ===================================================== */

/* ---- Hero Enhancements ---- */
.hero-slideshow {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}
.hero-slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 1.8s ease-in-out, transform 8s ease-out;
    transform: scale(1.05); /* Start slightly zoomed for a subtle zoom animation */
}
.hero-slide.active {
    opacity: 1;
    transform: scale(1); /* Smooth zoom-out effect when active */
}
.hero-slide::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.7), rgba(0,0,0,0.5), rgba(0,0,0,0.8));
}
.hero-particles {
    position: absolute;
    inset: 0;
    z-index: 1;
}
.hero-bg-gradient {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 30%, rgba(255,184,0,0.07) 0%, transparent 70%);
    z-index: 2;
}
.hero-badge {
    display: inline-block;
    background: rgba(255,184,0,0.12);
    border: 1px solid rgba(255,184,0,0.4);
    color: var(--color-yellow);
    padding: 8px 22px;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 1px;
    animation: fadeInDown 0.8s ease forwards;
}
.btn-outline-hero {
    background: transparent;
    border: 2px solid var(--color-yellow);
    color: var(--color-yellow);
    border-radius: 50px;
    padding: 12px 30px;
    font-weight: 800;
    font-size: 1.1rem;
    transition: var(--transition);
    text-transform: uppercase;
}
.btn-outline-hero:hover {
    background: var(--color-yellow);
    color: #000;
}

/* Scroll Down Arrow */
.scroll-down-arrow {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    animation: bounceDown 2s infinite;
}
.scroll-down-arrow .arrow-icon {
    width: 42px;
    height: 42px;
    border: 2px solid rgba(255,184,0,0.5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-yellow);
    font-size: 1rem;
}
@keyframes bounceDown {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(10px); }
}

/* ---- Section Header Styles ---- */
.section-header {
    margin-bottom: 20px;
}
.section-tag {
    display: inline-block;
    background: rgba(255,107,0,0.15);
    border: 1px solid rgba(255,107,0,0.4);
    color: var(--color-orange);
    padding: 5px 18px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 14px;
}
.section-desc {
    max-width: 600px;
    margin: 0 auto;
    color: #b8beca !important;
    font-size: 1.1rem;
    margin-top: 10px;
}

/* ---- STATS SECTION ---- */
.stats-section {
    padding: 60px 0;
    background: rgba(255,184,0,0.04);
    border-top: 1px solid rgba(255,184,0,0.15);
    border-bottom: 1px solid rgba(255,184,0,0.15);
    position: relative;
    overflow: hidden;
}
.stats-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, rgba(255,184,0,0.05) 0%, transparent 70%);
}
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    position: relative;
    z-index: 2;
}
.stat-item {
    text-align: center;
    padding: 30px 20px;
    border-right: 1px solid rgba(255,184,0,0.15);
    position: relative;
}
.stat-item:last-child { border-right: none; }
.stat-icon {
    font-size: 2.2rem;
    color: var(--color-orange);
    margin-bottom: 14px;
    animation: pulse 2.5s infinite;
}
@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}
.stat-number {
    display: inline;
    font-family: var(--font-heading);
    font-size: 4rem;
    font-weight: 700;
    color: var(--color-yellow);
    line-height: 1;
}
.stat-plus {
    display: inline;
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-orange);
}
.stat-label {
    margin-top: 8px;
    color: #b0b8c8;
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 0.5px;
}

/* ---- ROOM CARD ENHANCEMENTS ---- */
.room-card-new .room-img-wrapper-new {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    height: 220px;
    margin-bottom: 20px;
}
.room-card-new .room-img-wrapper-new img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    border-radius: 20px;
    margin-bottom: 0;
}
.room-card-new:hover .room-img-wrapper-new img {
    transform: scale(1.08);
}
.room-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
    border-radius: 20px;
}
.room-card-new:hover .room-overlay { opacity: 1; }
.room-badge {
    position: absolute;
    top: 14px;
    right: 14px;
    background: var(--color-orange);
    color: #fff;
    padding: 5px 14px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.85rem;
    z-index: 2;
}
.room-card-body { padding: 0 10px 10px; }
.room-amenities {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}
.room-amenities span {
    font-size: 0.85rem;
    color: #b0b8c8;
    font-weight: 600;
}
.room-amenities i { margin-right: 5px; }

/* ---- WHY CHOOSE US ---- */
.why-section { background: rgba(255,107,0,0.02); }
.why-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,184,0,0.2);
    border-radius: 24px;
    padding: 36px 24px;
    text-align: center;
    transition: var(--transition);
    height: 100%;
}
.why-card:hover {
    border-color: var(--color-yellow);
    transform: translateY(-8px);
    background: rgba(255,184,0,0.06);
    box-shadow: 0 20px 40px rgba(255,184,0,0.1);
}
.why-icon {
    width: 72px;
    height: 72px;
    background: linear-gradient(135deg, var(--color-yellow), var(--color-orange));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: #000;
    margin: 0 auto 20px;
    transition: var(--transition);
}
.why-card:hover .why-icon {
    transform: rotateY(180deg);
}
.why-card h4 {
    color: var(--color-yellow);
    font-size: 1.3rem;
    margin-bottom: 12px;
}
.why-card p {
    color: #b0b8c8 !important;
    font-size: 0.95rem;
}

/* ---- HIGHLIGHT CARD ---- */
.highlight-card .highlight-icon-wrap {
    font-size: 4rem;
    margin-bottom: 20px;
    display: block;
    transition: var(--transition);
}
.highlight-card:hover .highlight-icon-wrap {
    transform: scale(1.1) rotate(-5deg);
}

/* ---- PACKAGES SECTION ---- */
.packages-section { background: rgba(0,0,0,0.3); }
.package-card {
    background: rgba(255,255,255,0.03);
    border: 2px solid rgba(255,184,0,0.2);
    border-radius: 28px;
    padding: 36px 28px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
    height: 100%;
}
.package-card:hover {
    border-color: var(--color-yellow);
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(255,184,0,0.15);
}
.package-card.package-featured {
    border-color: var(--color-yellow);
    background: rgba(255,184,0,0.06);
    box-shadow: 0 20px 50px rgba(255,184,0,0.12);
}
.package-ribbon {
    position: absolute;
    top: 18px;
    right: -10px;
    background: var(--color-orange);
    color: #fff;
    padding: 4px 20px;
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 1px;
    border-radius: 4px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}
.package-ribbon.best { background: var(--color-yellow); color: #000; }
.package-ribbon.biz { background: #2d7dd2; }
.package-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--color-orange), var(--color-yellow));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: #000;
    margin: 0 auto 18px;
}
.package-title {
    color: var(--color-yellow);
    font-size: 1.4rem;
    margin-bottom: 10px;
}
.package-card > p {
    color: #b0b8c8 !important;
    font-size: 0.92rem;
    margin-bottom: 18px;
}
.package-features {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}
.package-features li {
    color: #c8d0dc !important;
    font-size: 0.92rem;
    padding: 7px 0;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    display: flex;
    align-items: center;
    gap: 10px;
}

/* AOS fallback: keep key section content visible even if animation init misses */
.why-section [data-aos]:not(.aos-animate),
.packages-section [data-aos]:not(.aos-animate) {
    opacity: 1 !important;
    transform: none !important;
}

/* ---- DINING SECTION ---- */
.dining-section { background: rgba(255,107,0,0.02); }
.dining-img-wrapper { position: relative; display: inline-block; width: 100%; }
.dining-badge-float {
    position: absolute;
    bottom: -16px;
    right: 20px;
    background: var(--color-yellow);
    color: #000;
    padding: 10px 22px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 0.9rem;
    box-shadow: 0 10px 24px rgba(255,184,0,0.35);
    white-space: nowrap;
    z-index: 5;
}
.dining-features { display: flex; flex-direction: column; gap: 12px; }
.dining-feat-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #d0d8e4 !important;
    font-size: 1rem;
    font-weight: 600;
}
.dining-feat-item i { font-size: 1.3rem; }

/* ---- TESTIMONIALS ---- */
.testimonials-section { background: rgba(0,0,0,0.2); }
.testimonial-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,184,0,0.18);
    border-radius: 24px;
    padding: 32px 28px;
    transition: var(--transition);
    height: 100%;
    position: relative;
}
.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 16px;
    right: 24px;
    font-size: 6rem;
    color: rgba(255,184,0,0.1);
    font-family: Georgia, serif;
    line-height: 1;
}
.testimonial-card:hover {
    border-color: var(--color-yellow);
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(255,184,0,0.1);
}
.testimonial-card.testi-featured {
    border-color: var(--color-yellow);
    background: rgba(255,184,0,0.06);
}
.testi-stars { color: var(--color-yellow); font-size: 1.1rem; margin-bottom: 16px; }
.testi-text {
    color: #c0c8d8 !important;
    font-size: 0.97rem;
    line-height: 1.75;
    margin-bottom: 20px;
    font-style: italic;
}
.testi-author {
    display: flex;
    align-items: center;
    gap: 14px;
    border-top: 1px solid rgba(255,255,255,0.07);
    padding-top: 16px;
}
.testi-avatar {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--color-yellow), var(--color-orange));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    font-weight: 800;
    font-size: 1.2rem;
    flex-shrink: 0;
}
.testi-name {
    color: #fff;
    font-weight: 700;
    font-size: 1rem;
}
.testi-location { color: #888; font-size: 0.85rem; }

/* ---- CTA SECTION ---- */
.cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(255,184,0,0.08) 0%, rgba(255,107,0,0.06) 100%);
    border-top: 1px solid rgba(255,184,0,0.2);
    border-bottom: 1px solid rgba(255,184,0,0.2);
    position: relative;
    overflow: hidden;
}
.cta-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255,184,0,0.08) 0%, transparent 70%);
    pointer-events: none;
}
.cta-inner { position: relative; z-index: 2; }
.cta-title {
    font-family: var(--font-heading);
    font-size: 4rem;
    font-weight: 700;
    color: var(--color-yellow);
    margin: 12px 0;
}
.cta-subtitle {
    color: #b0b8c8 !important;
    font-size: 1.15rem;
    max-width: 550px;
    margin: 0 auto;
}
.btn-outline-cta {
    background: transparent;
    border: 2px solid var(--color-white);
    color: var(--color-white);
    border-radius: 50px;
    padding: 12px 30px;
    font-weight: 800;
    font-size: 1.1rem;
    transition: var(--transition);
    text-transform: uppercase;
}
.btn-outline-cta:hover {
    background: var(--color-white);
    color: #000;
}
.cta-info {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}
.cta-info-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #b0b8c8;
    font-weight: 600;
    font-size: 0.97rem;
}
.cta-info-item i { font-size: 1.2rem; }
.cta-info-emails {
    align-items: flex-start;
}
.cta-email-list {
    display: flex;
    flex-direction: column;
    gap: 4px;
    text-align: left;
}
.cta-email-list a,
.cta-info-item a {
    color: #b0b8c8;
    text-decoration: none;
    font-weight: 600;
    word-break: break-word;
}
.cta-email-list a:hover,
.cta-info-item a:hover {
    color: var(--color-yellow);
}

/* ---- ANIMATIONS ---- */
@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ---- RESPONSIVE ---- */
@media (max-width: 991px) {
    .section-header .section-desc {
        padding: 0 15px;
    }
    .featured-room-card .room-card-body {
        padding: 0 5px 10px;
    }
    .cta-actions {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }
    .cta-actions .btn {
        width: 100%;
        max-width: 320px;
        margin: 0 !important;
    }
}
@media (max-width: 768px) {
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .stat-item { border-right: none; border-bottom: 1px solid rgba(255,184,0,0.15); }
    .stat-item:nth-child(odd) { border-right: 1px solid rgba(255,184,0,0.15); }
    .stat-item:last-child, .stat-item:nth-last-child(2) { border-bottom: none; }
    .cta-title { font-size: 2.2rem; }
    .cta-info { gap: 20px; flex-direction: column; align-items: center; }
    .cta-info-emails { align-items: center; }
    .cta-email-list { text-align: center; }
    .scroll-down-arrow { bottom: 15px; }
    .announcements-bar { font-size: 12px; }
}
@media (max-width: 576px) {
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .stat-number { font-size: 2.4rem; }
    .stat-label { font-size: 0.85rem; }
    .cta-title { font-size: 1.8rem; }
    .cta-subtitle { font-size: 0.95rem; padding: 0 10px; }
    .section-tag { font-size: 0.75rem; letter-spacing: 1px; }
    .blog-card-img { height: 180px; }
    .testimonial-card { padding: 20px 16px; }
}
