.hatched-divider {
    background: repeating-linear-gradient(-45deg,
            #C28B38,
            #C28B38 3px,
            transparent 3px,
            transparent 7px);
    height: 6px;
}

.indonesia-map-gold {
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.15));
}

/* Sidebar nav link hover */
.sidebar-link:hover {
    background-color: rgba(255, 255, 255, 0.07);
}

/* ==========================================================================
   Why Choose Us Section - Bespoke Card Styling
   ========================================================================== */
.why-card {
    position: relative;
    background-color: #FFFFFF;
    border: 1px solid #EBE4D8;
    border-radius: 1.25rem;
    padding: 2.5rem 1.5rem 2.25rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    overflow: hidden;
    cursor: default;
    transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
    box-shadow: 0 4px 20px -4px rgba(51, 31, 24, 0.05);
}

/* Top accent line that reveals on hover */
.why-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: transparent;
    transition: background 0.4s ease;
}

/* Hover State - Dark Luxury Roast (#331F18) */
.why-card:hover {
    background: linear-gradient(165deg, #331F18 0%, #24160E 100%);
    border-color: #C28B38;
    transform: translateY(-8px);
    box-shadow: 0 20px 35px -8px rgba(36, 22, 14, 0.35), 0 8px 16px -6px rgba(194, 139, 56, 0.2);
}

.why-card:hover::before {
    background: linear-gradient(90deg, #A66A18, #E2B669, #A66A18);
}

/* Card Number Tag */
.why-card .why-card-num {
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    font-family: 'Cinzel', serif;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: #BAAB98;
    padding: 0.2rem 0.6rem;
    border-radius: 9999px;
    background: #F8F4EE;
    transition: all 0.35s ease;
}

.why-card:hover .why-card-num {
    color: #FFFFFF;
    background: rgba(194, 139, 56, 0.3);
    border: 1px solid rgba(194, 139, 56, 0.5);
}

/* Icon Box */
.why-card .why-icon-box {
    width: 4.25rem;
    height: 4.25rem;
    border-radius: 1.125rem;
    background: #FAF5ED;
    border: 1px solid #EFE4D3;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #A66A18;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
    box-shadow: 0 2px 10px rgba(166, 106, 24, 0.08);
}

.why-card:hover .why-icon-box {
    background: linear-gradient(135deg, #D49E4B 0%, #A66A18 100%);
    border-color: #E2B669;
    color: #FFFFFF;
    transform: scale(1.08) rotate(3deg);
    box-shadow: 0 8px 20px rgba(194, 139, 56, 0.4);
}

/* Title */
.why-card .why-card-title {
    font-family: 'Cinzel', serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: #2B1B12;
    margin-bottom: 0.75rem;
    line-height: 1.35;
    letter-spacing: 0.02em;
    transition: color 0.35s ease;
}

.why-card:hover .why-card-title {
    color: #FFFFFF;
}

/* Subtle accent divider under title */
.why-card .why-card-divider {
    width: 2rem;
    height: 1.5px;
    background-color: #E5DCce;
    margin: 0 auto 0.85rem;
    transition: all 0.35s ease;
}

.why-card:hover .why-card-divider {
    width: 3.5rem;
    background-color: #C28B38;
}

/* Description */
.why-card .why-card-desc {
    font-size: 0.825rem;
    line-height: 1.7;
    color: #6E635A;
    transition: color 0.35s ease;
}

.why-card:hover .why-card-desc {
    color: #D8CCC0;
}

/* Accessible FAQ accordion */
#faq {
    scroll-margin-top: 5rem;
}

.faq-item {
    overflow: hidden;
    border: 1px solid #D6D3D1;
    border-radius: 0.4rem;
    background: #FFFFFF;
    box-shadow: 0 1px 2px rgba(43, 27, 18, 0.06);
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.faq-item:hover,
.faq-item:focus-within {
    border-color: rgba(166, 106, 24, 0.55);
    box-shadow: 0 5px 16px rgba(43, 27, 18, 0.08);
}

.faq-trigger {
    display: flex;
    width: 100%;
    min-height: 58px;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.9rem 1rem;
    border: 0;
    background: #FFFFFF;
    color: #301D11;
    font-size: 0.875rem;
    font-weight: 600;
    line-height: 1.45;
    text-align: left;
    cursor: pointer;
    transition: background-color 0.25s ease, color 0.25s ease;
}

.faq-trigger:hover {
    background: #FAF7F2;
}

.faq-trigger:focus-visible {
    position: relative;
    z-index: 1;
    outline: 2px solid #C28B38;
    outline-offset: -3px;
}

.faq-item.is-open .faq-trigger {
    background: #56361C;
    color: #FFFFFF;
}

.faq-icon {
    display: inline-grid;
    width: 1.5rem;
    height: 1.5rem;
    flex: 0 0 1.5rem;
    place-items: center;
    color: #A66A18;
    font-size: 1.15rem;
    font-weight: 700;
    transition: transform 0.25s ease, color 0.25s ease;
}

.faq-item.is-open .faq-icon {
    color: #FFFFFF;
    transform: rotate(180deg);
}

.faq-panel {
    display: grid;
    grid-template-rows: 0fr;
    visibility: hidden;
    transition: grid-template-rows 0.3s ease, visibility 0.3s;
}

.faq-item.is-open .faq-panel {
    grid-template-rows: 1fr;
    visibility: visible;
}

.faq-answer {
    overflow: hidden;
}

.faq-answer p {
    padding: 1rem;
    color: #57534E;
    font-size: 0.875rem;
    line-height: 1.65;
}

@media (max-width: 640px) {
    .faq-trigger {
        min-height: 56px;
        font-size: 0.8rem;
    }

    .faq-answer p {
        font-size: 0.8rem;
    }

    [data-purpose="floating-whatsapp"] {
        right: 1rem;
        bottom: max(1rem, env(safe-area-inset-bottom));
        padding: 0.2rem;
    }

    [data-purpose="floating-whatsapp"] > span {
        display: none;
    }

    [data-purpose="floating-whatsapp"] > a {
        width: 2.75rem;
        height: 2.75rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    .faq-item,
    .faq-trigger,
    .faq-icon,
    .faq-panel {
        transition: none;
    }
}
