/* ===== USER EXPERIENCE SECTION ===== */
.user-experience-section {
    padding: 60px 0;
    background: var(--dark-black);
}

.user-experience-section .section-subtitle {
    font-size: 28px;
    color: var(--text-primary);
    margin-bottom: 40px;
    font-weight: 600;
    text-align: center;
    position: relative;
}

.user-experience-section .section-subtitle::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--gradient-gold);
    border-radius: 2px;
}

.user-experience-container {
    width: 100%;
    padding: 20px 0 40px;
    position: relative;
}

/* PC VERSION - FIXED GRID FOR ALL CARDS */
.user-experience-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.experience-card {
    flex: 0 0 calc(33.333% - 17px); /* 3 cards per row with gap */
    background: rgba(20, 20, 20, 0.9);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
    backdrop-filter: blur(10px);
    min-width: 0; /* Important for flexbox wrapping */
}


.exp-header-top {
    position: relative;
}

.exp-img-box {
    width: 100%;
    height: 180px;
    overflow: hidden;
    position: relative;
}

.exp-img-box::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
}

.exp-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.experience-card:hover .exp-img-box img {
    transform: scale(1.1);
}

.exp-title {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    font-size: 20px;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
    z-index: 1;
}

.exp-content {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.exp-benefits {
    margin-bottom: 20px;
    flex: 1;
}



.benefit-item i {
    color: var(--champagne);
    font-size: 14px;
    min-width: 16px;
}

.benefit-item span {
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.4;
}

.exp-desc {
    color: var(--text-tertiary);
    font-size: 14px;
    line-height: 1.5;
    margin-top: auto;
    padding-top: 15px;
    border-top: 1px solid rgba(212, 175, 55, 0.15);
}

.scroll-hint {
    text-align: center;
    margin-top: 25px;
    color: var(--text-tertiary);
    font-size: 14px;
    animation: pulse 2s infinite;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.scroll-hint i {
    color: var(--champagne);
    animation: bounceRight 1s infinite;
}

@keyframes bounceRight {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(5px); }
}

/* ===== MOBILE STYLES ===== */
@media (max-width: 767px) {
    .user-experience-section {
        padding: 40px 0;
    }
    
    .user-experience-section .section-subtitle {
        font-size: 22px;
        margin-bottom: 30px;
    }
    
    .user-experience-container {
        padding: 15px 0 30px;
    }
    
/* MOBILE VERSION - HORIZONTAL SCROLL (COMPACT) */
.user-experience-row {
    display: flex;
    flex-wrap: nowrap;
    gap: 8px;                 /* giảm khoảng cách */
    padding: 0 8px;
    overflow-x: auto;
    scroll-behavior: smooth;
    justify-content: flex-start;
    max-width: 100%;
    margin: 0;
}

.experience-card {
    flex: 0 0 78vw;           /* thu nhỏ chiều ngang */
    max-width: 280px;
    min-width: 240px;
    width: 78vw;
}

.exp-img-box {
    height: 120px;            /* giảm chiều cao ảnh */
}

.exp-title {
    font-size: 15px;          /* chữ nhỏ hơn */
    bottom: 10px;
    left: 12px;
    right: 12px;
}

.exp-content {
    padding: 10px;            /* thu padding */
}



.benefit-item span {
    font-size: 12px;
    line-height: 1.35;
}

.exp-desc {
    font-size: 12px;
    line-height: 1.4;
}

.scroll-hint {
    font-size: 12px;
    margin-top: 12px;
    display: flex;
}


/* ===== TABLET STYLES ===== */
@media (min-width: 768px) and (max-width: 1023px) {
    .user-experience-section {
        padding: 50px 0;
    }
    
    .user-experience-section .section-subtitle {
        font-size: 24px;
        margin-bottom: 35px;
    }
    
    /* TABLET VERSION - 2 CARDS PER ROW */
    .user-experience-row {
        display: flex;
        flex-wrap: wrap;
        gap: 15px;
        padding: 0 20px;
        justify-content: center;
        overflow-x: visible;
        max-width: 100%;
        margin: 0;
    }
    
    .experience-card {
        flex: 0 0 calc(50% - 7.5px); /* 2 cards per row */
        max-width: 300px;
        min-width: 0;
    }
    
    .exp-img-box {
        height: 160px;
    }
    
    .exp-title {
        font-size: 19px;
    }
    
    .benefit-item span {
        font-size: 13.5px;
    }
    
    .scroll-hint {
        display: none;
    }
}

/* ===== DESKTOP STYLES ===== */
@media (min-width: 1024px) {
    .user-experience-section {
        padding: 80px 0;
    }
    
    .user-experience-section .section-subtitle {
        font-size: 32px;
        margin-bottom: 50px;
    }
    
    .user-experience-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 30px 0 60px;
    }
    
    /* DESKTOP VERSION - FIXED 3 COLUMNS GRID */
    .user-experience-row {
        display: flex;
        flex-wrap: wrap;
        gap: 25px;
        padding: 0;
        overflow-x: visible;
        justify-content: center;
        width: 100%;
    }
    
    /* Tính toán chiều rộng để hiển thị 3 cards mỗi hàng */
    .experience-card {
        flex: 0 0 calc(33.333% - 17px); /* 3 cards with gaps */
        max-width: calc(33.333% - 17px);
        min-width: 0;
    }
    
    .exp-img-box {
        height: 200px;
    }
    
    .exp-title {
        font-size: 22px;
    }
    
    .scroll-hint {
        display: none;
    }
}

/* Large Desktop - Hiển thị 4 cards mỗi hàng nếu màn hình rất rộng */
@media (min-width: 1400px) {
    .experience-card {
        flex: 0 0 calc(25% - 19px); /* 4 cards per row */
        max-width: calc(25% - 19px);
    }
}

/* ===== HERO CTA STYLES ===== */
.hero-cta {
    margin-top: 40px;
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards 1.2s;
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-hero {
    padding: 16px 32px;
    font-size: 16px;
    border-radius: 12px;
    background: var(--gradient-gold);
    color: var(--primary-black);
    font-weight: 700;
    border: none;
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
    transition: all 0.3s ease;
    min-width: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    cursor: pointer;
    text-decoration: none;
}

.btn-hero:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(212, 175, 55, 0.4);
}

.btn-hero:active {
    transform: translateY(-1px);
}

.cta-note {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 20px;
    padding: 12px 24px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 25px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    font-size: 14px;
    color: var(--light-champagne);
    backdrop-filter: blur(10px);
}

.cta-note i {
    color: var(--champagne);
}

/* Mobile adjustments for Hero CTA */
@media (max-width: 767px) {
    
    .btn-hero {
        width: 100%;
        max-width: 280px;
        padding: 14px 24px;
        font-size: 15px;
    }
    
    .cta-note {
        font-size: 13px;
        padding: 10px 20px;
    }
}

/* Tablet adjustments for Hero CTA */
@media (min-width: 768px) and (max-width: 1023px) {
    .hero-cta {
        gap: 15px;
    }
    
    .btn-hero {
        min-width: 180px;
        padding: 14px 28px;
    }
}

/* Chỉ giảm khoảng cách trên */
.hero-section {
    padding-top: 20px !important;
        background: rgba(0, 0, 0, 0.9);

}

@media (max-width: 767px) {
    .hero-section {
        padding-top: 10px !important;
        padding-bottom: 10px !important;
    background: rgba(0, 0, 0, 0.9);

    }
}

.benefits-section {
    padding-top: 20px !important;
}

@media (max-width: 767px) {
    .benefits-section {
        padding-top: 10px !important;
        padding-bottom: 10px !important;

    }
}

.services-section {
    padding-top: 20px !important;
}

@media (max-width: 767px) {
    .services-section {
        padding-top: 10px !important;
        padding-bottom: 10px !important;

    }
}



.main-footer {
    padding-top: 20px !important;
}

@media (max-width: 767px) {
    .main-footer {
        padding-top: 10px !important;
        padding-bottom: 10px !important;

    }
}

.hero-cta {
    padding-top: 20px !important;
}

@media (max-width: 767px) {
    .hero-cta {
        padding-top: 10px !important;
        padding-bottom: 10px !important;

    }
}

}

/* ===============================
   EXPERIENCE BOOKING BUTTON STYLES - LUXURY VERSION
================================ */
.exp-book-section {
    margin: 30px 0;
    text-align: center;
}

.exp-book-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    padding: 18px 36px;
    font-size: 18px;
    font-weight: 700;
    color: #000;
    background: linear-gradient(135deg, 
        #FFD700 0%, 
        #F0C420 25%, 
        #D4AF37 50%, 
        #B8860B 75%, 
        #966919 100%);
    border: none;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.4s ease;
    text-decoration: none;
    box-shadow: 
        0 8px 25px rgba(184, 134, 11, 0.4),
        0 2px 5px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
    min-width: 240px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* Metallic border effect */
.exp-book-btn::before {
    content: '';
    position: absolute;
    top: 1px;
    left: 1px;
    right: 1px;
    bottom: 1px;
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.1) 0%,
        rgba(255, 255, 255, 0.05) 50%,
        rgba(0, 0, 0, 0.05) 100%);
    border-radius: 19px;
    z-index: 1;
}

.exp-book-btn:hover {
    transform: translateY(-5px);
    box-shadow: 
        0 15px 35px rgba(184, 134, 11, 0.6),
        0 5px 15px rgba(0, 0, 0, 0.1);
    background: linear-gradient(135deg, 
        #FFEC8B 0%, 
        #FFD700 25%, 
        #F0C420 50%, 
        #D4AF37 75%, 
        #B8860B 100%);
}

.exp-book-btn:active {
    transform: translateY(-2px);
    transition: all 0.1s ease;
}

.exp-book-btn i,
.exp-book-btn span {
    position: relative;
    z-index: 2;
}

.exp-book-btn i {
    font-size: 22px;
    color: #000;
    filter: drop-shadow(0 2px 3px rgba(255, 255, 255, 0.3));
    transition: transform 0.5s ease;
}

.exp-book-btn:hover i {
    transform: rotate(10deg) scale(1.1);
}

/* Responsive */
@media (max-width: 768px) {
    .exp-book-btn {
        padding: 15px 28px;
        font-size: 12px;
        min-width: 200px;
        gap: 12px;
        border-radius: 16px;
    }
    
    .exp-book-btn i {
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .exp-book-btn {
        padding: 13px 24px;
        font-size: 12px;
        min-width: 180px;
        gap: 10px;
        border-radius: 14px;
    }
    
    .exp-book-btn i {
        font-size: 12px;
    }
}