/* Support page styles — PicoXR inspired redesign */
.coco-support {
	padding: 0;
}

.coco-support .coco-container {
	max-width: 1200px;
}

/* ── Hero Section ── */
.coco-support__hero {
	position: relative;
	padding: 100px 0 120px;
	background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
	background-size: cover;
	background-position: center;
	overflow: hidden;
}

.coco-support__hero-overlay {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.4);
}

.coco-support__hero-content {
	position: relative;
	z-index: 1;
	text-align: center;
	color: #fff;
	max-width: 720px;
	margin: 0 auto;
}

.coco-support__hero-title {
	margin: 0 0 16px;
	font-size: clamp(32px, 5vw, 48px);
	font-weight: 700;
	line-height: 1.1;
	letter-spacing: -0.02em;
}

.coco-support__hero-subtitle {
	margin: 0 0 40px;
	font-size: clamp(16px, 2vw, 18px);
	line-height: 1.6;
	color: rgba(255, 255, 255, 0.8);
}

.coco-support__hero-search {
	max-width: 600px;
	margin: 0 auto 32px;
}

.coco-support__hero-search form {
	display: flex;
	align-items: center;
	gap: 0;
	padding: 6px 6px 6px 20px;
	background: #fff;
	border-radius: 999px;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.coco-support__hero-search .coco-support__search-icon {
	flex-shrink: 0;
	color: #86868b;
	display: flex;
	align-items: center;
}

.coco-support__hero-search-input {
	flex: 1 1 auto;
	min-width: 0;
	padding: 14px 12px;
	border: 0;
	background: transparent;
	font-size: 16px;
	color: #1d1d1f;
	outline: none;
}

.coco-support__hero-search-input::placeholder {
	color: #86868b;
}

.coco-support__hero-search-btn {
	flex-shrink: 0;
	min-width: 100px;
	padding: 14px 28px;
	border: 0;
	border-radius: 999px;
	background: var(--theme-color, #0071e3);
	color: #fff;
	font-size: 15px;
	font-weight: 600;
	cursor: pointer;
	transition: background 0.2s ease;
}

.coco-support__hero-search-btn:hover {
	background: #0077ed;
}

.coco-support__quick-search {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	gap: 12px;
}

.coco-support__quick-search-label {
	font-size: 14px;
	color: rgba(255, 255, 255, 0.7);
}

.coco-support__quick-search-tags {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	justify-content: center;
}

.coco-support__quick-search-tag {
	display: inline-flex;
	align-items: center;
	padding: 6px 16px;
	background: rgba(255, 255, 255, 0.15);
	border: 1px solid rgba(255, 255, 255, 0.2);
	border-radius: 999px;
	color: #fff;
	font-size: 13px;
	font-weight: 500;
	text-decoration: none;
	transition: background 0.2s ease, border-color 0.2s ease;
}

.coco-support__quick-search-tag:hover {
	background: rgba(255, 255, 255, 0.25);
	border-color: rgba(255, 255, 255, 0.35);
}

/* ── Section Title ── */
.coco-support__section-title {
	margin: 0 0 40px;
	font-size: clamp(24px, 3vw, 32px);
	font-weight: 700;
	line-height: 1.2;
	color: #1d1d1f;
	text-align: center;
	letter-spacing: -0.02em;
}

/* ── Quick Access Section ── */
.coco-support__quick-access {
	padding: 80px 0;
	background: #fff;
}

.coco-support__quick-access-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 24px;
	max-width: 900px;
	margin: 0 auto;
}

.coco-support__quick-access-card {
	display: flex;
	flex-direction: column;
	gap: 12px;
	padding: 32px;
	border-radius: 16px;
	background: #f5f5f7;
	text-decoration: none;
	color: inherit;
	transition: background 0.3s ease, transform 0.3s ease;
}

.coco-support__quick-access-card:hover {
	background: #e8e8ed;
	transform: translateY(-2px);
}

.coco-support__quick-access-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 64px;
	height: 64px;
	border-radius: 16px;
	background: #fff;
	color: var(--theme-color, #0071e3);
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.coco-support__quick-access-title {
	margin: 0;
	font-size: 22px;
	font-weight: 600;
	color: #1d1d1f;
	line-height: 1.3;
}

.coco-support__quick-access-desc {
	margin: 0;
	font-size: 14px;
	line-height: 1.6;
	color: #86868b;
}

/* ── FAQ Section ── */
.coco-support__faq-section {
	padding: 80px 0;
	background: #f5f5f7;
}

.coco-support__faq-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 32px;
}

.coco-support__faq-header .coco-support__section-title {
	margin: 0;
	text-align: left;
}

.coco-support__faq-more-link {
	display: inline-flex;
	align-items: center;
	gap: 4px;
	font-size: 15px;
	font-weight: 500;
	color: var(--theme-color, #0071e3);
	text-decoration: none;
	transition: color 0.2s ease;
}

.coco-support__faq-more-link:hover {
	color: #0077ed;
}

.coco-support__faq-list {
	max-width: 800px;
	margin: 0 auto;
}

.coco-support__faq-item {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	padding: 20px 24px;
	background: #fff;
	border-radius: 12px;
	text-decoration: none;
	color: inherit;
	transition: background 0.2s ease;
	margin-bottom: 12px;
}

.coco-support__faq-item:last-child {
	margin-bottom: 0;
}

.coco-support__faq-item:hover {
	background: #fafafa;
}

.coco-support__faq-item-content {
	flex: 1 1 auto;
	min-width: 0;
}

.coco-support__faq-item-title {
	margin: 0 0 4px;
	font-size: 16px;
	font-weight: 600;
	color: #1d1d1f;
	line-height: 1.4;
}

.coco-support__faq-item-desc {
	margin: 0;
	font-size: 14px;
	line-height: 1.5;
	color: #86868b;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.coco-support__faq-item-arrow {
	flex-shrink: 0;
	color: #c7c7cc;
	transition: color 0.2s ease, transform 0.2s ease;
}

.coco-support__faq-item:hover .coco-support__faq-item-arrow {
	color: var(--theme-color, #0071e3);
	transform: translateX(2px);
}

/* ── Service Center Section ── */
.coco-support__service-section {
	padding: 80px 0;
	background: #fff;
}

.coco-support__service-slider-wrapper {
	max-width: 900px;
	margin: 0 auto;
}

.coco-support__service-slider {
	display: flex;
	overflow: hidden;
	border-radius: 20px;
}

.coco-support__service-slide {
	flex: 0 0 100%;
	transition: transform 0.5s ease;
}

.coco-support__service-card {
	display: flex;
	background: #f5f5f7;
	border-radius: 20px;
	overflow: hidden;
}

.coco-support__service-image {
	flex: 0 0 45%;
}

.coco-support__service-image img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.coco-support__service-info {
	flex: 1 1 auto;
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 12px;
	padding: 40px;
}

.coco-support__service-title {
	margin: 0 0 4px;
	font-size: 24px;
	font-weight: 700;
	color: #1d1d1f;
}

.coco-support__service-address,
.coco-support__service-phone {
	display: flex;
	align-items: center;
	gap: 8px;
	margin: 0;
	font-size: 15px;
	line-height: 1.6;
	color: #515154;
}

.coco-support__service-address svg,
.coco-support__service-phone svg {
	flex-shrink: 0;
	color: var(--theme-color, #0071e3);
}

.coco-support__service-nav {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 16px;
	margin-top: 28px;
}

.coco-support__service-prev,
.coco-support__service-next {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	border: 1px solid #d2d2d7;
	border-radius: 50%;
	background: #fff;
	color: #1d1d1f;
	cursor: pointer;
	transition: all 0.2s ease;
}

.coco-support__service-prev:hover,
.coco-support__service-next:hover {
	border-color: var(--theme-color, #0071e3);
	color: var(--theme-color, #0071e3);
}

.coco-support__service-dots {
	display: flex;
	align-items: center;
	gap: 8px;
}

.coco-support__service-dot {
	width: 8px;
	height: 8px;
	border: 0;
	border-radius: 50%;
	background: #d2d2d7;
	cursor: pointer;
	transition: background 0.2s ease, transform 0.2s ease;
	padding: 0;
}

.coco-support__service-dot.is-active {
	background: var(--theme-color, #0071e3);
	transform: scale(1.2);
}

/* ── Contact Section ── */
.coco-support__contact-section {
	padding: 80px 0;
	background: #f5f5f7;
}

.coco-support__contact-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
	gap: 20px;
	max-width: 900px;
	margin: 0 auto;
}

.coco-support__contact-card {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 12px;
	padding: 40px 24px;
	background: #fff;
	border-radius: 16px;
	text-decoration: none;
	color: inherit;
	text-align: center;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.coco-support__contact-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.coco-support__contact-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 64px;
	height: 64px;
	border-radius: 50%;
	background: #f5f5f7;
}

.coco-support__contact-icon--email {
	color: #0071e3;
}

.coco-support__contact-icon--discord {
	color: #5865f2;
}

.coco-support__contact-icon--whatsapp {
	color: #25d366;
}

.coco-support__contact-title {
	margin: 0;
	font-size: 18px;
	font-weight: 600;
	color: #1d1d1f;
}

.coco-support__contact-value {
	margin: 0;
	font-size: 14px;
	line-height: 1.5;
	color: #86868b;
	word-break: break-all;
}

/* ── Tax / Category Pages ── */
.coco-support__tax-header {
	text-align: center;
	padding: 60px 0 40px;
}

.coco-support__back {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	margin-bottom: 20px;
	font-size: 14px;
	color: #86868b;
	text-decoration: none;
	transition: color 0.15s ease;
}

.coco-support__back:hover {
	color: var(--theme-color, #0071e3);
}

.coco-support__tax-title {
	margin: 0 0 16px;
	font-size: clamp(28px, 4vw, 40px);
	font-weight: 700;
	color: #1d1d1f;
	letter-spacing: -0.02em;
}

.coco-support__tax-divider {
	max-width: 60px;
	height: 3px;
	margin: 0 auto;
	background: var(--theme-color, #0071e3);
	border-radius: 2px;
}

.coco-support__tax-articles {
	max-width: 720px;
	margin: 0 auto;
	padding-bottom: 60px;
}

.coco-support__tax-article {
	padding: 24px 0;
	border-bottom: 1px solid #e8e8ed;
}

.coco-support__tax-article:last-child {
	border-bottom: none;
}

.coco-support__tax-title-link {
	display: block;
	margin: 0 0 8px;
	font-size: 18px;
	font-weight: 600;
	color: #1d1d1f;
	text-decoration: none;
	transition: color 0.15s ease;
}

.coco-support__tax-title-link:hover {
	color: var(--theme-color, #0071e3);
}

.coco-support__tax-excerpt {
	margin: 0;
	font-size: 15px;
	line-height: 1.6;
	color: #86868b;
}

.coco-support__empty {
	text-align: center;
	padding: 80px 0;
	color: #86868b;
}

.coco-support__pagination {
	text-align: center;
	padding-top: 32px;
}

.coco-support__pagination a {
	display: inline-flex;
	align-items: center;
	padding: 12px 32px;
	border-radius: 999px;
	background: #1d1d1f;
	color: #fff;
	font-size: 14px;
	font-weight: 600;
	text-decoration: none;
	transition: background 0.2s ease;
}

.coco-support__pagination a:hover {
	background: #333;
}

/* ── Single Article ── */
.coco-support-single {
	padding: 60px 0;
}

.coco-support-single__header {
	display: flex;
	align-items: center;
	gap: 16px;
	margin-bottom: 40px;
}

.coco-support-single__back {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	color: #86868b;
	font-size: 14px;
	text-decoration: none;
	transition: color 0.15s ease;
}

.coco-support-single__back:hover {
	color: var(--theme-color, #0071e3);
}

.coco-support-single__tag {
	display: inline-flex;
	align-items: center;
	padding: 4px 12px;
	border-radius: 999px;
	background: #f5f5f7;
	font-size: 12px;
	font-weight: 500;
	color: #86868b;
	text-decoration: none;
	transition: background 0.15s ease;
}

.coco-support-single__tag:hover {
	background: #e8e8ed;
	color: var(--theme-color, #0071e3);
}

.coco-support-single__article {
	max-width: 720px;
	margin: 0 auto;
}

.coco-support-single__title-wrap {
	margin-bottom: 40px;
	text-align: center;
}

.coco-support-single__title {
	margin: 0;
	font-size: clamp(28px, 4vw, 36px);
	font-weight: 700;
	line-height: 1.2;
	color: #1d1d1f;
	letter-spacing: -0.02em;
}

.coco-support-single__content {
	font-size: 16px;
	line-height: 1.8;
	color: #1d1d1f;
}

.coco-support-single__content p {
	margin: 0 0 20px;
}

.coco-support-single__content h2 {
	margin: 40px 0 16px;
	font-size: 24px;
	font-weight: 600;
}

.coco-support-single__content h3 {
	margin: 28px 0 12px;
	font-size: 20px;
	font-weight: 600;
}

.coco-support-single__content ul,
.coco-support-single__content ol {
	margin: 0 0 20px;
	padding-left: 24px;
}

.coco-support-single__content li {
	margin: 0 0 8px;
}

/* ── Responsive ── */
@media (max-width: 1023px) {
	.coco-support__hero {
		padding: 80px 0 100px;
	}

	.coco-support__quick-access,
	.coco-support__faq-section,
	.coco-support__service-section,
	.coco-support__contact-section {
		padding: 60px 0;
	}

	.coco-support__section-title {
		margin-bottom: 32px;
	}
}

@media (max-width: 767px) {
	.coco-support__hero {
		padding: 60px 0 80px;
	}

	.coco-support__hero-title {
		font-size: 28px;
	}

	.coco-support__hero-subtitle {
		font-size: 15px;
		margin-bottom: 28px;
	}

	.coco-support__hero-search {
		margin-bottom: 24px;
	}

	.coco-support__hero-search form {
		padding: 4px 4px 4px 16px;
	}

	.coco-support__hero-search-input {
		padding: 12px 8px;
		font-size: 14px;
	}

	.coco-support__hero-search-btn {
		min-width: 80px;
		padding: 12px 20px;
		font-size: 14px;
	}

	.coco-support__quick-search-label {
		width: 100%;
		text-align: center;
		margin-bottom: 4px;
	}

	.coco-support__quick-access,
	.coco-support__faq-section,
	.coco-support__service-section,
	.coco-support__contact-section {
		padding: 48px 0;
	}

	.coco-support__section-title {
		font-size: 22px;
		margin-bottom: 24px;
	}

	.coco-support__quick-access-grid {
		grid-template-columns: 1fr;
		gap: 16px;
	}

	.coco-support__quick-access-card {
		padding: 24px;
	}

	.coco-support__quick-access-icon {
		width: 56px;
		height: 56px;
	}

	.coco-support__quick-access-title {
		font-size: 18px;
	}

	.coco-support__faq-header {
		flex-direction: column;
		align-items: flex-start;
		gap: 12px;
		margin-bottom: 20px;
	}

	.coco-support__faq-item {
		padding: 16px 20px;
		gap: 16px;
	}

	.coco-support__faq-item-title {
		font-size: 15px;
	}

	.coco-support__faq-item-desc {
		font-size: 13px;
	}

	.coco-support__service-card {
		flex-direction: column;
	}

	.coco-support__service-image {
		flex: 0 0 200px;
	}

	.coco-support__service-info {
		padding: 24px;
	}

	.coco-support__service-title {
		font-size: 20px;
	}

	.coco-support__service-address,
	.coco-support__service-phone {
		font-size: 14px;
	}

	.coco-support__contact-grid {
		grid-template-columns: 1fr;
		gap: 16px;
	}

	.coco-support__contact-card {
		padding: 28px 20px;
	}

	.coco-support-single {
		padding: 40px 0;
	}

	.coco-support-single__title {
		font-size: 24px;
	}

	.coco-support-single__content {
		font-size: 15px;
	}

	.coco-support__tax-header {
		padding: 40px 0 28px;
	}

	.coco-support__tax-title {
		font-size: 24px;
	}

	.coco-support__tax-articles {
		padding-bottom: 40px;
	}

	.coco-support__tax-article {
		padding: 20px 0;
	}

	.coco-support__tax-title-link {
		font-size: 16px;
	}

	.coco-support__tax-excerpt {
		font-size: 14px;
	}
}
