/**
 * pages/taxation.css — Taxation & Compliance Services Page Styles
 *
 * Structure:
 *   1. Hero section — Gradient background, breadcrumb, title, location, description
 *   2. Service Areas — 10 service cards in 2-column grid with numbered badges
 *   3. Focus Areas — 4 focus items grid with circular numbers
 *   4. CTA Section — Gradient background with 3 buttons
 *
 * @package MJC_Fintech_Child
 */

/* =====================================================
   GLOBAL UTILITIES
   ===================================================== */

.tax-container {
	max-width: 1280px;
	margin: 0 auto;
	padding: 0 64px;
}

.tax-bar {
	width: 64px;
	height: 4px;
	background-color: #2bbfce;
	border-radius: 2px;
	margin-top: 16px;
}

.tax-bar--center {
	margin-left: auto;
	margin-right: auto;
}

/* =====================================================
   SECTION 1 — HERO
   ===================================================== */

.tax-hero {
	background: linear-gradient(105deg, #0a2540 0.3%, #1e5f8c 99.7%);
	border-bottom: 1px solid #1e2939;
	padding: 64px 0 48px;
}

.tax-hero__title {
	font-family: var(--font-heading);
	font-size: 48px;
	font-weight: 700;
	color: #ffffff;
	text-align: center;
	margin: 48px 0 0 0;
	display: block;
	line-height: 1.2;
}

.tax-hero__location {
	font-family: var(--font-body);
	font-size: 18px;
	color: #2bbfce;
	text-align: center;
	margin: 8px 0 0 0;
	line-height: 1.6;
}

.tax-hero__description {
	font-family: var(--font-body);
	font-size: 18px;
	color: #2bbfce;
	text-align: center;
	max-width: 720px;
	margin: 24px auto 0;
	line-height: 29px;
}

/* =====================================================
   SECTION 2 — SERVICE AREAS
   ===================================================== */

.tax-services {
	background-color: #ffffff;
	padding: 80px 0;
}

.tax-services__heading {
	font-family: var(--font-heading);
	font-size: 38px;
	font-weight: 700;
	color: #0a2540;
	text-align: center;
	margin: 0;
	display: block;
	line-height: 1.2;
}

.tax-services-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 24px;
	margin-top: 64px;
}

.tax-card {
	background-color: #e8f4f8;
	border: 1px solid #1e2939;
	border-radius: 24px;
	padding: 33px;
	display: flex;
	gap: 24px;
	align-items: flex-start;
	min-height: 160px;
	transition: all 0.25s ease;
}

.tax-card:hover {
	box-shadow: 0 8px 24px rgba(43, 191, 206, 0.1);
	border-color: #2bbfce;
}

.tax-card__badge {
	width: 48px;
	height: 48px;
	border-radius: 12px;
	background-color: #0a2540;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	font-family: var(--font-heading);
	font-size: 14px;
	font-weight: 700;
	color: #ffffff;
}

.tax-card__content {
	flex: 1;
}

.tax-card__title {
	font-family: var(--font-heading);
	font-size: 20px;
	font-weight: 700;
	color: #0a2540;
	margin: 0;
	display: block;
	line-height: 1.3;
}

.tax-card .tax-bar {
	margin-top: 8px;
	margin-bottom: 16px;
}

.tax-card__description {
	font-family: var(--font-body);
	font-size: 14px;
	color: #4a5565;
	line-height: 21px;
	margin: 0;
}

/* =====================================================
   SECTION 3 — FOCUS AREAS
   ===================================================== */

.tax-focus {
	background-color: #e8f4f8;
	padding: 80px 0;
}

.tax-focus__heading {
	font-family: var(--font-heading);
	font-size: 38px;
	font-weight: 700;
	color: #0a2540;
	text-align: center;
	margin: 0;
	display: block;
	line-height: 1.2;
}

.tax-focus-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 32px;
	margin-top: 64px;
	text-align: center;
}

.tax-focus-item {
	display: flex;
	flex-direction: column;
	align-items: center;
}

.tax-focus-item__circle {
	width: 64px;
	height: 64px;
	border-radius: 50%;
	background-color: rgba(43, 191, 206, 0.15);
	display: flex;
	align-items: center;
	justify-content: center;
	font-family: var(--font-heading);
	font-size: 14px;
	font-weight: 700;
	color: #2bbfce;
	flex-shrink: 0;
}

.tax-focus-item__title {
	font-family: var(--font-heading);
	font-size: 20px;
	font-weight: 700;
	color: #0a2540;
	margin-top: 24px;
	display: block;
	line-height: 1.3;
}

.tax-focus-item .tax-bar {
	width: 48px;
	margin: 16px auto;
}

.tax-focus-item__description {
	font-family: var(--font-body);
	font-size: 14px;
	color: #4a5565;
	text-align: center;
	line-height: 21px;
	max-width: 220px;
	margin: 0 auto;
	margin-top: 16px;
}

/* =====================================================
   SECTION 4 — CTA
   ===================================================== */

.tax-cta {
	background: linear-gradient(173deg, #0a2540 7.5%, #1e5f8c 92.5%);
	padding: 64px 0;
	text-align: center;
}

.tax-cta__heading {
	font-family: var(--font-heading);
	font-size: 30px;
	font-weight: 700;
	color: #ffffff;
	margin: 0;
	display: block;
	text-align: center;
	line-height: 1.3;
}

.tax-cta__subtext {
	font-family: var(--font-body);
	font-size: 18px;
	color: #e8f4f8;
	margin: 24px 0 0 0;
	line-height: 1.6;
}

.tax-cta-buttons {
	display: flex;
	justify-content: center;
	gap: 24px;
	margin-top: 48px;
	flex-wrap: wrap;
}

.tax-cta__button {
	border: 1px solid #ffffff;
	border-radius: 100px;
	height: 56px;
	padding: 0 40px;
	font-family: var(--font-heading);
	font-size: 16px;
	font-weight: 500;
	color: #ffffff;
	background-color: transparent;
	text-decoration: none;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	transition: background-color 0.25s, color 0.25s;
	cursor: pointer;
}

.tax-cta__button:hover {
	background-color: #ffffff;
	color: #0a2540;
	border-color: #ffffff;
}

.tax-cta__button:focus-visible {
	outline: 2px solid #67E8F9;
	outline-offset: 2px;
}

/* =====================================================
   RESPONSIVE — TABLET (1024px and below)
   ===================================================== */

@media (max-width: 1024px) {
	.tax-container {
		padding: 0 40px;
	}

	.tax-services-grid {
		grid-template-columns: 1fr;
	}

	.tax-focus-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 48px;
	}
}

/* =====================================================
   RESPONSIVE — MOBILE (768px and below)
   ===================================================== */

@media (max-width: 768px) {
	.tax-container {
		padding: 0 24px;
	}

	.tax-hero {
		padding: 48px 0 32px;
	}

	.tax-hero__title {
		font-size: 32px;
		margin-top: 32px;
	}

	.tax-hero__location {
		font-size: 16px;
		margin-top: 4px;
	}

	.tax-hero__description {
		font-size: 16px;
		margin-top: 16px;
	}

	.tax-services {
		padding: 64px 0;
	}

	.tax-services__heading {
		font-size: 32px;
	}

	.tax-services-grid {
		grid-template-columns: 1fr;
		gap: 16px;
	}

	.tax-card {
		min-height: auto;
		padding: 24px;
		flex-direction: column;
		align-items: center;
		text-align: center;
		gap: 16px;
	}

	.tax-card__badge {
		width: 40px;
		height: 40px;
		font-size: 12px;
		margin-bottom: 8px;
	}

	.tax-card__title {
		font-size: 18px;
	}

	.tax-card .tax-bar {
		margin-left: auto;
		margin-right: auto;
	}

	.tax-card__description {
		font-size: 13px;
	}

	.tax-focus {
		padding: 64px 0;
	}

	.tax-focus__heading {
		font-size: 32px;
	}

	.tax-focus-grid {
		grid-template-columns: 1fr;
		gap: 32px;
	}

	.tax-focus-item {
		align-items: center;
	}

	.tax-focus-item__title {
		font-size: 18px;
		margin-top: 20px;
	}

	.tax-focus-item__description {
		font-size: 13px;
		max-width: 100%;
		margin-top: 12px;
	}

	.tax-cta {
		padding: 48px 0;
	}

	.tax-cta__heading {
		font-size: 24px;
	}

	.tax-cta__subtext {
		font-size: 16px;
		margin-top: 16px;
	}

	.tax-cta-buttons {
		flex-direction: column;
		align-items: center;
		gap: 12px;
		margin-top: 32px;
	}

	.tax-cta__button {
		width: 100%;
		height: 48px;
		font-size: 14px;
		padding: 0 24px;
	}
}
