/**
 * Assam Bill Calculator - GeneratePress Theme Color Compatible (var(--global-color-8)).
 * Matches Pill-Card Design Layout using GeneratePress Global Color 8 Accent.
 * Pure Vanilla CSS - Zero Dependencies - GeneratePress Compatible.
 */

:root {
	--abc-theme-accent: var(--global-color-8, #3b82f6);
	--abc-theme-accent-dark: var(--global-color-8, #1d4ed8);
	--abc-theme-bg-outer: var(--global-color-10, #f8fafc);
	--abc-theme-border-outer: #e2e8f0;
	--abc-input-bg: #f8fafc;
	--abc-input-border: var(--global-color-8, #3b82f6);
	--abc-text-label: #374151;
	--abc-radius-outer: 32px;
	--abc-radius-inner: 24px;
	--abc-radius-pill: 18px;
}

.abc-calc-container {
	font-family: inherit;
	background: var(--global-color-10, #f8fafc) !important;
	border: 1px solid var(--abc-theme-border-outer);
	border-radius: var(--abc-radius-outer);
	box-shadow: 0 20px 40px rgba(59, 130, 246, 0.08), 0 4px 10px rgba(0, 0, 0, 0.02);
	padding: 36px 32px;
	margin: 0 auto;
	width: 100%;
	max-width: 520px;
	box-sizing: border-box;
}

.abc-calc-container * {
	box-sizing: border-box;
}

/* Outer Header */
.abc-calc-header {
	text-align: center;
	margin-bottom: 28px;
}

.abc-calc-title,
.abc-calc-h2 {
	margin: 0 0 6px 0 !important;
	font-size: 22px !important;
	font-weight: 800 !important;
	color: var(--global-color-8, #1e40af) !important;
	line-height: 1.3 !important;
	letter-spacing: -0.3px !important;
}

.abc-calc-subtitle {
	margin: 0 auto !important;
	font-size: 14.5px !important;
	color: #3b82f6 !important;
	line-height: 1.45 !important;
	max-width: 420px;
	font-weight: 500 !important;
}

/* Inner White Card */
.abc-inner-card {
	background: #ffffff;
	border-radius: var(--abc-radius-inner);
	padding: 30px 24px;
	box-shadow: 0 10px 30px rgba(59, 130, 246, 0.04);
	border: 1px solid #ffffff;
}

/* Form Group & Controls */
.abc-calc-form {
	display: flex;
	flex-direction: column;
	gap: 22px;
}

.abc-field-group {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

/* 2-Column Side-by-Side Row & Perfect Field Alignment */
.abc-field-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 14px;
	width: 100%;
	align-items: end;
}

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

.abc-field-group label {
	font-weight: 700 !important;
	font-size: 14.5px !important;
	color: var(--abc-text-label) !important;
	margin: 0 !important;
	display: flex;
	align-items: flex-end;
	min-height: 42px;
	line-height: 1.3 !important;
}

.abc-field-row .abc-field-group {
	height: 100%;
	justify-content: flex-end;
}

.abc-field-row .abc-field-group > .abc-input-wrapper,
.abc-field-row .abc-field-group > select,
.abc-field-row .abc-field-group > input {
	margin-top: auto !important;
}

.abc-select,
.abc-input,
.abc-calc-container input[type="text"],
.abc-calc-container input[type="number"],
.abc-calc-container select {
	width: 100% !important;
	padding: 14px 20px !important;
	font-size: 15px !important;
	font-family: inherit !important;
	color: #1f2937 !important;
	background-color: #f8fafc !important;
	border: 1.5px solid var(--global-color-8, #3b82f6) !important;
	border-radius: 18px !important;
	outline: none !important;
	box-shadow: none !important;
	transition: all 0.25s ease !important;
}

.abc-select::placeholder,
.abc-input::placeholder,
.abc-calc-container input::placeholder {
	color: #9ca3af !important;
}

.abc-select:focus,
.abc-input:focus,
.abc-calc-container input[type="text"]:focus,
.abc-calc-container input[type="number"]:focus,
.abc-calc-container select:focus {
	background-color: #ffffff !important;
	border-color: var(--global-color-8, #3b82f6) !important;
	box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.18) !important;
}

/* Modern Custom Dropdown Arrow with 20px Right Spacing */
.abc-select,
.abc-calc-container select {
	appearance: none !important;
	-webkit-appearance: none !important;
	-moz-appearance: none !important;
	padding-right: 48px !important;
	background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none' stroke='%232563eb' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'><path d='m6 9 6 6 6-6'/></svg>") !important;
	background-repeat: no-repeat !important;
	background-position: right 20px center !important;
	background-size: 16px 16px !important;
	cursor: pointer !important;
}

.abc-input-wrapper {
	position: relative;
	width: 100%;
}

/* Subsidy Box */
.abc-toggle-group {
	background: #f0fdf4;
	border: 1px solid #bbf7d0;
	padding: 12px 18px;
	border-radius: 14px;
}

.abc-toggle-label {
	display: flex;
	align-items: center;
	gap: 10px;
	cursor: pointer;
	margin: 0 !important;
}

.abc-toggle-label input[type="checkbox"] {
	width: 18px;
	height: 18px;
	accent-color: #16a34a;
	cursor: pointer;
}

.abc-toggle-text {
	font-size: 14px;
	font-weight: 700;
	color: #15803d;
}

/* Global Color 8 Submit Button */
.abc-calc-btn {
	width: 100%;
	background: var(--global-color-8, #3b82f6);
	color: #ffffff !important;
	border: none;
	padding: 16px 24px;
	border-radius: 22px; /* Smooth Pill */
	font-size: 17px !important;
	font-weight: 800 !important;
	cursor: pointer;
	text-align: center;
	transition: all 0.25s ease;
	margin-top: 6px;
	box-shadow: 0 10px 22px rgba(59, 130, 246, 0.35);
	letter-spacing: -0.2px;
}

.abc-calc-btn:hover {
	background: var(--global-color-8, #2563eb);
	filter: brightness(0.92);
	transform: translateY(-2px);
	box-shadow: 0 14px 28px rgba(59, 130, 246, 0.45);
}

.abc-calc-btn:active {
	transform: translateY(0);
	box-shadow: 0 6px 16px rgba(59, 130, 246, 0.3);
}

/* Popup Modal Overlay Styling */
.abc-modal-overlay {
	position: fixed !important;
	top: 0 !important;
	left: 0 !important;
	width: 100vw !important;
	height: 100vh !important;
	z-index: 999999 !important;
	background: rgba(15, 23, 42, 0.65) !important;
	backdrop-filter: blur(4px) !important;
	-webkit-backdrop-filter: blur(4px) !important;
	display: none;
	align-items: center !important;
	justify-content: center !important;
	padding: 20px !important;
	box-sizing: border-box !important;
	animation: abcFadeIn 0.25s ease;
}

.abc-modal-overlay.abc-active {
	display: flex !important;
}

.abc-modal-content {
	position: relative !important;
	background: #ffffff !important;
	border-radius: 28px !important;
	padding: 24px 20px 20px 20px !important;
	width: 100% !important;
	max-width: 480px !important;
	max-height: 92vh !important;
	overflow-y: auto !important;
	box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.35) !important;
	animation: abcPopIn 0.3s cubic-bezier(0.16, 1, 0.3, 1);
	box-sizing: border-box !important;
}

@keyframes abcPopIn {
	from { opacity: 0; transform: scale(0.92) translateY(12px); }
	to { opacity: 1; transform: scale(1) translateY(0); }
}

.abc-modal-close {
	position: absolute !important;
	top: 16px !important;
	right: 16px !important;
	width: 36px !important;
	height: 36px !important;
	border-radius: 50% !important;
	background: #f1f5f9 !important;
	color: #64748b !important;
	border: none !important;
	font-size: 24px !important;
	line-height: 1 !important;
	cursor: pointer !important;
	display: flex !important;
	align-items: center !important;
	justify-content: center !important;
	transition: all 0.2s ease !important;
	z-index: 10 !important;
}

.abc-modal-close:hover {
	background: #e2e8f0 !important;
	color: #0f172a !important;
	transform: scale(1.08);
}

.abc-result-pill-card {
	background: var(--abc-theme-bg-outer);
	border: 1px solid var(--abc-theme-border-outer);
	border-radius: 20px;
	padding: 22px;
}

.abc-total-row {
	text-align: center;
	padding-bottom: 18px;
	border-bottom: 1px dashed #bfdbfe;
	margin-bottom: 18px;
}

.abc-total-row span {
	font-size: 12.5px;
	font-weight: 700;
	color: var(--global-color-8, #1d4ed8);
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.abc-total-amount {
	margin: 6px 0 2px 0 !important;
	font-size: 36px !important;
	font-weight: 900 !important;
	color: var(--global-color-8, #1d4ed8) !important;
	line-height: 1.1 !important;
}

.abc-subsidy-pill {
	display: inline-block;
	background: #dcfce7;
	color: #166534;
	border: 1px solid #86efac;
	padding: 4px 12px;
	border-radius: 20px;
	font-size: 11.5px;
	font-weight: 700;
	margin-top: 6px;
}

.abc-details-card {
	display: flex;
	flex-direction: column;
	gap: 10px;
	background: #ffffff;
	border-radius: 14px;
	padding: 16px;
	border: 1px solid var(--abc-theme-border-outer);
	margin-bottom: 16px;
}

.abc-detail-row {
	display: flex;
	justify-content: space-between;
	align-items: center;
	font-size: 14px;
	color: #4b5563;
}

.abc-detail-row strong {
	color: #1f2937;
	font-weight: 700;
}

.abc-savings-row {
	color: #15803d !important;
	font-weight: 700;
}

.abc-savings-row strong {
	color: #15803d !important;
}

.abc-slab-card {
	background: #ffffff;
	border-radius: 14px;
	padding: 16px;
	border: 1px solid var(--abc-theme-border-outer);
}

.abc-slab-title {
	font-size: 13.5px;
	font-weight: 800;
	color: var(--global-color-8, #1d4ed8);
	margin-bottom: 10px;
	border-bottom: 1px solid #dbeafe;
	padding-bottom: 6px;
}

.abc-slab-row {
	display: flex;
	justify-content: space-between;
	padding: 6px 0;
	font-size: 13px;
	color: #6b7280;
	border-bottom: 1px dashed #e2e8f0;
}

.abc-slab-row:last-child {
	border-bottom: none;
}

/* ============================================================= */
/* MASTER TOOL POST TEMPLATE STYLING ([tool_post_template])      */
/* ============================================================= */

/* Hide default GeneratePress single post title header & outer comments area to prevent duplication (strictly scoped to single post pages) */
body.single .site-main > article > .entry-header,
body.single-post .site-main > article > .entry-header,
body.single .site-main > .comments-area,
body.single-post .site-main > .comments-area {
	display: none !important;
}

.abc-tool-post-template {
	width: 100%;
	max-width: 100%;
	margin: 0 auto 40px auto;
	padding: 0 10px;
	box-sizing: border-box;
}

/* Step 1: Breadcrumbs */
.abc-breadcrumbs {
	font-size: 13.5px;
	color: #64748b;
	margin-top: 0 !important;
	margin-bottom: 14px;
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 6px;
}

.abc-breadcrumbs a {
	color: var(--global-color-8, #2563eb);
	text-decoration: none;
	font-weight: 600;
}

.abc-breadcrumbs a:hover {
	text-decoration: underline;
}

.abc-crumb-sep {
	color: #cbd5e1;
}

.abc-crumb-current {
	color: #1e293b;
	font-weight: 500;
}

/* Step 2: H1 Title Box (User Spec: 30px, Center, var(--global-color-10), 9px border-radius, 15px gap below) */
.abc-h1-box {
	background: var(--global-color-10, #f8fafc);
	border-radius: 9px;
	padding: 22px 24px;
	margin-bottom: 15px !important; /* Exact 15px gap specified by user */
	border: 1px solid #e2e8f0;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.02);
}

.abc-post-h1 {
	font-size: 30px !important;
	text-align: center !important;
	margin: 0 !important;
	font-weight: 900 !important;
	color: var(--global-color-8, #0f172a) !important;
	line-height: 1.3 !important;
	letter-spacing: -0.5px !important;
}

/* Step 2: H1 Title Box (User Spec: 30px, Center, var(--global-color-10), 9px border radius, 15px gap below) */
.abc-h1-box {
	background: var(--global-color-10, #f8fafc);
	border-radius: 9px;
	padding: 24px;
	margin-bottom: 15px !important; /* 15px gap specified by user */
	border: 1px solid #e2e8f0;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.02);
}

.abc-post-h1 {
	font-size: 30px !important;
	text-align: center !important;
	margin: 0 !important;
	font-weight: 900 !important;
	color: var(--global-color-8, #0f172a) !important;
	line-height: 1.3 !important;
	letter-spacing: -0.5px !important;
}

/* Step 3: Tool Intro Paragraph Box */
.abc-intro-box {
	background: #ffffff;
	border: 1px solid #e2e8f0;
	border-radius: 12px;
	padding: 20px 24px;
	margin-bottom: 24px;
	font-size: 15px;
	color: #334155;
	line-height: 1.6;
	box-shadow: 0 2px 6px rgba(0, 0, 0, 0.02);
}

.abc-intro-box p {
	margin: 0 !important;
}

/* Step 4: Tool Box (Container for Calculator) */
.abc-tool-box {
	margin-bottom: 30px;
}

.abc-tool-box .abc-calc-container {
	margin-top: 0 !important;
	margin-bottom: 0 !important;
}

/* Step 5: Main Post Content Box */
.abc-content-box {
	background: #ffffff;
	border: 1px solid #e2e8f0;
	border-radius: 14px;
	padding: 30px;
	margin-bottom: 30px;
	font-size: 16px;
	color: #1e293b;
	line-height: 1.7;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
}

/* Step 6: Other Assam Bill Calculators Section (Related Tools Grid) */
.abc-related-tools-box {
	background: var(--global-color-10, #f8fafc);
	border: 1px solid #e2e8f0;
	border-radius: 14px;
	padding: 24px;
	margin-bottom: 30px;
}

.abc-related-title {
	margin: 0 0 16px 0 !important;
	font-size: 20px !important;
	font-weight: 800 !important;
	color: var(--global-color-8, #0f172a) !important;
	border-bottom: 2px solid #e2e8f0;
	padding-bottom: 8px;
}

.abc-related-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
	gap: 12px;
}

.abc-related-btn {
	display: block;
	background: #ffffff;
	color: var(--global-color-8, #2563eb) !important;
	border: 1.5px solid var(--global-color-8, #3b82f6);
	padding: 12px 18px;
	border-radius: 10px;
	font-size: 14px;
	font-weight: 700;
	text-decoration: none !important;
	transition: all 0.2s ease;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.03);
}

.abc-related-btn:hover {
	background: var(--global-color-8, #2563eb);
	color: #ffffff !important;
	transform: translateY(-2px);
	box-shadow: 0 6px 14px rgba(37, 99, 235, 0.25);
}

/* Step 7: Comment Section Styling */
.abc-comments-box {
	background: #ffffff;
	border: 1px solid #e2e8f0;
	border-radius: 14px;
	padding: 28px;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
}

.abc-comments-box #reply-title,
.abc-comments-box .comments-title {
	font-size: 20px !important;
	font-weight: 800 !important;
	color: var(--global-color-8, #0f172a) !important;
	margin-bottom: 16px !important;
}

.abc-comments-box .form-submit #submit {
	background: var(--global-color-8, #2563eb) !important;
	color: #ffffff !important;
	border: none !important;
	padding: 12px 24px !important;
	border-radius: 8px !important;
	font-weight: 700 !important;
	cursor: pointer;
	transition: background 0.2s ease;
}

.abc-comments-box .form-submit #submit:hover {
	filter: brightness(0.9);
}

/* ============================================================= */
/* CATEGORY ARCHIVE TEMPLATE STYLING ([abc_category_archive_template]) */
/* ============================================================= */

.abc-archive-template-wrapper {
	width: 100%;
	max-width: 1200px;
	margin: 0 auto 40px auto;
	padding: 0 10px;
	box-sizing: border-box;
}

.abc-archive-header {
	background: var(--global-color-10, #f8fafc);
	border: 1px solid #e2e8f0;
	border-radius: 16px;
	padding: 28px 32px;
	margin-bottom: 32px;
	text-align: center;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
}

.abc-archive-badge {
	display: inline-block;
	background: rgba(37, 99, 235, 0.1);
	color: var(--global-color-8, #2563eb);
	font-size: 13px;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 0.8px;
	padding: 6px 14px;
	border-radius: 20px;
	margin-bottom: 10px;
}

.abc-archive-title {
	margin: 0 0 10px 0 !important;
	font-size: 32px !important;
	font-weight: 900 !important;
	color: #0f172a !important;
	line-height: 1.2;
}

.abc-archive-desc {
	margin: 0 auto !important;
	font-size: 15.5px;
	color: #64748b;
	max-width: 680px;
	line-height: 1.5;
}

/* Responsive Grid Layout */
.abc-archive-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
	gap: 28px;
}

.abc-archive-grid.cols-2 { grid-template-columns: repeat(auto-fill, minmax(420px, 1fr)); }
.abc-archive-grid.cols-4 { grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); }

/* 16:9 Aspect Ratio Post Card */
.abc-archive-card {
	background: #ffffff;
	border: 1px solid #e2e8f0;
	border-radius: 18px;
	overflow: hidden;
	display: flex;
	flex-direction: column;
	transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
	box-shadow: 0 4px 14px rgba(0, 0, 0, 0.03);
}

.abc-archive-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 16px 32px rgba(37, 99, 235, 0.12), 0 4px 8px rgba(0, 0, 0, 0.04);
	border-color: var(--global-color-8, #3b82f6);
}

/* 16:9 Aspect Ratio Featured Image Wrapper */
.abc-archive-img-wrapper {
	position: relative;
	width: 100%;
	aspect-ratio: 16 / 9 !important;
	overflow: hidden;
	background: linear-gradient(135deg, #1e3a8a 0%, #2563eb 60%, #3b82f6 100%);
}

.abc-archive-img-wrapper img,
.abc-archive-img {
	width: 100% !important;
	height: 100% !important;
	object-fit: cover !important;
	aspect-ratio: 16 / 9 !important;
	transition: transform 0.4s ease !important;
}

.abc-archive-card:hover .abc-archive-img {
	transform: scale(1.06) !important;
}

/* Fallback 16:9 Gradient Card */
.abc-archive-img-fallback {
	width: 100%;
	height: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding: 20px;
	box-sizing: border-box;
	text-align: center;
	color: #ffffff;
	background: linear-gradient(135deg, #0f172a 0%, #1e40af 50%, #2563eb 100%);
}

.abc-fallback-icon {
	font-size: 36px;
	margin-bottom: 6px;
	filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.abc-fallback-title {
	font-size: 15px;
	font-weight: 800;
	line-height: 1.3;
	color: #ffffff;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
	text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.abc-card-cat-pill {
	position: absolute;
	top: 12px;
	left: 12px;
	background: rgba(15, 23, 42, 0.82);
	backdrop-filter: blur(4px);
	color: #ffffff;
	font-size: 11.5px;
	font-weight: 700;
	padding: 5px 12px;
	border-radius: 20px;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	z-index: 2;
	box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

/* Card Body */
.abc-archive-card-body {
	padding: 22px 20px;
	display: flex;
	flex-direction: column;
	flex-grow: 1;
}

.abc-card-title {
	margin: 0 0 10px 0 !important;
	font-size: 18px !important;
	font-weight: 800 !important;
	line-height: 1.35 !important;
}

.abc-card-title a {
	color: #0f172a !important;
	text-decoration: none !important;
	transition: color 0.2s ease;
}

.abc-card-title a:hover {
	color: var(--global-color-8, #2563eb) !important;
}

.abc-card-excerpt {
	margin: 0 0 18px 0 !important;
	font-size: 14px;
	color: #64748b;
	line-height: 1.55;
	flex-grow: 1;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.abc-card-footer {
	margin-top: auto;
}

.abc-card-btn {
	display: block;
	width: 100%;
	text-align: center;
	background: var(--global-color-10, #f8fafc);
	color: var(--global-color-8, #2563eb) !important;
	border: 1.5px solid var(--global-color-8, #3b82f6);
	padding: 12px 18px;
	border-radius: 12px;
	font-size: 14.5px;
	font-weight: 800;
	text-decoration: none !important;
	box-sizing: border-box;
	transition: all 0.25s ease;
}

.abc-card-btn:hover {
	background: var(--global-color-8, #2563eb);
	color: #ffffff !important;
	transform: translateY(-1px);
	box-shadow: 0 6px 16px rgba(37, 99, 235, 0.25);
}

/* Category Archive Pagination */
.abc-pagination {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 8px;
	margin-top: 40px;
	padding: 10px 0;
	flex-wrap: wrap;
}

.abc-pagination .page-numbers {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 42px;
	height: 42px;
	padding: 0 14px;
	border-radius: 12px;
	background: #ffffff;
	color: #334155 !important;
	border: 1px solid #cbd5e1;
	font-size: 14.5px;
	font-weight: 700;
	text-decoration: none !important;
	transition: all 0.2s ease;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.02);
}

.abc-pagination .page-numbers:hover {
	border-color: var(--global-color-8, #2563eb);
	color: var(--global-color-8, #2563eb) !important;
	background: var(--global-color-10, #f8fafc);
	transform: translateY(-1px);
}

.abc-pagination .page-numbers.current {
	background: var(--global-color-8, #2563eb) !important;
	color: #ffffff !important;
	border-color: var(--global-color-8, #2563eb) !important;
	box-shadow: 0 4px 12px rgba(37, 99, 235, 0.25);
}

.abc-pagination .page-numbers.dots {
	border: none;
	background: transparent;
	box-shadow: none;
}

/* Post Featured Image at End of Post Content */
.abc-featured-img-box {
	margin-top: 32px;
	margin-bottom: 32px;
	text-align: center;
	border-radius: 20px;
	overflow: hidden;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
	background: #ffffff;
	width: 100%;
}

.abc-post-featured-img {
	width: 100% !important;
	height: auto !important;
	max-height: none !important;
	object-fit: contain !important;
	display: block !important;
	border-radius: 20px !important;
	margin: 0 auto !important;
	aspect-ratio: 1200 / 630;
}

/* ==========================================================================
   HOMEPAGE HERO & GRID BOX STYLES
   ========================================================================== */
.abc-homepage-wrapper {
	width: 100%;
	max-width: 1200px;
	margin: 0 auto 40px auto;
	box-sizing: border-box;
}

/* BOX 1: HERO SECTION BOX */
.abc-home-hero-box {
	background: #ffffff;
	border: 1px solid #e2e8f0;
	border-radius: 24px;
	padding: 42px 40px;
	margin-bottom: 36px;
	box-shadow: 0 20px 45px rgba(15, 23, 42, 0.04), 0 4px 12px rgba(0, 0, 0, 0.02);
	position: relative;
	overflow: hidden;
}

.abc-hero-grid {
	display: grid;
	grid-template-columns: 1.25fr 0.75fr;
	gap: 36px;
	align-items: center;
}

@media (max-width: 900px) {
	.abc-home-hero-box {
		padding: 30px 24px;
	}
	.abc-hero-grid {
		grid-template-columns: 1fr;
		gap: 28px;
	}
}

.abc-hero-badge {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: #eff6ff;
	color: #2563eb;
	font-size: 13px;
	font-weight: 700;
	padding: 6px 14px;
	border-radius: 20px;
	border: 1px solid #bfdbfe;
	margin-bottom: 16px;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.abc-pulse-dot {
	width: 8px;
	height: 8px;
	background: #2563eb;
	border-radius: 50%;
	box-shadow: 0 0 0 0 rgba(37, 99, 235, 0.4);
	animation: abcPulse 2s infinite;
}

@keyframes abcPulse {
	0% { box-shadow: 0 0 0 0 rgba(37, 99, 235, 0.6); }
	70% { box-shadow: 0 0 0 8px rgba(37, 99, 235, 0); }
	100% { box-shadow: 0 0 0 0 rgba(37, 99, 235, 0); }
}

.abc-hero-h1 {
	margin: 0 0 16px 0 !important;
	font-size: 38px !important;
	font-weight: 900 !important;
	color: #0f172a !important;
	line-height: 1.2 !important;
	letter-spacing: -0.5px !important;
}

@media (max-width: 600px) {
	.abc-hero-h1 {
		font-size: 28px !important;
	}
}

.abc-hero-tagline {
	margin: 0 0 24px 0 !important;
	font-size: 16px !important;
	color: #475569 !important;
	line-height: 1.65 !important;
}

.abc-hero-features {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
}

.abc-hero-feat {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	background: #f8fafc;
	border: 1px solid #cbd5e1;
	color: #334155;
	font-size: 13.5px;
	font-weight: 600;
	padding: 8px 16px;
	border-radius: 14px;
}

/* RIGHT COLUMN: MAP CARD BOX */
.abc-hero-map-wrapper {
	display: flex;
	justify-content: center;
	align-items: center;
}

.abc-map-card {
	background: linear-gradient(135deg, #f8fafc 0%, #edf2f7 100%);
	border: 1.5px solid #cbd5e1;
	border-radius: 20px;
	padding: 20px;
	text-align: center;
	width: 100%;
	box-shadow: 0 10px 25px rgba(0, 0, 0, 0.04);
	transition: transform 0.3s ease;
}

.abc-map-card:hover {
	transform: translateY(-3px);
}

.abc-hero-map-img {
	width: 100%;
	max-width: 300px;
	height: auto;
	object-fit: contain;
	display: block;
	margin: 0 auto 12px auto;
	filter: drop-shadow(0 4px 12px rgba(0,0,0,0.08));
}

.abc-map-caption {
	font-size: 13.5px;
	color: #1e293b;
	background: #ffffff;
	padding: 8px 16px;
	border-radius: 12px;
	display: inline-block;
	border: 1px solid #e2e8f0;
	box-shadow: 0 2px 6px rgba(0,0,0,0.03);
}

/* BOX 2: GRID CONTAINER BOX */
.abc-home-grid-box {
	background: #ffffff;
	border: 1px solid #e2e8f0;
	border-radius: 24px;
	padding: 40px 36px;
	box-shadow: 0 20px 45px rgba(15, 23, 42, 0.04);
}

@media (max-width: 900px) {
	.abc-home-grid-box {
		padding: 30px 20px;
	}
}

.abc-grid-section-header {
	text-align: center;
	margin-bottom: 36px;
}

.abc-section-pill {
	display: inline-block;
	background: #eff6ff;
	color: #2563eb;
	font-size: 12.5px;
	font-weight: 800;
	padding: 5px 14px;
	border-radius: 20px;
	text-transform: uppercase;
	letter-spacing: 0.8px;
	margin-bottom: 10px;
}

.abc-grid-section-title {
	margin: 0 0 8px 0 !important;
	font-size: 28px !important;
	font-weight: 800 !important;
	color: #0f172a !important;
}

.abc-grid-section-desc {
	margin: 0 auto !important;
	font-size: 15.5px !important;
	color: #64748b !important;
	max-width: 580px;
}

/* ==========================================================================
   SITE FOOTER & DISCLAIMER STYLES
   ========================================================================== */
.abc-site-footer {
	background: #ffffff;
	border-top: 1px solid #e2e8f0;
	padding: 36px 24px;
	margin-top: 56px;
	width: 100%;
	box-sizing: border-box;
}

.abc-footer-container {
	max-width: 1200px;
	margin: 0 auto;
	box-sizing: border-box;
}

.abc-footer-disclaimer {
	background: #f8fafc;
	border: 1px solid #e2e8f0;
	border-left: 4px solid #64748b;
	border-radius: 16px;
	padding: 20px 24px;
	margin-bottom: 24px;
}

.abc-disclaimer-title {
	margin: 0 0 6px 0 !important;
	font-size: 13px !important;
	font-weight: 800 !important;
	color: #334155 !important;
	text-transform: uppercase;
	letter-spacing: 0.6px;
}

.abc-disclaimer-text {
	margin: 0 !important;
	font-size: 13px !important;
	color: #64748b !important;
	line-height: 1.65 !important;
}

.abc-footer-bottom {
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	gap: 16px;
	padding-top: 16px;
	border-top: 1px solid #f1f5f9;
}

.abc-copyright {
	margin: 0 !important;
	font-size: 13.5px !important;
	color: #64748b !important;
	font-weight: 500 !important;
}

.abc-footer-links {
	display: flex;
	align-items: center;
	gap: 12px;
}

.abc-footer-links a {
	color: #2563eb !important;
	font-size: 13.5px !important;
	font-weight: 600 !important;
	text-decoration: none !important;
	transition: color 0.2s ease;
}

.abc-footer-links a:hover {
	color: #1d4ed8 !important;
	text-decoration: underline !important;
}

.abc-footer-sep {
	color: #cbd5e1;
	font-size: 12px;
}



