/* --- Experiences Page Specific CSS --- */

.package-section {
    background-color: var(--valley-mist); /* Slightly off-white */
}

/* Utilities */
.text-center {
    text-align: center !important;
}

.text-dark {
    color: var(--mountain-dusk);
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 400;
}

.text-muted {
    color: #666;
}

.section-header {
    margin-bottom: 5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Filter Navigation */
.filter-nav {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 4rem;
    flex-wrap: wrap;
}

.filter-btn {
    background: transparent;
    border: none;
    padding: 8px 0;
    margin: 0 1.5rem;
    font-family: 'Jost', sans-serif;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.15em;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #999;
    position: relative;
}

.filter-btn:hover {
    color: #333;
}

.filter-btn::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 50%;
    width: 0;
    height: 2px;
    background-color: var(--dzong-gold);
    transition: all 0.3s cubic-bezier(0.19, 1, 0.22, 1);
    transform: translateX(-50%);
}

.filter-btn.active {
    color: #1a1a1a;
}

.filter-btn.active::after {
    width: 100%;
}

/* Package Grid */
.package-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    min-height: 400px;
}

.package-card {
    display: flex;
    flex-direction: column;
    background: transparent;
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.package-card.hidden {
    display: none;
}

.package-img {
    width: 100%;
    aspect-ratio: 1/1.1;
    overflow: hidden;
    margin-bottom: 1.5rem;
}

.package-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.19, 1, 0.22, 1);
}

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

/* Card Info */
.package-info {
    padding: 0.5rem 0;
}

.package-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 24px;
    font-weight: 400;
    color: #1a1a1a;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.package-meta {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: 'Lato', sans-serif;
    font-size: 13px;
    color: #666;
}

.meta-icon {
    width: 16px;
    height: 16px;
    fill: #999;
}

.join-link {
    display: inline-flex;
    align-items: center;
    font-family: 'Jost', sans-serif;
    font-size: 12px;
    font-weight: 600;
    color: #1a1a1a;
    text-decoration: none;
    letter-spacing: 0.15em;
    padding-bottom: 4px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.join-link:hover {
    border-color: #1a1a1a;
    padding-left: 5px;
}

.join-link .arrow {
    display: flex;
    align-items: center;
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.join-link .arrow svg {
    width: 16px;
    height: 16px;
}

.join-link:hover .arrow {
    transform: translateX(5px);
}

/* FAQ Section Styles */
.faq-section {
    background-color: var(--valley-mist); /* Same as package section */
    border-top: 1px solid rgba(0,0,0,0.02);
}

.faq-accordion {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid rgba(0,0,0,0.08); /* Minimalist divider */
    padding: 2rem 0;
    transition: all 0.3s ease;
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    gap: 2rem;
}

.faq-question h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 24px;
    font-weight: 400;
    margin: 0;
    color: var(--mountain-dusk);
    transition: color 0.3s ease;
}

.faq-item:hover .faq-question h3 {
    color: var(--dzong-gold);
}

.faq-icon {
    font-size: 24px;
    font-family: 'Jost', sans-serif;
    color: var(--dzong-gold);
    transition: transform 0.4s cubic-bezier(0.19, 1, 0.22, 1);
    font-weight: 300;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg); /* Plus to X */
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
    opacity: 0;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding-top: 1.5rem;
    opacity: 1;
}

.faq-answer p {
    font-family: 'Lato', sans-serif;
    line-height: 1.8;
    color: #666;
    margin: 0;
    max-width: 800px;
}

/* Animations */
.package-section .fade-in,
.faq-section .fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.package-section .fade-in.is-visible,
.faq-section .fade-in.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsiveness */
@media (max-width: 1024px) {
    .package-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .faq-question h3 {
        font-size: 20px;
    }
    
    .package-title {
        font-size: 22px;
    }
}

@media (max-width: 650px) {
    .package-grid {
        grid-template-columns: 1fr;
    }
    
    .filter-nav {
        gap: 1rem;
    }
    
    .filter-btn {
        margin: 0 0.75rem;
        font-size: 11px;
    }
}
