/* ==========================================================================
   Global Kind Aid — main stylesheet (loaded after Bootstrap 5.3)
   Structure:
     1. Root tokens (brand colors, fonts)
     2. Base / typography
     3. Header (top info bar + blue nav)
     4. Footer
     5. Utilities
   ========================================================================== */

/* 1. Root tokens — verified from live globalkindaid.org (2026-06-16) ----- */
:root {
	/* Brand colors */
	--gka-primary:    #006db6; /* theme-color  — main blue */
	--gka-primary-2:  #0f76ba; /* theme-color slight variant */
	--gka-secondary:  #ffac00; /* theme-color2 — amber/gold accent */

	/* Neutrals (derived for text / surfaces) */
	--gka-dark:       #065084; /* darker blue for hovers / footer accents */
	--gka-light:      #f8f5ee;
	--gka-body:       #5a6473;
	--gka-heading:    #0a0a0a;

	/* Aliases that mirror live-site CSS var names — keeps parity with the
	   Donat theme reference, easier to port snippets later. */
	--theme-color:   var(--gka-primary);
	--theme-color2:  var(--gka-secondary);
	--title-color:   var(--gka-heading);
	--body-color:    var(--gka-body);

	/* Typography */
	--gka-font-heading: 'Nunito', system-ui, -apple-system, sans-serif;        /* --title-font */
	--gka-font-body:    'Nunito Sans', system-ui, -apple-system, sans-serif;
	--gka-font-accent:  'Caveat', cursive;                                     /* --caveat-font (sub-titles like "Our Mission") */

	--title-font:   var(--gka-font-heading);
	--caveat-font:  var(--gka-font-accent);
}

/* 2. Base ---------------------------------------------------------------- */
body {
	font-family: var(--gka-font-body);
	color: var(--gka-body);
	font-size: 16px;
	line-height: 1.6;
}
h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6 {
	font-family: var(--gka-font-heading);
	color: var(--gka-heading);
	font-weight: 700;
}
a { color: var(--gka-primary); text-decoration: none; }
a:hover { color: var(--gka-dark); }

.skip-link {
	position: absolute; top: -40px; left: 0;
	background: #000; color: #fff; padding: 8px 16px; z-index: 10000;
}
.skip-link:focus { top: 0; }

/* 3. Header =============================================================== */
.gka-header { background: #fff; }

/* 3a. Top info bar */
.gka-header__top {
	background: #fff;
	padding: 20px 0;
}
.gka-header__top-inner { gap: 30px; }

.gka-header__logo img {
	max-height: 65px;
	width: auto;
	height: auto;
	display: block;
}

/* Info cards — clean text, no big icon circle, vertical dividers between */
.gka-info-card {
	display: flex;
	flex-direction: column;
	line-height: 1.3;
}
.gka-info-card__label {
	color: var(--gka-primary);
	font-size: 14px;
	font-weight: 500;
	margin-bottom: 4px;
}
.gka-info-card__value {
	color: var(--gka-primary);
	font-weight: 700;
	font-size: 20px;
	line-height: 1.2;
}
.gka-info-card__value:hover { color: var(--gka-primary); }

/* Vertical divider line between info cards */
.gka-info-divider {
	width: 1px;
	height: 50px;
	background: #e3e6ea;
	display: inline-block;
}

/* Top-bar social icons — outlined circles */
.gka-header .gka-social a {
	width: 44px;
	height: 44px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	background: transparent;
	border: 1px solid #e3e6ea;
	color: var(--gka-primary);
	font-size: 15px;
	transition: all .25s ease;
}
.gka-header .gka-social a:hover {
	background: var(--gka-primary);
	color: #fff;
	border-color: var(--gka-primary);
}

/* 3b. Blue nav bar — full-width rounded pill */
.gka-header__nav-wrap {
	background: var(--gka-primary);
	border-radius: 50px;
	margin: 0;
	position: relative;
	padding: 0 14px 0 30px;
}

.gka-navbar {
	padding: 0;
	min-height: 64px;
}
.gka-navbar__menu {
	gap: 0;
	flex-wrap: wrap;
	margin: 0;
	padding: 0;
	list-style: none;
}
.gka-navbar__menu .nav-link,
.gka-navbar__menu a {
	color: #fff !important;
	font-weight: 600;
	font-size: 16px;
	padding: 20px 18px !important;
	position: relative;
	transition: color .2s ease;
}
.gka-navbar__menu .nav-link:hover,
.gka-navbar__menu .nav-item:hover > .nav-link {
	color: rgba(255,255,255,.85) !important;
}
.gka-navbar__menu .dropdown-toggle::after { display: none; }

/* Dropdowns — open on hover (desktop), live-site style */
.gka-navbar__menu .dropdown { position: relative; }
.gka-navbar__menu .dropdown-menu {
	display: block;
	background: #fff;
	border: none;
	border-radius: 12px;
	box-shadow: 0 15px 40px rgba(0, 0, 0, .12);
	padding: 18px 10px;
	margin-top: 0;
	min-width: 260px;
	position: absolute;
	top: 100%;
	left: 0;
	opacity: 0;
	visibility: hidden;
	transform: translateY(8px);
	transition: opacity .25s ease, transform .25s ease, visibility .25s ease;
	pointer-events: none;
}
@media (min-width: 992px) {
	.gka-navbar__menu .dropdown:hover > .dropdown-menu,
	.gka-navbar__menu .dropdown:focus-within > .dropdown-menu {
		opacity: 1;
		visibility: visible;
		transform: translateY(0);
		pointer-events: auto;
	}
}

/* Caret next to parent link */
.gka-navbar__caret {
	font-size: 10px;
	margin-left: 6px;
	transition: transform .3s ease;
	display: inline-block;
}
.gka-navbar__menu .dropdown:hover > .nav-link .gka-navbar__caret {
	transform: rotate(180deg);
}
@keyframes gkaDropdownFade {
	from { opacity: 0; transform: translateY(8px); }
	to   { opacity: 1; transform: translateY(0); }
}


.gka-navbar__menu .dropdown-item {
	position: relative;
	color: var(--gka-heading) !important;
	font-weight: 600 !important;
	font-size: 15px;
	padding: 3px 12px 10px 11px !important;
	border-radius: 6px;
	background: transparent !important;
	transition: color .25s ease, padding .25s ease;
}

/* Exact live-site icon — \f4b9 from Font Awesome Pro Light (300).
   Hidden by default, slides in on hover. */
.gka-navbar__menu .dropdown-item::before {
	content: "\f4b9";
	font-family: "Font Awesome 6 Pro", "Font Awesome 6 Free";
	font-weight: 300; /* light */
	position: absolute;
	left: 18px;
	top: 50%;
	transform: translate(-8px, -50%);
	opacity: 0;
	font-size: 14px;
	color: var(--gka-primary);
	transition: opacity .25s ease, transform .25s ease;
}

.gka-navbar__menu .dropdown-item:hover,
.gka-navbar__menu .dropdown-item:focus {
	color: var(--gka-primary) !important;
	padding-left: 40px !important;
	background: transparent !important;
}
.gka-navbar__menu .dropdown-item:hover::before,
.gka-navbar__menu .dropdown-item:focus::before {
	opacity: 1;
	transform: translate(0, -50%);
}

/* Right-side actions */
.gka-navbar__actions { gap: 10px; }
.gka-icon-btn {
	width: 44px; height: 44px;
	display: inline-flex; align-items: center; justify-content: center;
	border-radius: 50%;
	background: rgba(255,255,255,.18);
	color: #fff;
	border: none;
	transition: all .25s ease;
	position: relative;
	font-size: 15px;
}
.gka-icon-btn:hover {
	background: #fff;
	color: var(--gka-primary);
}
.gka-cart-badge {
	position: absolute;
	top: -4px; right: -4px;
	background: var(--gka-secondary);
	color: #fff;
	font-size: 11px;
	font-weight: 700;
	min-width: 20px; height: 20px;
	border-radius: 50%;
	display: inline-flex; align-items: center; justify-content: center;
	padding: 0 5px;
}

.gka-btn-donate {
	display: inline-flex; align-items: center;
	background: #fff;
	color: var(--gka-primary);
	font-weight: 700;
	padding: 14px 28px;
	border-radius: 50px;
	transition: all .25s ease;
	white-space: nowrap;
	margin-left: 6px;
	font-size: 15px;
}
.gka-btn-donate:hover {
	background: var(--gka-dark);
	color: #fff;
}

/* Mobile responsive — break before pill nav gets cramped */
@media (max-width: 991.98px) {
	.gka-header__nav-wrap { padding: 10px 0; }
	.gka-navbar {
		padding: 6px 14px;
		display: flex;
		align-items: center;
	}
	/* Hide desktop menu collapse on mobile — drawer handles it */
	.gka-navbar__collapse { display: none !important; }

	/* Mobile logo (inside blue bar, left side) */
	.gka-navbar__mobile-logo {
		display: inline-flex;
		align-items: center;
		background: #fff;
		padding: 8px 18px;
		border-radius: 40px;
	}
	.gka-navbar__mobile-logo img { height: 36px; width: auto; }

	/* Actions sit on the right, no donate button on mobile */
	.gka-navbar__actions { gap: 8px; }
	.gka-navbar__actions .gka-icon-btn {
		width: 44px; height: 44px;
		background: rgba(255,255,255,.18);
		color: #fff;
		border: 0;
	}
	.gka-navbar__actions .gka-icon-btn:hover { background: var(--gka-accent); color: #fff; }
}

/* ---------------- Mobile slide-in menu (left drawer) ---------------- */
.gka-mobile-menu {
	position: fixed;
	inset: 0;
	z-index: 99999;
	background: rgba(0, 0, 0, .6);
	opacity: 0;
	visibility: hidden;
	transition: opacity .4s ease, visibility .4s ease;
}
.gka-mobile-menu.is-open { opacity: 1; visibility: visible; }
.gka-mobile-menu__panel {
	position: absolute;
	top: 0; left: 0;
	width: 310px;
	max-width: 88%;
	height: 100%;
	background: #fff;
	border-right: 3px solid var(--gka-primary);
	transform: translateX(-110%);
	transition: transform .6s ease;
	overflow-y: auto;
	padding: 30px 0 40px;
}
.gka-mobile-menu.is-open .gka-mobile-menu__panel { transform: translateX(0); }
.gka-mobile-menu__close {
	position: absolute;
	top: 22px; right: -16px;
	width: 34px; height: 34px;
	border-radius: 50%;
	border: 0;
	background: var(--gka-primary);
	color: #fff;
	font-size: 16px;
	cursor: pointer;
	z-index: 2;
	display: inline-flex;
	align-items: center;
	justify-content: center;
}
.gka-mobile-menu__close:hover { background: var(--gka-accent); }
.gka-mobile-menu__logo {
	display: block;
	text-align: center;
	padding: 10px 30px 30px;
	border-bottom: 1px solid #f5f5f5;
}
.gka-mobile-menu__logo img { max-width: 170px; height: auto; }
.gka-mobile-menu__nav { padding: 20px 30px 0; }
.gka-mobile-nav,
.gka-mobile-nav ul {
	list-style: none;
	padding: 0; margin: 0;
}
.gka-mobile-nav li { border-bottom: 1px solid #fdedf1; position: relative; }
.gka-mobile-nav li:last-child { border-bottom: 0; }
.gka-mobile-nav a {
	display: block;
	padding: 12px 0 12px 18px;
	color: var(--gka-primary);
	font-weight: 600;
	font-size: 15px;
	text-decoration: none;
	position: relative;
}
.gka-mobile-nav a::before {
	content: "\f105";
	font-family: "Font Awesome 6 Pro", "Font Awesome 6 Free";
	font-weight: 900;
	position: absolute;
	left: 0;
	top: 12px;
}
.gka-mobile-nav a:hover { color: var(--gka-accent); }
.gka-mobile-nav .menu-item-has-children > a {
	padding-right: 38px;
}
.gka-mobile-nav .gka-submenu-toggle {
	position: absolute;
	right: 0; top: 8px;
	width: 28px; height: 28px;
	border-radius: 50%;
	border: 0;
	background: #f3f3f3;
	color: var(--gka-primary);
	cursor: pointer;
	font-size: 12px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	transition: .2s;
}
.gka-mobile-nav .gka-submenu-toggle:hover { background: var(--gka-primary); color: #fff; }
.gka-mobile-nav .sub-menu {
	display: none;
	padding-left: 18px;
	border-top: 1px solid #fdedf1;
	margin-top: 8px;
	padding-top: 4px;
	padding-bottom: 4px;
}
.gka-mobile-nav .gka-open > .sub-menu { display: block; }
.gka-mobile-nav .gka-open > .gka-submenu-toggle { background: var(--gka-primary); color: #fff; transform: rotate(45deg); }
.gka-mobile-nav .sub-menu a { font-weight: 500; font-size: 14px; }

/* 4. Footer ============================================================= */
.gka-footer {
	background: var(--gka-primary);
	color: #fff;
	position: relative;
	margin-top: 80px;
}
.gka-footer a { color: #fff; }
.gka-footer a:hover { color: rgba(255,255,255,.8); }

.gka-footer__shape {
	position: absolute;
	top: 0; left: 0;
	width: 600px;
	max-width: 50%;
	height: auto;
	background-image: url('../images/footer/footer-bg-shape1-1-2.webp');
	background-repeat: no-repeat;
	background-position: top left;
	background-size: contain;
	aspect-ratio: 600 / 180;
	pointer-events: none;
	z-index: 1;
}

.gka-footer__main {
	padding: 140px 0 60px;
	position: relative;
	z-index: 2;
}

.gka-footer__logo img {
	max-height: 90px;
	width: auto;
}
.gka-footer__about-text {
	color: rgba(255,255,255,.85);
	margin-bottom: 24px;
}

.gka-info-card-light__icon {
	width: 42px; height: 42px;
	display: inline-flex; align-items: center; justify-content: center;
	background: #fff;
	color: var(--gka-primary);
	border-radius: 50%;
	font-size: 18px;
	flex-shrink: 0;
}

.gka-footer__title {
	color: #fff;
	font-weight: 700;
	font-size: 20px;
	margin-bottom: 22px;
	position: relative;
	padding-bottom: 12px;
}
.gka-footer__title::after {
	content: '';
	position: absolute;
	left: 0; bottom: 0;
	width: 40px; height: 2px;
	background: #fff;
}

.gka-footer__menu li { margin-bottom: 12px; }
.gka-footer__menu a {
	color: #fff;
	font-weight: 500;
	transition: all .2s ease;
}
.gka-footer__menu a:hover { padding-left: 5px; color: rgba(255,255,255,.85); }

.gka-footer__check-list li {
	color: #fff;
	margin-bottom: 10px;
	font-weight: 500;
}
.gka-footer__check-list li i {
	color: #fff;
	margin-right: 8px;
}

/* Newsletter */
.gka-footer__newsletter-input {
	border-radius: 50px;
	padding: 14px 60px 14px 24px;
	border: none;
	background: #fff;
	color: var(--gka-primary);
	font-weight: 500;
}
.gka-footer__newsletter-input:focus {
	box-shadow: 0 0 0 3px rgba(255,255,255,.25);
	color: var(--gka-primary);
}
.gka-footer__newsletter-input::placeholder { color: var(--gka-primary); opacity: .7; }
.gka-footer__newsletter-btn {
	position: absolute;
	right: 6px; top: 50%;
	transform: translateY(-50%);
	width: 42px; height: 42px;
	border-radius: 6px;
	background: var(--gka-dark);
	color: #fff;
	border: none;
	display: inline-flex; align-items: center; justify-content: center;
}
.gka-footer__newsletter-btn:hover { background: #000; }

/* Footer social */
.gka-footer__social a {
	width: 42px; height: 42px;
	display: inline-flex; align-items: center; justify-content: center;
	border-radius: 50%;
	background: #fff;
	color: var(--gka-primary);
	transition: all .25s ease;
}
.gka-footer__social a:hover {
	background: var(--gka-dark);
	color: #fff;
}

/* Copyright bar */
.gka-footer__copyright {
	background: #fff;
	color: #000;
}
.gka-footer__copyright p,
.gka-footer__copyright a { color: #000; }
.gka-footer__copyright a:hover { color: var(--gka-primary); }

/* 5. Hero section ========================================================= */
.gka-hero {
	position: relative;
	overflow: hidden;
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	padding: 140px 0 180px;
	z-index: 1;
}
.gka-hero::before {
	content: "";
	position: absolute;
	inset: 0;
	background: rgba(248, 245, 238, .35);
	z-index: -1;
}

/* Decorative shapes */
.gka-hero__shape {
	position: absolute;
	pointer-events: none;
	z-index: 0;
}
.gka-hero__shape img { display: block; max-width: 100%; height: auto; }

.gka-hero__shape--1 { top: 14%;  left: 5%;   max-width: 80px; }
.gka-hero__shape--2 { top: 9%;   left: 45%;  max-width: 60px; }
.gka-hero__shape--4 { bottom: 15%; left: 45%; max-width: 90px; }
.gka-hero__shape--5 { bottom: -3%; left: 8.5%; max-width: 220px; }
.gka-hero__shape--6 { bottom: -5%; left: 3%;   max-width: 280px; }
.gka-hero__shape--7 { bottom: -7%; left: 0;    max-width: 320px; }

/* Big yellow paint splash — fills the full right side, sits behind image */
.gka-hero__shape--8 {
	top: 0;
	right: 0;
	bottom: 0;
	/* width: 50%; */
	max-width: none;
	z-index: 0;

	/* top: -185px;
    right: -335px;
	bottom: 0;
	width: 87%;
	max-width: none;
	z-index: 0; */
}
.gka-hero__shape--8 img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: top right;
}

.gka-hero__shape--9 { bottom: 0;  left: 0; right: 0; max-width: 100%; }
.gka-hero__shape--9 img { width: 100%; height: 70px; object-fit: cover; }

/* Hero content (left side) */
.gka-hero__content {
	position: relative;
	z-index: 6;
	padding-right: 30px;
}
.gka-hero__subtitle {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	font-family: var(--gka-font-accent);
	font-size: 30px;
	font-weight: 700;
	color: var(--gka-secondary);
	margin-bottom: 28px;
	line-height: 1;
}
.gka-hero__subtitle::before {
	content: "";
	display: inline-block;
	width: 60px;
	height: 2px;
	background: var(--gka-secondary);
}
.gka-hero__title {
	font-family: var(--gka-font-heading);
	font-size: 56px;
	font-weight: 800;
	line-height: 1.12;
	color: var(--gka-dark);
	margin-bottom: 22px;
}
.gka-hero__text {
	font-size: 18px;
	font-weight: 600;
	color: var(--gka-dark);
	line-height: 1.55;
	margin-bottom: 36px;
	max-width: 600px;
}
.gka-hero__actions {
	display: flex;
	align-items: center;
	gap: 24px;
	flex-wrap: wrap;
}

/* Buttons */
.gka-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-family: var(--gka-font-body);
	font-weight: 700;
	font-size: 14px;
	line-height: 1;
	padding: 22px 38px;
	border-radius: 50px;
	border: none;
	white-space: nowrap;
	transition: all .35s ease;
	box-shadow: inset 0 0 0 0 var(--gka-secondary);
}
.gka-btn--primary {
	background: var(--gka-primary);
	color: #fff;
}
.gka-btn--primary:hover {
	color: #fff;
	box-shadow: inset 0 -100px 0 0 var(--gka-secondary);
}

/* Play button — circle with double ripple */
.gka-hero__play {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 56px;
	height: 56px;
	border-radius: 50%;
	background: var(--gka-primary);
	color: #fff;
	font-size: 14px;
	z-index: 1;
	transition: background .25s ease;
}
.gka-hero__play::before,
.gka-hero__play::after {
	content: "";
	position: absolute;
	inset: 0;
	border-radius: 50%;
	background: var(--gka-primary);
	z-index: -1;
	animation: gkaRipple 5s ease-in-out infinite;
}
.gka-hero__play::after { animation-delay: 2s; }
.gka-hero__play:hover { background: var(--gka-dark); color: #fff; }

@keyframes gkaRipple {
	0%   { transform: scale(1);   opacity: 0; }
	30%  {                         opacity: .4; }
	100% { transform: scale(1.8); opacity: 0; }
}

/* Hero image (right side) — blue offset frame */
.gka-hero__img {
	position: relative;
	margin: 0 -40px 70px 80px;
	z-index: 5;
}
.gka-hero .col-lg-6 { position: relative; z-index: 5; }
.gka-hero__img::before {
	content: "";
	position: absolute;
	inset: 8px -16px -16px 0;
	background: var(--gka-primary);
	z-index: -1;
}
.gka-hero__img img {
	display: block;
	width: 100%;
	height: auto;
}

/* Floating animations (reuse if not already present) */
@keyframes gkaJump {
	0%, 100% { transform: translateY(0); }
	40%      { transform: translateY(-30px); }
}
@keyframes gkaJumpReverse {
	0%, 100% { transform: translateY(0); }
	50%      { transform: translateY(30px); }
}
.gka-hero .jump         { animation: gkaJump 7s linear infinite; }
.gka-hero .jump-reverse { animation: gkaJumpReverse 7s linear infinite; }

/* Responsive */
@media (max-width: 1399px) {
	.gka-hero { padding: 120px 0 150px; }
	.gka-hero__title { font-size: 48px; }
}
@media (max-width: 1199px) {
	.gka-hero__title { font-size: 40px; }
	.gka-hero__subtitle { font-size: 26px; }
	.gka-hero__text { font-size: 16px; }
}
@media (max-width: 991px) {
	.gka-hero { padding: 80px 0 120px; text-align: center; }
	.gka-hero__content { padding-right: 0; }
	.gka-hero__subtitle { justify-content: center; }
	.gka-hero__subtitle::before { display: none; }
	.gka-hero__text { margin-left: auto; margin-right: auto; }
	.gka-hero__actions { justify-content: center; }
	.gka-hero__img { margin: 0 auto 60px; max-width: 600px; }
	.gka-hero__shape--8 { max-width: 280px; }
}
@media (max-width: 575px) {
	.gka-hero__title { font-size: 32px; }
	.gka-hero__subtitle { font-size: 22px; }
	.gka-btn { padding: 18px 28px; }
	.gka-hero__shape--5,
	.gka-hero__shape--6,
	.gka-hero__shape--7 { max-width: 150px; }
}

/* 6. Mission section ====================================================== */
.gka-mission {
	padding: 120px 0;
	position: relative;
	background: #fafbfd;
	overflow: hidden;
}

/* Background decoration */
.gka-mission__deco {
	position: absolute;
	pointer-events: none;
	z-index: 0;
}
.gka-mission__deco--circle {
	top: -160px;
	right: -160px;
	width: 460px;
	height: 460px;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(0, 109, 182, .08), transparent 70%);
}
.gka-mission__deco--dots {
	left: 0;
	bottom: 80px;
	width: 220px;
	height: 220px;
	background-image: radial-gradient(rgba(255, 172, 0, .35) 2px, transparent 2px);
	background-size: 22px 22px;
	opacity: .55;
}

.gka-mission > .container { position: relative; z-index: 2; }

/* Image visual --------------------------------------------------- */
.gka-mission__visual {
	position: relative;
}
.gka-mission__visual-frame {
	position: relative;
	border-radius: 28px;
	overflow: hidden;
	box-shadow: 0 25px 60px rgba(6, 80, 132, .18);
}
.gka-mission__visual-frame::before {
	content: "";
	position: absolute;
	inset: -20px -20px auto auto;
	width: 140px;
	height: 140px;
	background: var(--gka-secondary);
	border-radius: 50%;
	opacity: .15;
	z-index: 1;
	pointer-events: none;
}
.gka-mission__visual-frame img {
	display: block;
	width: 100%;
	height: auto;
	border-radius: 28px;
	transition: transform .6s ease;
}
.gka-mission__visual-frame:hover img { transform: scale(1.04); }

/* Floating stat badge under image */
.gka-mission__visual-badge {
	position: relative;
	margin: -50px 30px 0 auto;
	max-width: 280px;
	background: #fff;
	border-radius: 20px;
	padding: 22px 26px;
	box-shadow: 0 18px 40px rgba(6, 80, 132, .15);
	border-left: 6px solid var(--gka-secondary);
	z-index: 2;
}
.gka-mission__badge-num {
	font-family: var(--gka-font-heading);
	font-size: 38px;
	font-weight: 800;
	color: var(--gka-primary);
	line-height: 1;
	margin-bottom: 6px;
}
.gka-mission__badge-text {
	font-size: 14px;
	font-weight: 600;
	color: var(--gka-dark);
	line-height: 1.4;
}

/* Content side --------------------------------------------------- */
.gka-mission__content { padding-left: 10px; }

.gka-mission__eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	font-family: var(--gka-font-body);
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 2px;
	color: var(--gka-secondary);
	margin-bottom: 24px;
	text-transform: uppercase;
}
.gka-mission__eyebrow::before {
	content: "";
	width: 40px;
	height: 2px;
	background: var(--gka-secondary);
}

/* Vision / Mission cards */
.gka-mission__cards {
	display: flex;
	flex-direction: column;
	gap: 18px;
	margin-bottom: 40px;
}
.gka-mc {
	display: flex;
	gap: 18px;
	padding: 24px;
	background: #fff;
	border-radius: 18px;
	border: 1px solid rgba(0, 109, 182, .08);
	transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
}
.gka-mc:hover {
	transform: translateY(-3px);
	box-shadow: 0 15px 35px rgba(6, 80, 132, .12);
	border-color: rgba(0, 109, 182, .25);
}
.gka-mc__icon {
	flex: none;
	width: 54px;
	height: 54px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 14px;
	background: var(--gka-primary);
	color: #fff;
	font-size: 20px;
}
.gka-mc__icon--alt { background: var(--gka-secondary); }
.gka-mc__title {
	font-family: var(--gka-font-heading);
	font-size: 22px;
	font-weight: 800;
	color: var(--gka-dark);
	margin: 0 0 6px;
}
.gka-mc__text {
	font-size: 15px;
	line-height: 1.65;
	color: var(--gka-body);
	margin: 0;
}

/* Core Values heading */
.gka-mission__heading {
	font-family: var(--gka-font-heading);
	font-size: 30px;
	font-weight: 800;
	color: var(--gka-dark);
	margin: 0 0 24px;
	padding-bottom: 12px;
	position: relative;
}
.gka-mission__heading::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: 0;
	width: 60px;
	height: 3px;
	background: var(--gka-secondary);
	border-radius: 2px;
}

/* Values block — full-width horizontal row */
.gka-values-block {
	margin-top: 70px;
	padding-top: 50px;
	border-top: 1px solid rgba(0, 109, 182, .12);
}
.gka-values-block__head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	flex-wrap: wrap;
	margin-bottom: 36px;
}
.gka-values-block__head .gka-mission__heading { margin: 0; }
.gka-values-block__head .gka-btn { flex: none; }

/* 5 cards in a row, equal width */
.gka-values {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 20px;
}
.gka-value {
	background: #fff;
	border-radius: 18px;
	padding: 28px 22px;
	border: 1px solid rgba(0, 109, 182, .08);
	text-align: center;
	position: relative;
	overflow: hidden;
	transition: all .35s ease;
}
.gka-value::before {
	content: "";
	position: absolute;
	left: 0; right: 0; top: 0;
	height: 3px;
	background: var(--gka-primary);
	transform: scaleX(0);
	transition: transform .35s ease;
	transform-origin: left;
}
.gka-value:hover {
	transform: translateY(-6px);
	box-shadow: 0 18px 35px rgba(6, 80, 132, .12);
	border-color: rgba(255, 172, 0, .35);
}
.gka-value:hover::before {
	transform: scaleX(1);
	background: var(--gka-secondary);
}

.gka-value__icon {
	width: 70px;
	height: 70px;
	margin: 0 auto 16px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: rgba(0, 109, 182, .08);
	border-radius: 50%;
	transition: background .35s ease;
}
.gka-value__icon img {
	max-width: 36px;
	max-height: 36px;
	transition: transform .5s ease, filter .35s ease;
}
.gka-value:hover .gka-value__icon { background: var(--gka-secondary); }
.gka-value:hover .gka-value__icon img {
	transform: rotateY(180deg);
	filter: brightness(0) invert(1);
}

.gka-value__title {
	font-family: var(--gka-font-heading);
	font-size: 18px;
	font-weight: 700;
	color: var(--gka-dark);
	margin: 0 0 8px;
	line-height: 1.3;
}
.gka-value__text {
	font-size: 13px;
	line-height: 1.55;
	color: var(--gka-body);
	margin: 0;
}

.gka-mission__btn { margin-top: 8px; }

/* Responsive */
@media (max-width: 1199px) {
	.gka-mission__heading { font-size: 26px; }
	.gka-mc__title { font-size: 20px; }
}
@media (max-width: 991px) {
	.gka-mission { padding: 80px 0; }
	.gka-mission__visual { position: static; margin-bottom: 30px; }
	.gka-mission__content { padding-left: 0; }
}
@media (max-width: 1199px) {
	.gka-values { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 767px) {
	.gka-values { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 575px) {
	.gka-mission__visual-badge {
		margin: -40px auto 0;
		max-width: 90%;
	}
	.gka-mission__heading { font-size: 24px; }
	.gka-mc { padding: 18px; }
	.gka-values { grid-template-columns: 1fr; gap: 14px; }
	.gka-values-block { margin-top: 50px; padding-top: 36px; }
	.gka-value { padding: 24px 18px; }
}

/* 7. Counter section (reusable) =========================================== */
.gka-counter-section {
	padding: 80px 0;
	background: #fff;
}

.gka-counter {
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 30px;
}
.gka-counter__item {
	flex: 1;
	min-width: 200px;
	text-align: left;
}
.gka-counter__number {
	font-family: var(--gka-font-heading);
	font-size: 56px;
	font-weight: 800;
	line-height: 1;
	margin: 0 0 8px;
	display: inline-flex;
	align-items: baseline;
}
.gka-counter__number--primary   { color: var(--gka-primary); }
.gka-counter__number--secondary { color: var(--gka-secondary); }
.gka-counter__suffix {
	font-weight: 300;
	margin-left: 2px;
}
.gka-counter__label {
	font-size: 16px;
	font-weight: 600;
	color: var(--gka-dark);
	margin: 0;
}

/* Vertical divider lines between items */
.gka-counter__divider {
	width: 1px;
	height: 60px;
	background: rgba(0, 109, 182, .15);
	flex: none;
}

/* Responsive */
@media (max-width: 991px) {
	.gka-counter__number { font-size: 44px; }
	.gka-counter__divider { display: none; }
	.gka-counter__item { flex: 0 0 calc(50% - 15px); text-align: center; }
	.gka-counter__number { display: inline-flex; }
}
@media (max-width: 575px) {
	.gka-counter-section { padding: 60px 0; }
	.gka-counter__item { flex: 0 0 100%; }
	.gka-counter__number { font-size: 38px; }
}

/* 8. Services section ===================================================== */
.gka-services {
	padding: 120px 0;
	position: relative;
	background-image: url('../images/home-image/hero_bg_2_1-3.webp');
	background-size: cover;
	background-position: center;
	overflow: hidden;
}
.gka-services::before {
	content: "";
	position: absolute;
	inset: 0;
	background: rgba(248, 245, 238, .65);
	z-index: 0;
}
.gka-services > .container { position: relative; z-index: 2; }

/* Decorative heart */
.gka-services__deco {
	position: absolute;
	z-index: 1;
	pointer-events: none;
}
.gka-services__deco--heart {
	top: 12%;
	left: 14%;
	color: var(--gka-dark);
	font-size: 36px;
	transform: rotate(-25deg);
	opacity: .8;
	animation: gkaJump 7s linear infinite;
}

/* Section heading */
.gka-services__head { margin-bottom: 56px; }
.gka-services__eyebrow {
	display: inline-block;
	font-family: var(--gka-font-accent);
	font-size: 28px;
	font-weight: 700;
	color: var(--gka-primary);
	margin-bottom: 12px;
	line-height: 1;
}
.gka-services__title {
	font-family: var(--gka-font-heading);
	font-size: 48px;
	font-weight: 800;
	color: var(--gka-dark);
	line-height: 1.2;
	margin: 0;
}

/* Service card --------------------------------------------------- */
.gka-service-card {
	background: #fff;
	border-radius: 24px;
	padding: 20px 20px 36px;
	box-shadow: 0 10px 30px rgba(6, 80, 132, .08);
	text-align: center;
	position: relative;
	transition: transform .4s ease, box-shadow .4s ease;
	height: 100%;
}
.gka-service-card:hover {
	transform: translateY(-6px);
	box-shadow: 0 20px 45px rgba(6, 80, 132, .15);
}

.gka-service-card__thumb {
	position: relative;
	border-radius: 16px;
	overflow: hidden;
	margin-bottom: 60px; /* leave room for the overlapping icon */
}
.gka-service-card__thumb img {
	display: block;
	width: 100%;
	height: 220px;
	object-fit: cover;
	transition: transform .6s ease;
}
.gka-service-card:hover .gka-service-card__thumb img { transform: scale(1.05); }

/* Circular icon — overlaps the image bottom */
.gka-service-card__icon {
	position: absolute;
	left: 50%;
	top: 220px; /* sits on the bottom edge of the thumb */
	transform: translate(-50%, -50%);
	width: 90px;
	height: 90px;
	border-radius: 50%;
	background: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 2;
	box-shadow: 0 8px 20px rgba(6, 80, 132, .12);
}
.gka-service-card__icon::before {
	content: "";
	position: absolute;
	inset: 0;
	border: 4px solid var(--gka-secondary);
	border-radius: 50%;
	transition: border-color .35s ease, transform .35s ease;
}
.gka-service-card__icon img {
	max-width: 50px;
	max-height: 50px;
	transition: transform .5s ease;
	position: relative;
	z-index: 1;
}
.gka-service-card:hover .gka-service-card__icon::before {
	opacity: 1;
	border-color: var(--gka-primary);
}
.gka-service-card:hover .gka-service-card__icon img { transform: rotateY(180deg); }

.gka-service-card__title {
	font-family: var(--gka-font-heading);
	font-size: 24px;
	font-weight: 700;
	margin: 0 0 12px;
	line-height: 1.3;
}
.gka-service-card__title a {
	color: var(--gka-dark);
	transition: color .25s ease;
}
.gka-service-card__title a:hover { color: var(--gka-primary); }

.gka-service-card__text {
	font-size: 15px;
	line-height: 1.65;
	color: var(--gka-body);
	margin: 0 0 22px;
}

/* Responsive */
@media (max-width: 1199px) {
	.gka-services__title { font-size: 40px; }
}
@media (max-width: 991px) {
	.gka-services { padding: 80px 0; }
	.gka-services__title { font-size: 32px; }
	.gka-services__deco--heart { display: none; }
}
@media (max-width: 575px) {
	.gka-services__title { font-size: 26px; }
	.gka-services__eyebrow { font-size: 24px; }
	.gka-service-card__thumb img { height: 200px; }
}

/* 9. Volunteer CTA section ================================================ */
.gka-volunteer { padding: 0; position: relative; }
.gka-volunteer__inner {
	display: grid;
	grid-template-columns: 1fr 1fr;
	min-height: 600px;
}

.gka-volunteer__content {
	background: var(--gka-primary);
	color: #fff;
	display: flex;
	align-items: center;
	padding: 80px 60px;
}
.gka-volunteer__content-inner { max-width: 600px; margin-left: auto; }

.gka-volunteer__eyebrow {
	display: inline-block;
	font-family: var(--gka-font-accent);
	font-size: 28px;
	font-weight: 700;
	color: var(--gka-secondary);
	margin-bottom: 12px;
	line-height: 1;
}
.gka-volunteer__title {
	font-family: var(--gka-font-heading);
	font-size: 56px;
	font-weight: 800;
	color: #fff;
	line-height: 1.1;
	margin: 0 0 22px;
}
.gka-volunteer__text {
	font-size: 16px;
	line-height: 1.65;
	color: rgba(255, 255, 255, .92);
	margin: 0 0 36px;
}

/* Donation progress card */
.gka-donation-card {
	background: #fff;
	border-radius: 18px;
	padding: 28px 30px;
	box-shadow: 0 15px 35px rgba(0, 0, 0, .15);
}
.gka-donation-card__title {
	font-family: var(--gka-font-heading);
	font-size: 22px;
	font-weight: 700;
	margin: 0 0 22px;
	line-height: 1.3;
}
.gka-donation-card__title a {
	color: var(--gka-dark);
	transition: color .25s ease;
}
.gka-donation-card__title a:hover { color: var(--gka-primary); }

.gka-donation-card__progress-wrap { margin-bottom: 20px; }
.gka-donation-card__progress {
	position: relative;
	background: rgba(0, 109, 182, .12);
	border-radius: 30px;
	height: 6px;
	margin-bottom: 14px;
}
.gka-donation-card__bar {
	background: var(--gka-primary);
	height: 100%;
	border-radius: 30px;
	position: relative;
}
.gka-donation-card__value {
	position: absolute;
	top: -28px;
	left: 0;
	background: var(--gka-primary);
	color: #fff;
	font-size: 12px;
	font-weight: 700;
	padding: 3px 8px;
	border-radius: 20px;
	transform: translateX(-50%);
}
.gka-donation-card__value::after {
	content: "";
	position: absolute;
	bottom: -6px;
	left: 50%;
	transform: translateX(-50%);
	border: 4px solid transparent;
	border-top-color: var(--gka-primary);
}
.gka-donation-card__stats {
	display: flex;
	justify-content: space-between;
	font-size: 14px;
	font-weight: 600;
	color: var(--gka-dark);
}
.gka-donation-card__goal { color: var(--gka-secondary); }

/* Video side */
.gka-volunteer__video {
	position: relative;
	overflow: hidden;
}
.gka-volunteer__video img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	filter: brightness(.8);
}
.gka-volunteer__video-title {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	font-family: var(--gka-font-heading);
	font-size: 120px;
	font-weight: 900;
	color: rgba(255, 255, 255, .15);
	margin: 0;
	white-space: nowrap;
	pointer-events: none;
}
.gka-volunteer__play {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 90px;
	height: 90px;
	border-radius: 50%;
	background: var(--gka-secondary);
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 20px;
	z-index: 2;
}
.gka-volunteer__play::before,
.gka-volunteer__play::after {
	content: "";
	position: absolute;
	inset: 0;
	border-radius: 50%;
	background: var(--gka-secondary);
	z-index: -1;
	animation: gkaRipple 5s ease-in-out infinite;
}
.gka-volunteer__play::after { animation-delay: 2s; }
.gka-volunteer__play:hover { background: var(--gka-primary); color: #fff; }

@media (max-width: 991px) {
	.gka-volunteer__inner { grid-template-columns: 1fr; }
	.gka-volunteer__content { padding: 60px 40px; }
	.gka-volunteer__content-inner { margin: 0 auto; }
	.gka-volunteer__title { font-size: 40px; }
	.gka-volunteer__video { min-height: 400px; }
	.gka-volunteer__video-title { font-size: 70px; }
}
@media (max-width: 575px) {
	.gka-volunteer__content { padding: 60px 20px; }
	.gka-volunteer__title { font-size: 32px; }
	.gka-donation-card { padding: 22px 20px; }
	.gka-donation-card__title { font-size: 18px; }
	.gka-volunteer__play { width: 70px; height: 70px; font-size: 16px; }
	.gka-volunteer__video-title { font-size: 48px; }
}

/* 10. Work Process section ================================================ */
.gka-process {
	padding: 120px 0;
	position: relative;
	overflow: hidden;
}
.gka-process__bg {
	position: absolute;
	top: 70px;
	left: 0;
	max-width: 220px;
	z-index: 0;
	animation: gkaJump 7s linear infinite;
}
.gka-process__bg img { width: 100%; height: auto; }
.gka-process > .container { position: relative; z-index: 2; }

.gka-process__head { margin-bottom: 60px; }
.gka-process__eyebrow {
	display: inline-block;
	font-family: var(--gka-font-accent);
	font-size: 28px;
	font-weight: 700;
	color: var(--gka-primary);
	margin-bottom: 12px;
	line-height: 1;
}
.gka-process__title {
	font-family: var(--gka-font-heading);
	font-size: 48px;
	font-weight: 800;
	color: var(--gka-dark);
	line-height: 1.2;
	margin: 0;
}

/* Process card --------------------------------------------------- */
.gka-process__col { position: relative; }

.gka-process-card { text-align: center; }
.gka-process-card__visual {
	position: relative;
	display: inline-block;
	padding-bottom: 15px;
}
.gka-process-card__thumb {
	max-width: 260px;
	margin: 0 auto;
	-webkit-mask-image: url('../images/home-image/work-process/process-card-shape.webp');
	mask-image: url('../images/home-image/work-process/process-card-shape.webp');
	-webkit-mask-repeat: no-repeat;
	mask-repeat: no-repeat;
	-webkit-mask-size: 100% 100%;
	mask-size: 100% 100%;
	-webkit-mask-position: center;
	mask-position: center;
}
.gka-process-card__thumb img {
	display: block;
	width: 100%;
	height: auto;
	transition: transform .5s ease;
}
.gka-process-card:hover .gka-process-card__thumb img { transform: scale(1.04); }

.gka-process-card__icon {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, calc(-50% + 20px));
	transition: transform .5s ease;
	z-index: 2;
}
.gka-process-card__icon img {
	max-width: 80px;
	max-height: 80px;
	transition: transform .5s ease;
}
.gka-process-card:hover .gka-process-card__icon img { transform: rotateY(180deg); }

.gka-process-card__shape {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	display: flex;
	justify-content: center;
	pointer-events: none;
}
.gka-process-card__shape img { max-width: 100%; }

.gka-process-card__body { margin-top: 30px; }
.gka-process-card__title {
	font-family: var(--gka-font-heading);
	font-size: 24px;
	font-weight: 700;
	color: var(--gka-dark);
	margin: 0 0 10px;
	line-height: 1.3;
}
.gka-process-card__text {
	font-size: 15px;
	line-height: 1.6;
	color: var(--gka-body);
	margin: 0;
	max-width: 320px;
	margin-left: auto;
	margin-right: auto;
}

/* Connecting arrows between steps */
.gka-process__arrow {
	position: absolute;
	top: 80px;
	right: -20px;
	width: 120px;
	pointer-events: none;
	z-index: 1;
}
.gka-process__arrow img { width: 100%; height: auto; }
.gka-process__col:nth-child(even) .gka-process__arrow { top: 140px; transform: rotate(15deg); }

/* Responsive */
@media (max-width: 1199px) {
	.gka-process__title { font-size: 40px; }
	.gka-process__arrow { display: none; }
}
@media (max-width: 991px) {
	.gka-process { padding: 80px 0; }
	.gka-process__title { font-size: 32px; }
	.gka-process__bg { max-width: 140px; opacity: .6; }
}
@media (max-width: 575px) {
	.gka-process__title { font-size: 26px; }
	.gka-process__eyebrow { font-size: 24px; }
	.gka-process-card__icon img { max-width: 60px; max-height: 60px; }
}

/* 11. Big Hand CTA section ================================================ */
.gka-cta { padding: 80px 0; }
.gka-cta__wrap {
	display: grid;
	grid-template-columns: 7fr 5fr;
	overflow: hidden;
	border-radius: 30px;
	box-shadow: 0 25px 60px rgba(6, 80, 132, .15);
}

.gka-cta__content {
	background: var(--gka-primary);
	color: #fff;
	padding: 70px 60px;
}
.gka-cta__eyebrow {
	display: inline-block;
	font-family: var(--gka-font-accent);
	font-size: 26px;
	font-weight: 700;
	color: var(--gka-secondary);
	margin-bottom: 10px;
	line-height: 1;
}
.gka-cta__title {
	font-family: var(--gka-font-heading);
	font-size: 48px;
	font-weight: 800;
	color: #fff;
	line-height: 1.15;
	margin: 0 0 36px;
}

.gka-cta__input {
	width: 100%;
	height: 56px;
	border: none;
	background: rgba(255, 255, 255, .14);
	color: #fff;
	border-radius: 50px;
	padding: 0 24px;
	font-family: var(--gka-font-body);
	font-size: 15px;
	transition: background .25s ease, box-shadow .25s ease;
}
.gka-cta__input::placeholder { color: rgba(255, 255, 255, .85); }
.gka-cta__input:focus {
	outline: none;
	background: rgba(255, 255, 255, .22);
	box-shadow: 0 0 0 3px rgba(255, 255, 255, .15);
}

.gka-cta__btn {
	width: 100%;
	height: 56px;
	border: none;
	background: var(--gka-dark);
	color: #fff;
	font-family: var(--gka-font-body);
	font-weight: 700;
	font-size: 14px;
	border-radius: 50px;
	cursor: pointer;
	transition: background .25s ease, transform .25s ease;
}
.gka-cta__btn:hover { background: var(--gka-secondary); transform: translateY(-2px); }

.gka-cta__map { background: var(--gka-light); }
.gka-cta__map iframe {
	display: block;
	width: 100%;
	height: 100%;
	min-height: 460px;
	border: 0;
	filter: grayscale(1) contrast(.9);
}

@media (max-width: 1199px) {
	.gka-cta__title { font-size: 40px; }
	.gka-cta__content { padding: 60px 40px; }
}
@media (max-width: 991px) {
	.gka-cta__wrap { grid-template-columns: 1fr; }
	.gka-cta__map iframe { min-height: 320px; }
}
@media (max-width: 575px) {
	.gka-cta__title { font-size: 30px; }
	.gka-cta__content { padding: 50px 24px; }
	.gka-cta__wrap { border-radius: 20px; }
}

/* 12. Blog section ======================================================== */
.gka-blog { padding: 120px 0; position: relative; }
.gka-blog__head { margin-bottom: 56px; }
.gka-blog__eyebrow {
	display: inline-block;
	font-family: var(--gka-font-accent);
	font-size: 28px;
	font-weight: 700;
	color: var(--gka-primary);
	margin-bottom: 10px;
	line-height: 1;
}
.gka-blog__title {
	font-family: var(--gka-font-heading);
	font-size: 48px;
	font-weight: 800;
	color: var(--gka-dark);
	line-height: 1.2;
	margin: 0;
}

/* Blog card */
.gka-blog-card {
	background: #fff;
	border-radius: 22px;
	overflow: hidden;
	box-shadow: 0 12px 30px rgba(6, 80, 132, .08);
	transition: transform .4s ease, box-shadow .4s ease;
	height: 100%;
	display: flex;
	flex-direction: column;
}
.gka-blog-card:hover {
	transform: translateY(-6px);
	box-shadow: 0 22px 45px rgba(6, 80, 132, .14);
}

.gka-blog-card__thumb {
	display: block;
	overflow: hidden;
	position: relative;
}
.gka-blog-card__thumb img {
	display: block;
	width: 100%;
	height: 240px;
	object-fit: cover;
	transition: transform .6s ease, filter .4s ease;
	filter: grayscale(.6);
}
.gka-blog-card:hover .gka-blog-card__thumb img {
	transform: scale(1.05);
	filter: grayscale(0);
}

.gka-blog-card__body { padding: 26px 28px 28px; flex: 1; display: flex; flex-direction: column; }
.gka-blog-card__meta {
	display: flex;
	flex-wrap: wrap;
	gap: 18px;
	margin-bottom: 12px;
}
.gka-blog-card__meta span {
	font-size: 14px;
	font-weight: 600;
	color: var(--gka-secondary);
	display: inline-flex;
	align-items: center;
	gap: 6px;
}
.gka-blog-card__meta i { color: var(--gka-secondary); font-size: 13px; }

.gka-blog-card__title {
	font-family: var(--gka-font-heading);
	font-size: 22px;
	font-weight: 700;
	line-height: 1.3;
	margin: 0 0 22px;
}
.gka-blog-card__title a {
	color: var(--gka-dark);
	transition: color .25s ease;
}
.gka-blog-card__title a:hover { color: var(--gka-primary); }

.gka-blog-card .gka-btn { align-self: flex-start; margin-top: auto; }

/* Responsive */
@media (max-width: 1199px) {
	.gka-blog__title { font-size: 40px; }
}
@media (max-width: 991px) {
	.gka-blog { padding: 80px 0; }
	.gka-blog__title { font-size: 32px; }
	.gka-blog-card__thumb img { height: 220px; }
}
@media (max-width: 575px) {
	.gka-blog__title { font-size: 26px; }
	.gka-blog__eyebrow { font-size: 24px; }
	.gka-blog-card__title { font-size: 20px; }
}

/* 13. Breadcrumb banner (reusable) ======================================== */
.gka-banner {
	position: relative;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	padding: 160px 0 120px;
	overflow: hidden;
	isolation: isolate;
}
.gka-banner__overlay {
	position: absolute;
	inset: 0;
	background: var(--gka-primary);
	mix-blend-mode: multiply;
	opacity: .82;
	z-index: 1;
}
.gka-banner > .container { position: relative; z-index: 2; }

.gka-banner__inner { text-align: center; color: #fff; }
.gka-banner__title {
	font-family: var(--gka-font-heading);
	font-size: 64px;
	font-weight: 800;
	color: #fff;
	line-height: 1.1;
	margin: 0 0 16px;
}

/* Breadcrumb trail */
.gka-banner__crumbs ol {
	display: inline-flex;
	flex-wrap: wrap;
	gap: 0;
	padding: 0;
	margin: 0;
	list-style: none;
	font-family: var(--gka-font-body);
	font-size: 16px;
	font-weight: 600;
}
.gka-banner__crumbs li {
	display: inline-flex;
	align-items: center;
	color: #fff;
}
.gka-banner__crumbs li + li::before {
	content: "\f061"; /* fa-arrow-right */
	font-family: "Font Awesome 6 Pro", "Font Awesome 6 Free";
	font-weight: 900;
	color: var(--gka-secondary);
	margin: 0 14px;
	font-size: 14px;
}
.gka-banner__crumbs a {
	color: #fff;
	transition: color .25s ease;
}
.gka-banner__crumbs a:hover { color: var(--gka-secondary); }
.gka-banner__crumbs [aria-current="page"] { color: var(--gka-secondary); }

/* Responsive */
@media (max-width: 991px) {
	.gka-banner { padding: 130px 0 100px; }
	.gka-banner__title { font-size: 48px; }
}
@media (max-width: 575px) {
	.gka-banner { padding: 110px 0 80px; }
	.gka-banner__title { font-size: 36px; }
	.gka-banner__crumbs { font-size: 14px; }
	.gka-banner__crumbs li + li::before { margin: 0 10px; }
}

/* `.containerfluid` shim — handle the typo'd class on big-hand-cta section. */
.containerfluid {
	width: 100%;
	padding-left: var(--bs-gutter-x, 0.75rem);
	padding-right: var(--bs-gutter-x, 0.75rem);
	margin-left: auto;
	margin-right: auto;
}

/* 14. About — Vision/Mission + Core Values =============================== */
.gka-about-mission { padding: 120px 0; }

.gka-about-mission__head { margin-bottom: 50px; }
.gka-about-mission__eyebrow {
	display: inline-block;
	font-family: var(--gka-font-accent);
	font-size: 28px;
	font-weight: 700;
	color: var(--gka-secondary);
	margin-bottom: 8px;
	line-height: 1;
}
.gka-about-mission__title {
	font-family: var(--gka-font-heading);
	font-size: 42px;
	font-weight: 800;
	color: var(--gka-dark);
	line-height: 1.2;
	margin: 0;
	letter-spacing: .5px;
}

/* Vision + Mission */
.gka-about-mission__vm { margin-bottom: 80px; }
.gka-about-mission__sub-title {
	font-family: var(--gka-font-heading);
	font-size: 30px;
	font-weight: 800;
	color: var(--gka-dark);
	margin: 0 0 14px;
}
.gka-about-mission__sub-text {
	font-size: 16px;
	line-height: 1.7;
	color: var(--gka-body);
	max-width: 540px;
	margin: 0 auto;
}

.gka-about-mission__values-head { margin-bottom: 50px; }

/* Feature card — fluid cloud-shape background */
.gka-feature-card {
	position: relative;
	text-align: center;
	padding: 36px 26px;
	transition: transform .45s ease;
	height: 100%;
	z-index: 1;
	isolation: isolate;
}
.gka-feature-card::before {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(160deg, rgba(0, 109, 182, .08), rgba(255, 172, 0, .06));
	/* organic blob */
	border-radius: 70% 30% 50% 50% / 50% 60% 40% 50%;
	z-index: -1;
	transition: background .4s ease, transform .6s ease;
}
.gka-feature-card:hover { transform: translateY(-6px); }
.gka-feature-card:hover::before {
	background: linear-gradient(160deg, rgba(0, 109, 182, .18), rgba(255, 172, 0, .14));
	border-radius: 50% 50% 60% 40% / 60% 40% 60% 40%;
}

.gka-feature-card__icon {
	width: 70px;
	height: 70px;
	margin: 0 auto 18px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
}
.gka-feature-card__icon img {
	max-width: 100%;
	max-height: 100%;
	transition: transform .5s ease;
}
.gka-feature-card:hover .gka-feature-card__icon img { transform: rotateY(180deg); }

.gka-feature-card__title {
	font-family: var(--gka-font-heading);
	font-size: 22px;
	font-weight: 700;
	color: var(--gka-dark);
	margin: 0 0 10px;
	line-height: 1.3;
}
.gka-feature-card__text {
	font-size: 14px;
	line-height: 1.65;
	color: var(--gka-body);
	margin: 0;
}

/* Responsive */
@media (max-width: 1199px) {
	.gka-about-mission__title { font-size: 36px; }
	.gka-about-mission__sub-title { font-size: 26px; }
}
@media (max-width: 991px) {
	.gka-about-mission { padding: 80px 0; }
	.gka-about-mission__title { font-size: 30px; }
	.gka-about-mission__vm { margin-bottom: 60px; }
}
@media (max-width: 575px) {
	.gka-about-mission__title { font-size: 26px; }
	.gka-about-mission__sub-title { font-size: 24px; }
	.gka-feature-card__title { font-size: 20px; }
}

/* 15. About — Video banner + overlapping counter ========================== */
.gka-about-video {
	position: relative;
	padding-bottom: 60px; /* room for the overlapping counter */
}

.gka-about-video__banner {
	position: relative;
	height: 580px;
	overflow: hidden;
	isolation: isolate;
}
.gka-about-video__banner img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}
.gka-about-video__overlay {
	position: absolute;
	inset: 0;
	background: var(--gka-primary);
	mix-blend-mode: multiply;
	opacity: .75;
	z-index: 1;
}

/* Center play button with double ripple */
.gka-about-video__play {
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	width: 110px;
	height: 110px;
	border-radius: 50%;
	background: var(--gka-secondary);
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 28px;
	z-index: 2;
	transition: background .25s ease;
}
.gka-about-video__play::before,
.gka-about-video__play::after {
	content: "";
	position: absolute;
	inset: 0;
	border-radius: 50%;
	background: var(--gka-secondary);
	z-index: -1;
	animation: gkaRipple 5s ease-in-out infinite;
}
.gka-about-video__play::after { animation-delay: 2s; }
.gka-about-video__play:hover { background: var(--gka-primary); color: #fff; }

/* Counter strip — overlaps the bottom of the video */
.gka-about-video__counter {
	position: relative;
	margin-top: -110px; /* pulls the strip up over the video */
	background: rgba(15, 32, 47, .55);
	-webkit-backdrop-filter: blur(8px);
	backdrop-filter: blur(8px);
	border-radius: 80px;
	padding: 36px 50px;
	z-index: 5;
}
.gka-about-video__counter .gka-counter__item { text-align: center; }
.gka-about-video__counter .gka-counter__number,
.gka-about-video__counter .gka-counter__number--primary,
.gka-about-video__counter .gka-counter__number--secondary {
	color: #fff;
	justify-content: center;
}
.gka-about-video__counter .gka-counter__label { color: #fff; }
.gka-about-video__counter .gka-counter__divider {
	background: rgba(255, 255, 255, .25);
	height: 50px;
}

/* Responsive */
@media (max-width: 991px) {
	.gka-about-video__banner { height: 460px; }
	.gka-about-video__play { width: 90px; height: 90px; font-size: 22px; }
	.gka-about-video__counter {
		margin-top: -80px;
		padding: 28px 24px;
		border-radius: 40px;
	}
}
@media (max-width: 575px) {
	.gka-about-video__banner { height: 360px; }
	.gka-about-video__play { width: 70px; height: 70px; font-size: 18px; }
	.gka-about-video__counter {
		margin-top: -60px;
		border-radius: 28px;
	}
}

/* 16. Donation card (reusable) ============================================ */
.gka-donation {
	background: #fff;
	border-radius: 22px;
	padding: 32px 32px;
	box-shadow: 0 12px 30px rgba(6, 80, 132, .08);
	transition: transform .35s ease, box-shadow .35s ease;
	height: 100%;
	display: flex;
	flex-direction: column;
}
.gka-donation:hover {
	transform: translateY(-4px);
	box-shadow: 0 22px 45px rgba(6, 80, 132, .14);
}

.gka-donation__title {
	font-family: var(--gka-font-heading);
	font-size: 24px;
	font-weight: 700;
	margin: 0 0 12px;
	line-height: 1.3;
}
.gka-donation__title a {
	color: var(--gka-dark);
	transition: color .25s ease;
}
.gka-donation__title a:hover { color: var(--gka-primary); }

.gka-donation__desc {
	font-size: 15px;
	color: var(--gka-body);
	margin: 0 0 18px;
}

.gka-donation__progress-wrap { margin: 14px 0 22px; }
.gka-donation__track {
	background: rgba(255, 172, 0, .15);
	border-radius: 30px;
	height: 6px;
	overflow: hidden;
	margin-bottom: 14px;
}
.gka-donation__bar {
	background: var(--gka-secondary);
	height: 100%;
	border-radius: 30px;
	transition: width 1s ease;
}

.gka-donation__stats {
	display: flex;
	justify-content: space-between;
	gap: 16px;
}
.gka-donation__raised,
.gka-donation__goal {
	display: flex;
	flex-direction: column;
	font-family: var(--gka-font-body);
}
.gka-donation__raised small,
.gka-donation__goal small {
	font-size: 14px;
	color: var(--gka-primary);
	font-weight: 500;
	margin-bottom: 2px;
}
.gka-donation__raised strong,
.gka-donation__goal strong {
	font-size: 18px;
	font-weight: 700;
	color: var(--gka-dark);
}
.gka-donation__goal { text-align: right; }

.gka-donation .gka-btn { align-self: flex-start; margin-top: auto; }

/* 17. Causes section (Donations page) ===================================== */
.gka-causes { padding: 110px 0; }
.gka-causes__head { margin-bottom: 56px; }
.gka-causes__eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	font-family: var(--gka-font-accent);
	font-size: 30px;
	font-weight: 700;
	color: var(--gka-secondary);
	margin-bottom: 8px;
	line-height: 1;
}
.gka-causes__eyebrow i { color: var(--gka-primary); font-size: 22px; }
.gka-causes__title {
	font-family: var(--gka-font-heading);
	font-size: 48px;
	font-weight: 800;
	color: var(--gka-dark);
	line-height: 1.2;
	margin: 0;
	max-width: 780px;
	margin-left: auto;
	margin-right: auto;
}

/* Responsive */
@media (max-width: 1199px) {
	.gka-causes__title { font-size: 38px; }
}
@media (max-width: 991px) {
	.gka-causes { padding: 80px 0; }
	.gka-causes__title { font-size: 30px; }
	.gka-donation { padding: 26px 24px; }
	.gka-donation__title { font-size: 20px; }
}
@media (max-width: 575px) {
	.gka-causes__title { font-size: 24px; }
	.gka-causes__eyebrow { font-size: 24px; }
	.gka-donation__raised strong,
	.gka-donation__goal strong { font-size: 16px; }
}

/* 18. Clean Water Projects — Donation form + image ======================== */
.gka-cwp-form { padding: 100px 0 80px; }

.gka-donate-form {
	background: #fff;
	border: 1px solid rgba(0, 109, 182, .12);
	border-radius: 14px;
	overflow: hidden;
	box-shadow: 0 12px 36px rgba(6, 80, 132, .08);
}
.gka-donate-form__head {
	background: #f5f7fa;
	padding: 24px 28px;
	text-align: center;
	border-bottom: 4px solid var(--gka-primary);
}
.gka-donate-form__title {
	font-family: var(--gka-font-heading);
	font-size: 18px;
	font-weight: 700;
	color: var(--gka-heading);
	margin: 0;
}
.gka-donate-form__body { padding: 32px 28px 28px; }
.gka-donate-form__intro {
	font-size: 14px;
	color: var(--gka-body);
	margin: 0 0 24px;
	line-height: 1.6;
}

.gka-donate-form__group { margin-bottom: 28px; }
.gka-donate-form__row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	margin-bottom: 12px;
}
.gka-donate-form__label {
	display: block;
	font-size: 15px;
	font-weight: 600;
	color: var(--gka-heading);
	margin-bottom: 12px;
}
.gka-required { color: #e53935; font-weight: 700; }

.gka-donate-form__currency {
	background: #f0f3f6;
	border: 1px solid #e3e8ee;
	border-radius: 4px;
	padding: 4px 12px;
	font-size: 14px;
	color: var(--gka-body);
}
.gka-donate-form__currency strong { color: var(--gka-heading); margin-left: 4px; }

/* Frequency tabs */
.gka-donate-form__tabs {
	display: flex;
	border: 1px solid var(--gka-primary);
	border-radius: 6px;
	overflow: hidden;
}
.gka-donate-form__tab {
	flex: 1;
	border: none;
	background: transparent;
	padding: 12px 8px;
	font-size: 15px;
	font-weight: 600;
	color: var(--gka-heading);
	cursor: pointer;
	transition: background .2s ease, color .2s ease;
}
.gka-donate-form__tab.is-active {
	background: var(--gka-primary);
	color: #fff;
}

/* Donation levels — radio cards */
.gka-donate-form__levels { display: flex; flex-direction: column; gap: 10px; }
.gka-donate-level {
	display: grid;
	grid-template-columns: 130px 1fr;
	align-items: center;
	gap: 18px;
	padding: 0;
	cursor: pointer;
	border-radius: 6px;
	transition: background .25s ease;
}
.gka-donate-level input { display: none; }
.gka-donate-level__amount {
	border: 1px solid #d8dde3;
	border-radius: 4px;
	padding: 16px 12px;
	text-align: center;
	font-weight: 700;
	font-size: 16px;
	color: var(--gka-heading);
	background: #fff;
	transition: background .25s ease, color .25s ease, border-color .25s ease;
}
.gka-donate-level__desc {
	font-size: 14px;
	line-height: 1.5;
	color: var(--gka-body);
}
.gka-donate-level.is-active .gka-donate-level__amount,
.gka-donate-level:has(input:checked) .gka-donate-level__amount {
	background: var(--gka-primary);
	color: #fff;
	border-color: var(--gka-primary);
}

.gka-donate-form__custom {
	margin-top: 6px;
	width: 100%;
	border: 1px solid #d8dde3;
	border-radius: 4px;
	padding: 14px 18px;
	font-size: 15px;
	color: var(--gka-heading);
	background: #fff;
	text-align: center;
}
.gka-donate-form__custom:focus { outline: none; border-color: var(--gka-primary); }

.gka-donate-form__input {
	width: 100%;
	border: 1px solid #d8dde3;
	border-radius: 4px;
	padding: 12px 16px;
	font-size: 15px;
}
.gka-donate-form__input:focus { outline: none; border-color: var(--gka-primary); }

/* Radio rows */
.gka-donate-form__radios { display: flex; flex-direction: column; gap: 12px; }
.gka-radio {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	cursor: pointer;
	font-size: 15px;
	color: var(--gka-heading);
}
.gka-radio input {
	-webkit-appearance: none;
	appearance: none;
	width: 18px;
	height: 18px;
	border: 2px solid #d8dde3;
	border-radius: 50%;
	position: relative;
	margin: 0;
	cursor: pointer;
	transition: border-color .2s ease;
}
.gka-radio input:checked {
	border-color: var(--gka-primary);
}
.gka-radio input:checked::after {
	content: "";
	position: absolute;
	inset: 3px;
	border-radius: 50%;
	background: var(--gka-primary);
}

/* Submit */
.gka-donate-form__submit {
	width: 100%;
	background: var(--gka-primary);
	color: #fff;
	border: none;
	border-radius: 4px;
	padding: 18px;
	font-family: var(--gka-font-body);
	font-size: 16px;
	font-weight: 600;
	cursor: pointer;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	transition: background .25s ease;
	margin-top: 10px;
}
.gka-donate-form__submit:hover { background: var(--gka-dark); }

.gka-donate-form__secure {
	text-align: center;
	font-size: 14px;
	color: #28a745;
	margin: 16px 0 0;
	display: inline-flex;
	align-items: center;
	gap: 8px;
	width: 100%;
	justify-content: center;
}

/* Side image */
.gka-cwp-form__image {
	border-radius: 20px;
	overflow: hidden;
	box-shadow: 0 20px 50px rgba(6, 80, 132, .14);
}
.gka-cwp-form__image img { display: block; width: 100%; height: auto; }

@media (max-width: 575px) {
	.gka-donate-level {
		grid-template-columns: 1fr;
		gap: 8px;
	}
	.gka-donate-form__body { padding: 24px 20px; }
}

/* 19. Clean Water Projects — Intro ========================================= */
.gka-cwp-intro { padding: 80px 0 120px; position: relative; }

.gka-cwp-intro__eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 14px;
	font-family: var(--gka-font-accent);
	font-size: 28px;
	font-weight: 700;
	color: var(--gka-secondary);
	margin-bottom: 14px;
	line-height: 1;
}
.gka-cwp-intro__eyebrow::after {
	content: "";
	display: inline-block;
	width: 60px;
	height: 2px;
	background: var(--gka-secondary);
}
.gka-cwp-intro__title {
	font-family: var(--gka-font-heading);
	font-size: 48px;
	font-weight: 800;
	color: var(--gka-dark);
	line-height: 1.2;
	margin: 0 0 22px;
}
.gka-cwp-intro__text {
	font-size: 16px;
	line-height: 1.75;
	color: var(--gka-body);
	margin: 0 0 30px;
}

.gka-cwp-intro__image {
	border-radius: 20px;
	overflow: hidden;
}
.gka-cwp-intro__image img {
	display: block;
	width: 100%;
	height: auto;
	border-radius: 20px;
	transition: transform .6s ease;
}
.gka-cwp-intro__image:hover img { transform: scale(1.03); }

@media (max-width: 1199px) {
	.gka-cwp-intro__title { font-size: 38px; }
}
@media (max-width: 991px) {
	.gka-cwp-form { padding: 80px 0 40px; }
	.gka-cwp-intro { padding: 60px 0 80px; }
	.gka-cwp-intro__title { font-size: 30px; }
}
@media (max-width: 575px) {
	.gka-cwp-intro__title { font-size: 24px; }
	.gka-cwp-intro__eyebrow { font-size: 24px; }
}

/* 20. Food & Hunger Relief — carousel + donation form ===================== */
.gka-fhr-donate { padding: 80px 0 100px; }

.gka-fhr-carousel { margin-bottom: 60px; }
.gka-fhr-carousel .swiper-slide {
	border-radius: 16px;
	overflow: hidden;
	box-shadow: 0 12px 30px rgba(6, 80, 132, .08);
}
.gka-fhr-carousel .swiper-slide img {
	display: block;
	width: 100%;
	height: 380px;
	object-fit: cover;
}

.gka-fhr-form-wrap {
	max-width: 720px;
	margin: 0 auto;
}

/* Clean Water Projects — titled image carousels (Deep Hand Pump, Construction) */
.gka-cwp-carousel { padding: 50px 0; }
.gka-cwp-carousel__title {
	text-align: center;
	color: #006db6;
	font-weight: 800;
	font-size: 42px;
	margin: 0 0 36px;
}
.gka-cwp-carousel__slider .swiper-slide {
	border-radius: 16px;
	overflow: hidden;
	box-shadow: 0 12px 30px rgba(6, 80, 132, .08);
}
.gka-cwp-carousel__slider .swiper-slide img {
	display: block;
	width: 100%;
	height: 300px;
	object-fit: cover;
}
.gka-cwp-carousel__slider .swiper-pagination {
	position: static;
	margin-top: 24px;
	text-align: center;
}
.gka-cwp-carousel__slider .swiper-pagination-bullet {
	width: 11px;
	height: 11px;
	background: #c3d4e0;
	opacity: 1;
	transition: background .2s, width .2s;
}
.gka-cwp-carousel__slider .swiper-pagination-bullet-active {
	background: #006db6;
	width: 28px;
	border-radius: 6px;
}
@media (max-width: 991px) {
	.gka-cwp-carousel__title { font-size: 32px; }
	.gka-cwp-carousel__slider .swiper-slide img { height: 260px; }
}
@media (max-width: 575px) {
	.gka-cwp-carousel__title { font-size: 26px; }
}

@media (max-width: 991px) {
	.gka-fhr-carousel .swiper-slide img { height: 280px; }
}

/* 21. Food & Hunger Relief — Intro (masked image + content) ============== */
.gka-fhr-intro { padding: 60px 0 120px; }

.gka-fhr-intro__visual {
	position: relative;
	max-width: 540px;
	margin: 0 auto;
}
.gka-fhr-intro__brush {
	position: absolute;
	inset: -30px -40px;
	background:
		radial-gradient(circle at 20% 30%, rgba(255, 172, 0, .15), transparent 50%),
		radial-gradient(circle at 80% 70%, rgba(0, 109, 182, .12), transparent 55%);
	border-radius: 50% 30% 50% 30% / 40% 50% 50% 40%;
	z-index: 0;
	transform: rotate(-3deg);
}

.gka-fhr-intro__frame {
	position: relative;
	border-radius: 24px;
	overflow: hidden;
	z-index: 2;
	box-shadow: 0 20px 50px rgba(6, 80, 132, .14);
}
.gka-fhr-intro__frame img {
	display: block;
	width: 100%;
	height: auto;
	border-radius: 24px;
}

/* Yellow + blue accent bars at top */
.gka-fhr-intro__accent {
	position: absolute;
	top: 14px;
	height: 8px;
	border-radius: 4px;
	z-index: 3;
}
.gka-fhr-intro__accent--yellow {
	left: 22%;
	width: 28%;
	background: var(--gka-secondary);
}
.gka-fhr-intro__accent--blue {
	left: 52%;
	width: 28%;
	background: var(--gka-primary);
}

.gka-fhr-intro__deco {
	position: absolute;
	top: -30px;
	right: -20px;
	max-width: 100px;
	z-index: 3;
	animation: gkaJump 7s linear infinite;
}

.gka-fhr-intro__content { padding-left: 20px; }
.gka-fhr-intro__eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 14px;
	font-family: var(--gka-font-accent);
	font-size: 28px;
	font-weight: 700;
	color: var(--gka-secondary);
	margin-bottom: 14px;
	line-height: 1;
}
.gka-fhr-intro__eyebrow::after {
	content: "";
	display: inline-block;
	width: 60px;
	height: 2px;
	background: var(--gka-secondary);
}
.gka-fhr-intro__title {
	font-family: var(--gka-font-heading);
	font-size: 48px;
	font-weight: 800;
	color: var(--gka-dark);
	line-height: 1.2;
	margin: 0 0 22px;
}
.gka-fhr-intro__text {
	font-size: 16px;
	line-height: 1.75;
	color: var(--gka-body);
	margin: 0 0 30px;
}

@media (max-width: 1199px) {
	.gka-fhr-intro__title { font-size: 38px; }
}
@media (max-width: 991px) {
	.gka-fhr-intro { padding: 40px 0 80px; }
	.gka-fhr-intro__title { font-size: 30px; }
	.gka-fhr-intro__content { padding-left: 0; }
}
@media (max-width: 575px) {
	.gka-fhr-intro__title { font-size: 24px; }
	.gka-fhr-intro__eyebrow { font-size: 24px; }
}

/* 22. Orphan Support Programs ============================================ */
.gka-osp-donate { padding: 80px 0 100px; }

.gka-osp-donate__hero {
	border-radius: 18px;
	overflow: hidden;
	margin-bottom: 60px;
	box-shadow: 0 18px 45px rgba(6, 80, 132, .12);
}
.gka-osp-donate__hero img {
	display: block;
	width: 100%;
	height: auto;
}

.gka-osp-donate__form-wrap {
	max-width: 720px;
	margin: 0 auto;
}

@media (max-width: 991px) {
	.gka-osp-donate { padding: 60px 0 80px; }
	.gka-osp-donate__hero { margin-bottom: 40px; }
}

/* 23. Kind Shelter Initiative ============================================ */
.gka-ksi-donate { padding: 80px 0 100px; }

.gka-ksi-donate__hero {
	max-width: 760px;
	margin: 0 auto 60px;
	text-align: center;
}
.gka-ksi-donate__hero img {
	display: block;
	width: 100%;
	height: auto;
	border-radius: 18px;
}

.gka-ksi-donate__form-wrap {
	max-width: 720px;
	margin: 0 auto;
}

@media (max-width: 991px) {
	.gka-ksi-donate { padding: 60px 0 80px; }
	.gka-ksi-donate__hero { margin-bottom: 40px; }
}

/* 23c. Simple donation section — form only (Normal Handpump, Solar Well…) */
.gka-simple-donate { padding: 80px 0 100px; }
.gka-simple-donate__form-wrap {
	max-width: 720px;
	margin: 0 auto;
}
@media (max-width: 991px) {
	.gka-simple-donate { padding: 60px 0 80px; }
}

/* 24. Our Works — generic section styling ================================ */
.gka-ow-section {
	padding: 80px 0;
}
.gka-ow-section + .gka-ow-section { padding-top: 0; }

.gka-ow-section__eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 14px;
	font-family: var(--gka-font-accent);
	font-size: 26px;
	font-weight: 700;
	color: var(--gka-secondary);
	margin-bottom: 14px;
	line-height: 1;
}
.gka-ow-section__eyebrow::after {
	content: "";
	display: inline-block;
	width: 60px;
	height: 2px;
	background: var(--gka-secondary);
}
.gka-ow-section__title {
	font-family: var(--gka-font-heading);
	font-size: 42px;
	font-weight: 800;
	color: var(--gka-dark);
	line-height: 1.2;
	margin: 0 0 22px;
}
.gka-ow-section__subtitle {
	font-family: var(--gka-font-heading);
	font-size: 28px;
	font-weight: 800;
	color: var(--gka-dark);
	margin: 0 0 16px;
}

.gka-ow-section__image {
	border-radius: 18px;
	overflow: hidden;
	box-shadow: 0 18px 40px rgba(6, 80, 132, .14);
}
.gka-ow-section__image img {
	display: block;
	width: 100%;
	height: auto;
	border-radius: 18px;
	transition: transform .6s ease;
}
.gka-ow-section__image:hover img { transform: scale(1.03); }

/* Checklist (Challenges) */
.gka-ow-list {
	list-style: none;
	padding: 0;
	margin: 0 0 32px;
}
.gka-ow-list li {
	display: flex;
	gap: 14px;
	align-items: flex-start;
	padding: 12px 0;
	border-bottom: 1px dashed rgba(0, 109, 182, .15);
	font-size: 16px;
	line-height: 1.6;
	color: var(--gka-body);
}
.gka-ow-list li:last-child { border-bottom: 0; }
.gka-ow-list li > i {
	color: var(--gka-primary);
	font-size: 18px;
	flex: none;
	margin-top: 3px;
}

/* Solutions (title + body lines) */
.gka-ow-solutions {
	list-style: none;
	padding: 0;
	margin: 0 0 32px;
}
.gka-ow-solutions li {
	padding: 14px 0;
	border-bottom: 1px dashed rgba(0, 109, 182, .15);
	font-size: 16px;
	line-height: 1.6;
	color: var(--gka-body);
}
.gka-ow-solutions li:last-child { border-bottom: 0; }
.gka-ow-solutions strong {
	display: block;
	color: var(--gka-dark);
	font-family: var(--gka-font-heading);
	font-weight: 800;
	margin-bottom: 4px;
}

/* Impact plain list */
.gka-ow-plain-list {
	list-style: none;
	padding: 0;
	margin: 0 0 32px;
}
.gka-ow-plain-list li {
	font-size: 17px;
	font-weight: 600;
	color: var(--gka-body);
	padding: 10px 0;
}

/* Counter strip on Our Works page */
.gka-cwp-counter-strip {
	padding: 30px 0 100px;
}
.gka-cwp-counter-strip .gka-counter {
	background: var(--gka-primary);
	border-radius: 50px;
	padding: 32px 50px;
	color: #fff;
}
.gka-cwp-counter-strip .gka-counter__number,
.gka-cwp-counter-strip .gka-counter__number--primary,
.gka-cwp-counter-strip .gka-counter__number--secondary {
	color: #fff;
}
.gka-cwp-counter-strip .gka-counter__label { color: #fff; }
.gka-cwp-counter-strip .gka-counter__divider {
	background: rgba(255, 255, 255, .25);
	height: 50px;
}

/* 25. Clean Water Projects — Gallery ====================================== */
.gka-cwp-gallery { padding: 60px 0 80px; }

.gka-cwp-gallery__grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 18px;
}
.gka-cwp-gallery__item {
	position: relative;
	display: block;
	border-radius: 12px;
	overflow: hidden;
	background: var(--gka-light);
	aspect-ratio: 16 / 9;
	transition: transform .35s ease, box-shadow .35s ease;
}
.gka-cwp-gallery__item img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform .6s ease;
}
.gka-cwp-gallery__overlay {
	position: absolute;
	inset: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(0, 109, 182, .55);
	color: #fff;
	font-size: 24px;
	opacity: 0;
	transition: opacity .35s ease;
}
.gka-cwp-gallery__item:hover {
	transform: translateY(-3px);
	box-shadow: 0 18px 40px rgba(6, 80, 132, .18);
}
.gka-cwp-gallery__item:hover img { transform: scale(1.06); }
.gka-cwp-gallery__item:hover .gka-cwp-gallery__overlay { opacity: 1; }

@media (max-width: 1199px) {
	.gka-ow-section__title { font-size: 36px; }
	.gka-cwp-gallery__grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 991px) {
	.gka-ow-section { padding: 60px 0; }
	.gka-ow-section__title { font-size: 30px; }
	.gka-ow-section__subtitle { font-size: 24px; }
	.gka-cwp-counter-strip .gka-counter { padding: 28px 24px; border-radius: 28px; }
}
@media (max-width: 767px) {
	.gka-cwp-gallery__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 575px) {
	.gka-ow-section__title { font-size: 26px; }
	.gka-ow-section__eyebrow { font-size: 22px; }
	.gka-cwp-gallery__grid { gap: 10px; }
}

/* Reverse layout helper (image then text) — Bootstrap order classes do the job */
.gka-ow-section--reverse { /* placeholder for future per-page tweaks */ }

/* Feedback callout used on Food & Hunger Relief interventions */
.gka-ow-feedback {
	background: rgba(0, 109, 182, .06);
	border-left: 4px solid var(--gka-primary);
	padding: 16px 20px;
	border-radius: 0 10px 10px 0;
	font-size: 15px;
	line-height: 1.6;
	color: var(--gka-body);
	margin: 0 0 28px;
}
.gka-ow-feedback strong { color: var(--gka-dark); margin-right: 4px; }

/* Two-button row used on Food & Hunger impact section */
.gka-ow-btn-group {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
}

/* Kind Shelter Initiative — overview paragraphs + features list */
.gka-ksi-overview p {
	font-size: 16px;
	line-height: 1.75;
	color: var(--gka-body);
	margin: 0 0 16px;
}
.gka-ksi-features__intro {
	font-size: 16px;
	color: var(--gka-dark);
	margin: 0 0 20px;
}
.gka-ksi-features {
	list-style: none;
	padding: 0;
	margin: 0 0 28px;
}
.gka-ksi-features li {
	display: flex;
	gap: 14px;
	align-items: flex-start;
	padding: 12px 0;
	border-bottom: 1px dashed rgba(0, 109, 182, .15);
	font-size: 16px;
	line-height: 1.6;
	color: var(--gka-body);
}
.gka-ksi-features li:last-child { border-bottom: 0; }
.gka-ksi-features__emoji {
	font-size: 22px;
	line-height: 1;
	flex: none;
	width: 30px;
	text-align: center;
}
.gka-ksi-features strong { color: var(--gka-dark); }

/* ---------------- Donate Now page ---------------- */
.gka-donate-section { padding: 80px 0; }
.gka-donate-section__title { font-size: 38px; margin: 8px 0 30px; line-height: 1.25; }

/* Donate Now — cause picker (left list + right add-to-cart form) */
.gka-donate-picker { margin-top: 50px; }
.gka-donate-list {
	display: flex;
	flex-direction: column;
	gap: 12px;
	position: sticky;
	top: 20px;
}
.gka-donate-list__item {
	position: relative;
	display: block;
	width: 100%;
	text-align: left;
	background: #fff;
	border: 2px solid rgba(0, 109, 182, .14);
	border-radius: 14px;
	padding: 16px 42px 16px 18px;
	cursor: pointer;
	transition: border-color .2s, background .2s, box-shadow .2s;
}
.gka-donate-list__item:hover { border-color: rgba(0, 109, 182, .5); }
.gka-donate-list__item.is-active {
	border-color: #006db6;
	background: #f2f8fd;
	box-shadow: 0 10px 24px rgba(0, 109, 182, .14);
}
.gka-donate-list__title {
	display: block;
	font-weight: 800;
	font-size: 16px;
	color: #0e2a3b;
}
.gka-donate-list__item.is-active .gka-donate-list__title { color: #006db6; }
.gka-donate-list__desc {
	display: block;
	color: #7d8b96;
	font-size: 13px;
	line-height: 1.5;
	margin-top: 5px;
}
.gka-donate-list__arrow {
	position: absolute;
	right: 16px;
	top: 20px;
	color: #006db6;
	opacity: 0;
	transform: translateX(-4px);
	transition: opacity .2s, transform .2s;
}
.gka-donate-list__item.is-active .gka-donate-list__arrow { opacity: 1; transform: none; }

@media (max-width: 991px) {
	.gka-donate-list {
		position: static;
		flex-direction: row;
		flex-wrap: nowrap;
		overflow-x: auto;
		padding-bottom: 6px;
	}
	.gka-donate-list__item { min-width: 230px; padding-right: 18px; }
	.gka-donate-list__arrow { display: none; }
}
.gka-donate-card {
	background: #fff;
	border: 1px solid rgba(0, 109, 182, .12);
	border-radius: 18px;
	padding: 30px 26px;
	box-shadow: 0 8px 30px rgba(0, 109, 182, .06);
	height: 100%;
}
.gka-donate-card__title { color: var(--gka-primary); font-weight: 700; font-size: 22px; margin: 0 0 18px; }
.gka-donation-card-wrap { display: flex; justify-content: center; margin-top: 70px; }
.gka-donation-card {
	background: #fff;
	border-radius: 20px;
	box-shadow: 0 10px 40px rgba(0,0,0,.08);
	max-width: 480px;
	width: 100%;
	overflow: hidden;
}
.gka-donation-card__image img { width: 100%; height: 240px; object-fit: cover; display: block; }
.gka-donation-card__body { padding: 24px 26px 30px; text-align: center; }
.gka-donation-card__body h3 { font-family: var(--gka-font-heading); font-size: 24px; margin: 0 0 10px; color: #111; }
.gka-donation-card__body > p { color: #555; font-size: 14px; margin: 0 0 18px; }
.gka-donation-card__stats { display: flex; justify-content: space-between; border: 1px solid #eee; border-radius: 8px; padding: 10px 0; }
.gka-donation-card__stats > div { flex: 1; text-align: center; border-right: 1px solid #eee; }
.gka-donation-card__stats > div:last-child { border-right: 0; }
.gka-donation-card__stats strong { display: block; font-size: 15px; color: #111; }
.gka-donation-card__stats span { font-size: 11px; color: #888; }
.gka-donation-card__bar { background: #eee; height: 8px; border-radius: 4px; margin: 16px 0 6px; overflow: hidden; }
.gka-donation-card__bar span { display: block; height: 100%; background: #27ae60; border-radius: 4px; }
.gka-donation-card__bar-labels { display: flex; justify-content: space-between; font-size: 11px; color: #777; margin-bottom: 18px; }
.gka-donation-card__btn { display: block; background: #0b72d9; color: #fff; padding: 14px; border-radius: 6px; text-align: center; font-weight: 600; text-decoration: none; }
.gka-donation-card__btn:hover { background: #095bb0; color: #fff; }
.gka-donation-card__secure { font-size: 12px; color: #27ae60; margin: 12px 0 0; }

/* ---------------- Gifts page ---------------- */
.gka-gifts-section { padding: 80px 0; }
.gka-gifts-section__title { color: var(--gka-primary); font-size: 38px; text-align: center; font-weight: 800; }
.gka-gift-card {
	display: block;
	background: #fff;
	border: 1px solid rgba(0, 109, 182, .10);
	border-radius: 16px;
	padding: 14px 14px 22px;
	text-align: center;
	box-shadow: 0 6px 20px rgba(0, 109, 182, .05);
	text-decoration: none;
	color: inherit;
	transition: transform .2s, box-shadow .2s;
	height: 100%;
}
.gka-gift-card:hover { transform: translateY(-4px); box-shadow: 0 12px 30px rgba(0, 109, 182, .15); color: inherit; }
.gka-gift-card__image { border-radius: 12px; overflow: hidden; margin-bottom: 16px; aspect-ratio: 1 / 1; background: #f5f5f5; }
.gka-gift-card__image img { width: 100%; height: 100%; object-fit: cover; display: block; }
.gka-gift-card__title { color: var(--gka-primary); font-size: 18px; font-weight: 700; margin: 0 0 8px; min-height: 48px; }
.gka-gift-card__price { color: var(--gka-primary); font-weight: 600; font-size: 16px; }

/* ---------------- Shop Details (single gift) ---------------- */
.gka-shop-details { padding: 70px 0; }
.gka-shop-details__image { border-radius: 16px; overflow: hidden; background: #f5f5f5; }
.gka-shop-details__image img { width: 100%; height: auto; display: block; }
.gka-shop-details__price { color: var(--gka-primary); font-size: 18px; font-weight: 700; margin: 0 0 8px; }
.gka-shop-details__title { color: var(--gka-primary); font-family: var(--gka-font-heading); font-size: 42px; font-weight: 800; margin: 0 0 8px; }
.gka-shop-details__reviews { color: var(--gka-primary); font-size: 14px; margin: 0 0 14px; }
.gka-shop-details__short { color: #444; line-height: 1.7; margin: 16px 0; }
.gka-shop-details__availability { color: var(--gka-primary); font-weight: 600; margin: 0 0 18px; }
.gka-shop-details__availability .gka-stock-in { color: var(--gka-primary); margin-left: 10px; font-weight: 500; }
.gka-shop-details__actions { display: flex; align-items: center; gap: 16px; margin: 18px 0; flex-wrap: wrap; }
.gka-qty { display: inline-flex; align-items: center; border: 1px solid #ddd; border-radius: 6px; overflow: hidden; }
.gka-qty__btn { width: 38px; height: 44px; background: #fff; border: 0; font-size: 18px; cursor: pointer; }
.gka-qty__input { width: 50px; height: 44px; text-align: center; border: 0; border-left: 1px solid #ddd; border-right: 1px solid #ddd; }
.gka-shop-details__category { color: var(--gka-primary); margin: 14px 0 0; }
.gka-shop-details__category a { color: var(--gka-primary); text-decoration: none; margin-left: 8px; }
.gka-shop-details__desc { margin-top: 60px; }
.gka-shop-details__desc-tab {
	display: inline-block;
	background: var(--gka-accent);
	color: #fff;
	padding: 12px 32px;
	border-radius: 30px;
	font-weight: 600;
	margin-bottom: 28px;
}
.gka-shop-details__desc-body { color: #555; line-height: 1.7; border-top: 1px solid #eee; padding-top: 26px; }
.gka-shop-details__related { margin-top: 80px; }

/* ---------------- Contact page ---------------- */
.gka-contact-section { padding: 80px 0; }
.gka-contact__heading { font-size: 36px; text-transform: uppercase; line-height: 1.2; margin: 8px 0 30px; }
.gka-contact__reason { margin-bottom: 18px; }
.gka-contact__reason h3 { color: var(--gka-primary); font-size: 20px; font-weight: 700; margin: 0 0 4px; }
.gka-contact__reason p { color: var(--gka-primary); margin: 0; }
.gka-contact-form {
	background: #fff;
	border: 1px solid rgba(0, 109, 182, .12);
	border-radius: 22px;
	padding: 34px 30px;
	box-shadow: 0 8px 30px rgba(0, 109, 182, .05);
}
.gka-contact-form__field { margin-bottom: 16px; }
.gka-contact-form__field input,
.gka-contact-form__field select,
.gka-contact-form__field textarea {
	width: 100%;
	border: 1px solid rgba(0, 109, 182, .25);
	border-radius: 30px;
	padding: 14px 22px;
	background: #fff;
	color: var(--gka-primary);
	outline: none;
	font-family: var(--gka-font-body);
}
.gka-contact-form__field textarea { border-radius: 18px; resize: vertical; min-height: 130px; }
.gka-contact-form__field input::placeholder,
.gka-contact-form__field textarea::placeholder { color: var(--gka-primary); opacity: .7; }
.gka-contact-info { margin-top: 60px; padding: 30px; background: #fff; border-radius: 22px; box-shadow: 0 8px 30px rgba(0,0,0,.05); }
.gka-contact-info__item { display: flex; gap: 16px; align-items: center; margin-bottom: 22px; }
.gka-contact-info__icon {
	width: 60px; height: 60px;
	border-radius: 14px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	font-size: 24px;
	flex: none;
}
.gka-contact-info__item h4 { color: var(--gka-primary); font-size: 18px; margin: 0 0 2px; font-weight: 700; }
.gka-contact-info__item a, .gka-contact-info__item p { color: var(--gka-body); margin: 0; text-decoration: none; }
.gka-contact-info__map iframe { width: 100%; height: 320px; border: 0; border-radius: 16px; }

/* ---------------- Become a Volunteer page ---------------- */
.gka-volunteer-section { padding: 80px 0; }
.gka-volunteer__title { color: var(--gka-primary); font-size: 32px; font-weight: 800; margin: 0 0 26px; line-height: 1.25; }
.gka-volunteer__image { border-radius: 16px; overflow: hidden; margin-bottom: 24px; }
.gka-volunteer__image img { width: 100%; display: block; }
.gka-volunteer__subtitle { color: var(--gka-primary); font-size: 22px; font-weight: 700; margin: 0 0 12px; }
.gka-volunteer__lead { color: var(--gka-primary); line-height: 1.7; margin: 0 0 20px; }
.gka-volunteer__checklist { list-style: none; padding: 0; margin: 0; }
.gka-volunteer__checklist li {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 8px 0;
	color: var(--gka-primary);
}
.gka-volunteer__checklist li i { color: var(--gka-primary); font-size: 18px; }
.gka-btn--accent {
	background: var(--gka-accent);
	color: #fff;
	border: 0;
	padding: 14px 36px;
	border-radius: 30px;
	font-weight: 600;
	display: inline-flex;
	align-items: center;
	gap: 8px;
}
.gka-btn--accent:hover { background: #e69b00; color: #fff; }

/* ---------------- Transparency & Impact + Voices ---------------- */
.gka-ti-lead { color: var(--gka-primary); line-height: 1.75; font-size: 16px; margin: 0 0 28px; }
.gka-voices-section { padding: 40px 0 90px; }
.gka-voices-section__title { color: var(--gka-primary); font-size: 38px; text-align: center; font-weight: 800; }
.gka-voice-card {
	border: 1px solid rgba(0, 109, 182, .25);
	border-radius: 12px;
	padding: 36px 30px;
	text-align: center;
	background: #fff;
	height: 100%;
}
.gka-voice-card__text { color: #222; line-height: 1.7; margin: 0 0 22px; font-size: 16px; }
.gka-voice-card__name { color: var(--gka-primary); font-weight: 700; font-size: 18px; }
.gka-voice-card__country { color: #888; font-size: 14px; margin-top: 2px; }

/* ---------------- Hero video modal ---------------- */
.gka-video-modal {
	position: fixed; inset: 0; z-index: 9999;
	display: none;
	align-items: center; justify-content: center;
}
.gka-video-modal.is-open { display: flex; }
.gka-video-modal__backdrop {
	position: absolute; inset: 0;
	background: rgba(0, 0, 0, .82);
	cursor: pointer;
}
.gka-video-modal__dialog {
	position: relative;
	width: min(900px, 92vw);
	background: #000;
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 20px 60px rgba(0,0,0,.5);
}
.gka-video-modal__video { width: 100%; display: block; max-height: 80vh; background: #000; }
.gka-video-modal__close {
	position: absolute; top: 12px; right: 12px;
	width: 44px; height: 44px;
	border-radius: 50%;
	border: 0;
	background: var(--gka-accent);
	color: #fff;
	font-size: 24px;
	font-weight: 700;
	line-height: 1;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	z-index: 5;
	box-shadow: 0 4px 14px rgba(0,0,0,.5);
	padding: 0;
}
.gka-video-modal__close:hover { background: #e69b00; }
body.gka-no-scroll { overflow: hidden; }

/* ---------------- Cart drawer (live-site style — width expand + slide) ---------------- */
.gka-cart-drawer {
	position: fixed;
	z-index: 9998;
	right: 0;
	top: 0;
	height: 100%;
	width: 0;
	background-color: rgba(0, 0, 0, 0.75);
	opacity: 0;
	visibility: hidden;
	transition: all ease 0.8s;
}
.gka-cart-drawer.is-open {
	opacity: 1;
	visibility: visible;
	width: 100%;
	transition: all ease 0.8s;
}
.gka-cart-drawer__backdrop {
	position: absolute; inset: 0;
	cursor: pointer;
}
.gka-cart-drawer__panel {
	background: #fff;
	width: 450px;
	max-width: 100%;
	margin-left: auto;
	padding: 80px 30px 30px;
	height: 100%;
	overflow-y: auto;
	position: relative;
	right: -500px;
	cursor: auto;
	display: flex;
	flex-direction: column;
	transition: right ease 1s;
	transition-delay: .1s;
}
.gka-cart-drawer.is-open .gka-cart-drawer__panel {
	right: 0;
	opacity: 1;
	visibility: visible;
}
.gka-cart-drawer__close {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border: 2px solid var(--gka-primary);
	width: 50px; height: 50px;
	font-size: 22px;
	padding: 0;
	position: absolute;
	top: 20px; right: 20px;
	background-color: #fff;
	color: var(--gka-primary);
	border-radius: 50%;
	transform: rotate(0);
	transition: all ease 0.4s;
	cursor: pointer;
	z-index: 2;
}
.gka-cart-drawer__close:hover {
	color: #fff;
	background: var(--gka-primary);
	transform: rotate(90deg);
}
@media (max-width: 575px) {
	.gka-cart-drawer { background: transparent; }
	.gka-cart-drawer__panel { width: 100%; }
}
.gka-cart-drawer__title {
	font-family: var(--gka-font-heading);
	color: var(--gka-primary);
	font-size: 26px;
	font-weight: 800;
	margin: 0 0 24px;
	padding-bottom: 16px;
	border-bottom: 1px solid #eee;
}
.gka-cart-drawer__body {
	flex: 1;
	overflow-y: auto;
	margin: 0 -8px;
	padding: 0 8px;
}
.gka-cart-drawer__empty { color: #888; text-align: center; margin-top: 40px; }
.gka-cart-item {
	display: flex;
	align-items: center;
	gap: 14px;
	padding: 14px 0;
	border-bottom: 1px solid #eee;
}
.gka-cart-item__image {
	width: 70px; height: 70px;
	border-radius: 8px;
	overflow: hidden;
	flex: none;
	background: #f5f5f5;
}
.gka-cart-item__image img { width: 100%; height: 100%; object-fit: cover; }
.gka-cart-item__info { flex: 1; min-width: 0; }
.gka-cart-item__title {
	display: block;
	color: var(--gka-primary);
	font-weight: 700;
	font-size: 15px;
	text-decoration: none;
	line-height: 1.3;
	margin-bottom: 4px;
}
.gka-cart-item__title:hover { color: var(--gka-accent); }
.gka-cart-item__qty { color: var(--gka-primary); font-size: 14px; }
.gka-cart-item__qty strong { font-weight: 600; }
.gka-cart-item__remove {
	background: transparent;
	border: 0;
	color: #c0392b;
	font-size: 16px;
	cursor: pointer;
	padding: 6px;
}
.gka-cart-item__remove:hover { color: #e74c3c; }
.gka-cart-drawer__footer {
	border-top: 1px solid #eee;
	padding: 20px 0 30px;
	margin-top: auto;
}
.gka-cart-drawer__subtotal {
	display: flex;
	justify-content: space-between;
	align-items: center;
	font-size: 18px;
	color: var(--gka-primary);
	margin-bottom: 18px;
}
.gka-cart-drawer__buttons {
	display: flex;
	gap: 10px;
}
.gka-cart-drawer__buttons .gka-btn { flex: 1; justify-content: center; text-align: center; padding: 12px 18px; font-size: 14px; }
.gka-cart-badge {
	position: absolute;
	top: -4px; right: -4px;
	min-width: 20px;
	height: 20px;
	border-radius: 10px;
	background: var(--gka-accent);
	color: #fff;
	font-size: 11px;
	font-weight: 700;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0 6px;
}

/* ---------------- Cart page (full) ---------------- */
.gka-cart-page { padding: 80px 0; }
.gka-cart-page__empty { text-align: center; padding: 40px 0; }
.gka-cart-page__empty p { color: var(--gka-primary); font-size: 18px; margin: 0 0 24px; }
.gka-cart-table {
	width: 100%;
	border-collapse: separate;
	border-spacing: 0;
	border: 1px solid #e5e5e5;
	border-radius: 8px;
	overflow: hidden;
}
.gka-cart-table thead {
	background: #f1f3f5;
}
.gka-cart-table th {
	padding: 18px 20px;
	color: var(--gka-primary);
	font-weight: 700;
	font-size: 16px;
	text-align: left;
	border-bottom: 1px solid #e5e5e5;
}
.gka-cart-table td {
	padding: 22px 20px;
	color: var(--gka-primary);
	border-bottom: 1px solid #eee;
	vertical-align: middle;
}
.gka-cart-table tr:last-child td { border-bottom: 0; }
.gka-cart-table__img {
	display: inline-block;
	width: 120px; height: 120px;
	border-radius: 8px;
	overflow: hidden;
	background: #f5f5f5;
}
.gka-cart-table__img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.gka-cart-table__name {
	color: var(--gka-primary);
	font-weight: 600;
	text-decoration: none;
	font-size: 17px;
}
.gka-cart-table__name:hover { color: var(--gka-accent); }
.gka-cart-table__remove {
	background: transparent;
	border: 0;
	color: #1f6fa8;
	font-size: 22px;
	cursor: pointer;
	padding: 6px;
}
.gka-cart-table__remove:hover { color: #c0392b; }
.gka-cart-page__actions {
	display: flex; justify-content: flex-end; gap: 14px;
	padding: 20px 0;
	border-bottom: 1px solid #eee;
}
.gka-cart-totals__title {
	color: var(--gka-primary);
	font-size: 28px;
	font-weight: 800;
	margin: 0 0 16px;
}
.gka-cart-totals {
	width: 100%;
	border-collapse: separate;
	border-spacing: 0;
	border: 1px solid #e5e5e5;
	border-radius: 8px;
	overflow: hidden;
}
.gka-cart-totals td {
	padding: 18px 22px;
	border-bottom: 1px solid #eee;
}
.gka-cart-totals td:first-child {
	color: #111;
	font-weight: 600;
	background: #f7f8fa;
}
.gka-cart-totals td:last-child {
	color: var(--gka-primary);
	font-weight: 600;
	text-align: left;
}
.gka-cart-totals tr:last-child td { border-bottom: 0; }
.gka-cart-totals__order td { color: var(--gka-primary); }
.gka-cart-page__checkout { margin-top: 24px; }
.gka-cart-page__checkout .gka-btn { width: 100%; justify-content: center; padding: 16px; }

@media (max-width: 768px) {
	.gka-cart-table thead { display: none; }
	.gka-cart-table tr { display: block; border-bottom: 1px solid #eee; padding: 12px 0; }
	.gka-cart-table td { display: flex; justify-content: space-between; padding: 8px 14px; border: 0; }
	.gka-cart-table td::before { content: attr(data-label); font-weight: 600; color: var(--gka-primary); }
	.gka-cart-table__img { width: 80px; height: 80px; }
}

/* ---------------- Checkout page ---------------- */
.gka-checkout-page { padding: 80px 0; }
.gka-checkout__heading {
	color: var(--gka-primary);
	font-size: 30px;
	font-weight: 800;
	margin: 0 0 22px;
}
.gka-checkout__label {
	display: block;
	color: var(--gka-primary);
	font-weight: 600;
	margin: 0 0 8px;
	font-size: 14px;
}
.gka-cart-table tfoot th {
	background: #f7f8fa;
	color: var(--gka-primary);
	text-align: right;
	padding: 16px 20px;
}
.gka-cart-table tfoot td { color: var(--gka-primary); font-weight: 600; }

/* Payment options */
.gka-payment { margin: 30px 0 24px; }
.gka-payment__option {
	border: 1px solid #e5e5e5;
	border-radius: 8px;
	margin-bottom: 14px;
	overflow: hidden;
	background: #fff;
	transition: border-color .2s;
}
.gka-payment__option.is-active { border-color: var(--gka-primary); }
.gka-payment__head {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 18px 22px;
	margin: 0;
	cursor: pointer;
	font-weight: 600;
	color: var(--gka-primary);
}
.gka-payment__head input[type="radio"] { width: 18px; height: 18px; accent-color: var(--gka-primary); }
.gka-payment__logos {
	margin-left: auto;
	display: inline-flex;
	gap: 8px;
	align-items: center;
}
.gka-payment__logo {
	background: #fff;
	border: 1px solid #e0e0e0;
	border-radius: 4px;
	padding: 4px 10px;
	font-size: 11px;
	font-weight: 700;
	color: #444;
}
.gka-payment__plus {
	background: #003087;
	color: #fff;
	border-radius: 4px;
	padding: 4px 10px;
	font-size: 11px;
	font-weight: 700;
}
.gka-payment__body {
	background: #f7f8fa;
	padding: 22px;
	display: none;
}
.gka-payment__option.is-active .gka-payment__body { display: block; }
.gka-payment__save {
	display: flex; align-items: center; gap: 8px;
	margin-top: 14px;
	font-size: 14px;
	color: var(--gka-primary);
}
.gka-payment__save input { accent-color: var(--gka-primary); }

.gka-checkout__privacy {
	color: var(--gka-body);
	font-size: 14px;
	margin: 24px 0 22px;
}
.gka-checkout__privacy a { color: var(--gka-primary); }
.gka-checkout__place { width: 100%; justify-content: center; padding: 18px; font-size: 16px; }

/* ---------------- Fullscreen popup search ---------------- */
.gka-popup-search {
	position: fixed;
	top: 0; left: 50%;
	width: 0; height: 0;
	background-color: rgba(0, 0, 0, 0.95);
	overflow: hidden;
	z-index: 99999;
	opacity: 0;
	visibility: hidden;
	border-radius: 50%;
	transform: translateX(-50%);
	transition: all .4s ease;
}
.gka-popup-search.is-open {
	width: 100%;
	height: 100%;
	opacity: 1;
	visibility: visible;
	border-radius: 0;
}
.gka-popup-search__close {
	position: absolute;
	top: 40px; right: 40px;
	width: 60px; height: 60px;
	border-radius: 50%;
	border: 2px solid var(--gka-primary);
	background: transparent;
	color: #fff;
	font-size: 22px;
	cursor: pointer;
	transition: all .4s ease;
	z-index: 2;
}
.gka-popup-search__close:hover {
	background: var(--gka-primary);
	transform: rotate(90deg);
}
.gka-popup-search__form {
	position: absolute;
	top: 50%; left: 50%;
	width: 100%;
	max-width: 700px;
	padding: 0 20px;
	transform: translate(-50%, -50%) scale(0);
	transition: transform .4s ease .2s;
}
.gka-popup-search.is-open .gka-popup-search__form {
	transform: translate(-50%, -50%) scale(1);
}
.gka-popup-search__form input {
	width: 100%;
	height: 70px;
	font-size: 18px;
	background: transparent;
	border: 2px solid var(--gka-primary);
	border-radius: 50px;
	padding: 0 80px 0 30px;
	color: #fff;
	outline: none;
}
.gka-popup-search__form input::placeholder { color: #fff; opacity: .8; }
.gka-popup-search__form button[type="submit"] {
	position: absolute;
	top: 50%; right: 32px;
	width: 60px; height: 60px;
	background: transparent;
	border: 0;
	color: #fff;
	font-size: 22px;
	cursor: pointer;
	transform: translateY(-50%);
	transition: transform .2s;
}
.gka-popup-search__form button[type="submit"]:hover { transform: translateY(-50%) scale(1.15); }

/* ---------------- Header — hide top info bar on mobile (≤991px) ---------------- */
@media (max-width: 991px) {
	.gka-header__top { display: none; }
}

/* ---------------- Live Donations (admin demo bridge) ---------------- */
.gka-ld { padding: 70px 0; }
.gka-ld__intro { text-align: center; margin-bottom: 36px; }
.gka-ld__title { color: var(--gka-primary); font-size: 34px; font-weight: 800; margin: 6px 0 14px; }
.gka-ld__note {
	display: inline-flex; align-items: center; gap: 8px;
	background: #eef6fc; color: var(--gka-primary);
	border: 1px dashed rgba(0,109,182,.3);
	border-radius: 30px; padding: 8px 18px; font-size: 13.5px;
	max-width: 640px;
}
.gka-ld__layout { display: grid; grid-template-columns: 300px 1fr; gap: 30px; align-items: start; }

/* single-charity mode: only this charity's form, full width, no cause list */
.gka-ld--single .gka-ld__causes { display: none; }
.gka-ld--single .gka-ld__layout { grid-template-columns: 1fr; max-width: 820px; margin: 0 auto; }

/* causes list */
.gka-ld__causes { display: flex; flex-direction: column; gap: 12px; }
.gka-ld-cause {
	display: flex; align-items: center; gap: 14px;
	background: #fff; border: 1.5px solid #e7edf4; border-radius: 14px;
	padding: 12px; cursor: pointer; text-align: left; transition: .2s; width: 100%;
}
.gka-ld-cause:hover { border-color: var(--gka-primary); transform: translateX(2px); }
.gka-ld-cause.is-active { border-color: var(--gka-primary); background: #f3f9fe; box-shadow: 0 6px 18px rgba(0,109,182,.1); }
.gka-ld-cause__img {
	width: 54px; height: 54px; border-radius: 10px; flex: none;
	background: #dbe7f3 center/cover no-repeat;
	display: grid; place-items: center; color: #fff;
}
.gka-ld-cause__img--ph { background: linear-gradient(135deg,#006db6,#0f76ba); font-size: 18px; }
.gka-ld-cause__txt { display: flex; flex-direction: column; min-width: 0; }
.gka-ld-cause__txt strong { color: var(--gka-dark); font-family: var(--gka-font-heading); font-size: 15px; line-height: 1.3; }
.gka-ld-cause__txt small { color: var(--gka-muted, #8895a7); font-size: 12px; }

/* form card */
.gka-ld-form {
	background: #fff; border-radius: 18px; overflow: hidden;
	box-shadow: 0 10px 40px rgba(16,42,67,.08); border: 1px solid #eef2f7;
}
.gka-ld-form__head { background: #f7f9fc; padding: 26px; text-align: center; border-bottom: 3px solid var(--gka-primary); }
.gka-ld-form__head h3 { color: var(--gka-dark); font-size: 22px; font-weight: 800; margin: 0; }
.gka-ld-form__body { padding: 28px 30px 32px; }
.gka-ld-form__lead { color: var(--gka-body); margin: 0 0 22px; }
.gka-ld-form__q { color: var(--gka-dark); font-size: 17px; font-weight: 700; margin: 0 0 14px; }
.gka-req { color: #e0413c; }

.gka-ld-tabs {
	display: flex; border: 1.5px solid var(--gka-primary); border-radius: 12px; overflow: hidden; margin-bottom: 28px;
}
.gka-ld-tab {
	flex: 1; padding: 16px 10px; border: 0; background: #fff;
	color: var(--gka-dark); font-family: var(--gka-font-heading); font-weight: 700; font-size: 15px; cursor: pointer; transition: .2s;
}
.gka-ld-tab + .gka-ld-tab { border-left: 1px solid #d9e6f2; }
.gka-ld-tab.is-active { background: var(--gka-primary); color: #fff; }

.gka-ld-amount-head { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 16px; }
.gka-ld-amount-head .gka-ld-form__q { margin: 0; }
.gka-ld-cur-pill { background: #eef2f7; color: var(--gka-dark); font-weight: 700; font-size: 13px; padding: 8px 16px; border-radius: 8px; }

.gka-ld-tiers { display: flex; flex-direction: column; gap: 12px; margin-bottom: 22px; }
.gka-ld-tier {
	display: grid; grid-template-columns: 150px 1fr; gap: 18px; align-items: center;
	background: #fff; border: 1.5px solid #e7edf4; border-radius: 12px; padding: 0; cursor: pointer; text-align: left; transition: .2s; overflow: hidden;
}
.gka-ld-tier:hover { border-color: var(--gka-primary); }
.gka-ld-tier__amt {
	background: #f7f9fc; color: var(--gka-dark); font-family: var(--gka-font-heading); font-weight: 800; font-size: 19px;
	padding: 24px 16px; text-align: center; align-self: stretch; display: grid; place-items: center; transition: .2s;
}
.gka-ld-tier__desc { color: var(--gka-body); font-size: 14px; padding: 14px 16px 14px 0; }
.gka-ld-tier.is-active { border-color: var(--gka-primary); }
.gka-ld-tier.is-active .gka-ld-tier__amt { background: var(--gka-primary); color: #fff; }

.gka-ld-custom { position: relative; margin-bottom: 22px; }
.gka-ld-custom__cur { position: absolute; left: 18px; top: 50%; transform: translateY(-50%); color: var(--gka-muted,#8895a7); font-weight: 700; }
.gka-ld-custom__input {
	width: 100%; border: 1.5px solid #e7edf4; border-radius: 12px; padding: 16px 18px 16px 38px; font-size: 15px; color: var(--gka-dark);
}
.gka-ld-custom__input:focus { outline: 0; border-color: var(--gka-primary); }

.gka-ld-field { margin-bottom: 22px; }
.gka-ld-field > label { display: block; font-family: var(--gka-font-heading); font-weight: 700; color: var(--gka-dark); font-size: 14.5px; margin-bottom: 10px; }
.gka-ld-field > label span { color: #e0413c; }
.gka-ld-field input[type="text"] {
	width: 100%; border: 1.5px solid #e7edf4; border-radius: 12px; padding: 14px 18px; font-size: 15px; color: var(--gka-dark);
}
.gka-ld-field input[type="text"]:focus { outline: 0; border-color: var(--gka-primary); }
.gka-ld-radios { display: flex; gap: 22px; flex-wrap: wrap; }
.gka-ld-radio { display: inline-flex; align-items: center; gap: 8px; cursor: pointer; color: var(--gka-primary); font-weight: 600; }
.gka-ld-radio input { width: 18px; height: 18px; accent-color: var(--gka-primary); }

.gka-ld-donate { margin-top: 8px; }

/* ---- multi-step form ---- */
.gka-ld-form__head { position: relative; }
.gka-ld-back {
	position: absolute; left: 22px; top: 50%; transform: translateY(-50%);
	width: 34px; height: 34px; border: 0; background: transparent;
	color: var(--gka-primary); font-size: 17px; cursor: pointer; border-radius: 50%;
}
.gka-ld-back:hover { background: #eef2f7; }
.gka-ld-progress { height: 6px; background: #e9eef4; overflow: hidden; }
.gka-ld-progress span { display: block; height: 100%; background: #1aa563; transition: width .35s ease; }
.gka-ld-step { animation: gkaFade .25s ease; }
@keyframes gkaFade { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: none; } }

/* donor + payment inputs */
.gka-ld-field input[type="text"],
.gka-ld-field input[type="email"],
.gka-ld-field input[type="tel"],
.gka-ld-field input[type="number"],
.gka-ld-field textarea {
	width: 100%; border: 1.5px solid #e7edf4; border-radius: 12px;
	padding: 14px 18px; font-size: 15px; color: var(--gka-dark);
	font-family: inherit; background: #fff; resize: vertical;
}
.gka-ld-field input:focus, .gka-ld-field textarea:focus { outline: 0; border-color: var(--gka-primary); box-shadow: 0 0 0 3px rgba(0,109,182,.1); }
.gka-ld-pay-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

/* inline required-field validation */
.gka-ld-invalid input,
.gka-ld-invalid textarea,
.gka-ld-custom.gka-ld-invalid { border-color: #e2401c !important; box-shadow: 0 0 0 3px rgba(226,64,28,.08); }
.gka-ld-err { display: block; margin-top: 6px; color: #e2401c; font-size: 13.5px; font-weight: 500; font-family: var(--gka-font-heading); }
.gka-ld-err::before { content: ""; }

/* summary */
.gka-ld-summary { background: #f7f9fc; border: 1px solid #eef2f7; border-radius: 12px; padding: 20px 22px; margin-bottom: 18px; }
.gka-ld-summary__row, .gka-ld-summary__total { display: flex; justify-content: space-between; align-items: center; padding: 7px 0; color: var(--gka-body); }
.gka-ld-summary__row b, .gka-ld-summary__total b { color: var(--gka-dark); font-family: var(--gka-font-heading); }
.gka-ld-summary__total { border-top: 1px solid #e3e8ef; margin-top: 6px; padding-top: 13px; font-size: 17px; }
.gka-ld-summary__total b { color: var(--gka-primary); }

.gka-ld-pay-note { display: flex; align-items: flex-start; gap: 8px; background: #eef6fc; color: var(--gka-primary); border-radius: 10px; padding: 10px 14px; font-size: 13px; margin-bottom: 16px; }
.gka-ld-pay-method { display: flex; align-items: center; gap: 12px; border: 1.5px solid var(--gka-primary); border-radius: 12px; padding: 14px 18px; margin-bottom: 18px; font-family: var(--gka-font-heading); font-weight: 700; color: var(--gka-dark); cursor: pointer; }
.gka-ld-pay-method input { accent-color: var(--gka-primary); width: 18px; height: 18px; }
.gka-ld-pay-method i { margin-left: auto; color: var(--gka-muted, #8895a7); }
/* Stripe Payment Element */
.gka-ld-pe { margin: 0 0 16px; min-height: 60px; }
.gka-ld-pe__loading { color: #8895a7; font-size: 14px; padding: 16px 0; }
.gka-ld-pay-error { background: #fdecea; color: #c0392b; border: 1px solid #f5c6cb; border-radius: 10px; padding: 10px 14px; font-size: 13.5px; margin: 0 0 14px; }
.gka-ld-pay-note--test { background: #fff8e6; color: #8a6d1a; }

.gka-ld-cards { display: flex; gap: 8px; justify-content: flex-end; align-items: center; margin: 4px 0 18px; }
.gka-ld-cards svg { display: block; border-radius: 3px; box-shadow: 0 1px 2px rgba(16,24,40,.12); }
.gka-ld-secure { text-align: center; color: #1aa563; font-size: 13px; font-weight: 600; margin: 14px 0 0; }

/* success */
.gka-ld-done { text-align: center; padding: 34px 12px; }
.gka-ld-done__icon { font-size: 58px; color: #1aa563; margin-bottom: 14px; }
.gka-ld-done h3 { color: var(--gka-primary); font-size: 26px; font-weight: 800; margin: 0 0 8px; }
.gka-ld-done p { color: var(--gka-body); margin: 0 0 4px; }
.gka-ld-done__ref { color: var(--gka-muted, #8895a7); font-weight: 700; margin-top: 10px; }
@media (max-width: 480px) { .gka-ld-pay-cols { grid-template-columns: 1fr; } }

.gka-ld__empty { text-align: center; padding: 60px 20px; }
.gka-ld__empty i { font-size: 50px; color: #cdd8e4; margin-bottom: 14px; }
.gka-ld__empty p { color: var(--gka-muted,#8895a7); margin-bottom: 20px; }

@media (max-width: 991px) {
	.gka-ld__layout { grid-template-columns: 1fr; }
	.gka-ld__causes { flex-direction: row; overflow-x: auto; padding-bottom: 6px; }
	.gka-ld-cause { min-width: 220px; }
}
@media (max-width: 575px) {
	.gka-ld-tier { grid-template-columns: 1fr; }
	.gka-ld-tier__amt { padding: 14px; }
	.gka-ld-tier__desc { padding: 0 16px 14px; }
}

/* 26. Utilities =========================================================== */
.site-main { min-height: 40vh; }

/* ===== Donation cart: add-to-cart toast + header count ===== */
.gka-dcart-toast {
	position: fixed; right: 20px; bottom: 20px; z-index: 9999; max-width: 340px;
	display: flex; align-items: center; flex-wrap: wrap; gap: 8px 12px;
	background: #fff; border: 1px solid #e7edf4; border-left: 4px solid #1aa563;
	border-radius: 12px; padding: 14px 16px; box-shadow: 0 12px 30px rgba(16,24,40,.16);
	transform: translateY(18px); opacity: 0; transition: transform .3s, opacity .3s;
}
.gka-dcart-toast.show { transform: none; opacity: 1; }
.gka-dcart-toast > i { color: #1aa563; font-size: 18px; }
.gka-dcart-toast > span { flex: 1 1 100%; color: var(--gka-dark, #17233a); font-weight: 600; font-size: 14px; }
.gka-dcart-toast__link { font-size: 13px; font-weight: 700; color: var(--gka-primary, #006db6); text-decoration: none; }
.gka-dcart-toast__link--primary { background: var(--gka-primary, #006db6); color: #fff; padding: 6px 14px; border-radius: 999px; }
.gka-dcart-count { display: inline-flex; align-items: center; justify-content: center; min-width: 18px; height: 18px; padding: 0 5px; background: var(--gka-accent, #ffac00); color: #3a2a00; border-radius: 999px; font-size: 11px; font-weight: 800; }

/* ===== Donation cart page ===== */
.gka-dc { padding: 54px 0 70px; }
.gka-dc-empty { text-align: center; padding: 50px 20px; }
.gka-dc-empty i { font-size: 46px; color: #cdd7e3; }
.gka-dc-empty h3 { margin: 16px 0 6px; font-family: var(--gka-font-heading); color: var(--gka-dark, #17233a); }
.gka-dc-empty p { color: var(--gka-muted, #7c8aa0); margin-bottom: 18px; }
.gka-dc-grid { display: grid; grid-template-columns: 1fr 340px; gap: 26px; align-items: start; }
.gka-dc-items { display: flex; flex-direction: column; gap: 14px; }
.gka-dc-item { display: flex; gap: 16px; background: #fff; border: 1px solid #e7edf4; border-radius: 14px; padding: 18px 20px; }
.gka-dc-item__body { flex: 1; }
.gka-dc-item__title { font-family: var(--gka-font-heading); font-size: 18px; font-weight: 700; color: var(--gka-dark, #17233a); margin: 0 0 8px; }
.gka-dc-item__opts { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 14px; }
.gka-dc-chip { background: #eef6fc; color: var(--gka-primary, #006db6); border-radius: 999px; padding: 4px 11px; font-size: 12.5px; font-weight: 600; }
.gka-dc-chip--msg { background: #fff6e6; color: #9a6b00; }
.gka-dc-chip--gift { background: #fff2df; color: #9a6b00; }
.gka-dc-qty { display: inline-flex; align-items: center; border: 1.5px solid #e7edf4; border-radius: 10px; overflow: hidden; width: max-content; }
.gka-dc-qty__btn { border: 0; background: #f3f6fa; width: 34px; height: 40px; font-size: 18px; color: var(--gka-dark, #17233a); cursor: pointer; line-height: 1; }
.gka-dc-qty__btn:hover { background: #e7edf4; }
.gka-dc-qtyinput { border: 0; width: 46px; height: 40px; text-align: center; font-size: 15px; color: var(--gka-dark, #17233a); -moz-appearance: textfield; }
.gka-dc-qtyinput::-webkit-outer-spin-button, .gka-dc-qtyinput::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
.gka-dc-unit { font-size: 15px; font-weight: 600; color: var(--gka-dark, #17233a); padding: 9px 0; }
.gka-dc-item__controls { display: flex; gap: 14px; flex-wrap: wrap; }
.gka-dc-ctl { display: flex; flex-direction: column; gap: 4px; font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .03em; color: var(--gka-muted, #7c8aa0); }
.gka-dc-ctl select, .gka-dc-amt { border: 1.5px solid #e7edf4; border-radius: 10px; padding: 9px 12px; font-size: 15px; color: var(--gka-dark, #17233a); font-family: inherit; }
.gka-dc-amt-wrap { position: relative; display: inline-flex; align-items: center; }
.gka-dc-amt-wrap i { position: absolute; left: 12px; font-style: normal; color: var(--gka-muted, #8895a7); font-weight: 700; }
.gka-dc-amt { padding-left: 26px; width: 130px; }
.gka-dc-item__side { display: flex; flex-direction: column; align-items: flex-end; justify-content: space-between; gap: 10px; }
.gka-dc-item__line { font-family: var(--gka-font-heading); font-size: 20px; font-weight: 800; color: var(--gka-primary, #006db6); text-align: right; }
.gka-dc-item__line small { display: block; font-size: 12px; font-weight: 600; color: var(--gka-muted, #7c8aa0); }
.gka-dc-remove { border: 0; background: #fbeaea; color: #c0392b; width: 38px; height: 38px; border-radius: 10px; cursor: pointer; }
.gka-dc-remove:hover { background: #f5c6cb; }
.gka-dc-summary { background: #f7f9fc; border: 1px solid #eef2f7; border-radius: 14px; padding: 22px; position: sticky; top: 20px; }
.gka-dc-summary h3 { font-family: var(--gka-font-heading); font-size: 18px; margin: 0 0 14px; color: var(--gka-dark, #17233a); }
.gka-dc-sum-row, .gka-dc-sum-total { display: flex; justify-content: space-between; align-items: center; padding: 8px 0; color: var(--gka-body, #55617a); }
.gka-dc-sum-total { border-top: 1px solid #e3e8ef; margin-top: 6px; padding-top: 14px; font-size: 17px; }
.gka-dc-sum-total b { color: var(--gka-primary, #006db6); font-family: var(--gka-font-heading); }
.gka-dc-sum-note { font-size: 12.5px; color: var(--gka-muted, #7c8aa0); margin: 10px 0 0; line-height: 1.5; display: flex; gap: 7px; align-items: flex-start; }
.gka-dc-sum-note i { color: var(--gka-primary, #006db6); margin-top: 2px; }
.gka-dc-per { font-size: 12px; font-weight: 600; color: var(--gka-muted, #7c8aa0); }
.gka-dc-sum-row span .fa-repeat, .gka-co-sum-row span .fa-repeat { font-size: 11px; color: var(--gka-primary, #006db6); margin-right: 5px; }
.gka-dc-sum-items { margin-bottom: 4px; }
.gka-dc-sum-item { display: flex; justify-content: space-between; align-items: flex-start; gap: 12px; padding: 10px 0; border-bottom: 1px solid #e9eef4; }
.gka-dc-sum-item__t { font-size: 14px; font-weight: 600; color: var(--gka-dark, #17233a); line-height: 1.35; }
.gka-dc-sum-item__a { font-weight: 800; color: var(--gka-dark, #17233a); white-space: nowrap; text-align: right; }
.gka-dc-sum-item__a small { display: block; font-size: 11.5px; font-weight: 600; color: var(--gka-muted, #7c8aa0); }

/* remove-confirm modal (donation cart) */
.gka-dc-modal { position: fixed; inset: 0; z-index: 100000; display: flex; align-items: center; justify-content: center; padding: 20px; }
.gka-dc-modal[hidden] { display: none; }
.gka-dc-modal__bg { position: absolute; inset: 0; background: rgba(16,24,40,.55); }
.gka-dc-modal__box { position: relative; background: #fff; border-radius: 16px; padding: 30px 28px; max-width: 400px; width: 100%; text-align: center; box-shadow: 0 24px 60px rgba(16,24,40,.28); animation: gkaFade .2s ease; }
.gka-dc-modal__icon { width: 58px; height: 58px; margin: 0 auto 16px; border-radius: 50%; background: #fbeaea; color: #c0392b; display: flex; align-items: center; justify-content: center; font-size: 22px; }
.gka-dc-modal__box h3 { font-family: var(--gka-font-heading); font-size: 21px; color: var(--gka-dark, #17233a); margin: 0 0 8px; }
.gka-dc-modal__msg { color: var(--gka-body, #55617a); margin: 0 0 22px; line-height: 1.5; }
.gka-dc-modal__actions { display: flex; gap: 12px; }
.gka-dc-modal-btn { flex: 1; border: 0; border-radius: 999px; padding: 12px 18px; font-family: var(--gka-font-heading); font-weight: 700; font-size: 15px; cursor: pointer; }
.gka-dc-modal-btn--ghost { background: #eef2f7; color: var(--gka-dark, #17233a); }
.gka-dc-modal-btn--ghost:hover { background: #e3e9f1; }
.gka-dc-modal-btn--danger { background: #c0392b; color: #fff; }
.gka-dc-modal-btn--danger:hover { background: #a93226; }
.gka-dc-modal-btn:disabled { opacity: .6; cursor: default; }

/* donation cart drawer items */
.gka-dcart-ditem { display: flex; align-items: flex-start; gap: 12px; padding: 14px 0; border-bottom: 1px solid #eef2f7; }
.gka-dcart-ditem__info { flex: 1; min-width: 0; }
.gka-dcart-ditem__title { display: block; font-weight: 700; color: var(--gka-dark, #17233a); font-size: 15px; font-family: var(--gka-font-heading); }
.gka-dcart-ditem__meta { display: block; font-size: 13px; color: var(--gka-muted, #7c8aa0); margin-top: 3px; }

/* Quantity stepper on a drawer line */
.gka-dcart-qty { display: inline-flex; align-items: center; margin-top: 10px; border: 1.5px solid #e7edf4; border-radius: 8px; overflow: hidden; }
.gka-dcart-qty.is-busy { opacity: .5; pointer-events: none; }
.gka-dcart-qty__btn { border: 0; background: #f3f6fa; width: 30px; height: 30px; font-size: 16px; line-height: 1; color: var(--gka-dark, #17233a); cursor: pointer; }
.gka-dcart-qty__btn:hover:not(:disabled) { background: #e7edf4; }
.gka-dcart-qty__btn:disabled { opacity: .4; cursor: default; }
.gka-dcart-qty__val { min-width: 34px; text-align: center; font-size: 14px; font-weight: 700; color: var(--gka-dark, #17233a); }

.gka-dcart-ditem__end { display: flex; flex-direction: column; align-items: flex-end; gap: 8px; }
.gka-dcart-ditem__line { font-weight: 700; font-size: 15px; color: var(--gka-dark, #17233a); white-space: nowrap; }
.gka-dc-checkout { width: 100%; justify-content: center; margin-top: 16px; }
.gka-dc-continue { display: block; text-align: center; margin-top: 12px; font-size: 14px; font-weight: 700; color: var(--gka-primary, #006db6); text-decoration: none; }

/* ===== Donation checkout page ===== */
.gka-co { padding: 54px 0 70px; }
.gka-co-grid { display: grid; grid-template-columns: 1fr 360px; gap: 30px; align-items: start; }
.gka-co-main { background: #fff; border: 1px solid #e7edf4; border-radius: 16px; padding: 30px 32px; }
.gka-co-h { font-family: var(--gka-font-heading); font-size: 22px; font-weight: 800; color: var(--gka-dark, #17233a); margin: 0 0 4px; }
.gka-co-h--pay { margin-top: 28px; padding-top: 22px; border-top: 1px solid #eef2f7; }
.gka-co-lead { color: var(--gka-muted, #7c8aa0); margin-bottom: 18px; }
.gka-co-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.gka-co-pe { margin: 4px 0 8px; min-height: 48px; }
.gka-co-error { background: #fdecea; color: #c0392b; border: 1px solid #f5c6cb; border-radius: 10px; padding: 10px 14px; font-size: 13.5px; margin: 10px 0; }
.gka-co-submit { width: 100%; justify-content: center; margin-top: 20px; }
.gka-co-summary { background: #f7f9fc; border: 1px solid #eef2f7; border-radius: 16px; padding: 24px; position: sticky; top: 20px; }
.gka-co-summary h3 { font-family: var(--gka-font-heading); font-size: 18px; margin: 0 0 14px; color: var(--gka-dark, #17233a); }
.gka-co-line { display: flex; justify-content: space-between; align-items: flex-start; gap: 10px; padding: 11px 0; border-bottom: 1px solid #e9eef4; }
.gka-co-line__title { font-weight: 700; color: var(--gka-dark, #17233a); font-size: 14.5px; }
.gka-co-line__freq { font-size: 12.5px; color: var(--gka-muted, #7c8aa0); margin-top: 2px; }
.gka-co-line__amt { font-weight: 800; color: var(--gka-dark, #17233a); white-space: nowrap; }
.gka-co-sum-row, .gka-co-sum-total { display: flex; justify-content: space-between; padding: 8px 0; color: var(--gka-body, #55617a); }
.gka-co-sum-total { border-top: 1px solid #e3e8ef; margin-top: 4px; padding-top: 13px; font-size: 17px; }
.gka-co-sum-total b { color: var(--gka-primary, #006db6); font-family: var(--gka-font-heading); }
.gka-co-editcart { display: inline-block; margin-top: 14px; font-size: 14px; font-weight: 700; color: var(--gka-primary, #006db6); text-decoration: none; }
.gka-co-success { text-align: center; max-width: 520px; margin: 30px auto; background: #fff; border: 1px solid #e7edf4; border-radius: 16px; padding: 44px 30px; }
.gka-co-success h2 { font-family: var(--gka-font-heading); color: var(--gka-dark, #17233a); margin: 14px 0 8px; }
.gka-co-success p { color: var(--gka-body, #55617a); }
.gka-co-ref { font-family: monospace; font-weight: 700; color: var(--gka-primary, #006db6) !important; }

/* create-account checkbox at checkout */
.gka-co-acct { display: flex; align-items: center; gap: 10px; margin: 6px 0 4px; padding: 13px 16px; background: #f0f7fc; border: 1px solid #d8e9f5; border-radius: 12px; cursor: pointer; font-size: 14.5px; color: var(--gka-dark, #17233a); }
.gka-co-acct input { width: 18px; height: 18px; accent-color: var(--gka-primary, #006db6); flex: 0 0 auto; }
.gka-co-acct i { color: var(--gka-primary, #006db6); margin-right: 2px; }
/* set-password block on the thank-you screen */
.gka-co-account { margin: 20px auto 8px; max-width: 440px; background: #eef8f1; border: 1px solid #cdecd7; border-radius: 14px; padding: 22px; }
.gka-co-account > i { font-size: 26px; color: #1aa563; }
.gka-co-account p { margin: 10px 0; color: var(--gka-body, #55617a); }
.gka-co-account__note { font-size: 13px; color: var(--gka-muted, #7c8aa0) !important; }
.gka-co-setpw { margin: 6px 0; }

/* ===== Donor auth (login / set password / reset) ===== */
.gka-auth { padding: 56px 0 72px; }
.gka-auth__card { max-width: 440px; margin: 0 auto; background: #fff; border: 1px solid #e7edf4; border-radius: 16px; padding: 34px 32px; box-shadow: 0 2px 10px rgba(16,24,40,.05); }
.gka-auth__title { font-family: var(--gka-font-heading); font-size: 24px; color: var(--gka-dark, #17233a); margin: 0 0 6px; }
.gka-auth__lead { color: var(--gka-muted, #7c8aa0); margin: 0 0 20px; }
.gka-auth__field { display: block; margin-bottom: 16px; }
.gka-auth__field span { display: block; font-size: 13px; font-weight: 700; color: var(--gka-dark, #17233a); margin-bottom: 6px; }
.gka-auth__field input { width: 100%; border: 1.5px solid #e7edf4; border-radius: 12px; padding: 13px 16px; font-size: 15px; font-family: inherit; color: var(--gka-dark, #17233a); }
.gka-auth__field input:focus { outline: 0; border-color: var(--gka-primary, #006db6); box-shadow: 0 0 0 3px rgba(0,109,182,.1); }
.gka-auth__remember { display: flex; align-items: center; gap: 8px; font-size: 14px; color: var(--gka-body, #55617a); margin-bottom: 18px; }
.gka-auth__submit { width: 100%; justify-content: center; }
.gka-auth__alt { text-align: center; margin: 16px 0 0; font-size: 14px; }
.gka-auth__alt a { color: var(--gka-primary, #006db6); text-decoration: none; font-weight: 600; }
.gka-auth__msg { display: flex; align-items: center; gap: 8px; border-radius: 10px; padding: 11px 14px; font-size: 14px; margin-bottom: 18px; }
.gka-auth__msg--err { background: #fdecea; color: #c0392b; }
.gka-auth__msg--ok { background: #e5f7ee; color: #158554; }

/* ===== Donor dashboard ===== */
.gka-dash { padding: 48px 0 72px; }
.gka-dash__head { display: flex; justify-content: space-between; align-items: flex-start; gap: 16px; flex-wrap: wrap; margin-bottom: 22px; }
.gka-dash__hello { font-family: var(--gka-font-heading); font-size: 26px; color: var(--gka-dark, #17233a); margin: 0; }
.gka-dash__sub { color: var(--gka-muted, #7c8aa0); margin: 4px 0 0; }
.gka-dash__stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-bottom: 26px; }
.gka-dash__stat { background: #f7f9fc; border: 1px solid #eef2f7; border-radius: 14px; padding: 20px; text-align: center; }
.gka-dash__num { display: block; font-family: var(--gka-font-heading); font-size: 25px; font-weight: 800; color: var(--gka-primary, #006db6); }
.gka-dash__lbl { font-size: 13px; color: var(--gka-muted, #7c8aa0); }
.gka-dash__panel { background: #fff; border: 1px solid #e7edf4; border-radius: 16px; padding: 22px 24px; margin-bottom: 20px; }
.gka-dash__panel h3 { font-family: var(--gka-font-heading); font-size: 18px; color: var(--gka-dark, #17233a); margin: 0 0 14px; }
.gka-dash__tablewrap { overflow-x: auto; }
.gka-dash__table { width: 100%; border-collapse: collapse; font-size: 14.5px; }
.gka-dash__table th { text-align: left; font-size: 12px; text-transform: uppercase; letter-spacing: .04em; color: var(--gka-muted, #7c8aa0); font-weight: 800; padding: 10px 12px; border-bottom: 2px solid #eef2f7; white-space: nowrap; }
.gka-dash__table td { padding: 13px 12px; border-bottom: 1px solid #f0f4f8; color: var(--gka-dark, #17233a); }
.gka-dash__empty { text-align: center; color: var(--gka-muted, #7c8aa0); padding: 26px !important; }
.gka-dash-badge { display: inline-block; padding: 4px 11px; border-radius: 999px; font-size: 12px; font-weight: 800; }
.gka-dash-badge--ok { background: #e5f7ee; color: #158554; }
.gka-dash-badge--pend { background: #fff5e0; color: #9a6b00; }
.gka-dash-badge--err { background: #fdecea; color: #c0392b; }
.gka-dash-badge--off { background: #eef1f5; color: #64748b; }
.gka-dash__foot { margin-top: 10px; }
@media (max-width: 700px) { .gka-dash__stats { grid-template-columns: 1fr 1fr; } }

@media (max-width: 900px) {
	.gka-dc-grid, .gka-co-grid { grid-template-columns: 1fr; }
	.gka-dc-summary, .gka-co-summary { position: static; }
	.gka-co-main { padding: 22px 20px; }
}
@media (max-width: 520px) {
	.gka-co-cols { grid-template-columns: 1fr; }
	.gka-dc-item { flex-direction: column; }
	.gka-dc-item__side { flex-direction: row; align-items: center; }
	.gka-dcart-toast { left: 16px; right: 16px; max-width: none; }
}

/* Why a donation failed — shown under the status badge (donor dashboard). */
.gka-dash__failnote {
	margin-top: 6px;
	font-size: 12px;
	line-height: 1.4;
	color: #c0392b;
	max-width: 220px;
}

/* Multi-charity donation: click the cause to see what each one received. */
.gka-dash__expand {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 0;
	border: 0;
	background: none;
	cursor: pointer;
	font: inherit;
	color: var(--gka-primary, #006db6);
	font-weight: 700;
	text-align: left;
}
.gka-dash__expand i {
	font-size: 11px;
	transition: transform .18s ease;
	color: var(--gka-muted, #7c8aa0);
}
.gka-dash__expand.is-open i { transform: rotate(90deg); }
.gka-dash__expand:hover { text-decoration: underline; }

.gka-dash__breakdown > td { background: #f7fafd; padding: 0 !important; }
.gka-dash__items { padding: 6px 0; }
.gka-dash__item {
	display: flex;
	align-items: baseline;
	gap: 10px;
	padding: 9px 18px;
	border-bottom: 1px solid #e9eff6;
}
.gka-dash__item:last-child { border-bottom: 0; }
.gka-dash__item-name { flex: 1; color: var(--gka-dark, #17233a); font-weight: 600; }
.gka-dash__item-qty { font-size: 13px; color: var(--gka-muted, #7c8aa0); white-space: nowrap; }
.gka-dash__item-total { font-weight: 700; color: var(--gka-dark, #17233a); white-space: nowrap; }

@media (max-width: 600px) {
	.gka-dash__item { flex-wrap: wrap; gap: 4px 10px; padding: 9px 12px; }
	.gka-dash__item-name { flex: 1 0 100%; }
}

/* ===== Checkout loader — shown while the payment is in flight ===== */
.gka-co-loader {
	position: fixed;
	inset: 0;
	z-index: 9999;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 20px;
	background: rgba(11, 32, 51, .55);
	backdrop-filter: blur(3px);
	-webkit-backdrop-filter: blur(3px);
	animation: gkaCoFade .18s ease;
}
.gka-co-loader[hidden] { display: none; }

@keyframes gkaCoFade { from { opacity: 0; } to { opacity: 1; } }

.gka-co-loader__box {
	width: 100%;
	max-width: 380px;
	background: #fff;
	border-radius: 18px;
	padding: 34px 28px 28px;
	text-align: center;
	box-shadow: 0 18px 50px rgba(9, 26, 43, .28);
}

.gka-co-loader__spinner {
	width: 54px;
	height: 54px;
	margin: 0 auto 20px;
	border-radius: 50%;
	border: 4px solid #e3ecf5;
	border-top-color: var(--gka-primary, #006db6);
	animation: gkaCoSpin .8s linear infinite;
}
@keyframes gkaCoSpin { to { transform: rotate(360deg); } }

.gka-co-loader__title {
	margin: 0 0 8px;
	font-size: 19px;
	font-weight: 700;
	color: var(--gka-dark, #17233a);
	font-family: var(--gka-font-heading);
}
.gka-co-loader__note {
	margin: 0 0 16px;
	font-size: 14px;
	line-height: 1.55;
	color: var(--gka-muted, #7c8aa0);
}
.gka-co-loader__secure {
	margin: 0;
	font-size: 12.5px;
	font-weight: 700;
	color: #158554;
}
.gka-co-loader__secure i { margin-right: 5px; }

/* Spinner inside the button itself */
.gka-co-submit .gka-co-btnspin {
	display: inline-block;
	width: 16px;
	height: 16px;
	margin-right: 9px;
	vertical-align: -3px;
	border-radius: 50%;
	border: 2px solid rgba(255, 255, 255, .45);
	border-top-color: #fff;
	animation: gkaCoSpin .7s linear infinite;
}
.gka-co-submit:disabled { opacity: .85; cursor: progress; }

@media (prefers-reduced-motion: reduce) {
	.gka-co-loader__spinner,
	.gka-co-submit .gka-co-btnspin { animation-duration: 2s; }
	.gka-co-loader { animation: none; }
}
