@import url('https://fonts.googleapis.com/css2?family=Alexandria:wght@300;400;500;600;700&display=swap');

:root {
	--abc-primary:      #260e85;
	--abc-primary-dark: #1a0a6b;
	--abc-green:        #355e23;
	--abc-green-light:  #499e71;
	--abc-purple-mid:   #541c78;
	--abc-cream:        #f4e2c5;
	--abc-white:        #ffffff;
	--abc-gray-50:      #f9fafb;
	--abc-gray-100:     #f3f4f6;
	--abc-gray-200:     #e5e7eb;
	--abc-gray-400:     #9ca3af;
	--abc-gray-600:     #6b7280;
	--abc-text:         #111827;
	--abc-text-muted:   #6b7280;
	--abc-gradient:     linear-gradient(135deg, #260e85 0%, #355e23 100%);
}

html { scroll-behavior: smooth; }

*:focus-visible {
	outline: 2px solid var(--abc-primary);
	outline-offset: 2px;
}

::selection {
	background: rgba(38, 14, 133, 0.12);
	color: var(--abc-text);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

body {
	font-family: 'Alexandria', sans-serif;
	color: var(--abc-text);
	background: var(--abc-white);
	line-height: 1.7;
	font-size: 16px;
}

[dir="rtl"] body,
body.abc-lang-ar { text-align: right; }
[dir="ltr"] body,
body.abc-lang-en { text-align: left; }

.abc-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 24px;
}

/* ===== ANNOUNCEMENT BAR ===== */
.abc-announcement-bar {
	background: #260e85;
	height: 34px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #ffffff !important;
}
.abc-announcement-bar span,
.abc-announcement-bar a,
.abc-announcement-bar {
	font-size: 11px;
	color: #ffffff !important;
}
.abc-announcement-bar a {
	color: #ffffff !important;
	text-decoration: none;
}
.abc-announcement-bar a:hover {
	color: #ffffff !important;
	opacity: 0.9;
}

/* ===== MAIN HEADER / NAV ===== */
.abc-header {
	background: var(--abc-white);
	border-bottom: 1px solid var(--abc-gray-200);
	position: sticky;
	top: 0;
	z-index: 1000;
}
.abc-header-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 64px;
	gap: 24px;
}
.abc-logo-link { display: flex; align-items: center; flex-shrink: 0; }
.abc-logo-img { height: 40px; width: auto; }

.abc-nav {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 4px;
	flex-wrap: nowrap;
	flex: 1;
}
.abc-nav-link {
	color: var(--abc-gray-600);
	text-decoration: none;
	font-size: 14px;
	font-weight: 400;
	padding: 6px 12px;
	border-radius: 6px;
	white-space: nowrap;
	transition: all 0.2s ease;
}
.abc-nav-link:hover {
	color: var(--abc-text);
}
.abc-nav-link.active {
	color: var(--abc-primary);
	font-weight: 600;
}

.abc-header-actions {
	display: flex;
	align-items: center;
	gap: 10px;
	flex-shrink: 0;
}

.abc-lang-switch {
	background: var(--abc-gray-100);
	color: #374151;
	border: 1px solid var(--abc-gray-200);
	border-radius: 6px;
	padding: 6px 14px;
	font-size: 12px;
	font-weight: 500;
	font-family: 'Alexandria', sans-serif;
	cursor: pointer;
	transition: all 0.2s ease;
}
.abc-lang-switch:hover {
	background: var(--abc-gray-200);
}
body.abc-lang-ar .abc-lang-en { display: none; }
body.abc-lang-en .abc-lang-ar { display: none; }

.abc-mobile-menu-btn {
	display: none;
	flex-direction: column;
	gap: 5px;
	background: none;
	border: none;
	cursor: pointer;
	padding: 6px;
}
.abc-mobile-menu-btn span {
	display: block;
	width: 22px;
	height: 2px;
	background: var(--abc-gray-600);
	border-radius: 2px;
	transition: all 0.2s ease;
}
.abc-mobile-nav {
	display: none;
	padding: 12px 0 20px;
	border-top: 1px solid var(--abc-gray-200);
}
.abc-mobile-nav a {
	display: block;
	color: var(--abc-gray-600);
	text-decoration: none;
	padding: 10px 4px;
	font-size: 14px;
	border-bottom: 1px solid var(--abc-gray-100);
	transition: color 0.2s ease;
}
.abc-mobile-nav a:hover { color: var(--abc-text); }
.abc-mobile-nav a:last-child { border-bottom: none; }
.abc-mobile-nav.open { display: block; }

/* Nav dropdown (desktop) */
.abc-nav-item.has-dropdown {
	position: relative;
}
.abc-nav-item .dropdown-menu {
	position: absolute;
	top: 100%;
	inset-inline-start: 0;
	min-width: 220px;
	background: var(--abc-white);
	border: 1px solid var(--abc-gray-200);
	border-radius: 10px;
	box-shadow: 0 10px 40px rgba(0,0,0,0.1);
	padding: 8px 0;
	margin-top: 4px;
	opacity: 0;
	visibility: hidden;
	transform: translateY(-8px);
	transition: opacity 0.25s, transform 0.25s, visibility 0.25s;
	list-style: none;
	z-index: 100;
}
[dir="rtl"] .abc-nav-item .dropdown-menu { inset-inline-start: auto; inset-inline-end: 0; }
.abc-nav-item.has-dropdown:hover .dropdown-menu,
.abc-nav-item.has-dropdown:focus-within .dropdown-menu {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}
.abc-nav-item .dropdown-menu li { margin: 0; }
.abc-nav-item .dropdown-menu a {
	display: block;
	padding: 10px 16px;
	color: var(--abc-gray-600);
	text-decoration: none;
	font-size: 14px;
	transition: color 0.2s, background 0.2s;
}
.abc-nav-item .dropdown-menu a:hover {
	color: var(--abc-primary);
	background: var(--abc-gray-50);
}
.abc-nav-item .dropdown-arrow {
	font-style: normal;
	margin-inline-start: 4px;
	font-size: 10px;
	opacity: 0.7;
}

/* Mobile accordion (Services) */
.abc-mobile-accordion { border-bottom: 1px solid var(--abc-gray-100); }
.abc-mobile-accordion-trigger {
	display: block;
	width: 100%;
	text-align: inherit;
	background: none;
	border: none;
	color: var(--abc-gray-600);
	font-size: 14px;
	padding: 10px 4px;
	cursor: pointer;
	font-family: inherit;
	transition: color 0.2s;
}
.abc-mobile-accordion-trigger:hover { color: var(--abc-text); }
.abc-mobile-accordion-trigger::after {
	content: '\25B6';
	display: inline-block;
	margin-inline-start: 6px;
	font-size: 10px;
	transition: transform 0.2s;
}
[dir="rtl"] .abc-mobile-accordion-trigger::after { content: '\25C0'; }
.abc-mobile-accordion.open .abc-mobile-accordion-trigger::after { transform: rotate(90deg); }
[dir="rtl"] .abc-mobile-accordion.open .abc-mobile-accordion-trigger::after { transform: rotate(-90deg); }
.abc-mobile-accordion-content {
	display: none;
	padding-inline-start: 16px;
	border-top: 1px solid var(--abc-gray-100);
}
[dir="rtl"] .abc-mobile-accordion-content { padding-inline-start: 0; padding-inline-end: 16px; }
.abc-mobile-accordion.open .abc-mobile-accordion-content { display: block; }
.abc-mobile-accordion-content a {
	padding: 8px 4px 8px 0;
	font-size: 13px;
}
[dir="rtl"] .abc-mobile-accordion-content a { padding: 8px 0 8px 4px; }

/* ===== HERO ===== */
.abc-hero {
	background: linear-gradient(180deg, var(--abc-gray-50) 0%, var(--abc-white) 60%);
	padding: 80px 0 64px;
}
.abc-hero-content {
	text-align: center;
	max-width: 680px;
	margin: 0 auto;
}
.abc-hero-badge {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: #f0fdf4;
	color: #166534;
	border: 1px solid #bbf7d0;
	border-radius: 20px;
	padding: 6px 16px;
	font-size: 12px;
	font-weight: 500;
	margin-bottom: 24px;
}
.abc-hero-badge::before {
	content: '';
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: #22c55e;
	flex-shrink: 0;
}
.abc-hero-title {
	font-size: 52px;
	font-weight: 700;
	color: var(--abc-text);
	letter-spacing: -1.5px;
	line-height: 1.1;
	margin-bottom: 16px;
}
.abc-hero-subtitle {
	font-size: 18px;
	color: var(--abc-gray-600);
	max-width: 520px;
	margin: 0 auto 40px;
	line-height: 1.6;
}
.abc-hero-search { margin-top: 0; }

/* ===== SEARCH BOX ===== */
.abc-search-box {
	display: flex;
	max-width: 560px;
	margin: 0 auto;
	border: 1.5px solid var(--abc-primary);
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 0 0 4px rgba(38, 14, 133, 0.06);
	transition: all 0.2s ease;
}
.abc-search-box:focus-within {
	box-shadow: 0 0 0 4px rgba(38, 14, 133, 0.12);
}
.abc-search-input {
	flex: 1;
	padding: 16px 20px;
	font-size: 15px;
	font-family: 'Alexandria', sans-serif;
	border: none;
	outline: none;
	background: var(--abc-white);
	color: var(--abc-text);
	min-width: 0;
}
.abc-search-input::placeholder { color: var(--abc-gray-400); }
.abc-search-btn {
	padding: 16px 28px;
	background: var(--abc-gradient);
	color: white;
	border: none;
	font-size: 15px;
	font-weight: 600;
	font-family: 'Alexandria', sans-serif;
	cursor: pointer;
	white-space: nowrap;
	transition: opacity 0.2s ease;
	flex-shrink: 0;
}
.abc-search-btn:hover { opacity: 0.9; }
.abc-search-hint {
	margin-top: 16px;
	font-size: 13px;
	color: var(--abc-gray-400);
}
.abc-search-hint a {
	color: var(--abc-primary);
	text-decoration: none;
	transition: color 0.15s ease;
	margin-inline-start: 4px;
}
.abc-search-hint a:hover { text-decoration: underline; }

/* ===== STATS ===== */
.abc-stats {
	background: var(--abc-white);
	border-top: 1px solid var(--abc-gray-200);
	border-bottom: 1px solid var(--abc-gray-200);
}
.abc-stats-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
}
.abc-stat-card {
	padding: 28px 20px;
	text-align: center;
	border-inline-end: 1px solid var(--abc-gray-200);
	border-top: 3px solid transparent;
	transition: all 0.25s ease;
}
.abc-stat-card:last-child { border-inline-end: none; }
.abc-stat-card:hover { border-top-color: var(--abc-primary); }
.abc-stat-number {
	font-size: 36px;
	font-weight: 700;
	background: var(--abc-gradient);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	line-height: 1;
	display: block;
}
.abc-stat-label {
	font-size: 11px;
	color: var(--abc-gray-400);
	text-transform: uppercase;
	letter-spacing: 0.8px;
	margin-top: 6px;
}

/* ===== HOW IT WORKS ===== */
.abc-how {
	padding: 96px 0;
	background: var(--abc-gray-50);
}
.abc-section-title {
	font-size: 32px;
	font-weight: 700;
	color: var(--abc-text);
	letter-spacing: -0.5px;
	text-align: center;
	margin-bottom: 56px;
}
.abc-steps-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 28px;
}
.abc-step {
	background: var(--abc-white);
	border: 1px solid var(--abc-gray-200);
	border-radius: 16px;
	padding: 36px 28px;
	transition: all 0.25s ease;
}
.abc-step:hover {
	box-shadow: 0 8px 30px rgba(38, 14, 133, 0.08);
	border-color: var(--abc-primary);
}
.abc-step-num {
	font-size: 56px;
	font-weight: 700;
	color: rgba(38, 14, 133, 0.08);
	line-height: 1;
	margin-bottom: 18px;
}
.abc-step h3 {
	font-size: 18px;
	font-weight: 600;
	color: var(--abc-text);
	margin-bottom: 10px;
}
.abc-step p {
	font-size: 14px;
	color: var(--abc-gray-600);
	line-height: 1.7;
}

/* ===== VERIFY PAGE ===== */
.abc-verify-search-bar {
	background: var(--abc-gray-50);
	border-bottom: 1px solid var(--abc-gray-200);
	padding: 22px 0;
}
.abc-search-box-inline {
	box-shadow: 0 0 0 4px rgba(38, 14, 133, 0.06);
}
.abc-verify-container { padding-top: 36px; padding-bottom: 64px; }

.abc-verify-banner {
	border-radius: 14px 14px 0 0;
	padding: 26px 32px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 16px;
}
.abc-verify-banner-valid     { background: var(--abc-green); }
.abc-verify-banner-expired   { background: #b71c1c; }
.abc-verify-banner-suspended { background: #e65100; }

.abc-verify-banner-left {
	display: flex;
	align-items: center;
	gap: 18px;
}
.abc-verify-status-icon {
	width: 52px; height: 52px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.18);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 24px;
	color: white;
	flex-shrink: 0;
	font-weight: 600;
}
.abc-verify-banner-title {
	font-size: 22px;
	font-weight: 600;
	color: white;
}
.abc-verify-banner-sub {
	font-size: 13px;
	color: rgba(255, 255, 255, 0.7);
	margin-top: 3px;
	font-family: monospace;
	letter-spacing: 1px;
}

.abc-verify-body {
	display: grid;
	grid-template-columns: 1fr 290px;
	gap: 24px;
	background: var(--abc-gray-100);
	border: 1px solid var(--abc-gray-200);
	border-top: none;
	border-radius: 0 0 14px 14px;
	padding: 24px;
}

.abc-cert-detail-card {
	background: var(--abc-white);
	border: 1px solid var(--abc-gray-200);
	border-radius: 12px;
	padding: 24px;
	margin-bottom: 16px;
}
.abc-cert-detail-card:last-child { margin-bottom: 0; }

.abc-detail-section-title {
	font-size: 12px;
	font-weight: 600;
	color: var(--abc-primary);
	text-transform: uppercase;
	letter-spacing: 1px;
	margin-bottom: 18px;
	padding-bottom: 12px;
	border-bottom: 2px solid var(--abc-primary);
	display: block;
}

.abc-detail-table { width: 100%; border-collapse: collapse; }
.abc-detail-table td {
	padding: 11px 0;
	font-size: 14px;
	border-bottom: 1px solid var(--abc-gray-100);
	vertical-align: top;
	line-height: 1.5;
}
.abc-detail-table td:first-child {
	color: var(--abc-gray-600);
	width: 38%;
	font-size: 13px;
	padding-inline-end: 16px;
}
.abc-detail-table tr:last-child td { border-bottom: none; }

.abc-days-remaining {
	display: inline-block;
	background: #e6f7ee;
	color: var(--abc-green);
	font-size: 11px;
	padding: 3px 10px;
	border-radius: 10px;
	margin-inline-start: 8px;
	font-weight: 500;
}

.abc-qr-card {
	background: var(--abc-white);
	border: 1px solid var(--abc-gray-200);
	border-radius: 12px;
	padding: 20px;
	text-align: center;
	margin-bottom: 16px;
}
.abc-qr-title {
	font-size: 11px;
	color: var(--abc-gray-600);
	text-transform: uppercase;
	letter-spacing: 1px;
	margin-bottom: 16px;
}
.abc-qr-img {
	width: 100%;
	max-width: 180px;
	height: auto;
	margin-bottom: 16px;
	border-radius: 8px;
}
.abc-verify-trust {
	background: var(--abc-white);
	border: 1px solid var(--abc-gray-200);
	border-radius: 12px;
	padding: 18px 20px;
}
.abc-trust-item {
	font-size: 13px;
	color: var(--abc-green);
	padding: 8px 0;
	border-bottom: 1px solid var(--abc-gray-100);
	font-weight: 500;
}
.abc-trust-item:last-child { border-bottom: none; }

.abc-verify-empty,
.abc-verify-notfound {
	text-align: center;
	padding: 100px 20px;
}
.abc-verify-empty-icon { font-size: 52px; margin-bottom: 24px; opacity: 0.5; }
.abc-verify-notfound-icon {
	font-size: 60px;
	font-weight: 700;
	color: #b71c1c;
	margin-bottom: 20px;
	display: block;
}
.abc-verify-empty h2,
.abc-verify-notfound h2 {
	font-size: 26px;
	font-weight: 500;
	margin-bottom: 12px;
}
.abc-verify-empty p,
.abc-verify-notfound p { font-size: 15px; color: var(--abc-gray-600); }

.abc-iaf-card { border-inline-start: 4px solid var(--abc-green-light); }
.abc-iaf-badge {
	display: inline-block;
	background: var(--abc-green-light);
	color: white;
	font-size: 11px;
	font-weight: 600;
	padding: 4px 14px;
	border-radius: 10px;
	margin-bottom: 12px;
	letter-spacing: 0.5px;
}

/* ===== BUTTONS ===== */
.abc-btn {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 10px 22px;
	border-radius: 8px;
	font-size: 13px;
	font-weight: 500;
	font-family: 'Alexandria', sans-serif;
	cursor: pointer;
	text-decoration: none;
	transition: all 0.2s ease;
	border: none;
}
.abc-btn-outline-white {
	background: rgba(255, 255, 255, 0.15);
	color: white;
	border: 1px solid rgba(255, 255, 255, 0.4);
}
.abc-btn-outline-white:hover { background: rgba(255, 255, 255, 0.28); color: white; }
.abc-btn-outline {
	background: transparent;
	color: var(--abc-primary);
	border: 1px solid var(--abc-primary);
}
.abc-btn-outline:hover { background: var(--abc-primary); color: white; }
.abc-btn-sm { padding: 7px 16px; font-size: 12px; }

/* ===== FOOTER ===== */
.abc-footer {
	background: #111827;
	padding-top: 64px;
}
.abc-footer-grid {
	display: grid;
	grid-template-columns: 2fr 1fr 1fr 1.5fr;
	gap: 40px;
	padding-bottom: 48px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.abc-footer-logo {
	height: 40px;
	margin-bottom: 18px;
	filter: brightness(0) invert(1);
}
.abc-footer-desc {
	font-size: 13px;
	line-height: 1.8;
	color: rgba(255, 255, 255, 0.65);
}
.abc-footer-heading {
	font-size: 11px;
	font-weight: 600;
	color: #ffffff;
	text-transform: uppercase;
	letter-spacing: 1.2px;
	margin-bottom: 20px;
}
.abc-footer-links { list-style: none; }
.abc-footer-links li { margin-bottom: 10px; }
.abc-footer-links a {
	font-size: 13px;
	color: rgba(255, 255, 255, 0.65);
	text-decoration: none;
	transition: color 0.15s ease;
}
.abc-footer-links a:hover { color: #ffffff; }
.abc-footer-contact { list-style: none; }
.abc-footer-contact li {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	font-size: 13px;
	margin-bottom: 12px;
}
.abc-footer-contact li,
.abc-footer-contact li span,
.abc-footer-contact .abc-footer-icon,
.abc-footer-contact .abc-footer-contact-link {
	color: rgba(255, 255, 255, 0.65);
}
.abc-footer-icon {
	flex-shrink: 0;
	font-size: 14px;
	margin-top: 2px;
	filter: grayscale(1) opacity(0.65);
	opacity: 1;
}
.abc-footer-contact-link {
	text-decoration: none;
	transition: color 0.15s ease;
}
.abc-footer-contact-link:hover { color: #ffffff; }
.abc-footer-bottom {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 20px 0;
	font-size: 12px;
	color: rgba(255, 255, 255, 0.5);
	flex-wrap: wrap;
	gap: 12px;
	border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.abc-footer-bottom-links { display: flex; gap: 20px; }
.abc-footer-bottom-links a {
	color: rgba(255, 255, 255, 0.5);
	text-decoration: none;
	transition: color 0.15s ease;
}
.abc-footer-bottom-links a:hover { color: rgba(255, 255, 255, 0.9); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
	.abc-nav { gap: 0; }
	.abc-nav-link { padding: 6px 8px; font-size: 12px; }
	.abc-footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 768px) {
	.abc-nav { display: none; }
	.abc-mobile-menu-btn { display: flex; }
	.abc-hero { padding: 52px 0 44px; }
	.abc-hero-title { font-size: 30px; }
	.abc-hero-subtitle { font-size: 16px; }
	.abc-stats-grid { grid-template-columns: repeat(2, 1fr); }
	.abc-stat-card {
		border-inline-end: none;
		border-bottom: 1px solid var(--abc-gray-200);
	}
	.abc-stat-card:nth-child(2n) { border-inline-end: none; }
	.abc-steps-grid { grid-template-columns: 1fr; gap: 16px; }
	.abc-how { padding: 64px 0; }
	.abc-section-title { font-size: 26px; margin-bottom: 40px; }
	.abc-verify-body { grid-template-columns: 1fr; }
	.abc-verify-banner { flex-direction: column; align-items: flex-start; }
	.abc-footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
	.abc-verify-sidebar { order: -1; }
}

@media (max-width: 480px) {
	.abc-container { padding: 0 16px; }
	.abc-search-box { flex-direction: column; border-radius: 12px; }
	.abc-search-input { border-radius: 12px 12px 0 0; padding: 14px 18px; }
	.abc-search-btn { border-radius: 0 0 12px 12px; padding: 14px 20px; }
	.abc-hero-title { font-size: 30px; }
	.abc-footer-grid { grid-template-columns: 1fr; }
	.abc-stats-grid { grid-template-columns: repeat(2, 1fr); }
	.abc-verify-banner { padding: 18px 20px; }
	.abc-detail-table td:first-child { width: 45%; }
}

/* ===== PAGE HERO ===== */
.abc-page-hero {
	background: linear-gradient(180deg, #f9fafb 0%, #fff 100%);
	padding: 64px 0 48px;
	border-bottom: 1px solid #e5e7eb;
	text-align: center;
}
.abc-page-hero h1 {
	font-size: 40px;
	font-weight: 700;
	color: #111827;
	margin-bottom: 12px;
	letter-spacing: -1px;
}
.abc-page-hero p {
	font-size: 16px;
	color: #6b7280;
	max-width: 560px;
	margin: 0 auto;
}
.abc-page-hero-badge {
	display: inline-block;
	background: #f0fdf4;
	color: #166534;
	border: 1px solid #bbf7d0;
	padding: 5px 16px;
	border-radius: 20px;
	font-size: 12px;
	font-weight: 500;
	margin-bottom: 16px;
}

/* ===== ABOUT ===== */
.abc-about-section { padding: 80px 0; }
.abc-about-grid {
	display: grid;
	grid-template-columns: 1.5fr 1fr;
	gap: 60px;
	align-items: start;
}
.abc-about-text h2 {
	font-size: 28px;
	font-weight: 700;
	color: #111827;
	margin-bottom: 20px;
}
.abc-about-text p {
	font-size: 15px;
	color: #6b7280;
	line-height: 1.8;
	margin-bottom: 16px;
}
.abc-about-accreditations h3 {
	font-size: 16px;
	font-weight: 600;
	color: #111827;
	margin-bottom: 20px;
	padding-bottom: 10px;
	border-bottom: 2px solid #260e85;
}
.abc-accred-list { display: flex; flex-direction: column; gap: 16px; }
.abc-accred-item {
	display: flex;
	align-items: center;
	gap: 14px;
	padding: 16px;
	background: #f9fafb;
	border: 1px solid #e5e7eb;
	border-radius: 10px;
}
.abc-accred-icon {
	width: 52px;
	height: 52px;
	background: #260e85;
	color: white;
	border-radius: 8px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 11px;
	font-weight: 700;
	flex-shrink: 0;
	letter-spacing: 0.5px;
}
.abc-accred-item strong {
	display: block;
	font-size: 13px;
	font-weight: 600;
	color: #111827;
	margin-bottom: 2px;
}
.abc-accred-item span {
	font-size: 11px;
	color: #499e71;
	font-weight: 500;
}

/* ===== VISION & MISSION ===== */
.abc-vm-section {
	padding: 80px 0;
	background: #f9fafb;
}
.abc-vm-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 28px;
}
.abc-vm-card {
	background: white;
	border: 1px solid #e5e7eb;
	border-radius: 16px;
	padding: 36px;
	border-top: 4px solid #260e85;
}
.abc-vm-mission { border-top-color: #499e71; }
.abc-vm-icon { font-size: 32px; margin-bottom: 16px; }
.abc-vm-card h3 {
	font-size: 20px;
	font-weight: 700;
	color: #111827;
	margin-bottom: 14px;
}
.abc-vm-card p {
	font-size: 14px;
	color: #6b7280;
	line-height: 1.8;
}

/* ===== GOALS ===== */
.abc-goals-section { padding: 80px 0; }
.abc-goals-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
}
.abc-goal-card {
	background: white;
	border: 1px solid #e5e7eb;
	border-radius: 14px;
	padding: 32px 24px;
	transition: all 0.25s;
}
.abc-goal-card:hover {
	border-color: #260e85;
	box-shadow: 0 8px 30px rgba(38,14,133,0.08);
}
.abc-goal-num {
	font-size: 42px;
	font-weight: 700;
	color: rgba(38,14,133,0.08);
	margin-bottom: 14px;
	line-height: 1;
}
.abc-goal-card h3 {
	font-size: 16px;
	font-weight: 600;
	color: #111827;
	margin-bottom: 10px;
}
.abc-goal-card p { font-size: 13px; color: #6b7280; line-height: 1.7; }

/* ===== TEAM ===== */
.abc-team-section { padding: 80px 0; background: #f9fafb; }
.abc-team-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
}
.abc-team-card {
	background: white;
	border-radius: 14px;
	padding: 32px 24px;
	text-align: center;
	transition: all 0.25s;
}
.abc-team-avatar {
	width: 72px;
	height: 72px;
	border-radius: 50%;
	background: linear-gradient(135deg, #260e85, #355e23);
	color: white;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 18px;
	font-weight: 700;
	margin: 0 auto 16px;
}
.abc-team-card h3 {
	font-size: 16px;
	font-weight: 600;
	color: #111827;
	margin-bottom: 6px;
}
.abc-team-card span {
	font-size: 13px;
	color: #499e71;
	font-weight: 500;
}

/* ===== CONTACT ===== */
.abc-contact-section { padding: 80px 0; }
.abc-contact-grid {
	display: grid;
	grid-template-columns: 1fr 1.5fr;
	gap: 60px;
	align-items: start;
}
.abc-contact-info h2,
.abc-contact-form-wrap h2 {
	font-size: 24px;
	font-weight: 700;
	color: #111827;
	margin-bottom: 28px;
}
.abc-contact-item {
	display: flex;
	gap: 14px;
	align-items: flex-start;
	margin-bottom: 24px;
	padding-bottom: 24px;
	border-bottom: 1px solid #e5e7eb;
}
.abc-contact-item:last-of-type { border-bottom: none; }
.abc-contact-icon { font-size: 20px; margin-top: 2px; flex-shrink: 0; }
.abc-contact-item strong {
	display: block;
	font-size: 12px;
	font-weight: 600;
	color: #9ca3af;
	text-transform: uppercase;
	letter-spacing: 0.8px;
	margin-bottom: 4px;
}
.abc-contact-item a,
.abc-contact-item span {
	font-size: 15px;
	color: #111827;
	text-decoration: none;
}
.abc-contact-item a:hover { color: #260e85; }
.abc-contact-accred { margin-top: 28px; }
.abc-contact-accred p {
	font-size: 12px;
	color: #9ca3af;
	text-transform: uppercase;
	letter-spacing: 0.8px;
	margin-bottom: 10px;
	font-weight: 600;
}
.abc-accred-badges { display: flex; gap: 8px; flex-wrap: wrap; }
.abc-accred-badge {
	background: #f3f4f6;
	color: #260e85;
	border: 1px solid #e5e7eb;
	padding: 5px 14px;
	border-radius: 6px;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.5px;
}

/* ===== CONTACT FORM ===== */
.abc-contact-form { display: flex; flex-direction: column; gap: 20px; }
.abc-form-group { display: flex; flex-direction: column; gap: 6px; }
.abc-form-group label {
	font-size: 13px;
	font-weight: 600;
	color: #374151;
}
.abc-form-group input,
.abc-form-group select,
.abc-form-group textarea {
	padding: 12px 16px;
	border: 1px solid #e5e7eb;
	border-radius: 8px;
	font-size: 14px;
	font-family: 'Alexandria', sans-serif;
	color: #111827;
	background: white;
	transition: border-color 0.2s;
	outline: none;
}
.abc-form-group input:focus,
.abc-form-group select:focus,
.abc-form-group textarea:focus {
	border-color: #260e85;
	box-shadow: 0 0 0 3px rgba(38,14,133,0.06);
}
.abc-btn-primary {
	background: linear-gradient(135deg, #260e85, #355e23);
	color: white;
	padding: 14px 28px;
	border: none;
	border-radius: 10px;
	font-size: 15px;
	font-weight: 600;
	font-family: 'Alexandria', sans-serif;
	cursor: pointer;
	transition: opacity 0.2s;
	align-self: flex-start;
}
.abc-btn-primary:hover { opacity: 0.9; }

/* ===== PAGE TEMPLATES RESPONSIVE ===== */
@media (max-width: 768px) {
	.abc-about-grid { grid-template-columns: 1fr; gap: 40px; }
	.abc-vm-grid { grid-template-columns: 1fr; }
	.abc-goals-grid { grid-template-columns: 1fr; }
	.abc-team-grid { grid-template-columns: repeat(2, 1fr); }
	.abc-contact-grid { grid-template-columns: 1fr; gap: 40px; }
	.abc-page-hero h1 { font-size: 28px; }
}
@media (max-width: 480px) {
	.abc-team-grid { grid-template-columns: 1fr; }
}

/* ===== TRAINING ARCHIVE ===== */
.abc-training-filters-bar {
	background: white;
	border-bottom: 1px solid #e5e7eb;
	padding: 16px 0;
	position: sticky;
	top: 64px;
	z-index: 10;
}
.abc-training-filters {
	display: flex;
	gap: 8px;
	flex-wrap: wrap;
	align-items: center;
}
.abc-filter-btn {
	padding: 7px 18px;
	border: 1px solid #e5e7eb;
	border-radius: 20px;
	font-size: 13px;
	font-weight: 500;
	font-family: 'Alexandria', sans-serif;
	background: white;
	color: #6b7280;
	cursor: pointer;
	transition: all 0.2s;
}
.abc-filter-btn:hover,
.abc-filter-btn.active {
	background: #260e85;
	color: white;
	border-color: #260e85;
}
.abc-training-archive { padding: 56px 0 80px; }
.abc-training-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
}

/* Training Card */
.abc-training-card {
	background: white;
	border: 1px solid #e5e7eb;
	border-radius: 14px;
	padding: 24px;
	display: flex;
	flex-direction: column;
	gap: 14px;
	transition: all 0.25s;
}
.abc-training-card:hover {
	box-shadow: 0 8px 30px rgba(38,14,133,0.08);
	border-color: #260e85;
	transform: translateY(-2px);
}
.abc-tc-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.abc-tc-standard {
	font-size: 11px;
	font-weight: 700;
	color: #260e85;
	background: #eff6ff;
	padding: 3px 10px;
	border-radius: 5px;
	letter-spacing: 0.3px;
}
.abc-tc-title {
	font-size: 15px;
	font-weight: 600;
	color: #111827;
	line-height: 1.4;
}
.abc-tc-title a {
	color: inherit;
	text-decoration: none;
}
.abc-tc-title a:hover { color: #260e85; }
.abc-tc-level {
	display: inline-block;
	font-size: 11px;
	font-weight: 600;
	color: #499e71;
	background: #f0fdf4;
	border: 1px solid #bbf7d0;
	padding: 3px 10px;
	border-radius: 10px;
}
.abc-tc-meta {
	display: flex;
	flex-direction: column;
	gap: 6px;
}
.abc-tc-meta-item {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 13px;
	color: #6b7280;
}
.abc-tc-meta-icon { font-size: 13px; flex-shrink: 0; }
.abc-tc-delivery {
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
	margin-top: 4px;
}
.abc-tc-tag {
	font-size: 11px;
	padding: 3px 10px;
	border-radius: 5px;
	background: #f3f4f6;
	color: #374151;
	border: 1px solid #e5e7eb;
	font-weight: 500;
}
.abc-tc-tag-cert {
	background: #fef9c3;
	color: #854d0e;
	border-color: #fde68a;
}
.abc-tc-footer {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-top: auto;
	padding-top: 14px;
	border-top: 1px solid #f3f4f6;
}
.abc-tc-price-value {
	font-size: 15px;
	font-weight: 700;
	color: #260e85;
}
.abc-tc-btn {
	font-size: 12px;
	font-weight: 600;
	color: #260e85;
	text-decoration: none;
	padding: 7px 16px;
	border: 1.5px solid #260e85;
	border-radius: 8px;
	transition: all 0.2s;
	white-space: nowrap;
}
.abc-tc-btn:hover {
	background: #260e85;
	color: white;
}
.abc-status-badge.abc-status-valid {
	background: #f0fdf4;
	color: #166534;
	border: 1px solid #bbf7d0;
	font-size: 11px;
	padding: 3px 10px;
	border-radius: 10px;
	font-weight: 600;
}
.abc-status-badge.abc-status-soon {
	background: #fffbeb;
	color: #92400e;
	border: 1px solid #fde68a;
	font-size: 11px;
	padding: 3px 10px;
	border-radius: 10px;
	font-weight: 600;
}

/* Single Training Program */
.abc-program-hero {
	background: linear-gradient(180deg, #f9fafb 0%, #fff 100%);
	padding: 48px 0;
	border-bottom: 1px solid #e5e7eb;
}
.abc-program-hero-inner {
	display: grid;
	grid-template-columns: 1fr 320px;
	gap: 40px;
	align-items: start;
}
.abc-back-link {
	display: inline-block;
	font-size: 13px;
	color: #6b7280;
	text-decoration: none;
	margin-bottom: 16px;
	transition: color 0.2s;
}
.abc-back-link:hover { color: #260e85; }
.abc-program-standard {
	font-size: 13px;
	font-weight: 700;
	color: #260e85;
	background: #eff6ff;
	padding: 4px 14px;
	border-radius: 6px;
	display: inline-block;
	margin-bottom: 12px;
}
.abc-program-hero h1 {
	font-size: 32px;
	font-weight: 700;
	color: #111827;
	margin-bottom: 16px;
	letter-spacing: -0.5px;
}
.abc-program-meta-row {
	display: flex;
	gap: 10px;
	flex-wrap: wrap;
}
.abc-program-level-badge {
	font-size: 12px;
	font-weight: 600;
	color: #499e71;
	background: #f0fdf4;
	border: 1px solid #bbf7d0;
	padding: 4px 14px;
	border-radius: 10px;
}

/* Quick Info Card */
.abc-program-quick-info {
	background: white;
	border: 1px solid #e5e7eb;
	border-radius: 14px;
	padding: 24px;
	box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}
.abc-quick-price {
	text-align: center;
	padding-bottom: 16px;
	border-bottom: 1px solid #f3f4f6;
	margin-bottom: 16px;
}
.abc-quick-price-label {
	display: block;
	font-size: 11px;
	color: #9ca3af;
	text-transform: uppercase;
	letter-spacing: 0.8px;
	margin-bottom: 4px;
}
.abc-quick-price-value {
	font-size: 24px;
	font-weight: 700;
	color: #260e85;
}
.abc-quick-details {
	display: flex;
	flex-direction: column;
	gap: 10px;
	margin-bottom: 20px;
}
.abc-quick-item {
	display: flex;
	justify-content: space-between;
	align-items: center;
	font-size: 13px;
	padding-bottom: 10px;
	border-bottom: 1px solid #f9fafb;
}
.abc-quick-item span { color: #9ca3af; }
.abc-quick-item strong { color: #111827; font-weight: 600; }
.abc-program-quick-info .abc-btn-primary {
	width: 100%;
	text-align: center;
	display: block;
	text-decoration: none;
	padding: 14px;
	border-radius: 10px;
	font-size: 15px;
}

/* Program Body */
.abc-program-body { padding: 56px 0 80px; }
.abc-program-body-grid {
	display: grid;
	grid-template-columns: 1fr 360px;
	gap: 40px;
	align-items: start;
}
.abc-program-description h2,
.abc-program-section h3 {
	font-size: 18px;
	font-weight: 600;
	color: #111827;
	margin-bottom: 14px;
	padding-bottom: 10px;
	border-bottom: 2px solid #260e85;
	display: inline-block;
}
.abc-program-text {
	font-size: 15px;
	color: #6b7280;
	line-height: 1.8;
	margin-bottom: 32px;
}
.abc-program-section { margin-bottom: 32px; }
.abc-program-tags {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-top: 12px;
}
.abc-tag {
	font-size: 13px;
	padding: 6px 16px;
	border-radius: 6px;
	background: #f3f4f6;
	color: #374151;
	border: 1px solid #e5e7eb;
	font-weight: 500;
}
.abc-tag-accred {
	background: #eff6ff;
	color: #260e85;
	border-color: #bfdbfe;
	font-weight: 700;
}
.abc-cert-note {
	margin-top: 14px;
	font-size: 14px;
	color: #499e71;
	font-weight: 500;
}
.abc-program-contact {
	background: #f9fafb;
	border: 1px solid #e5e7eb;
	border-radius: 12px;
	padding: 20px 24px;
}
.abc-program-contact h3 { border-bottom-color: #499e71; }
.abc-program-contact p {
	font-size: 14px;
	color: #374151;
	margin-bottom: 6px;
}
.abc-program-contact a {
	color: #260e85;
	text-decoration: none;
}

/* Register Form */
.abc-register-form-card {
	background: white;
	border: 1px solid #e5e7eb;
	border-radius: 14px;
	padding: 28px;
	position: sticky;
	top: 100px;
	box-shadow: 0 4px 20px rgba(38,14,133,0.06);
}
.abc-register-form-card h3 {
	font-size: 18px;
	font-weight: 700;
	color: #111827;
	margin-bottom: 6px;
}
.abc-form-note {
	font-size: 12px;
	color: #9ca3af;
	margin-bottom: 20px;
}
.abc-register-form .abc-btn-primary {
	width: 100%;
	text-align: center;
	padding: 14px;
	font-size: 15px;
	border: none;
	cursor: pointer;
}

/* CTA Section */
.abc-cta-section { padding: 64px 0; background: #f9fafb; border-top: 1px solid #e5e7eb; }
.abc-cta-card {
	text-align: center;
	background: white;
	border: 1px solid #e5e7eb;
	border-radius: 16px;
	padding: 40px 32px;
	max-width: 640px;
	margin: 0 auto;
}
.abc-cta-card h2 { font-size: 24px; font-weight: 700; color: #111827; margin-bottom: 12px; }
.abc-cta-card p { font-size: 15px; color: #6b7280; margin-bottom: 24px; }

/* Training Responsive */
@media (max-width: 1024px) {
	.abc-training-grid { grid-template-columns: repeat(2, 1fr); }
	.abc-program-hero-inner { grid-template-columns: 1fr; }
	.abc-program-body-grid { grid-template-columns: 1fr; }
	.abc-register-form-card { position: static; }
}
@media (max-width: 768px) {
	.abc-training-grid { grid-template-columns: 1fr; }
	.abc-training-filters { gap: 6px; }
	.abc-filter-btn { font-size: 12px; padding: 6px 14px; }
	.abc-program-hero h1 { font-size: 24px; }
}

/* ===== CERTIFICATE REGISTRY ===== */
.abc-registry-search-bar {
	background: white;
	border-bottom: 1px solid #e5e7eb;
	padding: 20px 0;
	position: sticky;
	top: 64px;
	z-index: 10;
}
.abc-registry-search-wrap { margin-bottom: 14px; }
.abc-registry-filters {
	display: flex;
	gap: 10px;
	flex-wrap: wrap;
	align-items: center;
	margin-bottom: 10px;
}
.abc-registry-select {
	height: 36px;
	padding: 0 12px;
	border: 1px solid #e5e7eb;
	border-radius: 8px;
	font-size: 13px;
	font-family: 'Alexandria', sans-serif;
	color: #374151;
	background: white;
	cursor: pointer;
	outline: none;
	transition: border-color 0.2s;
}
.abc-registry-select:focus { border-color: #260e85; }
.abc-registry-reset {
	height: 36px;
	padding: 0 16px;
	border: 1px solid #e5e7eb;
	border-radius: 8px;
	font-size: 13px;
	font-family: 'Alexandria', sans-serif;
	color: #6b7280;
	background: #f9fafb;
	cursor: pointer;
	transition: all 0.2s;
}
.abc-registry-reset:hover { color: #b71c1c; border-color: #b71c1c; }
.abc-registry-count {
	font-size: 13px;
	color: #9ca3af;
	font-weight: 500;
}

/* Registry Table */
.abc-registry-section { padding: 32px 0 80px; }
.abc-registry-table-wrap { overflow-x: auto; }
.abc-registry-table {
	width: 100%;
	border-collapse: collapse;
	font-size: 14px;
}
.abc-registry-table thead tr {
	background: #f9fafb;
	border-bottom: 2px solid #e5e7eb;
}
.abc-registry-table th {
	padding: 12px 16px;
	text-align: right;
	font-size: 12px;
	font-weight: 600;
	color: #6b7280;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	white-space: nowrap;
}
[dir="ltr"] .abc-registry-table th { text-align: left; }
.abc-registry-table td {
	padding: 14px 16px;
	border-bottom: 1px solid #f3f4f6;
	color: #374151;
	vertical-align: middle;
}
.abc-registry-table tbody tr:hover { background: #fafafa; }
.abc-registry-table tbody tr:last-child td { border-bottom: none; }

.abc-cert-num a {
	font-weight: 600;
	color: #260e85;
	text-decoration: none;
	font-family: monospace;
	font-size: 13px;
	letter-spacing: 0.5px;
}
.abc-cert-num a:hover { text-decoration: underline; }
.abc-cert-owner { font-weight: 500; color: #111827; max-width: 200px; }

.abc-type-badge {
	display: inline-block;
	font-size: 11px;
	font-weight: 600;
	padding: 3px 10px;
	border-radius: 5px;
}
.abc-type-company    { background: #eff6ff; color: #260e85; }
.abc-type-product    { background: #f0fdf4; color: #166534; }
.abc-type-individual { background: #fdf4ff; color: #6b21a8; }

.abc-status-badge.abc-status-expired {
	background: #fef2f2;
	color: #b71c1c;
	border: 1px solid #fecaca;
	font-size: 11px;
	padding: 3px 10px;
	border-radius: 10px;
	font-weight: 600;
}
.abc-status-badge.abc-status-suspended {
	background: #fff7ed;
	color: #c2410c;
	border: 1px solid #fed7aa;
	font-size: 11px;
	padding: 3px 10px;
	border-radius: 10px;
	font-weight: 600;
}

.abc-verify-link {
	display: inline-block;
	font-size: 12px;
	font-weight: 600;
	color: #260e85;
	text-decoration: none;
	padding: 5px 14px;
	border: 1.5px solid #260e85;
	border-radius: 6px;
	transition: all 0.2s;
	white-space: nowrap;
}
.abc-verify-link:hover {
	background: #260e85;
	color: white;
}

.abc-registry-empty {
	text-align: center;
	padding: 60px 20px;
	color: #9ca3af;
	font-size: 15px;
}

/* Registry Responsive */
@media (max-width: 768px) {
	.abc-registry-filters { gap: 6px; }
	.abc-registry-select { font-size: 12px; height: 32px; }
	.abc-registry-table { font-size: 12px; }
	.abc-registry-table th,
	.abc-registry-table td { padding: 10px 10px; }
}

.abc-downloads-section {
	padding: 60px 0 80px;
}
.abc-downloads-section .abc-container {
	padding: 0 24px;
}
.abc-download-card {
	display: flex;
	flex-direction: row;
	align-items: center;
	gap: 20px;
	background: white;
	border: 1px solid #e5e7eb;
	border-radius: 14px;
	padding: 24px;
	transition: all 0.25s;
	width: 100%;
	box-sizing: border-box;
}
.abc-download-card:hover {
	border-color: #260e85;
	box-shadow: 0 4px 20px rgba(38,14,133,0.08);
}
.abc-download-icon {
	width: 56px;
	height: 56px;
	background: #f0f4ff;
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}
.abc-download-info {
	flex: 1;
	min-width: 0;
}
.abc-download-title {
	font-size: 15px;
	font-weight: 600;
	color: #111827;
	margin-bottom: 8px;
	line-height: 1.4;
}
.abc-download-meta {
	display: flex;
	gap: 8px;
	align-items: center;
	flex-wrap: wrap;
}
.abc-download-type {
	font-size: 10px;
	font-weight: 700;
	color: #b71c1c;
	background: #fef2f2;
	border: 1px solid #fecaca;
	padding: 2px 8px;
	border-radius: 4px;
	letter-spacing: 0.5px;
}
.abc-download-cat {
	font-size: 11px;
	font-weight: 600;
	color: #260e85;
	background: #eff6ff;
	border: 1px solid #bfdbfe;
	padding: 2px 8px;
	border-radius: 4px;
}
.abc-download-size {
	font-size: 12px;
	color: #9ca3af;
}
.abc-download-btn {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 10px 20px;
	background: #260e85;
	color: white !important;
	border-radius: 8px;
	text-decoration: none;
	font-size: 13px;
	font-weight: 600;
	transition: all 0.2s;
	white-space: nowrap;
	flex-shrink: 0;
	border: none;
	cursor: pointer;
}
.abc-download-btn:hover {
	background: #1a0a6b;
	color: white !important;
}
.abc-download-btn-soon {
	background: #f3f4f6;
	color: #9ca3af !important;
	cursor: default;
	padding: 10px 20px;
	border-radius: 8px;
	font-size: 13px;
	font-weight: 600;
	white-space: nowrap;
	flex-shrink: 0;
}
.abc-download-btn-soon:hover {
	background: #f3f4f6;
	color: #9ca3af !important;
}
.abc-downloads-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 16px;
	width: 100%;
}
@media (min-width: 768px) {
	.abc-downloads-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 20px;
	}
}
@media (max-width: 640px) {
	.abc-download-card {
		flex-direction: column;
		align-items: flex-start;
		gap: 16px;
	}
	.abc-download-btn,
	.abc-download-btn-soon {
		width: 100%;
		justify-content: center;
	}
}

/* News Grid & Cards */
.abc-news-section .abc-news-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
}
.abc-news-card {
	background: white;
	border: 1px solid #e5e7eb;
	border-radius: 14px;
	overflow: hidden;
	transition: all 0.25s;
}
.abc-news-card:hover {
	box-shadow: 0 8px 30px rgba(38,14,133,0.08);
	border-color: rgba(38,14,133,0.2);
}
.abc-news-placeholder-icon { font-size: 40px; opacity: 0.4; }
.abc-news-content { padding: 20px; }
.abc-news-cat {
	font-size: 11px;
	font-weight: 600;
	color: #260e85;
	margin-bottom: 8px;
	display: block;
}
.abc-news-title {
	font-size: 16px;
	font-weight: 600;
	color: #111827;
	line-height: 1.4;
	margin: 0 0 10px;
}
.abc-news-title a { color: inherit; text-decoration: none; }
.abc-news-title a:hover { color: #260e85; }
.abc-news-excerpt {
	font-size: 14px;
	color: #6b7280;
	line-height: 1.5;
	margin: 0 0 14px;
}
.abc-news-footer {
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	gap: 8px;
}
.abc-news-date { font-size: 13px; color: #9ca3af; }
.abc-news-read-more {
	font-size: 13px;
	font-weight: 600;
	color: #260e85;
	text-decoration: none;
}
.abc-news-read-more:hover { text-decoration: underline; }
.abc-news-empty {
	text-align: center;
	padding: 80px 20px;
}
.abc-news-empty-icon { font-size: 48px; opacity: 0.4; margin-bottom: 16px; }
.abc-news-empty h3 { font-size: 20px; color: #374151; margin-bottom: 8px; }
.abc-news-empty p { color: #9ca3af; font-size: 14px; }

/* News Grid & Cards */
.abc-news-section .abc-news-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
}
.abc-news-card {
	background: white;
	border: 1px solid #e5e7eb;
	border-radius: 14px;
	overflow: hidden;
	transition: all 0.25s;
}
.abc-news-card:hover {
	box-shadow: 0 8px 30px rgba(38,14,133,0.08);
	border-color: #260e85;
}
.abc-news-placeholder-icon { font-size: 40px; opacity: 0.4; }
.abc-news-content { padding: 20px; }
.abc-news-cat {
	font-size: 11px;
	font-weight: 600;
	color: #260e85;
	background: #eff6ff;
	padding: 3px 10px;
	border-radius: 5px;
	display: inline-block;
	margin-bottom: 10px;
}
.abc-news-title {
	font-size: 16px;
	font-weight: 600;
	color: #111827;
	line-height: 1.5;
	margin: 0 0 10px;
}
.abc-news-title a { color: inherit; text-decoration: none; }
.abc-news-title a:hover { color: #260e85; }
.abc-news-excerpt {
	font-size: 14px;
	color: #6b7280;
	line-height: 1.6;
	margin: 0 0 14px;
}
.abc-news-footer {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	font-size: 13px;
	color: #9ca3af;
}
.abc-news-read-more {
	color: #260e85;
	font-weight: 600;
	text-decoration: none;
}
.abc-news-read-more:hover { text-decoration: underline; }
.abc-news-empty {
	text-align: center;
	padding: 80px 20px;
}
.abc-news-empty-icon { font-size: 48px; margin-bottom: 16px; opacity: 0.5; }
.abc-news-empty h3 { font-size: 20px; color: #374151; margin: 0 0 8px; }
.abc-news-empty p { color: #9ca3af; font-size: 14px; margin: 0; }

/* News Grid & Cards */
.abc-news-section { padding: 40px 0 80px; }
.abc-news-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
}
.abc-news-card {
	background: white;
	border: 1px solid #e5e7eb;
	border-radius: 14px;
	overflow: hidden;
	transition: all 0.25s;
}
.abc-news-card:hover {
	box-shadow: 0 8px 30px rgba(38,14,133,0.08);
	border-color: #260e85;
}
.abc-news-placeholder-icon { font-size: 40px; opacity: 0.4; }
.abc-news-content { padding: 20px; }
.abc-news-cat {
	font-size: 11px;
	font-weight: 600;
	color: #260e85;
	background: #eff6ff;
	padding: 3px 10px;
	border-radius: 5px;
	display: inline-block;
	margin-bottom: 10px;
}
.abc-news-title { font-size: 16px; font-weight: 600; margin: 0 0 10px; line-height: 1.4; }
.abc-news-title a { color: #111827; text-decoration: none; }
.abc-news-title a:hover { color: #260e85; }
.abc-news-excerpt { font-size: 14px; color: #6b7280; margin: 0 0 14px; line-height: 1.5; }
.abc-news-footer {
	display: flex;
	justify-content: space-between;
	align-items: center;
	font-size: 13px;
}
.abc-news-date { color: #9ca3af; }
.abc-news-read-more {
	color: #260e85;
	font-weight: 600;
	text-decoration: none;
	font-size: 13px;
}
.abc-news-read-more:hover { text-decoration: underline; }
.abc-news-empty {
	text-align: center;
	padding: 80px 20px;
	color: #9ca3af;
}
.abc-news-empty-icon { font-size: 48px; margin-bottom: 16px; opacity: 0.5; }
.abc-news-empty h3 { font-size: 20px; color: #374151; margin: 0 0 8px; }
.abc-news-empty p { margin: 0; font-size: 14px; }
@media (max-width: 1024px) { .abc-news-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 768px) { .abc-news-grid { grid-template-columns: 1fr; } }

/* News Grid & Cards */
.abc-news-section { padding: 48px 0 80px; }
.abc-news-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
}
.abc-news-card {
	background: white;
	border: 1px solid #e5e7eb;
	border-radius: 14px;
	overflow: hidden;
	transition: all 0.25s;
}
.abc-news-card:hover {
	box-shadow: 0 8px 30px rgba(38,14,133,0.08);
	border-color: #260e85;
}
.abc-news-placeholder-icon { font-size: 40px; opacity: 0.4; }
.abc-news-content { padding: 20px; }
.abc-news-cat {
	font-size: 11px;
	font-weight: 700;
	color: #260e85;
	display: inline-block;
	margin-bottom: 8px;
}
.abc-news-title { font-size: 16px; font-weight: 600; margin: 0 0 10px; line-height: 1.4; }
.abc-news-title a { color: #111827; text-decoration: none; }
.abc-news-title a:hover { color: #260e85; }
.abc-news-excerpt { font-size: 14px; color: #6b7280; margin: 0 0 14px; line-height: 1.5; }
.abc-news-footer { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 8px; }
.abc-news-date { font-size: 12px; color: #9ca3af; }
.abc-news-read-more { font-size: 13px; font-weight: 600; color: #260e85; text-decoration: none; }
.abc-news-read-more:hover { text-decoration: underline; }
.abc-news-empty { text-align: center; padding: 80px 20px; }
.abc-news-empty-icon { font-size: 64px; margin-bottom: 16px; opacity: 0.5; }
.abc-news-empty h3 { font-size: 20px; color: #374151; margin: 0 0 8px; }
.abc-news-empty p { color: #9ca3af; font-size: 14px; margin: 0; }

/* News Grid & Cards */
.abc-news-section { padding: 40px 0 60px; }
.abc-news-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
}
.abc-news-card {
	background: white;
	border: 1px solid #e5e7eb;
	border-radius: 14px;
	overflow: hidden;
	transition: all 0.25s;
}
.abc-news-card:hover {
	box-shadow: 0 8px 30px rgba(38,14,133,0.08);
	border-color: #260e85;
}
.abc-news-placeholder-icon { font-size: 40px; opacity: 0.4; }
.abc-news-content { padding: 20px; }
.abc-news-cat {
	font-size: 11px;
	font-weight: 600;
	color: #260e85;
	background: #eff6ff;
	padding: 3px 10px;
	border-radius: 5px;
	display: inline-block;
	margin-bottom: 10px;
}
.abc-news-title {
	font-size: 16px;
	font-weight: 600;
	color: #111827;
	line-height: 1.4;
	margin: 0 0 10px;
}
.abc-news-title a { color: inherit; text-decoration: none; }
.abc-news-title a:hover { color: #260e85; }
.abc-news-excerpt { font-size: 14px; color: #6b7280; line-height: 1.5; margin: 0 0 14px; }
.abc-news-footer {
	display: flex;
	justify-content: space-between;
	align-items: center;
	font-size: 13px;
}
.abc-news-date { color: #9ca3af; }
.abc-news-read-more {
	color: #260e85;
	font-weight: 600;
	text-decoration: none;
	font-size: 13px;
}
.abc-news-read-more:hover { text-decoration: underline; }
.abc-news-empty {
	text-align: center;
	padding: 60px 24px;
}
.abc-news-empty-icon { font-size: 56px; margin-bottom: 16px; opacity: 0.5; }
.abc-news-empty h3 { font-size: 18px; color: #374151; margin: 0 0 8px; }
.abc-news-empty p { color: #9ca3af; font-size: 14px; margin: 0; }

@media (max-width: 768px) {
	.abc-news-grid { grid-template-columns: 1fr; }
}

/* News Grid & Cards */
.abc-news-section { padding: 48px 0 80px; }
.abc-news-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
}
.abc-news-card {
	background: white;
	border: 1px solid #e5e7eb;
	border-radius: 14px;
	overflow: hidden;
	transition: all 0.25s;
}
.abc-news-card:hover {
	box-shadow: 0 8px 30px rgba(38,14,133,0.08);
	border-color: #260e85;
}
.abc-news-placeholder-icon { font-size: 40px; opacity: 0.4; }
.abc-news-content { padding: 20px; }
.abc-news-cat {
	font-size: 11px;
	font-weight: 600;
	color: #260e85;
	margin-bottom: 8px;
	display: block;
}
.abc-news-title {
	font-size: 17px;
	font-weight: 600;
	color: #111827;
	line-height: 1.4;
	margin: 0 0 10px;
}
.abc-news-title a { color: inherit; text-decoration: none; }
.abc-news-title a:hover { color: #260e85; }
.abc-news-excerpt {
	font-size: 14px;
	color: #6b7280;
	line-height: 1.6;
	margin: 0 0 16px;
}
.abc-news-footer {
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	gap: 8px;
}
.abc-news-date { font-size: 13px; color: #9ca3af; }
.abc-news-read-more {
	font-size: 13px;
	font-weight: 600;
	color: #260e85;
	text-decoration: none;
}
.abc-news-read-more:hover { text-decoration: underline; }
.abc-news-empty {
	text-align: center;
	padding: 80px 20px;
	color: #9ca3af;
}
.abc-news-empty-icon { font-size: 64px; margin-bottom: 16px; opacity: 0.4; }
.abc-news-empty h3 { font-size: 20px; color: #374151; margin: 0 0 8px; }

/* News Grid & Cards */
.abc-news-section { padding: 48px 0 80px; }
.abc-news-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
}
.abc-news-card {
	background: white;
	border: 1px solid #e5e7eb;
	border-radius: 14px;
	overflow: hidden;
	transition: all 0.25s;
}
.abc-news-card:hover {
	box-shadow: 0 8px 30px rgba(38,14,133,0.08);
	border-color: #260e85;
}
.abc-news-placeholder-icon { font-size: 40px; opacity: 0.4; }
.abc-news-content { padding: 20px; }
.abc-news-cat {
	font-size: 11px;
	font-weight: 600;
	color: #260e85;
	background: #eff6ff;
	padding: 3px 10px;
	border-radius: 5px;
	display: inline-block;
	margin-bottom: 10px;
}
.abc-news-title {
	font-size: 16px;
	font-weight: 600;
	color: #111827;
	line-height: 1.4;
	margin: 0 0 10px;
}
.abc-news-title a { color: inherit; text-decoration: none; }
.abc-news-title a:hover { color: #260e85; }
.abc-news-excerpt {
	font-size: 14px;
	color: #6b7280;
	line-height: 1.5;
	margin: 0 0 14px;
}
.abc-news-footer {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	font-size: 13px;
}
.abc-news-date { color: #9ca3af; }
.abc-news-read-more {
	color: #260e85;
	font-weight: 600;
	text-decoration: none;
}
.abc-news-read-more:hover { text-decoration: underline; }
.abc-news-empty {
	text-align: center;
	padding: 80px 20px;
	color: #9ca3af;
}
.abc-news-empty-icon { font-size: 64px; margin-bottom: 20px; opacity: 0.5; }
.abc-news-empty h3 { font-size: 20px; color: #374151; margin: 0 0 10px; }

/* News Grid & Cards */
.abc-news-section { padding: 40px 0 60px; }
.abc-news-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
}
.abc-news-card {
	background: white;
	border: 1px solid #e5e7eb;
	border-radius: 14px;
	overflow: hidden;
	transition: all 0.25s;
}
.abc-news-card:hover {
	box-shadow: 0 8px 30px rgba(38,14,133,0.08);
	border-color: #260e85;
}
.abc-news-placeholder-icon { font-size: 40px; opacity: 0.4; }
.abc-news-content { padding: 20px; }
.abc-news-cat {
	font-size: 11px;
	font-weight: 600;
	color: #260e85;
	display: block;
	margin-bottom: 8px;
}
.abc-news-title { font-size: 16px; font-weight: 600; margin: 0 0 10px; line-height: 1.4; }
.abc-news-title a { color: #111827; text-decoration: none; }
.abc-news-title a:hover { color: #260e85; }
.abc-news-excerpt { font-size: 14px; color: #6b7280; margin: 0 0 14px; line-height: 1.5; }
.abc-news-footer {
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	gap: 8px;
}
.abc-news-date { font-size: 13px; color: #9ca3af; }
.abc-news-read-more {
	font-size: 13px;
	font-weight: 600;
	color: #260e85;
	text-decoration: none;
}
.abc-news-read-more:hover { text-decoration: underline; }
.abc-news-empty {
	text-align: center;
	padding: 80px 20px;
}
.abc-news-empty-icon { font-size: 64px; margin-bottom: 16px; opacity: 0.5; }
.abc-news-empty h3 { font-size: 20px; color: #374151; margin: 0 0 8px; }
.abc-news-empty p { color: #9ca3af; font-size: 14px; margin: 0; }

@media (max-width: 768px) {
	.abc-news-grid { grid-template-columns: 1fr; }
}

/* News Grid & Cards */
.abc-news-section { padding: 48px 0 80px; }
.abc-news-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
}
.abc-news-card {
	background: white;
	border: 1px solid #e5e7eb;
	border-radius: 14px;
	overflow: hidden;
	transition: all 0.25s;
}
.abc-news-card:hover {
	box-shadow: 0 8px 30px rgba(38,14,133,0.08);
	border-color: #bfdbfe;
}
.abc-news-placeholder-icon { font-size: 40px; opacity: 0.4; }
.abc-news-content { padding: 20px; }
.abc-news-cat {
	font-size: 11px;
	font-weight: 600;
	color: #260e85;
	background: #eff6ff;
	padding: 3px 10px;
	border-radius: 5px;
	display: inline-block;
	margin-bottom: 10px;
}
.abc-news-title {
	font-size: 17px;
	font-weight: 600;
	color: #111827;
	line-height: 1.4;
	margin: 0 0 10px;
}
.abc-news-title a { color: inherit; text-decoration: none; }
.abc-news-title a:hover { color: #260e85; }
.abc-news-excerpt {
	font-size: 14px;
	color: #6b7280;
	line-height: 1.6;
	margin: 0 0 14px;
}
.abc-news-footer {
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	gap: 8px;
}
.abc-news-date { font-size: 13px; color: #9ca3af; }
.abc-news-read-more {
	font-size: 13px;
	font-weight: 600;
	color: #260e85;
	text-decoration: none;
}
.abc-news-read-more:hover { text-decoration: underline; }
.abc-news-empty {
	text-align: center;
	padding: 80px 20px;
}
.abc-news-empty-icon { font-size: 64px; margin-bottom: 16px; opacity: 0.5; }
.abc-news-empty h3 { font-size: 20px; color: #374151; margin: 0 0 8px; }
.abc-news-empty p { color: #9ca3af; font-size: 14px; margin: 0; }

@media (max-width: 768px) {
	.abc-news-grid { grid-template-columns: 1fr; }
}

/* News Search */
.abc-news-search-wrap {
	margin-bottom: 40px;
	display: flex;
	justify-content: center;
}
.abc-news-search-box {
	display: flex;
	align-items: center;
	gap: 10px;
	background: white;
	border: 1px solid #e5e7eb;
	border-radius: 12px;
	padding: 12px 18px;
	width: 100%;
	max-width: 480px;
	transition: border-color 0.2s;
}
.abc-news-search-box:focus-within {
	border-color: #260e85;
	box-shadow: 0 0 0 3px rgba(38,14,133,0.08);
}
.abc-news-search-box input {
	border: none;
	outline: none;
	flex: 1;
	font-size: 15px;
	background: transparent;
	direction: rtl;
}

/* Pagination */
.abc-news-pagination {
	display: flex;
	justify-content: center;
	gap: 8px;
	margin-top: 48px;
	flex-wrap: wrap;
}
.abc-page-btn {
	width: 40px;
	height: 40px;
	border-radius: 8px;
	border: 1px solid #e5e7eb;
	background: white;
	color: #374151;
	font-size: 14px;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.2s;
}
.abc-page-btn:hover { border-color: #260e85; color: #260e85; }
.abc-page-btn.active {
	background: #260e85;
	border-color: #260e85;
	color: white;
}

/* Loading state */
#abc-news-container.abc-loading {
	opacity: 0.5;
	pointer-events: none;
	transition: opacity 0.2s;
}

/* News Grid & Cards */
.abc-news-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
}
.abc-news-card {
	background: white;
	border: 1px solid #e5e7eb;
	border-radius: 14px;
	overflow: hidden;
	transition: all 0.25s;
}
.abc-news-card:hover {
	box-shadow: 0 8px 30px rgba(38,14,133,0.08);
	border-color: #bfdbfe;
}
.abc-news-placeholder-icon { font-size: 40px; opacity: 0.4; }
.abc-news-content { padding: 20px; }
.abc-news-cat {
	display: inline-block;
	font-size: 11px;
	font-weight: 600;
	color: #260e85;
	background: #eff6ff;
	padding: 3px 10px;
	border-radius: 5px;
	margin-bottom: 10px;
}
.abc-news-title {
	font-size: 16px;
	font-weight: 600;
	line-height: 1.4;
	margin: 0 0 10px;
}
.abc-news-title a { color: #111827; text-decoration: none; }
.abc-news-title a:hover { color: #260e85; }
.abc-news-excerpt {
	font-size: 14px;
	color: #6b7280;
	line-height: 1.5;
	margin: 0 0 14px;
}
.abc-news-footer {
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	gap: 8px;
}
.abc-news-date { font-size: 13px; color: #9ca3af; }
.abc-news-read-more {
	font-size: 13px;
	font-weight: 600;
	color: #260e85;
	text-decoration: none;
}
.abc-news-read-more:hover { text-decoration: underline; }
.abc-news-empty {
	text-align: center;
	padding: 80px 20px;
	color: #9ca3af;
}
.abc-news-empty-icon { font-size: 48px; margin-bottom: 16px; opacity: 0.5; }
.abc-news-empty h3 { font-size: 20px; color: #374151; margin: 0 0 8px; }
@media (max-width: 768px) {
	.abc-news-grid { grid-template-columns: 1fr; }
}

/* Single Post */
.abc-single-container {
	max-width: 1200px !important;
	width: 100%;
	padding: 0 40px;
	margin: 0 auto;
	box-sizing: border-box;
}
.abc-breadcrumb {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 13px;
	color: #9ca3af;
	margin-bottom: 32px;
}
.abc-breadcrumb a { color: #6b7280; text-decoration: none; }
.abc-breadcrumb a:hover { color: #260e85; }
.abc-breadcrumb-sep { color: #d1d5db; }
.abc-single-header { margin-bottom: 32px; }
.abc-single-title {
	font-size: 28px;
	font-weight: 700;
	color: #111827;
	line-height: 1.5;
	margin: 16px 0 12px;
}
.abc-single-meta { color: #9ca3af; font-size: 14px; }
.abc-single-featured-img {
	border-radius: 16px;
	overflow: hidden;
	margin-bottom: 40px;
	max-height: 480px;
	width: 100%;
}
.abc-single-img {
	width: 100%;
	height: 480px;
	object-fit: cover;
	object-position: center top;
	display: block;
}
.abc-single-content {
	font-size: 16px;
	line-height: 1.9;
	color: #374151;
	margin-bottom: 40px;
}
.abc-single-content p { margin-bottom: 20px; }
.abc-btn-back {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	color: #260e85;
	font-weight: 600;
	text-decoration: none;
	font-size: 14px;
	transition: color 0.2s;
}
.abc-btn-back:hover { color: #1a0a6b; }
.abc-related-posts {
	margin-top: 60px;
	padding-top: 40px;
	border-top: 1px solid #f3f4f6;
	width: 100%;
}
.abc-related-posts h3 {
	font-size: 20px;
	font-weight: 700;
	color: #111827;
	margin-bottom: 28px;
}
.abc-related-grid {
	grid-template-columns: repeat(3, 1fr) !important;
	gap: 28px !important;
	width: 100%;
}
.abc-related-grid .abc-news-card {
	width: 100%;
	min-width: 0;
	overflow: hidden;
}
.abc-related-grid .abc-news-img {
	height: 180px !important;
	width: 100% !important;
}
.abc-related-grid .abc-news-img img {
	width: 100% !important;
	height: 180px !important;
	object-fit: cover !important;
}
/* Fix overall single post width */
.abc-single-post {
	padding: 60px 0 80px !important;
	width: 100%;
}
.single .abc-single-post {
	padding-top: 48px;
}
/* General page spacing fix */
.abc-main {
	min-height: 60vh;
}

@media (max-width: 1024px) {
	.abc-single-container { padding: 0 24px; }
	.abc-related-grid { grid-template-columns: repeat(2, 1fr) !important; }
}
@media (max-width: 768px) {
	.abc-single-container { padding: 0 16px; }
	.abc-related-grid { grid-template-columns: 1fr !important; }
	.abc-single-featured-img { max-height: 280px; }
	.abc-single-img { height: 280px; }
	.page:not(.home) .abc-main,
	.single .abc-main,
	.archive .abc-main { padding-top: 24px; }
	.abc-single-title { font-size: 22px; }
}

/* Language Switcher */
.abc-lang-switcher {
	display: flex;
	justify-content: flex-end;
	margin-bottom: 24px;
	gap: 8px;
}
.abc-lang-switcher a,
.abc-lang-switcher span {
	font-size: 13px;
	font-weight: 600;
	padding: 6px 14px;
	border-radius: 8px;
	border: 1px solid #e5e7eb;
	text-decoration: none;
	color: #374151;
	transition: all 0.2s;
}
.abc-lang-switcher .current-lang,
.abc-lang-switcher span {
	background: #260e85;
	color: white;
	border-color: #260e85;
}
.abc-lang-switcher a:hover {
	border-color: #260e85;
	color: #260e85;
}

/* News page mobile fixes & card overflow */
.abc-news-card {
	min-width: 0;
	word-break: break-word;
	overflow: hidden;
}

/* News card image - unified (replaces all .abc-news-img rules) */
.abc-news-img {
	width: 100%;
	height: 200px;
	overflow: hidden;
	display: block;
	background: #f3f4f6;
	flex-shrink: 0;
}
.abc-news-img a {
	display: block;
	width: 100%;
	height: 100%;
}
.abc-news-img img {
	width: 100% !important;
	height: 100% !important;
	object-fit: cover !important;
	object-position: center !important;
	display: block !important;
}
.abc-news-img-placeholder {
	width: 100%;
	height: 200px;
	background: linear-gradient(135deg, #f0f4ff 0%, #f0fdf4 100%);
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
}
.abc-news-placeholder-icon {
	font-size: 40px;
	opacity: 0.4;
}

@media (max-width: 768px) {
	.abc-news-grid {
		grid-template-columns: 1fr !important;
		gap: 16px !important;
	}

	.abc-news-card {
		min-width: 0;
		overflow: hidden;
	}

	.abc-news-img {
		height: 180px !important;
		width: 100% !important;
	}

	.abc-news-img img {
		width: 100% !important;
		height: 180px !important;
		object-fit: cover !important;
	}

	.abc-news-title {
		font-size: 15px !important;
		word-break: break-word;
	}

	.abc-news-content {
		padding: 16px !important;
	}

	.abc-news-search-wrap {
		padding: 0 !important;
	}

	.abc-news-search-box {
		max-width: 100% !important;
	}

	.abc-news-section {
		padding: 32px 0 48px !important;
	}

	.abc-page-hero {
		padding: 40px 16px !important;
	}

	.abc-page-hero h1 {
		font-size: 26px !important;
	}

	.abc-container {
		padding-left: 16px !important;
		padding-right: 16px !important;
	}

	/* Announcement bar mobile */
	.abc-announcement-bar,
	.abc-top-bar,
	div[class*="announcement"],
	div[class*="top-bar"],
	header > div:first-child,
	.site-header > div:first-child {
		text-align: center !important;
		white-space: normal !important;
		word-wrap: break-word !important;
		padding: 8px 16px !important;
		font-size: 12px !important;
		line-height: 1.6 !important;
		height: auto !important;
		min-height: 34px !important;
	}
	.abc-announcement-bar .abc-container {
		padding-left: 16px !important;
		padding-right: 16px !important;
	}
	.abc-announcement-text {
		text-align: center !important;
		white-space: normal !important;
		word-wrap: break-word !important;
	}
}

@media (max-width: 480px) {
	.abc-news-grid {
		grid-template-columns: 1fr !important;
	}

	.abc-news-img {
		height: 180px !important;
	}

	.abc-news-footer {
		flex-direction: column !important;
		align-items: flex-start !important;
		gap: 8px !important;
	}

	.abc-page-btn {
		width: 36px !important;
		height: 36px !important;
		font-size: 13px !important;
	}
}

/* ================================
   HOMEPAGE SECTIONS
   ================================ */

/* Shared section styles */
.abc-section-header {
	text-align: center;
	margin-bottom: 48px;
}
.abc-section-header h2 {
	font-size: 32px;
	font-weight: 700;
	color: #111827;
	margin: 12px 0 16px;
	line-height: 1.4;
}
.abc-section-header p {
	font-size: 16px;
	color: #6b7280;
	max-width: 560px;
	margin: 0 auto;
	line-height: 1.7;
}
.abc-section-badge {
	display: inline-block;
	margin-bottom: 8px;
}
.abc-section-badge span {
	font-size: 13px;
	font-weight: 700;
	color: #499e71;
	background: #f0fdf4;
	border: 1px solid #bbf7d0;
	padding: 5px 14px;
	border-radius: 20px;
	letter-spacing: 0.3px;
}
.abc-section-cta {
	text-align: center;
	margin-top: 40px;
}

/* ================================
   ABOUT SECTION (Homepage)
   ================================ */
.abc-about-section {
	padding: 80px 0;
	background: white;
}
.abc-about-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 64px;
	align-items: center;
}
.abc-about-content h2 {
	font-size: 32px;
	font-weight: 700;
	color: #111827;
	line-height: 1.4;
	margin: 12px 0 20px;
}
.abc-about-content > p {
	font-size: 16px;
	color: #6b7280;
	line-height: 1.8;
	margin-bottom: 28px;
}
.abc-about-points {
	list-style: none;
	padding: 0;
	margin: 0 0 32px;
	display: flex;
	flex-direction: column;
	gap: 14px;
}
.abc-about-points li {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	font-size: 15px;
	color: #374151;
	line-height: 1.5;
}
.abc-point-icon {
	width: 22px;
	height: 22px;
	background: #499e71;
	color: white;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 12px;
	font-weight: 700;
	flex-shrink: 0;
	margin-top: 1px;
}
.abc-about-image {
	position: relative;
}
.abc-about-img-wrap {
	position: relative;
	border-radius: 20px;
	overflow: visible;
}
.abc-about-img-bg {
	position: absolute;
	top: -16px;
	right: -16px;
	width: 100%;
	height: 100%;
	background: linear-gradient(135deg, #260e85 0%, #499e71 100%);
	border-radius: 20px;
	opacity: 0.1;
	z-index: 0;
}
.abc-about-img-placeholder {
	position: relative;
	z-index: 1;
	background: linear-gradient(135deg, #f0f4ff 0%, #f0fdf4 100%);
	border-radius: 20px;
	padding: 60px 40px;
	text-align: center;
	border: 1px solid #e5e7eb;
	min-height: 320px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 16px;
}
.abc-about-img-icon { font-size: 64px; opacity: 0.7; }
.abc-about-img-placeholder p {
	font-size: 15px;
	color: #6b7280;
	font-weight: 500;
}
.abc-about-badge {
	position: absolute;
	bottom: -20px;
	left: -20px;
	background: #260e85;
	color: white;
	border-radius: 14px;
	padding: 16px 24px;
	text-align: center;
	z-index: 2;
	box-shadow: 0 8px 24px rgba(38,14,133,0.25);
}
.abc-about-badge-number {
	font-size: 28px;
	font-weight: 800;
	line-height: 1;
}
.abc-about-badge-label {
	font-size: 12px;
	opacity: 0.85;
	margin-top: 4px;
}

/* ================================
   TRAINING SECTION (Homepage)
   ================================ */
.abc-training-section {
	padding: 80px 0;
	background: #f9fafb;
}
.abc-training-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
}
.abc-training-card {
	background: white;
	border-radius: 16px;
	border: 1px solid #e5e7eb;
	overflow: hidden;
	transition: all 0.25s;
	display: flex;
	flex-direction: column;
}
.abc-training-card:hover {
	box-shadow: 0 8px 30px rgba(38,14,133,0.08);
	transform: translateY(-3px);
	border-color: #260e85;
}
.abc-training-card-header {
	padding: 24px 24px 0;
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.abc-training-icon { font-size: 32px; }
.abc-training-standard {
	font-size: 11px;
	font-weight: 700;
	color: #260e85;
	background: #eff6ff;
	border: 1px solid #bfdbfe;
	padding: 3px 10px;
	border-radius: 6px;
}
.abc-training-card-body {
	padding: 16px 24px;
	flex: 1;
}
.abc-training-title {
	font-size: 16px;
	font-weight: 700;
	color: #111827;
	margin-bottom: 10px;
	line-height: 1.5;
}
.abc-training-excerpt {
	font-size: 13px;
	color: #6b7280;
	line-height: 1.6;
	margin-bottom: 16px;
}
.abc-training-meta {
	display: flex;
	gap: 12px;
	flex-wrap: wrap;
}
.abc-training-meta-item {
	font-size: 12px;
	color: #6b7280;
	background: #f3f4f6;
	padding: 4px 10px;
	border-radius: 6px;
}
.abc-training-card-footer {
	padding: 16px 24px 20px;
	border-top: 1px solid #f3f4f6;
}
.abc-training-link {
	font-size: 14px;
	font-weight: 600;
	color: #260e85;
	text-decoration: none;
	transition: color 0.2s;
}
.abc-training-link:hover { color: #499e71; }
.abc-training-empty {
	text-align: center;
	padding: 60px;
	color: #9ca3af;
}

/* ================================
   HOME NEWS SECTION
   ================================ */
.abc-home-news-section {
	padding: 80px 0;
	background: white;
}

/* ================================
   CONTACT CTA SECTION
   ================================ */
.abc-contact-cta-section {
	padding: 80px 0;
	background: #f9fafb;
}
.abc-contact-cta-card {
	background: linear-gradient(135deg, #260e85 0%, #1a0a6b 100%);
	border-radius: 24px;
	padding: 64px;
	position: relative;
	overflow: hidden;
	text-align: center;
}
.abc-contact-cta-content {
	position: relative;
	z-index: 1;
}
.abc-contact-cta-card h2 {
	font-size: 32px;
	font-weight: 700;
	color: white;
	margin-bottom: 16px;
	line-height: 1.4;
}
.abc-contact-cta-card p {
	font-size: 16px;
	color: rgba(255,255,255,0.8);
	margin-bottom: 36px;
	max-width: 520px;
	margin-left: auto;
	margin-right: auto;
	line-height: 1.7;
}
.abc-contact-cta-actions {
	display: flex;
	gap: 16px;
	justify-content: center;
	flex-wrap: wrap;
}
.abc-btn-white {
	background: white;
	color: #260e85;
	padding: 14px 32px;
	border-radius: 10px;
	font-weight: 700;
	font-size: 15px;
	text-decoration: none;
	transition: all 0.2s;
	border: 2px solid white;
}
.abc-btn-white:hover {
	background: transparent;
	color: white;
}
.abc-btn-outline-white {
	background: transparent;
	color: white;
	padding: 14px 32px;
	border-radius: 10px;
	font-weight: 600;
	font-size: 15px;
	text-decoration: none;
	border: 2px solid rgba(255,255,255,0.5);
	transition: all 0.2s;
}
.abc-btn-outline-white:hover {
	border-color: white;
	background: rgba(255,255,255,0.1);
}
.abc-contact-cta-deco {
	position: absolute;
	inset: 0;
	pointer-events: none;
}
.abc-deco-circle {
	position: absolute;
	border-radius: 50%;
	background: rgba(255,255,255,0.05);
}
.abc-deco-1 {
	width: 300px;
	height: 300px;
	top: -100px;
	left: -80px;
}
.abc-deco-2 {
	width: 200px;
	height: 200px;
	bottom: -60px;
	right: -40px;
}

/* ================================
   HOMEPAGE RESPONSIVE
   ================================ */
@media (max-width: 1024px) {
	.abc-about-grid { gap: 40px; }
	.abc-training-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
	.abc-about-grid {
		grid-template-columns: 1fr;
		gap: 40px;
	}
	.abc-about-image { order: -1; }
	.abc-about-badge {
		left: 50%;
		transform: translateX(-50%);
		bottom: -16px;
	}
	.abc-training-grid { grid-template-columns: 1fr; }
	.abc-section-header h2 { font-size: 24px; }
	.abc-contact-cta-card { padding: 40px 24px; }
	.abc-contact-cta-card h2 { font-size: 24px; }
	.abc-contact-cta-actions { flex-direction: column; align-items: center; }
}

/* ================================
   HOMEPAGE SECTIONS
   ================================ */

.abc-section-header {
	text-align: center;
	margin-bottom: 48px;
}
.abc-section-header h2 {
	font-size: 32px;
	font-weight: 700;
	color: #111827;
	margin: 12px 0 16px;
	line-height: 1.4;
}
.abc-section-header p {
	font-size: 16px;
	color: #6b7280;
	max-width: 560px;
	margin: 0 auto;
	line-height: 1.7;
}
.abc-section-badge {
	display: inline-block;
	margin-bottom: 8px;
}
.abc-section-badge span {
	font-size: 13px;
	font-weight: 700;
	color: #499e71;
	background: #f0fdf4;
	border: 1px solid #bbf7d0;
	padding: 5px 14px;
	border-radius: 20px;
	letter-spacing: 0.3px;
}
.abc-section-cta {
	text-align: center;
	margin-top: 40px;
}

.abc-about-section {
	padding: 80px 0;
	background: white;
}
.abc-about-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 64px;
	align-items: center;
}
.abc-about-content h2 {
	font-size: 32px;
	font-weight: 700;
	color: #111827;
	line-height: 1.4;
	margin: 12px 0 20px;
}
.abc-about-content > p {
	font-size: 16px;
	color: #6b7280;
	line-height: 1.8;
	margin-bottom: 28px;
}
.abc-about-points {
	list-style: none;
	padding: 0;
	margin: 0 0 32px;
	display: flex;
	flex-direction: column;
	gap: 14px;
}
.abc-about-points li {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	font-size: 15px;
	color: #374151;
	line-height: 1.5;
}
.abc-point-icon {
	width: 22px;
	height: 22px;
	background: #499e71;
	color: white;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 12px;
	font-weight: 700;
	flex-shrink: 0;
	margin-top: 1px;
}
.abc-about-image { position: relative; }
.abc-about-img-wrap {
	position: relative;
	border-radius: 20px;
	overflow: visible;
}
.abc-about-img-bg {
	position: absolute;
	top: -16px;
	right: -16px;
	width: 100%;
	height: 100%;
	background: linear-gradient(135deg, #260e85 0%, #499e71 100%);
	border-radius: 20px;
	opacity: 0.1;
	z-index: 0;
}
.abc-about-img-placeholder {
	position: relative;
	z-index: 1;
	background: linear-gradient(135deg, #f0f4ff 0%, #f0fdf4 100%);
	border-radius: 20px;
	padding: 60px 40px;
	text-align: center;
	border: 1px solid #e5e7eb;
	min-height: 320px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 16px;
}
.abc-about-img-icon { font-size: 64px; opacity: 0.7; }
.abc-about-img-placeholder p {
	font-size: 15px;
	color: #6b7280;
	font-weight: 500;
}
.abc-about-badge {
	position: absolute;
	bottom: -20px;
	left: -20px;
	background: #260e85;
	color: white;
	border-radius: 14px;
	padding: 16px 24px;
	text-align: center;
	z-index: 2;
	box-shadow: 0 8px 24px rgba(38,14,133,0.25);
}
.abc-about-badge-number {
	font-size: 28px;
	font-weight: 800;
	line-height: 1;
}
.abc-about-badge-label {
	font-size: 12px;
	opacity: 0.85;
	margin-top: 4px;
}

.abc-training-section {
	padding: 80px 0;
	background: #f9fafb;
}
.abc-training-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
}
.abc-training-card {
	background: white;
	border-radius: 16px;
	border: 1px solid #e5e7eb;
	overflow: hidden;
	transition: all 0.25s;
	display: flex;
	flex-direction: column;
}
.abc-training-card:hover {
	box-shadow: 0 8px 30px rgba(38,14,133,0.08);
	transform: translateY(-3px);
	border-color: #260e85;
}
.abc-training-card-header {
	padding: 24px 24px 0;
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.abc-training-icon { font-size: 32px; }
.abc-training-standard {
	font-size: 11px;
	font-weight: 700;
	color: #260e85;
	background: #eff6ff;
	border: 1px solid #bfdbfe;
	padding: 3px 10px;
	border-radius: 6px;
}
.abc-training-card-body {
	padding: 16px 24px;
	flex: 1;
}
.abc-training-title {
	font-size: 16px;
	font-weight: 700;
	color: #111827;
	margin-bottom: 10px;
	line-height: 1.5;
}
.abc-training-excerpt {
	font-size: 13px;
	color: #6b7280;
	line-height: 1.6;
	margin-bottom: 16px;
}
.abc-training-meta {
	display: flex;
	gap: 12px;
	flex-wrap: wrap;
}
.abc-training-meta-item {
	font-size: 12px;
	color: #6b7280;
	background: #f3f4f6;
	padding: 4px 10px;
	border-radius: 6px;
}
.abc-training-card-footer {
	padding: 16px 24px 20px;
	border-top: 1px solid #f3f4f6;
}
.abc-training-link {
	font-size: 14px;
	font-weight: 600;
	color: #260e85;
	text-decoration: none;
	transition: color 0.2s;
}
.abc-training-link:hover { color: #499e71; }
.abc-training-empty {
	text-align: center;
	padding: 60px;
	color: #9ca3af;
}

.abc-home-news-section {
	padding: 80px 0;
	background: white;
}

.abc-contact-cta-section {
	padding: 80px 0;
	background: #f9fafb;
}
.abc-contact-cta-card {
	background: linear-gradient(135deg, #260e85 0%, #1a0a6b 100%);
	border-radius: 24px;
	padding: 64px;
	position: relative;
	overflow: hidden;
	text-align: center;
}
.abc-contact-cta-content { position: relative; z-index: 1; }
.abc-contact-cta-card h2 {
	font-size: 32px;
	font-weight: 700;
	color: white;
	margin-bottom: 16px;
	line-height: 1.4;
}
.abc-contact-cta-card p {
	font-size: 16px;
	color: rgba(255,255,255,0.8);
	margin-bottom: 36px;
	max-width: 520px;
	margin-left: auto;
	margin-right: auto;
	line-height: 1.7;
}
.abc-contact-cta-actions {
	display: flex;
	gap: 16px;
	justify-content: center;
	flex-wrap: wrap;
}
.abc-btn-white {
	background: white;
	color: #260e85;
	padding: 14px 32px;
	border-radius: 10px;
	font-weight: 700;
	font-size: 15px;
	text-decoration: none;
	transition: all 0.2s;
	border: 2px solid white;
}
.abc-btn-white:hover {
	background: transparent;
	color: white;
}
.abc-btn-outline-white {
	background: transparent;
	color: white;
	padding: 14px 32px;
	border-radius: 10px;
	font-weight: 600;
	font-size: 15px;
	text-decoration: none;
	border: 2px solid rgba(255,255,255,0.5);
	transition: all 0.2s;
}
.abc-btn-outline-white:hover {
	border-color: white;
	background: rgba(255,255,255,0.1);
}
.abc-contact-cta-deco {
	position: absolute;
	inset: 0;
	pointer-events: none;
}
.abc-deco-circle {
	position: absolute;
	border-radius: 50%;
	background: rgba(255,255,255,0.05);
}
.abc-deco-1 {
	width: 300px;
	height: 300px;
	top: -100px;
	left: -80px;
}
.abc-deco-2 {
	width: 200px;
	height: 200px;
	bottom: -60px;
	right: -40px;
}

@media (max-width: 1024px) {
	.abc-about-grid { gap: 40px; }
	.abc-training-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
	.abc-about-grid {
		grid-template-columns: 1fr;
		gap: 40px;
	}
	.abc-about-image { order: -1; }
	.abc-about-badge {
		left: 50%;
		transform: translateX(-50%);
		bottom: -16px;
	}
	.abc-training-grid { grid-template-columns: 1fr; }
	.abc-section-header h2 { font-size: 24px; }
	.abc-contact-cta-card { padding: 40px 24px; }
	.abc-contact-cta-card h2 { font-size: 24px; }
	.abc-contact-cta-actions { flex-direction: column; align-items: center; }
}

/* ================================
   HOMEPAGE SECTIONS
   ================================ */

/* Shared section styles */
.abc-section-header {
	text-align: center;
	margin-bottom: 48px;
}
.abc-section-header h2 {
	font-size: 32px;
	font-weight: 700;
	color: #111827;
	margin: 12px 0 16px;
	line-height: 1.4;
}
.abc-section-header p {
	font-size: 16px;
	color: #6b7280;
	max-width: 560px;
	margin: 0 auto;
	line-height: 1.7;
}
.abc-section-badge {
	display: inline-block;
	margin-bottom: 8px;
}
.abc-section-badge span {
	font-size: 13px;
	font-weight: 700;
	color: #499e71;
	background: #f0fdf4;
	border: 1px solid #bbf7d0;
	padding: 5px 14px;
	border-radius: 20px;
	letter-spacing: 0.3px;
}
.abc-section-cta {
	text-align: center;
	margin-top: 40px;
}

/* ================================
   ABOUT SECTION
   ================================ */
.abc-about-section {
	padding: 80px 0;
	background: white;
}
.abc-about-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 64px;
	align-items: center;
}
.abc-about-content h2 {
	font-size: 32px;
	font-weight: 700;
	color: #111827;
	line-height: 1.4;
	margin: 12px 0 20px;
}
.abc-about-content > p {
	font-size: 16px;
	color: #6b7280;
	line-height: 1.8;
	margin-bottom: 28px;
}
.abc-about-points {
	list-style: none;
	padding: 0;
	margin: 0 0 32px;
	display: flex;
	flex-direction: column;
	gap: 14px;
}
.abc-about-points li {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	font-size: 15px;
	color: #374151;
	line-height: 1.5;
}
.abc-point-icon {
	width: 22px;
	height: 22px;
	background: #499e71;
	color: white;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 12px;
	font-weight: 700;
	flex-shrink: 0;
	margin-top: 1px;
}
.abc-about-image {
	position: relative;
}
.abc-about-img-wrap {
	position: relative;
	border-radius: 20px;
	overflow: visible;
}
.abc-about-img-bg {
	position: absolute;
	top: -16px;
	right: -16px;
	width: 100%;
	height: 100%;
	background: linear-gradient(135deg, #260e85 0%, #499e71 100%);
	border-radius: 20px;
	opacity: 0.1;
	z-index: 0;
}
.abc-about-img-placeholder {
	position: relative;
	z-index: 1;
	background: linear-gradient(135deg, #f0f4ff 0%, #f0fdf4 100%);
	border-radius: 20px;
	padding: 60px 40px;
	text-align: center;
	border: 1px solid #e5e7eb;
	min-height: 320px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 16px;
}
.abc-about-img-icon { font-size: 64px; opacity: 0.7; }
.abc-about-img-placeholder p {
	font-size: 15px;
	color: #6b7280;
	font-weight: 500;
}
.abc-about-badge {
	position: absolute;
	bottom: -20px;
	left: -20px;
	background: #260e85;
	color: white;
	border-radius: 14px;
	padding: 16px 24px;
	text-align: center;
	z-index: 2;
	box-shadow: 0 8px 24px rgba(38,14,133,0.25);
}
.abc-about-badge-number {
	font-size: 28px;
	font-weight: 800;
	line-height: 1;
}
.abc-about-badge-label {
	font-size: 12px;
	opacity: 0.85;
	margin-top: 4px;
}

/* ================================
   TRAINING SECTION
   ================================ */
.abc-training-section {
	padding: 80px 0;
	background: #f9fafb;
}
.abc-training-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
}
.abc-training-card {
	background: white;
	border-radius: 16px;
	border: 1px solid #e5e7eb;
	overflow: hidden;
	transition: all 0.25s;
	display: flex;
	flex-direction: column;
}
.abc-training-card:hover {
	box-shadow: 0 8px 30px rgba(38,14,133,0.08);
	transform: translateY(-3px);
	border-color: #260e85;
}
.abc-training-card-header {
	padding: 24px 24px 0;
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.abc-training-icon { font-size: 32px; }
.abc-training-standard {
	font-size: 11px;
	font-weight: 700;
	color: #260e85;
	background: #eff6ff;
	border: 1px solid #bfdbfe;
	padding: 3px 10px;
	border-radius: 6px;
}
.abc-training-card-body {
	padding: 16px 24px;
	flex: 1;
}
.abc-training-title {
	font-size: 16px;
	font-weight: 700;
	color: #111827;
	margin-bottom: 10px;
	line-height: 1.5;
}
.abc-training-excerpt {
	font-size: 13px;
	color: #6b7280;
	line-height: 1.6;
	margin-bottom: 16px;
}
.abc-training-meta {
	display: flex;
	gap: 12px;
	flex-wrap: wrap;
}
.abc-training-meta-item {
	font-size: 12px;
	color: #6b7280;
	background: #f3f4f6;
	padding: 4px 10px;
	border-radius: 6px;
}
.abc-training-card-footer {
	padding: 16px 24px 20px;
	border-top: 1px solid #f3f4f6;
}
.abc-training-link {
	font-size: 14px;
	font-weight: 600;
	color: #260e85;
	text-decoration: none;
	transition: color 0.2s;
}
.abc-training-link:hover { color: #499e71; }
.abc-training-empty {
	text-align: center;
	padding: 60px;
	color: #9ca3af;
}

/* ================================
   HOME NEWS SECTION
   ================================ */
.abc-home-news-section {
	padding: 80px 0;
	background: white;
}

/* ================================
   CONTACT CTA SECTION
   ================================ */
.abc-contact-cta-section {
	padding: 80px 0;
	background: #f9fafb;
}
.abc-contact-cta-card {
	background: linear-gradient(135deg, #260e85 0%, #1a0a6b 100%);
	border-radius: 24px;
	padding: 64px;
	position: relative;
	overflow: hidden;
	text-align: center;
}
.abc-contact-cta-content {
	position: relative;
	z-index: 1;
}
.abc-contact-cta-card h2 {
	font-size: 32px;
	font-weight: 700;
	color: white;
	margin-bottom: 16px;
	line-height: 1.4;
}
.abc-contact-cta-card p {
	font-size: 16px;
	color: rgba(255,255,255,0.8);
	margin-bottom: 36px;
	max-width: 520px;
	margin-left: auto;
	margin-right: auto;
	line-height: 1.7;
}
.abc-contact-cta-actions {
	display: flex;
	gap: 16px;
	justify-content: center;
	flex-wrap: wrap;
}
.abc-btn-white {
	background: white;
	color: #260e85;
	padding: 14px 32px;
	border-radius: 10px;
	font-weight: 700;
	font-size: 15px;
	text-decoration: none;
	transition: all 0.2s;
	border: 2px solid white;
}
.abc-btn-white:hover {
	background: transparent;
	color: white;
}
.abc-btn-outline-white {
	background: transparent;
	color: white;
	padding: 14px 32px;
	border-radius: 10px;
	font-weight: 600;
	font-size: 15px;
	text-decoration: none;
	border: 2px solid rgba(255,255,255,0.5);
	transition: all 0.2s;
}
.abc-btn-outline-white:hover {
	border-color: white;
	background: rgba(255,255,255,0.1);
}
.abc-contact-cta-deco {
	position: absolute;
	inset: 0;
	pointer-events: none;
}
.abc-deco-circle {
	position: absolute;
	border-radius: 50%;
	background: rgba(255,255,255,0.05);
}
.abc-deco-1 {
	width: 300px;
	height: 300px;
	top: -100px;
	left: -80px;
}
.abc-deco-2 {
	width: 200px;
	height: 200px;
	bottom: -60px;
	right: -40px;
}

/* ================================
   HOMEPAGE RESPONSIVE
   ================================ */
@media (max-width: 1024px) {
	.abc-about-grid { gap: 40px; }
	.abc-training-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
	.abc-about-grid {
		grid-template-columns: 1fr;
		gap: 40px;
	}
	.abc-about-image { order: -1; }
	.abc-about-badge {
		left: 50%;
		transform: translateX(-50%);
		bottom: -16px;
	}
	.abc-training-grid { grid-template-columns: 1fr; }
	.abc-section-header h2 { font-size: 24px; }
	.abc-contact-cta-card { padding: 40px 24px; }
	.abc-contact-cta-card h2 { font-size: 24px; }
	.abc-contact-cta-actions { flex-direction: column; align-items: center; }
}

/* abc-btn-outline-white phone number fix */
.abc-btn-outline-white {
	letter-spacing: 0;
	unicode-bidi: plaintext;
}

/* WhatsApp Floating Button */
.abc-whatsapp-btn {
	position: fixed;
	bottom: 32px;
	left: 32px;
	width: 60px;
	height: 60px;
	background: #25D366;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	text-decoration: none;
	z-index: 9999;
	box-shadow: 0 4px 20px rgba(37,211,102,0.4);
	transition: transform 0.2s, box-shadow 0.2s;
	animation: abc-whatsapp-pulse 2.5s ease-in-out infinite;
}
.abc-whatsapp-btn:hover {
	transform: scale(1.1);
	box-shadow: 0 6px 28px rgba(37,211,102,0.5);
	animation: none;
}
.abc-whatsapp-tooltip {
	position: absolute;
	right: 70px;
	background: #111827;
	color: white;
	font-size: 13px;
	font-weight: 500;
	padding: 8px 14px;
	border-radius: 8px;
	white-space: nowrap;
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.2s;
}
.abc-whatsapp-tooltip::after {
	content: '';
	position: absolute;
	right: -6px;
	top: 50%;
	transform: translateY(-50%);
	border: 6px solid transparent;
	border-left-color: #111827;
	border-right: 0;
}
.abc-whatsapp-btn:hover .abc-whatsapp-tooltip {
	opacity: 1;
}
@keyframes abc-whatsapp-pulse {
	0%   { box-shadow: 0 0 0 0 rgba(37,211,102,0.5); }
	50%  { box-shadow: 0 0 0 14px rgba(37,211,102,0); }
	100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); }
}
@media (max-width: 768px) {
	.abc-whatsapp-btn {
		bottom: 20px;
		left: 20px;
		width: 52px;
		height: 52px;
	}
	.abc-whatsapp-tooltip { display: none; }
}

/* ================================
   404 PAGE
   ================================ */
.abc-404-section {
	padding: 80px 0 100px;
	min-height: 70vh;
	display: flex;
	align-items: center;
}
.abc-404-wrap {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	max-width: 600px;
	margin: 0 auto;
}
.abc-404-visual {
	margin-bottom: 40px;
}
.abc-404-number {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
}
.abc-404-four {
	font-size: 100px;
	font-weight: 900;
	color: #260e85;
	line-height: 1;
	opacity: 0.15;
}
.abc-404-icon {
	animation: abc-404-float 3s ease-in-out infinite;
}
@keyframes abc-404-float {
	0%, 100% { transform: translateY(0px); }
	50%       { transform: translateY(-12px); }
}
.abc-404-content h1 {
	font-size: 36px;
	font-weight: 700;
	color: #111827;
	margin: 12px 0 16px;
	line-height: 1.3;
}
.abc-404-content > p {
	font-size: 16px;
	color: #6b7280;
	line-height: 1.7;
	margin-bottom: 36px;
	max-width: 480px;
}
.abc-404-links {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 12px;
	margin-bottom: 40px;
	width: 100%;
	max-width: 320px;
	margin-left: auto;
	margin-right: auto;
}
.abc-404-links .abc-btn {
	width: 100%;
	text-align: center;
	justify-content: center;
	padding: 14px 24px;
	font-size: 15px;
}
@media (min-width: 769px) {
	.abc-404-links {
		flex-direction: row;
		max-width: none;
		width: auto;
	}
	.abc-404-links .abc-btn {
		width: auto;
	}
}
.abc-404-search {
	width: 100%;
	max-width: 480px;
	padding: 28px;
	background: #f9fafb;
	border-radius: 16px;
	border: 1px solid #e5e7eb;
}
.abc-404-search-label {
	font-size: 14px;
	color: #6b7280;
	margin-bottom: 14px;
	font-weight: 500;
}
.abc-404-search-form {
	display: flex;
	flex-direction: column;
	gap: 10px;
	width: 100%;
}
.abc-404-search-input {
	flex: 1;
	border: 1.5px solid #e5e7eb;
	border-radius: 10px;
	padding: 12px 16px;
	font-size: 15px;
	font-family: inherit;
	direction: rtl;
	text-align: right;
	outline: none;
	transition: border-color 0.2s;
	width: 100%;
	box-sizing: border-box;
}
.abc-404-search-input:focus {
	border-color: #260e85;
	box-shadow: 0 0 0 3px rgba(38,14,133,0.08);
}
.abc-404-search-btn {
	background: #260e85;
	color: white;
	border: none;
	padding: 12px 24px;
	border-radius: 10px;
	font-size: 15px;
	font-weight: 600;
	font-family: inherit;
	cursor: pointer;
	transition: background 0.2s;
	white-space: nowrap;
	width: 100%;
	margin-top: 8px;
}
@media (min-width: 769px) {
	.abc-404-search-form {
		flex-direction: row;
	}
	.abc-404-search-btn {
		width: auto;
		margin-top: 0;
	}
	.abc-404-search-input {
		width: auto;
	}
}
.abc-404-search-btn:hover {
	background: #1a0a6b;
}
@media (max-width: 768px) {
	.abc-404-section {
		padding: 60px 0 80px;
		min-height: auto;
	}
	.abc-404-four { font-size: 70px; }
	.abc-404-content h1 { font-size: 26px; }
}

/* ================================
   TEAM SLIDER
   ================================ */

.abc-team-section {
	padding: 80px 0;
	background: transparent;
}

.abc-team-slider-wrap {
	overflow: hidden;
	position: relative;
	padding: 16px 0 8px;
}

.abc-team-slider {
	display: flex;
	transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	will-change: transform;
}

.abc-team-card {
	flex: 0 0 calc(100% / 3);
	padding: 16px;
	box-sizing: border-box;
}

.abc-team-card-inner {
	background: white;
	border-radius: 20px;
	padding: 36px 24px 28px;
	border: 1px solid #e5e7eb;
	transition: all 0.3s;
	text-align: center;
	box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}

.abc-team-card-inner:hover {
	box-shadow: 0 12px 40px rgba(38,14,133,0.10);
	transform: translateY(-4px);
	border-color: #260e85;
}

/* Photo */
.abc-team-photo-wrap {
	width: 120px;
	height: 120px;
	border-radius: 50%;
	overflow: hidden;
	margin: 0 auto 20px;
	border: 4px solid #f0f4ff;
	box-shadow: 0 4px 16px rgba(38,14,133,0.12);
}

.abc-team-photo {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center top;
}

.abc-team-initials {
	width: 120px;
	height: 120px;
	border-radius: 50%;
	background: linear-gradient(135deg, #260e85, #499e71);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 28px;
	font-weight: 700;
	color: white;
	margin: 0 auto 20px;
}

.abc-team-name {
	font-size: 18px;
	font-weight: 700;
	color: #111827;
	margin-bottom: 8px;
	line-height: 1.4;
}

.abc-team-position {
	font-size: 14px;
	color: #499e71;
	font-weight: 600;
	background: #f0fdf4;
	border: 1px solid #bbf7d0;
	padding: 4px 14px;
	border-radius: 20px;
	display: inline-block;
	margin-top: 4px;
}

/* Controls */
.abc-team-controls {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 16px;
	margin-top: 32px;
}

.abc-team-prev,
.abc-team-next {
	width: 44px;
	height: 44px;
	border-radius: 50%;
	border: 1.5px solid #e5e7eb;
	background: white;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #374151;
	transition: all 0.2s;
	box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.abc-team-prev:hover,
.abc-team-next:hover {
	border-color: #260e85;
	color: #260e85;
	background: #f0f4ff;
	box-shadow: 0 4px 12px rgba(38,14,133,0.12);
}

.abc-team-dots {
	display: flex;
	gap: 8px;
	align-items: center;
}

.abc-team-dot {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	border: none;
	background: #d1d5db;
	cursor: pointer;
	transition: all 0.3s;
	padding: 0;
}

.abc-team-dot.active {
	background: #260e85;
	width: 28px;
	border-radius: 4px;
}

@media (max-width: 768px) {
	.abc-team-card {
		flex: 0 0 100%;
		padding: 12px;
	}
	.abc-team-photo-wrap,
	.abc-team-initials {
		width: 100px;
		height: 100px;
	}
}

/* ================================
   SERVICES ARCHIVE
   ================================ */
.abc-services-archive { padding: 60px 0 80px; }
.abc-services-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 28px;
}
.abc-service-card {
	background: var(--abc-white);
	border: 1px solid var(--abc-gray-200);
	border-radius: 20px;
	overflow: hidden;
	transition: all 0.3s;
}
.abc-service-card:hover {
	box-shadow: 0 12px 40px rgba(38, 14, 133, 0.08);
	transform: translateY(-4px);
	border-color: var(--abc-primary);
}
.abc-service-card-inner {
	padding: 36px 28px;
	text-align: center;
}
.abc-service-icon {
	width: 64px;
	height: 64px;
	margin: 0 auto 20px;
	border-radius: 16px;
	background: linear-gradient(135deg, var(--abc-primary), var(--abc-green-light));
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--abc-white);
	font-size: 28px;
}
.abc-service-icon .dashicons,
.abc-service-icon [class^="dashicons-"] {
	width: 32px;
	height: 32px;
	font-size: 32px;
}
.abc-service-title {
	font-size: 18px;
	font-weight: 700;
	color: var(--abc-text);
	margin-bottom: 12px;
	line-height: 1.4;
}
.abc-service-excerpt {
	font-size: 14px;
	color: var(--abc-text-muted);
	line-height: 1.6;
	margin-bottom: 20px;
}
.abc-service-cta {
	display: inline-block;
	font-size: 14px;
	font-weight: 600;
	color: var(--abc-primary);
	text-decoration: none;
	transition: color 0.2s;
}
.abc-service-cta:hover { color: var(--abc-primary-dark); }
.abc-services-empty {
	text-align: center;
	padding: 60px 20px;
	color: var(--abc-text-muted);
	font-size: 16px;
}
@media (max-width: 768px) {
	.abc-services-grid { grid-template-columns: 1fr; }
}

/* ================================
   SINGLE SERVICE HERO & CERTS
   ================================ */
.abc-service-hero {
	padding: 60px 0 48px;
	background: linear-gradient(180deg, var(--abc-gray-50) 0%, var(--abc-white) 100%);
}
.abc-service-hero-content {
	text-align: center;
	max-width: 720px;
	margin: 0 auto;
}
.abc-service-hero-icon {
	width: 80px;
	height: 80px;
	margin: 0 auto 24px;
	border-radius: 20px;
	background: linear-gradient(135deg, var(--abc-primary), var(--abc-green-light));
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--abc-white);
}
.service-hero__icon {
	font-size: 64px !important;
	width: 64px !important;
	height: 64px !important;
	color: var(--abc-white);
	display: block;
}
/* Override WordPress Dashicons size in hero */
.abc-service-hero .dashicons {
	font-size: 64px;
	width: 64px;
	height: 64px;
	color: #fff;
}
.abc-service-hero-title {
	font-size: 32px;
	font-weight: 700;
	color: var(--abc-text);
	margin-bottom: 16px;
	line-height: 1.3;
}
.abc-service-hero-desc {
	font-size: 16px;
	color: var(--abc-text-muted);
	line-height: 1.7;
}
.abc-service-certs {
	padding: 48px 0 80px;
}
.abc-service-certs-title {
	font-size: 24px;
	font-weight: 700;
	color: var(--abc-text);
	margin-bottom: 32px;
	text-align: center;
}

/* ================================
   CERTS SEARCH
   ================================ */
.certs-search-wrap {
	margin-bottom: 32px;
}

.certs-search-box {
	position: relative;
	max-width: 480px;
	margin: 0 auto;
}

.certs-search-input {
	width: 100%;
	padding: 14px 48px 14px 48px;
	border: 2px solid var(--abc-gray-200, #e5e7eb);
	border-radius: 12px;
	font-family: 'Alexandria', sans-serif;
	font-size: 0.95rem;
	color: var(--abc-text, #1a1a2e);
	background: #fff;
	transition: border-color 0.2s ease, box-shadow 0.2s ease;
	outline: none;
	box-sizing: border-box;
	text-align: center;
}

.certs-search-input:focus {
	border-color: var(--abc-primary, #260e85);
	box-shadow: 0 0 0 3px rgba(38, 14, 133, 0.08);
}

.certs-search-icon {
	position: absolute;
	top: 50%;
	right: 14px;
	transform: translateY(-50%);
	color: var(--abc-gray-400, #9ca3af);
	font-size: 20px;
	width: 20px;
	height: 20px;
	pointer-events: none;
}

/* LTR override for EN */
html[lang="en"] .certs-search-icon {
	right: auto;
	left: 14px;
}

.certs-search-clear {
	position: absolute;
	top: 50%;
	left: 14px;
	transform: translateY(-50%);
	background: none;
	border: none;
	cursor: pointer;
	padding: 0;
	color: var(--abc-gray-400, #9ca3af);
	display: flex;
	align-items: center;
}

html[lang="en"] .certs-search-clear {
	left: auto;
	right: 14px;
}

.certs-search-clear:hover {
	color: var(--abc-primary, #260e85);
}

.certs-search-count {
	text-align: center;
	font-size: 0.85rem;
	color: var(--abc-text-muted, #6b7280);
	margin-top: 8px;
	min-height: 20px;
}

/* No Results */
.certs-no-results {
	text-align: center;
	padding: 48px 24px;
	color: var(--abc-text-muted, #6b7280);
}

.certs-no-results .dashicons {
	font-size: 48px;
	width: 48px;
	height: 48px;
	opacity: 0.3;
	margin-bottom: 12px;
	display: block;
	margin-inline: auto;
}

.certs-no-results p {
	font-size: 1rem;
	margin: 0;
}

/* Cert Card Image */
.cert-card__image {
	width: 100%;
	aspect-ratio: 1 / 1;
	border-radius: 10px;
	overflow: hidden;
	margin-bottom: 16px;
	background: var(--abc-gray-50, #f9fafb);
	display: flex;
	align-items: center;
	justify-content: center;
}

.cert-card__image img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	padding: 16px;
}

/* Placeholder when no image */
.cert-card__placeholder {
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	background: linear-gradient(135deg, #f0eeff 0%, #e8f4ec 100%);
}

.cert-card__placeholder .dashicons {
	font-size: 48px;
	width: 48px;
	height: 48px;
	color: var(--abc-primary, #260e85);
	opacity: 0.6;
}

.cert-card__placeholder img {
	width: 60%;
	height: 60%;
	object-fit: contain;
}

/* ================================
   SINGLE SERVICE HERO
   ================================ */
.abc-service-hero {
	padding: 60px 0 48px;
	background: linear-gradient(180deg, var(--abc-gray-50) 0%, var(--abc-white) 60%);
}
.abc-service-hero-content {
	text-align: center;
	max-width: 720px;
	margin: 0 auto;
}
.abc-service-hero-icon {
	width: 80px;
	height: 80px;
	margin: 0 auto 24px;
	border-radius: 18px;
	background: linear-gradient(135deg, var(--abc-primary), var(--abc-green-light));
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--abc-white);
	font-size: 36px;
}
.abc-service-hero-icon .dashicons,
.abc-service-hero-icon .service-hero__icon {
	width: 64px !important;
	height: 64px !important;
	font-size: 64px !important;
}
.abc-service-hero-title {
	font-size: 28px;
	font-weight: 700;
	color: var(--abc-text);
	margin-bottom: 16px;
	line-height: 1.4;
}
.abc-service-hero-desc {
	font-size: 16px;
	color: var(--abc-text-muted);
	line-height: 1.7;
}

/* ================================
   CERTIFICATE CARDS GRID
   ================================ */
.abc-service-certs { padding: 20px 0 60px; }
.abc-service-certs-title {
	font-size: 22px;
	font-weight: 700;
	color: var(--abc-text);
	margin-bottom: 24px;
	text-align: center;
}
.certs-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
	padding: 24px 0;
}

@media (max-width: 991px) {
	.certs-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 576px) {
	.certs-grid { grid-template-columns: 1fr; }
}

.cert-card {
	background: var(--abc-white, #fff);
	border: 1px solid var(--abc-gray-200, #e5e7eb);
	border-radius: 12px;
	padding: 20px;
	display: flex;
	flex-direction: column;
	transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.cert-card:hover {
	box-shadow: 0 8px 32px rgba(0,0,0,0.10);
	transform: translateY(-4px);
}

.cert-card__name {
	font-size: 0.95rem;
	font-weight: 700;
	color: var(--abc-text, #1a1a2e);
	margin: 0 0 8px 0;
	line-height: 1.4;
	text-align: center;
}

.cert-card__desc {
	font-size: 0.8rem;
	color: var(--abc-text-muted, #6b7280);
	flex: 1;
	margin: 0 0 16px 0;
	line-height: 1.6;
	text-align: center;
}

.cert-card__footer {
	margin-top: auto;
	padding-top: 12px;
	border-top: 1px solid var(--abc-gray-100, #f3f4f6);
}

.cert-card__cta {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	background: #25D366;
	color: #fff !important;
	padding: 10px 16px;
	border-radius: 8px;
	font-weight: 600;
	font-size: 0.85rem;
	text-decoration: none !important;
	transition: background 0.2s ease;
	width: 100%;
	width: 100%;
}

.cert-card__cta::before {
	content: '';
	display: inline-block;
	width: 18px;
	height: 18px;
	background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M17.472 14.382c-.297-.149-1.758-.867-2.03-.967-.273-.099-.471-.148-.67.15-.197.297-.767.966-.94 1.164-.173.199-.347.223-.644.075-.297-.15-1.255-.463-2.39-1.475-.883-.788-1.48-1.761-1.653-2.059-.173-.297-.018-.458.13-.606.134-.133.298-.347.446-.52.149-.174.198-.298.298-.497.099-.198.05-.371-.025-.52-.075-.149-.669-1.612-.916-2.207-.242-.579-.487-.5-.669-.51-.173-.008-.371-.01-.57-.01-.198 0-.52.074-.792.372-.272.297-1.04 1.016-1.04 2.479 0 1.462 1.065 2.875 1.213 3.074.149.198 2.096 3.2 5.077 4.487.709.306 1.262.489 1.694.625.712.227 1.36.195 1.871.118.571-.085 1.758-.719 2.006-1.413.248-.694.248-1.289.173-1.413-.074-.124-.272-.198-.57-.347m-5.421 7.403h-.004a9.87 9.87 0 01-5.031-1.378l-.361-.214-3.741.982.998-3.648-.235-.374a9.86 9.86 0 01-1.51-5.26c.001-5.45 4.436-9.884 9.888-9.884 2.64 0 5.122 1.03 6.988 2.898a9.825 9.825 0 012.893 6.994c-.003 5.45-4.437 9.884-9.885 9.884m8.413-18.297A11.815 11.815 0 0012.05 0C5.495 0 .16 5.335.157 11.892c0 2.096.547 4.142 1.588 5.945L.057 24l6.305-1.654a11.882 11.882 0 005.683 1.448h.005c6.554 0 11.89-5.335 11.893-11.893a11.821 11.821 0 00-3.48-8.413Z'/%3E%3C/svg%3E") no-repeat center/contain;
}

.cert-card__cta:hover {
	background: #1ebe5d;
	color: #fff !important;
}

/* ================================
   SINGLE SERVICE HERO
   ================================ */
.abc-service-hero {
	padding: 60px 0 48px;
	background: linear-gradient(180deg, var(--abc-gray-50) 0%, var(--abc-white) 60%);
}
.abc-service-hero-content {
	text-align: center;
	max-width: 720px;
	margin: 0 auto;
}
.abc-service-hero-icon {
	width: 80px;
	height: 80px;
	margin: 0 auto 24px;
	border-radius: 20px;
	background: linear-gradient(135deg, var(--abc-primary), var(--abc-green-light));
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--abc-white);
	font-size: 40px;
}
.abc-service-hero-icon .dashicons,
.abc-service-hero-icon .service-hero__icon {
	width: 64px !important;
	height: 64px !important;
	font-size: 64px !important;
}
.abc-service-hero-title {
	font-size: 28px;
	font-weight: 700;
	color: var(--abc-text);
	margin-bottom: 16px;
	line-height: 1.4;
}
.abc-service-hero-desc {
	font-size: 16px;
	color: var(--abc-text-muted);
	line-height: 1.7;
}

/* ================================
   CERTIFICATE CARDS GRID
   ================================ */
.abc-service-certs { padding: 20px 0 60px; }
.abc-service-certs-title {
	font-size: 22px;
	font-weight: 700;
	color: var(--abc-text);
	margin-bottom: 32px;
	text-align: center;
}
.certs-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
	padding: 0;
}

@media (max-width: 991px) {
	.certs-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 576px) {
	.certs-grid { grid-template-columns: 1fr; }
}

.cert-card {
	background: var(--abc-white, #fff);
	border: 1px solid var(--abc-gray-200, #e5e7eb);
	border-radius: 12px;
	padding: 20px;
	display: flex;
	flex-direction: column;
	transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.cert-card:hover {
	box-shadow: 0 8px 32px rgba(0,0,0,0.10);
	transform: translateY(-4px);
}

.cert-card__name {
	font-size: 0.95rem;
	font-weight: 700;
	color: var(--abc-text, #1a1a2e);
	margin: 0 0 8px 0;
	line-height: 1.4;
	text-align: center;
}

.cert-card__desc {
	font-size: 0.8rem;
	color: var(--abc-text-muted, #6b7280);
	flex: 1;
	margin: 0 0 16px 0;
	line-height: 1.6;
	text-align: center;
}

.cert-card__footer {
	margin-top: auto;
	padding-top: 12px;
	border-top: 1px solid var(--abc-gray-100, #f3f4f6);
}

.cert-card__cta {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	background: #25D366 !important;
	color: #fff !important;
	padding: 10px 16px;
	border-radius: 8px;
	font-weight: 600;
	font-size: 0.85rem;
	text-decoration: none !important;
	transition: background 0.2s ease;
	width: 100%;
}

.cert-card__cta::before {
	content: '';
	display: inline-block;
	width: 18px;
	height: 18px;
	background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M17.472 14.382c-.297-.149-1.758-.867-2.03-.967-.273-.099-.471-.148-.67.15-.197.297-.767.966-.94 1.164-.173.199-.347.223-.644.075-.297-.15-1.255-.463-2.39-1.475-.883-.788-1.48-1.761-1.653-2.059-.173-.297-.018-.458.13-.606.134-.133.298-.347.446-.52.149-.174.198-.298.298-.497.099-.198.05-.371-.025-.52-.075-.149-.669-1.612-.916-2.207-.242-.579-.487-.5-.669-.51-.173-.008-.371-.01-.57-.01-.198 0-.52.074-.792.372-.272.297-1.04 1.016-1.04 2.479 0 1.462 1.065 2.875 1.213 3.074.149.198 2.096 3.2 5.077 4.487.709.306 1.262.489 1.694.625.712.227 1.36.195 1.871.118.571-.085 1.758-.719 2.006-1.413.248-.694.248-1.289.173-1.413-.074-.124-.272-.198-.57-.347m-5.421 7.403h-.004a9.87 9.87 0 01-5.031-1.378l-.361-.214-3.741.982.998-3.648-.235-.374a9.86 9.86 0 01-1.51-5.26c.001-5.45 4.436-9.884 9.888-9.884 2.64 0 5.122 1.03 6.988 2.898a9.825 9.825 0 012.893 6.994c-.003 5.45-4.437 9.884-9.885 9.884m8.413-18.297A11.815 11.815 0 0012.05 0C5.495 0 .16 5.335.157 11.892c0 2.096.547 4.142 1.588 5.945L.057 24l6.305-1.654a11.882 11.882 0 005.683 1.448h.005c6.554 0 11.89-5.335 11.893-11.893a11.821 11.821 0 00-3.48-8.413Z'/%3E%3C/svg%3E") no-repeat center/contain;
}

.cert-card__cta:hover {
	background: #1ebe5d !important;
}
