/* ==========================================================================
   Testimonials Section
   ========================================================================== */
.testimonials-section {
    padding: 6rem 0;
    background-color: var(--color-bg-white);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.testi-card {
    background: var(--color-bg-light);
    padding: 2.5rem;
    border-radius: var(--border-radius);
    box-shadow: 0 5px 20px rgba(0,0,0,0.02);
    text-align: center;
    border: 1px solid var(--color-border);
}

.testi-card .stars {
    color: #C39D54;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.testi-card p {
    font-style: italic;
    color: var(--color-text-light);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.testi-card strong {
    color: var(--color-text-dark);
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .testimonials-grid {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        gap: 1.5rem;
        padding-bottom: 1rem;
    }
    .testi-card {
        flex: 0 0 85%;
        scroll-snap-align: center;
    }
}

/* ==========================================================================
   FAQ Section
   ========================================================================== */
.faq-section {
    padding: 6rem 0;
    background-color: var(--color-bg-light);
    border-bottom: 1px solid var(--color-border);
}

.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
    background: var(--color-bg-white);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: 0 5px 20px rgba(0,0,0,0.02);
}

.faq-item {
    border-bottom: 1px solid var(--color-border);
}

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

.faq-question {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    padding: 1.5rem 0;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--color-text-dark);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question i {
    color: var(--color-primary);
    transition: transform 0.3s ease;
}

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

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.faq-answer p {
    padding-bottom: 1.5rem;
    color: var(--color-text-light);
}

.mt-2 {
    margin-top: 2rem;
}

/* ==========================================================================
   Gift Vouchers Section
   ========================================================================== */
.gift-section {
    background-color: var(--color-bg-light);
    padding: 6rem 0;
}

.gift-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.gift-card-wrapper {
    display: flex;
    justify-content: center;
    perspective: 1000px;
}

.css-gift-card {
    background: linear-gradient(135deg, #A67C00, #BF953F, #FCF6BA, #B38728, #FBF5B7, #AA771C);
    border-radius: var(--border-radius);
    padding: 2px; /* For the gold border effect */
    width: 100%;
    max-width: 450px;
    aspect-ratio: 1.586; /* Standard credit card ratio */
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    transition: transform 0.5s ease, box-shadow 0.5s ease;
    transform-style: preserve-3d;
}

.css-gift-card:hover {
    transform: translateY(-10px) rotateX(5deg) rotateY(5deg);
    box-shadow: 0 30px 50px rgba(0,0,0,0.2);
}

.gift-card-content {
    background-color: #ffffff; /* White background to match site */
    width: 100%;
    height: 100%;
    border-radius: var(--border-radius);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 2rem;
    position: relative;
    overflow: hidden;
}

/* Subtle shine sweep effect */
.gift-card-content::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, rgba(195,157,84,0) 0%, rgba(195,157,84,0.1) 50%, rgba(195,157,84,0) 100%);
    transform: skewX(-25deg);
    animation: shine 4s infinite;
}

@keyframes shine {
    0% { left: -100%; }
    20% { left: 200%; }
    100% { left: 200%; }
}

.gift-card-divider {
    width: 50px;
    height: 2px;
    background: linear-gradient(45deg, #BF953F, #FCF6BA);
    margin: 1.5rem 0;
}

.gift-card-content h3 {
    font-family: 'Cinzel', serif;
    color: var(--color-primary);
    font-size: 1.5rem;
    letter-spacing: 4px;
    margin-bottom: 0.5rem;
}

.gift-card-content p {
    color: var(--color-text-dark);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.gift-text h2 {
    font-family: 'Cinzel', serif;
    font-size: 2.5rem;
    color: var(--color-primary);
    margin-bottom: 1.5rem;
}

.gift-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    color: var(--color-text);
}

.gift-perks {
    list-style: none;
    margin-bottom: 2rem;
}

.gift-perks li {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    font-weight: 500;
    color: var(--color-text-dark);
}

.gift-perks li i {
    color: var(--color-primary);
    font-size: 1.2rem;
    width: 30px;
}

@media (max-width: 768px) {
    .gift-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .gift-text {
        text-align: center;
    }
    
    .gift-perks li {
        justify-content: center;
    }
}

