/* ===============
   INDEX PAGE - LUXURY DARK MODE RESORT CASINO STYLES
   Inspired by Reference: Radisson Luxury Hotel/Resort Aesthetic in Obsidian Dark Mode
   =============== */

/* ===============
   HERO SECTION (Dark Luxury Style)
   =============== */
.hero {
    position: relative;
    padding: 120px 0 160px;
    background: 
        radial-gradient(ellipse at 50% 20%, rgba(59, 130, 246, 0.25) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 60%, rgba(251, 191, 36, 0.12) 0%, transparent 50%),
        linear-gradient(180deg, rgba(8, 12, 22, 0.7) 0%, rgba(8, 12, 22, 0.95) 100%),
        url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="1440" height="700" viewBox="0 0 1440 700"><defs><linearGradient id="g" x1="0" y1="0" x2="1" y2="1"><stop offset="0%25" stop-color="%231e3a8a"/><stop offset="50%25" stop-color="%230f172a"/><stop offset="100%25" stop-color="%23050810"/></linearGradient><radialGradient id="r" cx="50%25" cy="40%25" r="50%25"><stop offset="0%25" stop-color="%2338bdf8" stop-opacity="0.15"/><stop offset="100%25" stop-color="%23000000" stop-opacity="0"/></radialGradient></defs><rect width="1440" height="700" fill="url(%23g)"/><circle cx="720" cy="280" r="380" fill="url(%23r)"/><g opacity="0.08" stroke="%23ffffff" stroke-width="1"><path d="M0 200 Q 720 120 1440 200"/><path d="M0 380 Q 720 280 1440 380"/><path d="M0 540 Q 720 460 1440 540"/></g></svg>') center center / cover no-repeat;
    color: #ffffff;
    text-align: center;
    overflow: visible;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 80px;
    background: linear-gradient(to top, var(--bg-color), transparent);
    pointer-events: none;
}

.hero-inner {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    z-index: 2;
    padding-bottom: 30px;
}

.hero-kicker {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    color: var(--primary-light);
    margin-bottom: 16px;
    text-shadow: 0 0 12px rgba(96, 165, 250, 0.4);
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 4.6rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.05;
    color: #ffffff;
    margin-bottom: 22px;
    text-shadow: 0 4px 30px rgba(0, 0, 0, 0.8);
    text-transform: capitalize;
}

.hero-title span {
    color: #ffffff;
    background: linear-gradient(180deg, #ffffff 0%, #cbd5e1 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-desc {
    font-size: 1.15rem;
    font-weight: 400;
    line-height: 1.7;
    color: #cbd5e1;
    max-width: 680px;
    margin: 0 auto 34px;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.6);
}

/* Play Button (Radisson Style Circle Action) */
.hero-play-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: var(--gradient-vibrant);
    color: #ffffff;
    font-size: 1.5rem;
    box-shadow: 0 8px 30px rgba(37, 99, 235, 0.6), 0 0 0 10px rgba(37, 99, 235, 0.2);
    transition: all var(--transition-speed);
    cursor: pointer;
    margin-bottom: 10px;
}

.hero-play-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 40px rgba(37, 99, 235, 0.8), 0 0 0 16px rgba(37, 99, 235, 0.3);
    color: #ffffff;
}

.hero-play-btn span {
    margin-left: 4px;
    line-height: 1;
}

/* ===============
   FLOATING QUICK STATS / BOOKING BAR (Dark Mode Overhanging Widget)
   =============== */
.floating-bar-wrapper {
    position: relative;
    z-index: 10;
    margin-top: -65px;
    margin-bottom: 70px;
}

.floating-bar {
    background: #111a2e;
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-floating);
    display: grid;
    grid-template-columns: repeat(3, 1fr) 1.4fr;
    align-items: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.floating-bar-col {
    padding: 24px 30px;
    border-right: 1px solid rgba(255, 255, 255, 0.08);
    text-align: left;
    transition: background-color var(--transition-fast);
}

.floating-bar-col:hover {
    background-color: rgba(255, 255, 255, 0.04);
}

.floating-bar-label {
    display: block;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: #94a3b8;
    margin-bottom: 6px;
}

.floating-bar-value {
    display: flex;
    align-items: baseline;
    gap: 8px;
}

.floating-bar-value .main-num {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 800;
    color: #ffffff;
    line-height: 1;
}

.floating-bar-value .sub-text {
    font-size: 0.85rem;
    font-weight: 600;
    color: #60a5fa;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.floating-bar-action {
    padding: 24px 30px;
    text-align: center;
}

.floating-bar-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 16px 24px;
    background: var(--gradient-vibrant);
    color: #ffffff;
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    border-radius: var(--radius-xs);
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.4);
    transition: all var(--transition-speed);
}

.floating-bar-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(37, 99, 235, 0.65);
    color: #ffffff;
}

/* ===============
   SECTION: ABOUT US / MISSION & VISION (Dark Mode)
   =============== */
.about-section {
    padding: 30px 0 80px;
    text-align: center;
}

.about-header {
    max-width: 820px;
    margin: 0 auto 36px;
}

.about-title {
    font-family: var(--font-heading);
    font-size: 2.9rem;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: -0.02em;
    line-height: 1.2;
    margin-bottom: 20px;
}

.about-lead {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #94a3b8;
    margin-bottom: 28px;
}

.about-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 13px 32px;
    background: var(--gradient-vibrant);
    color: #ffffff;
    font-weight: 700;
    font-size: 0.92rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    border-radius: var(--radius-xs);
    box-shadow: 0 4px 16px rgba(37, 99, 235, 0.4);
    transition: all var(--transition-speed);
}

.about-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(37, 99, 235, 0.6);
    color: #ffffff;
}

/* Featured Video / Showcase Banner Card */
.about-showcase-frame {
    margin-top: 50px;
    position: relative;
    border-radius: var(--radius-sm);
    overflow: hidden;
    box-shadow: var(--shadow-large);
    background: #0d1424;
    aspect-ratio: 16/8.5;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.about-showcase-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.85;
    transition: transform 0.6s ease;
}

.about-showcase-frame:hover img {
    transform: scale(1.03);
}

.showcase-play-overlay {
    position: absolute;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(13, 20, 36, 0.85);
    color: var(--primary-light);
    border: 2px solid rgba(59, 130, 246, 0.5);
    font-size: 1.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.7);
    transition: all var(--transition-speed);
    z-index: 2;
    backdrop-filter: blur(8px);
}

.showcase-play-overlay span {
    margin-left: 4px;
    line-height: 1;
}

.about-showcase-frame:hover .showcase-play-overlay {
    transform: scale(1.12);
    background: var(--primary-color);
    color: #ffffff;
    border-color: #ffffff;
    box-shadow: 0 0 35px rgba(59, 130, 246, 0.8);
}

/* Stats Badges Grid */
.about-stats-strip {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.stat-pill-card {
    background: #111a2e;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-sm);
    padding: 22px 20px;
    text-align: center;
    box-shadow: var(--shadow-xs);
    transition: transform var(--transition-fast), box-shadow var(--transition-fast), border-color var(--transition-fast);
}

.stat-pill-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-medium);
    border-color: var(--primary-light);
    background: #15223d;
}

.stat-pill-icon {
    font-size: 1.8rem;
    margin-bottom: 8px;
    display: inline-block;
}

.stat-pill-title {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #94a3b8;
    margin-bottom: 4px;
}

.stat-pill-desc {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    color: #ffffff;
}

/* ===============
   SECTION: "OUR ROOMS" / FEATURED GAMES SHOWCASE (Dark Mode)
   =============== */
.rooms-section {
    padding: 80px 0;
    background: #0d1424;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.rooms-showcase-card {
    background: #131e36;
    border-radius: var(--radius-sm);
    overflow: hidden;
    box-shadow: var(--shadow-large);
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 40px;
}

.rooms-showcase-img-wrap {
    position: relative;
    overflow: hidden;
    background: #070a12;
    min-height: 420px;
}

.rooms-showcase-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.rooms-showcase-card:hover .rooms-showcase-img {
    transform: scale(1.05);
}

.rooms-showcase-content {
    padding: 50px 48px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: left;
    position: relative;
}

.room-price-badge {
    display: inline-flex;
    align-items: baseline;
    gap: 6px;
    color: #fbbf24;
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 8px;
    text-shadow: 0 0 10px rgba(251, 191, 36, 0.3);
}

.room-price-badge .unit {
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 600;
    color: #94a3b8;
}

.room-title {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 14px;
    line-height: 1.2;
}

.room-desc {
    font-size: 0.96rem;
    line-height: 1.7;
    color: #94a3b8;
    margin-bottom: 24px;
}

.room-amenities-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px 20px;
    margin-bottom: 30px;
}

.room-amenity {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.88rem;
    font-weight: 600;
    color: #cbd5e1;
}

.room-amenity-icon {
    color: var(--primary-light);
    font-size: 1rem;
    flex-shrink: 0;
}

.room-btn {
    align-self: flex-start;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 13px 32px;
    background: var(--gradient-vibrant);
    color: #ffffff;
    font-weight: 700;
    font-size: 0.92rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    border-radius: var(--radius-xs);
    box-shadow: 0 4px 16px rgba(37, 99, 235, 0.4);
    transition: all var(--transition-speed);
}

.room-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(37, 99, 235, 0.65);
    color: #ffffff;
}

/* Category Grid (Template dynamic tags) */
.game-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
    gap: 24px;
    margin-top: 40px;
}

.game-card {
    background: #111a2e;
    border-radius: var(--radius-sm);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: var(--shadow-soft);
    transition: all var(--transition-speed);
}

.game-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-large);
    border-color: var(--primary-light);
    background: #16223b;
}

.game-card-img-wrap {
    position: relative;
    aspect-ratio: 16/10;
    overflow: hidden;
    background: #070a12;
}

.game-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.game-card:hover .game-card-img {
    transform: scale(1.08);
}

.game-card-content {
    padding: 20px;
    text-align: left;
}

.game-card-content h3 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 8px;
}

.game-card-content p {
    font-size: 0.88rem;
    color: #94a3b8;
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* ===============
   SECTION: TESTIMONIAL / REVIEWS (Dark Luxury Quote Card)
   =============== */
.testimonial-section {
    padding: 90px 0;
    background: var(--bg-color);
}

.testimonial-card {
    background: #111a2e;
    border-radius: var(--radius-sm);
    padding: 60px 50px 45px;
    max-width: 860px;
    margin: 0 auto;
    text-align: center;
    box-shadow: var(--shadow-large);
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
}

.testimonial-quote-mark {
    font-family: var(--font-heading);
    font-size: 5rem;
    line-height: 0.8;
    color: var(--primary-light);
    font-weight: 900;
    margin-bottom: 16px;
    letter-spacing: -0.05em;
    text-shadow: 0 0 20px rgba(96, 165, 250, 0.35);
}

.testimonial-author {
    font-family: var(--font-heading);
    font-size: 1.45rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 6px;
}

.testimonial-stars {
    color: #fbbf24;
    font-size: 1.1rem;
    letter-spacing: 3px;
    margin-bottom: 20px;
    text-shadow: 0 0 8px rgba(251, 191, 36, 0.4);
}

.testimonial-text {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #cbd5e1;
    max-width: 680px;
    margin: 0 auto 36px;
    font-style: italic;
    transition: opacity 0.2s ease;
}

.testimonial-avatars {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
}

.avatar-item {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid transparent;
    cursor: pointer;
    transition: all var(--transition-speed);
    opacity: 0.4;
    background: #1e293b;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.avatar-item.active,
.avatar-item:hover {
    border-color: var(--primary-light);
    transform: scale(1.18);
    opacity: 1;
    box-shadow: 0 0 15px rgba(59, 130, 246, 0.6);
    background: #111a2e;
}

.avatar-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ===============
   SECTION: "OUR BLOG POSTS" (Dark Mode 3-Column Grid)
   =============== */
.blog-section {
    padding: 80px 0 90px;
    background: #0d1424;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.news-card {
    background: #111a2e;
    border-radius: var(--radius-sm);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: var(--shadow-soft);
    transition: all var(--transition-speed);
    display: flex;
    flex-direction: column;
}

.news-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-large);
    border-color: var(--primary-light);
    background: #16223b;
}

.news-card-img-wrap {
    position: relative;
    aspect-ratio: 16/10;
    overflow: hidden;
    background: #070a12;
}

.news-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.news-card:hover .news-card-img {
    transform: scale(1.08);
}

.news-card-tag {
    position: absolute;
    bottom: 14px;
    left: 14px;
    background: var(--primary-color);
    color: #ffffff;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 4px 12px;
    border-radius: var(--radius-xs);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.news-card-body {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex: 1;
    text-align: left;
}

.news-card-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #64748b;
    margin-bottom: 10px;
}

.news-card-body h4 {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 12px;
    line-height: 1.35;
    transition: color var(--transition-fast);
}

.news-card:hover .news-card-body h4 {
    color: var(--primary-light);
}

.news-card-body p {
    font-size: 0.92rem;
    color: #94a3b8;
    line-height: 1.65;
    margin-bottom: 18px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    flex: 1;
}

.news-card-read-more {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--primary-light);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: gap var(--transition-fast);
}

.news-card-read-more:hover {
    gap: 10px;
    color: #ffffff;
}

/* ===============
   PAYMENT METHODS SECTION (Dark Mode)
   =============== */
.payment-section {
    padding: 80px 0;
    text-align: center;
}

.payment-lead {
    font-size: 1.05rem;
    color: #94a3b8;
    margin-bottom: 40px;
}

.payment-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.payment-card {
    background: #111a2e;
    border-radius: var(--radius-sm);
    padding: 32px 24px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: var(--shadow-soft);
    text-align: center;
    transition: all var(--transition-speed);
}

.payment-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-large);
    border-color: var(--primary-light);
    background: #16223b;
}

.payment-icon {
    font-size: 2.4rem;
    margin-bottom: 14px;
    display: inline-block;
}

.payment-card h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 6px;
}

.payment-card p {
    font-size: 0.88rem;
    color: #94a3b8;
    margin-bottom: 16px;
}

.payment-badge {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--primary-light);
    background: rgba(59, 130, 246, 0.15);
    border: 1px solid rgba(59, 130, 246, 0.3);
    padding: 4px 12px;
    border-radius: var(--radius-full);
}

/* ===============
   3 STEPS TO START (Dark Mode)
   =============== */
.how-to-start {
    padding: 80px 0;
    background: #0d1424;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.steps-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr;
    align-items: center;
    gap: 20px;
    margin: 50px 0 40px;
}

.step-card {
    background: #111a2e;
    border-radius: var(--radius-sm);
    padding: 36px 28px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: var(--shadow-soft);
    text-align: center;
    position: relative;
}

.step-number {
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--primary-color);
    color: #ffffff;
    font-weight: 800;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 15px rgba(59, 130, 246, 0.6);
}

.step-icon {
    font-size: 2.2rem;
    margin: 10px 0 14px;
}

.step-card h3 {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 10px;
}

.step-card p {
    font-size: 0.9rem;
    color: #94a3b8;
    line-height: 1.6;
}

.step-connector {
    width: 30px;
    height: 2px;
    background: rgba(255, 255, 255, 0.15);
    position: relative;
}

.step-connector::after {
    content: '▶';
    position: absolute;
    right: -4px;
    top: -6px;
    font-size: 0.7rem;
    color: #64748b;
}

.steps-cta {
    text-align: center;
    margin-top: 30px;
}

/* ===============
   TRUST & SECURITY SECTION (Dark Mode)
   =============== */
.trust-section {
    padding: 80px 0;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-top: 40px;
}

.trust-item {
    background: #111a2e;
    border-radius: var(--radius-sm);
    padding: 30px 24px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: var(--shadow-soft);
    text-align: left;
    transition: all var(--transition-speed);
}

.trust-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-medium);
    border-color: var(--primary-light);
    background: #16223b;
}

.trust-icon {
    font-size: 2rem;
    margin-bottom: 14px;
    display: inline-block;
}

.trust-item h4 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 8px;
}

.trust-item p {
    font-size: 0.9rem;
    color: #94a3b8;
    line-height: 1.65;
}

/* ===============
   FAQ ACCORDION SECTION (Dark Mode)
   =============== */
.faq-section {
    padding: 80px 0;
    background: #0d1424;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.faq-list {
    max-width: 820px;
    margin: 40px auto 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background: #111a2e;
    border-radius: var(--radius-sm);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: var(--shadow-xs);
    overflow: hidden;
    transition: all var(--transition-speed);
}

.faq-item.active {
    border-color: var(--primary-light);
    box-shadow: 0 0 20px rgba(59, 130, 246, 0.25);
    background: #15223d;
}

.faq-question {
    width: 100%;
    padding: 22px 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    color: #ffffff;
    text-align: left;
    background: transparent;
    cursor: pointer;
    transition: color var(--transition-fast);
}

.faq-question:hover {
    color: var(--primary-light);
}

.faq-icon {
    font-family: var(--font-body);
    font-size: 1.4rem;
    font-weight: 400;
    color: var(--primary-light);
    transition: transform var(--transition-speed);
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
    padding: 0 28px;
    background: transparent;
}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding: 0 28px 24px;
}

.faq-answer p {
    font-size: 0.95rem;
    line-height: 1.75;
    color: #cbd5e1;
}

/* ===============
   SCROLL REVEAL ANIMATIONS
   =============== */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===============
   RESPONSIVE DESIGN (INDEX)
   =============== */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 3.6rem;
    }
    .floating-bar {
        grid-template-columns: 1fr 1fr;
    }
    .floating-bar-col {
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }
    .floating-bar-col:nth-child(2) {
        border-right: none;
    }
    .floating-bar-action {
        grid-column: span 2;
    }
    .rooms-showcase-card {
        grid-template-columns: 1fr;
    }
    .rooms-showcase-img-wrap {
        min-height: 300px;
    }
    .rooms-showcase-content {
        padding: 36px 30px;
    }
    .news-grid {
        grid-template-columns: 1fr 1fr;
    }
    .about-stats-strip {
        grid-template-columns: 1fr 1fr;
    }
    .payment-grid {
        grid-template-columns: 1fr 1fr;
    }
    .trust-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 80px 0 120px;
    }
    .hero-title {
        font-size: 2.6rem;
    }
    .hero-desc {
        font-size: 0.98rem;
    }
    .floating-bar-wrapper {
        margin-top: -40px;
        margin-bottom: 40px;
    }
    .floating-bar {
        grid-template-columns: 1fr;
    }
    .floating-bar-col {
        border-right: none;
        padding: 16px 20px;
    }
    .floating-bar-action {
        grid-column: span 1;
        padding: 16px 20px;
    }
    .about-title {
        font-size: 2.1rem;
    }
    .steps-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }
    .step-connector {
        display: none;
    }
    .news-grid {
        grid-template-columns: 1fr;
    }
    .about-stats-strip {
        grid-template-columns: 1fr;
    }
    .payment-grid {
        grid-template-columns: 1fr;
    }
    .trust-grid {
        grid-template-columns: 1fr;
    }
    .testimonial-card {
        padding: 40px 24px 30px;
    }
    .testimonial-quote-mark {
        font-size: 3.5rem;
    }
}