/* =========================================================
   FAQ PAGE
   ========================================================= */

.faq-wrap {
	padding-top: 60px;
	padding-bottom: 80px;
	max-width: 900px;
}

.faq-intro {
	font-size: 17px;
	line-height: 1.7;
	color: var(--gray-700);
	margin: 0 0 32px;
	padding: 20px 24px;
	background: #F4F6F8;
	border-left: 4px solid var(--orange);
	border-radius: 0 8px 8px 0;
}
.faq-intro a {
	color: var(--orange);
	font-weight: 700;
	text-decoration: none;
}
.faq-intro a:hover { color: var(--orange-dark, #D4551A); }

/* Quick nav chips */
.faq-quicknav {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 12px;
	margin: 0 0 56px;
}
.faq-quicknav a {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 8px;
	padding: 18px 12px;
	background: #fff;
	border: 1px solid #EEF0F3;
	border-radius: 10px;
	text-decoration: none;
	font-family: var(--font-head);
	font-size: 12px;
	font-weight: 700;
	color: var(--navy);
	text-transform: uppercase;
	letter-spacing: 0.05em;
	text-align: center;
	transition: all 0.2s;
}
.faq-quicknav a:hover {
	border-color: var(--orange);
	background: var(--orange);
	color: #fff;
	transform: translateY(-2px);
	box-shadow: 0 4px 14px rgba(242, 101, 34, 0.2);
}
.faq-chip-icon {
	width: 36px;
	height: 36px;
	border-radius: 50%;
	background: rgba(242, 101, 34, 0.1);
	color: var(--orange);
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.2s;
}
.faq-quicknav a:hover .faq-chip-icon {
	background: rgba(255, 255, 255, 0.2);
	color: #fff;
}
.faq-chip-icon svg {
	width: 18px;
	height: 18px;
}

/* Category sections */
.faq-section {
	margin-bottom: 56px;
	scroll-margin-top: 100px;
}
.faq-section-header {
	display: flex;
	align-items: center;
	gap: 16px;
	margin-bottom: 24px;
	padding-bottom: 20px;
	border-bottom: 2px solid #EEF0F3;
}
.faq-section-icon {
	width: 52px;
	height: 52px;
	border-radius: 12px;
	background: linear-gradient(135deg, var(--navy) 0%, #1E3656 100%);
	color: var(--orange);
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	box-shadow: 0 4px 12px rgba(15, 28, 46, 0.15);
}
.faq-section-icon svg {
	width: 26px;
	height: 26px;
}
.faq-section-header h2 {
	font-family: var(--font-head);
	font-size: 24px;
	font-weight: 800;
	color: var(--navy);
	text-transform: uppercase;
	letter-spacing: 0.02em;
	margin: 0 0 2px;
	line-height: 1.2;
}
.faq-section-header p {
	font-size: 14px;
	color: var(--gray-500);
	margin: 0;
	line-height: 1.4;
}

/* FAQ accordion items */
.faq-item {
	background: #fff;
	border: 1px solid #EEF0F3;
	border-radius: 10px;
	margin-bottom: 10px;
	overflow: hidden;
	transition: all 0.2s;
}
.faq-item:hover {
	border-color: #D4DCE3;
}
.faq-item[open] {
	border-color: var(--orange);
	box-shadow: 0 4px 14px rgba(0, 0, 0, 0.04);
}

.faq-item summary {
	position: relative;
	padding: 18px 56px 18px 22px;
	font-family: var(--font-head);
	font-size: 16px;
	font-weight: 700;
	color: var(--navy);
	cursor: pointer;
	list-style: none;
	user-select: none;
	transition: color 0.2s;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::marker { display: none; content: ''; }
.faq-item summary:hover { color: var(--orange); }

/* Plus/minus indicator */
.faq-item summary::after {
	content: '';
	position: absolute;
	right: 22px;
	top: 50%;
	width: 24px;
	height: 24px;
	margin-top: -12px;
	border-radius: 50%;
	background: #F4F6F8;
	background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%230F1C2E'><path d='M19 13h-6v6h-2v-6H5v-2h6V5h2v6h6z'/></svg>");
	background-size: 16px 16px;
	background-repeat: no-repeat;
	background-position: center;
	transition: transform 0.3s, background-color 0.2s;
}
.faq-item[open] summary::after {
	background-color: var(--orange);
	background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'><path d='M19 13H5v-2h14v2z'/></svg>");
	transform: rotate(180deg);
}

.faq-answer {
	padding: 0 22px 20px;
	font-size: 15px;
	line-height: 1.7;
	color: var(--gray-700);
	border-top: 1px solid #F4F6F8;
	padding-top: 16px;
	margin-top: 2px;
}
.faq-answer p { margin: 0 0 12px; }
.faq-answer p:last-child { margin-bottom: 0; }
.faq-answer strong { color: var(--navy); }
.faq-answer a {
	color: var(--orange);
	font-weight: 700;
	text-decoration: none;
}
.faq-answer a:hover { text-decoration: underline; }

/* Small inline callout (e.g. link to delivery page) */
.faq-callout-small {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-top: 20px;
	padding: 14px 18px;
	background: #F4F6F8;
	border-radius: 8px;
	font-size: 14px;
	color: var(--gray-700);
	line-height: 1.5;
}
.faq-callout-small svg {
	flex-shrink: 0;
	color: var(--orange);
}
.faq-callout-small a {
	color: var(--orange);
	font-weight: 700;
	text-decoration: none;
}
.faq-callout-small a:hover { text-decoration: underline; }

/* Final CTA callout */
.faq-callout {
	margin-top: 64px;
	padding: 40px 36px;
	background: linear-gradient(135deg, var(--navy) 0%, #1E3656 100%);
	border-radius: 14px;
	color: #fff;
	text-align: center;
	position: relative;
	overflow: hidden;
}
.faq-callout::before {
	content: '';
	position: absolute;
	top: -60px;
	right: -60px;
	width: 240px;
	height: 240px;
	background: radial-gradient(circle, rgba(242, 101, 34, 0.2) 0%, transparent 70%);
	pointer-events: none;
}
.faq-callout::after {
	content: '';
	position: absolute;
	bottom: -80px;
	left: -60px;
	width: 240px;
	height: 240px;
	background: radial-gradient(circle, rgba(242, 101, 34, 0.1) 0%, transparent 70%);
	pointer-events: none;
}
.faq-callout h3 {
	font-family: var(--font-head);
	font-size: 26px;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 0.02em;
	margin: 0 0 10px;
	color: #fff;
	position: relative;
}
.faq-callout p {
	font-size: 16px;
	line-height: 1.65;
	color: rgba(255, 255, 255, 0.85);
	margin: 0 0 24px;
	position: relative;
}
.faq-callout p a {
	color: var(--orange);
	font-weight: 700;
	text-decoration: none;
}
.faq-callout-actions {
	display: flex;
	gap: 12px;
	justify-content: center;
	flex-wrap: wrap;
	position: relative;
}
.faq-btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 14px 24px;
	border-radius: 8px;
	font-family: var(--font-head);
	font-size: 14px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	text-decoration: none;
	transition: all 0.2s;
}
.faq-btn-primary {
	background: var(--orange);
	color: #fff;
}
.faq-btn-primary:hover {
	background: var(--orange-dark, #D4551A);
	color: #fff;
	transform: translateY(-1px);
}
.faq-btn-secondary {
	background: rgba(255, 255, 255, 0.1);
	color: #fff;
	border: 1px solid rgba(255, 255, 255, 0.2);
}
.faq-btn-secondary:hover {
	background: rgba(255, 255, 255, 0.2);
	color: #fff;
	border-color: rgba(255, 255, 255, 0.4);
}

/* Responsive */
@media (max-width: 768px) {
	.faq-quicknav {
		grid-template-columns: repeat(2, 1fr);
		gap: 10px;
	}
	.faq-section-header {
		gap: 12px;
	}
	.faq-section-icon {
		width: 44px;
		height: 44px;
	}
	.faq-section-icon svg {
		width: 22px;
		height: 22px;
	}
	.faq-section-header h2 { font-size: 20px; }
	.faq-section-header p { font-size: 13px; }
	.faq-item summary {
		font-size: 15px;
		padding: 16px 52px 16px 18px;
	}
	.faq-answer {
		padding-left: 18px;
		padding-right: 18px;
	}
	.faq-callout { padding: 32px 24px; }
	.faq-callout h3 { font-size: 22px; }
}

@media (max-width: 480px) {
	.faq-quicknav {
		grid-template-columns: 1fr 1fr;
	}
}
