/* Durrah Travel — FAQ (Soalan Lazim) page. */

/* Hero */
.faq-hero { background-size: cover; background-position: center; color: #fff; text-align: center; padding-block: clamp(3rem, 7vw, 5rem); }
.faq-hero-inner { max-width: 680px; margin: 0 auto; }
.faq-hero-title { font-family: var(--font-display); color: var(--gold-bright); font-size: clamp(2.2rem, 5vw, 3.6rem); letter-spacing: 2px; margin: 0; }
.faq-hero-sub { color: rgba(255, 255, 255, .92); margin: .6rem 0 0; font-size: 1rem; }
.faq-hero .divider-diamond { margin-top: 1.1rem; }

/* Accordion */
.faq-section { background: var(--cream); }
.faq-container { max-width: 880px; }
.faq-list { display: grid; gap: 1rem; }
.faq-item { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow-sm); overflow: hidden; }
.faq-item[open] { border-color: var(--gold); }
.faq-q { list-style: none; cursor: pointer; display: flex; align-items: center; gap: 1rem; padding: 1rem 1.2rem; font-weight: 600; color: var(--green-900); }
.faq-q::-webkit-details-marker { display: none; }
.faq-num { width: 34px; height: 34px; border-radius: 50%; background: var(--gold-grad); color: var(--green-900); font-weight: 700; display: grid; place-items: center; flex: none; font-size: .9rem; }
.faq-q-text { flex: 1; }
.faq-toggle { position: relative; width: 26px; height: 26px; border-radius: 50%; border: 2px solid var(--gold); flex: none; transition: transform .25s ease; }
.faq-toggle::before, .faq-toggle::after { content: ""; position: absolute; background: var(--gold-deep); }
.faq-toggle::before { left: 6px; right: 6px; top: 50%; height: 2px; transform: translateY(-50%); }
.faq-toggle::after { top: 6px; bottom: 6px; left: 50%; width: 2px; transform: translateX(-50%); }
.faq-item[open] .faq-toggle { transform: rotate(45deg); }
.faq-a { padding: 0 1.2rem 1.2rem calc(1.2rem + 34px + 1rem); color: var(--ink); font-size: .92rem; line-height: 1.7; }
.faq-a p { margin: 0 0 .6rem; }
.faq-a p:last-child { margin-bottom: 0; }
.faq-a ul { margin: 0; padding-left: 1.2rem; display: grid; gap: .4rem; }

/* CTA */
.faq-cta-section { background: var(--cream); padding-bottom: clamp(3rem, 6vw, 5rem); }
.faq-cta { background-size: cover; background-position: center; border: 1px solid var(--gold); border-radius: var(--radius-lg); padding: clamp(1.5rem, 3vw, 2.2rem) clamp(1.5rem, 3vw, 2.5rem); display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; flex-wrap: wrap; }
.faq-cta-text { display: flex; align-items: center; gap: 1rem; }
.faq-cta-ico { width: 54px; height: 54px; border-radius: 50%; background: var(--gold-grad); color: var(--green-900); display: grid; place-items: center; flex: none; }
.faq-cta-ico .icon { width: 28px; height: 28px; }
.faq-cta-title { margin: 0 0 .2rem; color: var(--green-900); font-family: var(--font-display); font-size: 1.4rem; }
.faq-cta-sub { margin: 0; color: #4a4636; font-size: .92rem; }

/* Responsive */
@media (max-width: 640px) {
	.faq-cta { flex-direction: column; align-items: flex-start; }
	.faq-a { padding-left: 1.2rem; }
}
