/* =========================================================
   GCTS Service Category Pages
   (USA Services / Pakistan Services / E-commerce Solutions /
   Verified Bank Accounts — the "View All" destinations)
   ========================================================= */

.gcts-page-wrap {
	font-family: inherit;
	width: 100%;
}

/* Hero banner */
.gcts-page-hero {
	background: linear-gradient(120deg, var(--gcts-teal) 0%, var(--gcts-topbar-bg) 100%);
	border-radius: 20px;
	padding: 38px 34px;
	color: #ffffff;
	position: relative;
	overflow: hidden;
	margin-bottom: 8px;
}

.gcts-page-hero .breadcrumb {
	font-size: 12px;
	opacity: 0.8;
	margin-bottom: 8px;
}

.gcts-page-hero .breadcrumb a {
	color: #ffffff;
}

.gcts-page-hero h1 {
	font-size: 28px;
	font-weight: 700;
	letter-spacing: -0.3px;
	margin: 0 0 8px;
	color: #ffffff;
}

.gcts-page-hero p {
	font-size: 13.5px;
	opacity: 0.9;
	max-width: 560px;
	line-height: 1.6;
	margin: 0;
}

.gcts-page-hero .hero-icon {
	position: absolute;
	right: 24px;
	top: 24px;
	font-size: 80px;
	opacity: 0.12;
}

.gcts-page-hero .hero-cta {
	display: flex;
	gap: 10px;
	margin-top: 20px;
	flex-wrap: wrap;
}

.gcts-page-hero .hero-cta .cta-light {
	background: #ffffff;
	color: var(--gcts-teal);
	font-size: 13px;
	font-weight: 600;
	padding: 10px 18px;
	border-radius: 9px;
	text-decoration: none;
}

.gcts-page-hero .hero-cta .cta-outline-light {
	border: 1.5px solid rgba(255, 255, 255, 0.6);
	color: #ffffff;
	font-size: 13px;
	font-weight: 600;
	padding: 10px 18px;
	border-radius: 9px;
	text-decoration: none;
}

/* Group section title */
.gcts-page-group-title {
	font-size: 15px;
	font-weight: 700;
	color: #0C3B33;
	margin: 28px 0 14px;
	display: flex;
	align-items: center;
	gap: 8px;
}

.gcts-page-group-title i {
	color: var(--gcts-teal);
	font-size: 17px;
}

/* Card grid */
.gcts-page-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 14px;
}

.gcts-page-card {
	background: #ffffff;
	border: 1px solid var(--gcts-border);
	border-radius: 14px;
	padding: 18px;
	display: flex;
	flex-direction: column;
	gap: 8px;
	transition: transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease;
}

.gcts-page-card:hover {
	transform: translateY(-3px);
	box-shadow: 0 10px 22px rgba(15, 110, 86, 0.12);
	border-color: var(--gcts-teal);
}

.gcts-page-card .item-title {
	font-size: 13px;
	font-weight: 600;
	color: #0C3B33;
}

.gcts-page-card .item-desc {
	font-size: 11.5px;
	color: var(--gcts-text-muted);
	line-height: 1.5;
}

.gcts-page-learn {
	font-size: 12px;
	font-weight: 600;
	color: var(--gcts-teal);
	display: flex;
	align-items: center;
	gap: 4px;
	margin-top: auto;
	text-decoration: none;
}

/* Bottom CTA banner */
.gcts-page-footer-cta {
	margin-top: 32px;
	background: #F3F8F6;
	border: 1px solid var(--gcts-border);
	border-radius: 16px;
	padding: 24px 30px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 16px;
}

.gcts-page-footer-cta .footer-cta-text {
	font-size: 14px;
	font-weight: 600;
	color: #0C3B33;
}

.gcts-page-footer-cta .footer-cta-buttons {
	display: flex;
	gap: 10px;
	flex-wrap: wrap;
}

@media (max-width: 921px) {
	.gcts-page-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 600px) {
	.gcts-page-grid {
		grid-template-columns: 1fr;
	}

	.gcts-page-hero .hero-icon {
		display: none;
	}
}
