/* ============================================================
   Guru Ravidas Saint Sangat Trust — theme
   Palette taken from the trust emblem: royal blue + golden yellow
   ============================================================ */

:root {
	--blue:          #0d3c9e;
	--blue-dark:     #082a72;
	--blue-darker:   #051d52;
	--blue-light:    #1a52c9;
	--blue-soft:     #eef3ff;

	--yellow:        #ffc812;
	--yellow-dark:   #e0a800;
	--yellow-light:  #ffe38a;
	--yellow-soft:   #fff8e1;

	--ink:           #17203a;
	--muted:         #5a6480;
	--line:          #e3e8f3;
	--white:         #ffffff;

	--radius:        14px;
	--radius-sm:     10px;
	--shadow:        0 10px 30px rgba(8, 42, 114, .10);
	--shadow-lg:     0 18px 48px rgba(8, 42, 114, .18);

	--font-body:     'Noto Sans Devanagari', 'Poppins', system-ui, -apple-system, 'Segoe UI', sans-serif;
	--font-head:     'Poppins', 'Noto Sans Devanagari', system-ui, sans-serif;
}

/* ------------------------------------------------------------------ */
/*  Base                                                              */
/* ------------------------------------------------------------------ */

body {
	font-family: var(--font-body);
	color: var(--ink);
	background: var(--white);
	font-size: 15.5px;
	line-height: 1.75;
	overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
	font-family: var(--font-head);
	font-weight: 700;
	color: var(--blue-dark);
	line-height: 1.3;
}

a { text-decoration: none; color: var(--blue); }
a:hover { color: var(--yellow-dark); }

img { max-width: 100%; height: auto; }

::selection { background: var(--yellow); color: var(--blue-dark); }

/* Scrollbar */
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--blue-soft); }
::-webkit-scrollbar-thumb { background: var(--blue); border-radius: 8px; }
::-webkit-scrollbar-thumb:hover { background: var(--blue-dark); }

/* ------------------------------------------------------------------ */
/*  Buttons                                                           */
/* ------------------------------------------------------------------ */

.btn {
	font-family: var(--font-head);
	font-weight: 600;
	border-radius: 50px;
	padding: .62rem 1.6rem;
	letter-spacing: .2px;
	transition: all .25s ease;
	border: 2px solid transparent;
}

.btn-brand {
	background: var(--yellow);
	border-color: var(--yellow);
	color: var(--blue-dark);
	box-shadow: 0 6px 18px rgba(255, 200, 18, .38);
}
.btn-brand:hover {
	background: var(--blue-dark);
	border-color: var(--blue-dark);
	color: var(--yellow);
	box-shadow: 0 6px 18px rgba(8, 42, 114, .32);
}

.btn-brand-blue {
	background: var(--blue);
	border-color: var(--blue);
	color: #fff;
}
.btn-brand-blue:hover {
	background: var(--yellow);
	border-color: var(--yellow);
	color: var(--blue-dark);
}

.btn-outline-brand {
	border-color: var(--yellow);
	color: var(--yellow);
	background: transparent;
}
.btn-outline-brand:hover {
	background: var(--yellow);
	color: var(--blue-dark);
}

.btn-outline-blue {
	border-color: var(--blue);
	color: var(--blue);
	background: transparent;
}
.btn-outline-blue:hover {
	background: var(--blue);
	color: #fff;
}

.btn-sm { padding: .35rem 1rem; font-size: .85rem; }
.btn-lg { padding: .85rem 2.2rem; font-size: 1.02rem; }

/* ------------------------------------------------------------------ */
/*  Top bar                                                           */
/* ------------------------------------------------------------------ */

.topbar {
	background: var(--blue-darker);
	color: rgba(255, 255, 255, .85);
	font-size: .82rem;
	padding: .5rem 0;
}
.topbar a { color: rgba(255, 255, 255, .85); }
.topbar a:hover { color: var(--yellow); }
.topbar i { color: var(--yellow); }
.topbar .topbar-divider {
	width: 1px;
	height: 16px;
	background: rgba(255, 255, 255, .22);
}
.topbar .social-link {
	width: 28px;
	height: 28px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	background: rgba(255, 255, 255, .12);
	font-size: .8rem;
}
.topbar .social-link:hover { background: var(--yellow); }
.topbar .social-link:hover i { color: var(--blue-dark); }

/* ------------------------------------------------------------------ */
/*  Header / navigation                                               */
/* ------------------------------------------------------------------ */

.site-header {
	background: var(--white);
	box-shadow: 0 2px 18px rgba(8, 42, 114, .08);
	position: sticky;
	top: 0;
	z-index: 1030;
}

.brand-wrap { display: flex; align-items: center; gap: .8rem; padding: .5rem 0; }
.brand-wrap img { height: 62px; width: auto; }
.brand-text .brand-hi {
	font-family: var(--font-head);
	font-weight: 700;
	font-size: 1.12rem;
	color: var(--blue-dark);
	line-height: 1.2;
	display: block;
}
.brand-text .brand-en {
	font-size: .72rem;
	letter-spacing: .6px;
	color: var(--muted);
	text-transform: uppercase;
	display: block;
}

.navbar-brand-mobile img { height: 46px; }

.main-nav { background: var(--blue); }
.main-nav .navbar-nav .nav-link {
	color: rgba(255, 255, 255, .92);
	font-family: var(--font-head);
	font-weight: 500;
	font-size: .92rem;
	padding: .95rem .85rem;
	position: relative;
	transition: color .2s ease;
}
.main-nav .navbar-nav .nav-link:hover,
.main-nav .navbar-nav .nav-link.active {
	color: var(--yellow);
}
.main-nav .navbar-nav .nav-link.active::after {
	content: '';
	position: absolute;
	left: .85rem;
	right: .85rem;
	bottom: .55rem;
	height: 2px;
	background: var(--yellow);
	border-radius: 2px;
}

.main-nav .dropdown-menu {
	border: 0;
	border-top: 3px solid var(--yellow);
	border-radius: 0 0 var(--radius-sm) var(--radius-sm);
	box-shadow: var(--shadow);
	padding: .4rem 0;
	margin-top: 0;
	min-width: 250px;
}
.main-nav .dropdown-item {
	font-size: .88rem;
	padding: .55rem 1.1rem;
	color: var(--ink);
	font-weight: 500;
}
.main-nav .dropdown-item:hover,
.main-nav .dropdown-item:focus {
	background: var(--blue-soft);
	color: var(--blue);
}

.main-nav .navbar-toggler {
	border-color: rgba(255, 255, 255, .4);
	color: #fff;
	padding: .3rem .6rem;
}
.main-nav .navbar-toggler:focus { box-shadow: none; }

.nav-login-btn {
	background: var(--yellow);
	color: var(--blue-dark) !important;
	font-weight: 700 !important;
	border-radius: 50px;
	padding: .45rem 1.5rem !important;
	margin-left: .5rem;
}
.nav-login-btn:hover { background: #fff; color: var(--blue) !important; }
.nav-login-btn.active::after { display: none; }

/* Desktop hover dropdowns */
@media (min-width: 992px) {
	.main-nav .dropdown:hover > .dropdown-menu { display: block; }
}

/* ------------------------------------------------------------------ */
/*  Notice ticker                                                     */
/* ------------------------------------------------------------------ */

.notice-bar {
	background: var(--yellow-soft);
	border-bottom: 1px solid var(--yellow-light);
	padding: .45rem 0;
	font-size: .88rem;
	overflow: hidden;
}
.notice-bar .notice-label {
	background: var(--blue);
	color: #fff;
	font-weight: 600;
	font-size: .78rem;
	padding: .18rem .8rem;
	border-radius: 50px;
	white-space: nowrap;
}
.notice-track {
	display: inline-flex;
	white-space: nowrap;
	animation: ticker 38s linear infinite;
}
.notice-track span { padding-right: 4rem; color: var(--blue-dark); }
.notice-bar:hover .notice-track { animation-play-state: paused; }

@keyframes ticker {
	0%   { transform: translateX(0); }
	100% { transform: translateX(-50%); }
}

/* ------------------------------------------------------------------ */
/*  Hero                                                              */
/* ------------------------------------------------------------------ */

.hero {
	position: relative;
	background: linear-gradient(135deg, var(--blue-darker) 0%, var(--blue) 55%, var(--blue-light) 100%);
	color: #fff;
	overflow: hidden;
}
.hero::before {
	content: '';
	position: absolute;
	inset: 0;
	background-image:
		radial-gradient(circle at 12% 18%, rgba(255, 200, 18, .22) 0, transparent 42%),
		radial-gradient(circle at 88% 82%, rgba(255, 200, 18, .16) 0, transparent 45%);
}
.hero::after {
	content: '';
	position: absolute;
	left: 0; right: 0; bottom: -1px;
	height: 60px;
	background: var(--white);
	clip-path: polygon(0 100%, 100% 0, 100% 100%);
}
.hero-inner { position: relative; z-index: 2; padding: 4.5rem 0 5.5rem; }

.hero h1 {
	color: #fff;
	font-size: clamp(1.9rem, 4.2vw, 3.1rem);
	font-weight: 800;
	margin-bottom: 1rem;
}
.hero h1 .hl { color: var(--yellow); }
.hero .hero-sub {
	font-size: clamp(1rem, 1.6vw, 1.22rem);
	color: rgba(255, 255, 255, .9);
	max-width: 620px;
}
.hero .hero-reg {
	display: inline-block;
	background: rgba(255, 200, 18, .14);
	border: 1px solid rgba(255, 200, 18, .4);
	color: var(--yellow);
	border-radius: 50px;
	padding: .3rem 1.1rem;
	font-size: .84rem;
	font-weight: 600;
	margin-bottom: 1.2rem;
}
.hero-emblem {
	max-width: 330px;
	filter: drop-shadow(0 18px 40px rgba(0, 0, 0, .35));
	animation: floaty 6s ease-in-out infinite;
}
@keyframes floaty {
	0%, 100% { transform: translateY(0); }
	50%      { transform: translateY(-14px); }
}

/* ------------------------------------------------------------------ */
/*  Section helpers                                                   */
/* ------------------------------------------------------------------ */

.section { padding: 4.2rem 0; }
.section-tight { padding: 2.8rem 0; }
.section-soft { background: var(--blue-soft); }
.section-yellow { background: var(--yellow-soft); }

.section-head { margin-bottom: 2.6rem; }
.section-head .eyebrow {
	display: inline-block;
	color: var(--blue);
	background: var(--yellow-light);
	font-weight: 700;
	font-size: .78rem;
	letter-spacing: 1.2px;
	text-transform: uppercase;
	padding: .28rem 1rem;
	border-radius: 50px;
	margin-bottom: .8rem;
}
.section-head h2 {
	font-size: clamp(1.5rem, 2.8vw, 2.15rem);
	margin-bottom: .6rem;
}
.section-head p { color: var(--muted); max-width: 720px; margin: 0 auto; }
.section-head.text-start p { margin: 0; }

.title-underline {
	width: 78px;
	height: 4px;
	background: linear-gradient(90deg, var(--yellow), var(--blue));
	border-radius: 4px;
	margin: .8rem auto 0;
}
.text-start .title-underline { margin-left: 0; }

/* ------------------------------------------------------------------ */
/*  Page banner (inner pages)                                         */
/* ------------------------------------------------------------------ */

.page-banner {
	position: relative;
	background: linear-gradient(120deg, var(--blue-darker), var(--blue));
	color: #fff;
	padding: 3rem 0 2.6rem;
	overflow: hidden;
}
.page-banner::before {
	content: '';
	position: absolute;
	inset: 0;
	background: radial-gradient(circle at 85% 20%, rgba(255, 200, 18, .2) 0, transparent 40%);
}
.page-banner .container { position: relative; z-index: 2; }
.page-banner h1 { color: #fff; font-size: clamp(1.5rem, 3vw, 2.1rem); margin-bottom: .35rem; }
.page-banner .breadcrumb { margin: 0; font-size: .85rem; }
.page-banner .breadcrumb a { color: var(--yellow); }
.page-banner .breadcrumb-item + .breadcrumb-item::before { color: rgba(255, 255, 255, .5); }
.page-banner .breadcrumb-item.active { color: rgba(255, 255, 255, .8); }

/* ------------------------------------------------------------------ */
/*  Scheme cards                                                      */
/* ------------------------------------------------------------------ */

.scheme-card {
	background: #fff;
	border: 1px solid var(--line);
	border-top: 5px solid var(--yellow);
	border-radius: var(--radius);
	padding: 2rem 1.7rem;
	height: 100%;
	box-shadow: var(--shadow);
	transition: transform .3s ease, box-shadow .3s ease;
}
.scheme-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.scheme-card .scheme-icon {
	width: 62px;
	height: 62px;
	border-radius: 50%;
	background: linear-gradient(135deg, var(--yellow), var(--yellow-dark));
	color: var(--blue-dark);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.6rem;
	margin-bottom: 1.1rem;
}
.scheme-card h3 { font-size: 1.22rem; margin-bottom: .7rem; }
.scheme-card p { color: var(--muted); font-size: .94rem; }
.scheme-card .scheme-figure {
	display: inline-block;
	background: var(--blue-soft);
	color: var(--blue);
	font-weight: 700;
	border-radius: var(--radius-sm);
	padding: .5rem 1rem;
	margin: .5rem .4rem .9rem 0;
	font-size: .9rem;
}

/* ------------------------------------------------------------------ */
/*  Feature / info cards                                              */
/* ------------------------------------------------------------------ */

/* No height:100% here — the card is also used stacked inside a sidebar,
   where it would stretch to the whole column. Add Bootstrap's .h-100
   on grids that need equal-height cards. */
.info-card {
	background: #fff;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	padding: 1.6rem 1.4rem;
	transition: all .3s ease;
}
.info-card:hover {
	border-color: var(--yellow);
	box-shadow: var(--shadow);
	transform: translateY(-4px);
}
.info-card .info-icon {
	width: 50px;
	height: 50px;
	border-radius: 12px;
	background: var(--blue-soft);
	color: var(--blue);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.3rem;
	margin-bottom: .9rem;
}
.info-card h4 { font-size: 1.05rem; margin-bottom: .45rem; }
.info-card p { color: var(--muted); font-size: .9rem; margin: 0; }

/* ------------------------------------------------------------------ */
/*  Team                                                              */
/* ------------------------------------------------------------------ */

.team-card {
	background: #fff;
	border-radius: var(--radius);
	border: 1px solid var(--line);
	text-align: center;
	padding: 1.7rem 1rem 1.4rem;
	height: 100%;
	transition: all .3s ease;
}
.team-card:hover {
	transform: translateY(-6px);
	box-shadow: var(--shadow-lg);
	border-color: var(--yellow);
}
.team-avatar {
	width: 104px;
	height: 104px;
	margin: 0 auto 1rem;
	border-radius: 50%;
	background: linear-gradient(135deg, var(--blue), var(--blue-light));
	color: var(--yellow);
	display: flex;
	align-items: center;
	justify-content: center;
	font-family: var(--font-head);
	font-size: 2.1rem;
	font-weight: 700;
	border: 4px solid var(--yellow);
	overflow: hidden;
}
.team-avatar img { width: 100%; height: 100%; object-fit: cover; }
.team-card h5 { font-size: 1.02rem; margin-bottom: .15rem; }
.team-card .team-role {
	color: var(--blue);
	font-size: .84rem;
	font-weight: 600;
	background: var(--yellow-soft);
	display: inline-block;
	padding: .12rem .8rem;
	border-radius: 50px;
	margin-bottom: .4rem;
}
.team-card .team-phone { color: var(--muted); font-size: .87rem; }

/* ------------------------------------------------------------------ */
/*  Counter strip                                                     */
/* ------------------------------------------------------------------ */

.counter-strip {
	background: linear-gradient(120deg, var(--blue-darker), var(--blue));
	color: #fff;
	position: relative;
	overflow: hidden;
}
.counter-strip::before {
	content: '';
	position: absolute;
	inset: 0;
	background: radial-gradient(circle at 20% 30%, rgba(255, 200, 18, .18) 0, transparent 45%);
}
.counter-strip .container { position: relative; z-index: 2; }
.counter-box { text-align: center; padding: 1.1rem .5rem; }
.counter-box .counter-num {
	font-family: var(--font-head);
	font-size: clamp(1.7rem, 3.4vw, 2.6rem);
	font-weight: 800;
	color: var(--yellow);
	line-height: 1.1;
}
.counter-box .counter-label {
	font-size: .9rem;
	color: rgba(255, 255, 255, .85);
	margin-top: .2rem;
}

/* ------------------------------------------------------------------ */
/*  Steps (कैसे सदस्य बनें)                                            */
/* ------------------------------------------------------------------ */

.step-list { counter-reset: step; list-style: none; padding: 0; margin: 0; }
.step-list li {
	counter-increment: step;
	position: relative;
	padding: 0 0 1.5rem 3.4rem;
	color: var(--ink);
	font-size: .95rem;
}
.step-list li::before {
	content: counter(step);
	position: absolute;
	left: 0;
	top: 0;
	width: 34px;
	height: 34px;
	border-radius: 50%;
	background: var(--yellow);
	color: var(--blue-dark);
	font-family: var(--font-head);
	font-weight: 700;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: .92rem;
}
.step-list li::after {
	content: '';
	position: absolute;
	left: 17px;
	top: 38px;
	bottom: 4px;
	width: 2px;
	background: var(--line);
}
.step-list li:last-child { padding-bottom: 0; }
.step-list li:last-child::after { display: none; }

/* ------------------------------------------------------------------ */
/*  Bank / donation card                                              */
/* ------------------------------------------------------------------ */

.bank-card {
	background: linear-gradient(135deg, var(--blue-dark), var(--blue));
	color: #fff;
	border-radius: var(--radius);
	padding: 2rem 1.8rem;
	box-shadow: var(--shadow-lg);
	position: relative;
	overflow: hidden;
}
.bank-card::after {
	content: '';
	position: absolute;
	right: -40px;
	top: -40px;
	width: 160px;
	height: 160px;
	border-radius: 50%;
	background: rgba(255, 200, 18, .16);
}
.bank-card h3 { color: var(--yellow); font-size: 1.2rem; margin-bottom: 1.1rem; }
.bank-row {
	display: flex;
	justify-content: space-between;
	gap: 1rem;
	padding: .55rem 0;
	border-bottom: 1px dashed rgba(255, 255, 255, .2);
	font-size: .92rem;
	position: relative;
	z-index: 2;
}
.bank-row:last-of-type { border-bottom: 0; }
.bank-row .k { color: rgba(255, 255, 255, .7); white-space: nowrap; }
/* anywhere (not break-all) so long account numbers wrap but words stay intact */
.bank-row .v { font-weight: 600; text-align: right; overflow-wrap: anywhere; }

/* ------------------------------------------------------------------ */
/*  Gallery                                                           */
/* ------------------------------------------------------------------ */

.gallery-item {
	position: relative;
	border-radius: var(--radius-sm);
	overflow: hidden;
	aspect-ratio: 4 / 3;
	background: var(--blue-soft);
	border: 1px solid var(--line);
}
.gallery-item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform .5s ease;
}
.gallery-item:hover img { transform: scale(1.08); }
.gallery-item .gallery-cap {
	position: absolute;
	left: 0; right: 0; bottom: 0;
	background: linear-gradient(transparent, rgba(8, 42, 114, .88));
	color: #fff;
	font-size: .85rem;
	padding: 1.6rem .8rem .6rem;
}
.gallery-empty {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 100%;
	color: var(--muted);
	font-size: .9rem;
}

/* ------------------------------------------------------------------ */
/*  Tables                                                            */
/* ------------------------------------------------------------------ */

.data-card {
	background: #fff;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	box-shadow: var(--shadow);
	overflow: hidden;
}
.table-brand { margin: 0; }
.table-brand thead th {
	background: var(--blue);
	color: #fff;
	font-family: var(--font-head);
	font-weight: 600;
	font-size: .85rem;
	white-space: nowrap;
	padding: .8rem .9rem;
	border: 0;
	vertical-align: middle;
}
.table-brand tbody td {
	font-size: .9rem;
	padding: .7rem .9rem;
	vertical-align: middle;
	border-color: var(--line);
}
.table-brand tbody tr:nth-child(even) { background: #fafbff; }
.table-brand tbody tr:hover { background: var(--yellow-soft); }
.table-empty { padding: 2.6rem 1rem; text-align: center; color: var(--muted); }

.badge-status {
	font-size: .74rem;
	font-weight: 600;
	padding: .28rem .7rem;
	border-radius: 50px;
}
.badge-running   { background: var(--yellow-soft); color: var(--yellow-dark); }
.badge-completed { background: #e6f7ed; color: #17794a; }
.badge-pending   { background: #fff3e0; color: #b45309; }

/* Filter bar above tables */
.filter-bar {
	background: #fff;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	padding: 1.1rem 1.2rem;
	box-shadow: var(--shadow);
	margin-bottom: 1.4rem;
}

/* ------------------------------------------------------------------ */
/*  Forms                                                             */
/* ------------------------------------------------------------------ */

.form-card {
	background: #fff;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	box-shadow: var(--shadow);
	padding: 2rem;
}
.form-section-title {
	font-family: var(--font-head);
	font-size: 1rem;
	font-weight: 700;
	color: var(--blue);
	padding-bottom: .5rem;
	margin: 1.6rem 0 1.1rem;
	border-bottom: 2px solid var(--yellow);
	display: flex;
	align-items: center;
	gap: .5rem;
}
.form-section-title:first-child { margin-top: 0; }

.form-label { font-weight: 600; font-size: .88rem; color: var(--ink); margin-bottom: .3rem; }
.form-label .req { color: #d92d20; }

.form-control, .form-select {
	border: 1px solid var(--line);
	border-radius: var(--radius-sm);
	padding: .6rem .9rem;
	font-size: .92rem;
}
.form-control:focus, .form-select:focus {
	border-color: var(--blue-light);
	box-shadow: 0 0 0 .18rem rgba(26, 82, 201, .13);
}
.form-check-input:checked { background-color: var(--blue); border-color: var(--blue); }

/* ------------------------------------------------------------------ */
/*  Accordion (niyamawali / FAQ)                                      */
/* ------------------------------------------------------------------ */

.accordion-brand .accordion-item {
	border: 1px solid var(--line);
	border-radius: var(--radius-sm) !important;
	margin-bottom: .8rem;
	overflow: hidden;
}
.accordion-brand .accordion-button {
	font-family: var(--font-head);
	font-weight: 600;
	font-size: .98rem;
	color: var(--blue-dark);
	background: #fff;
}
.accordion-brand .accordion-button:not(.collapsed) {
	background: var(--blue-soft);
	color: var(--blue);
	box-shadow: none;
}
.accordion-brand .accordion-button:focus { box-shadow: none; border-color: var(--line); }
.accordion-brand .accordion-body { font-size: .93rem; color: var(--muted); }

/* ------------------------------------------------------------------ */
/*  CTA strip                                                         */
/* ------------------------------------------------------------------ */

.cta-strip {
	background: linear-gradient(120deg, var(--yellow), var(--yellow-dark));
	color: var(--blue-dark);
	border-radius: var(--radius);
	padding: 2.2rem 2rem;
	box-shadow: var(--shadow-lg);
}
.cta-strip h3 { color: var(--blue-dark); margin-bottom: .35rem; }
.cta-strip p { margin: 0; color: rgba(8, 42, 114, .8); }

/* ------------------------------------------------------------------ */
/*  Content prose (about / policy)                                    */
/* ------------------------------------------------------------------ */

.prose p { color: var(--muted); margin-bottom: 1rem; }
.prose h3 { font-size: 1.15rem; margin: 1.8rem 0 .7rem; }
.prose ul { padding-left: 1.1rem; color: var(--muted); }
.prose ul li { margin-bottom: .5rem; }
.prose .lead-note {
	background: var(--yellow-soft);
	border-left: 4px solid var(--yellow);
	border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
	padding: 1rem 1.2rem;
	color: var(--ink);
}

/* ------------------------------------------------------------------ */
/*  Footer                                                            */
/* ------------------------------------------------------------------ */

.site-footer {
	background: var(--blue-darker);
	color: rgba(255, 255, 255, .75);
	padding-top: 3.4rem;
	font-size: .92rem;
}
.site-footer h5 {
	color: #fff;
	font-size: 1.02rem;
	margin-bottom: 1.1rem;
	position: relative;
	padding-bottom: .6rem;
}
.site-footer h5::after {
	content: '';
	position: absolute;
	left: 0; bottom: 0;
	width: 42px;
	height: 3px;
	background: var(--yellow);
	border-radius: 3px;
}
.site-footer a { color: rgba(255, 255, 255, .75); }
.site-footer a:hover { color: var(--yellow); padding-left: 4px; }
.site-footer .footer-links { list-style: none; padding: 0; margin: 0; }
.site-footer .footer-links li { margin-bottom: .55rem; }
.site-footer .footer-links a { transition: all .2s ease; display: inline-block; }
.site-footer .footer-logo { height: 76px; margin-bottom: 1rem; }
.site-footer .contact-line { display: flex; gap: .7rem; margin-bottom: .9rem; }
.site-footer .contact-line i { color: var(--yellow); margin-top: .25rem; }
.site-footer .footer-social a {
	width: 36px;
	height: 36px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	background: rgba(255, 255, 255, .1);
	margin-right: .4rem;
}
.site-footer .footer-social a:hover { background: var(--yellow); color: var(--blue-dark); padding-left: 0; }

.footer-bottom {
	margin-top: 2.6rem;
	border-top: 1px solid rgba(255, 255, 255, .12);
	padding: 1.1rem 0;
	font-size: .84rem;
}
.footer-bottom a { color: var(--yellow); }

/* ------------------------------------------------------------------ */
/*  Floating actions                                                  */
/* ------------------------------------------------------------------ */

.float-actions {
	position: fixed;
	right: 18px;
	bottom: 18px;
	z-index: 1040;
	display: flex;
	flex-direction: column;
	gap: .6rem;
}
.float-btn {
	width: 48px;
	height: 48px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	font-size: 1.25rem;
	box-shadow: 0 8px 22px rgba(0, 0, 0, .22);
	border: 0;
	transition: transform .25s ease;
}
.float-btn:hover { transform: translateY(-3px); color: #fff; }
.float-call { background: var(--blue); }
.float-top  { background: var(--yellow); color: var(--blue-dark); opacity: 0; pointer-events: none; }
.float-top:hover { color: var(--blue-dark); }
.float-top.show { opacity: 1; pointer-events: auto; }

/* ------------------------------------------------------------------ */
/*  Responsive                                                        */
/* ------------------------------------------------------------------ */

@media (max-width: 991.98px) {
	.main-nav .navbar-collapse {
		background: var(--blue-dark);
		padding: .6rem 1rem 1rem;
		border-radius: 0 0 var(--radius-sm) var(--radius-sm);
		max-height: 72vh;
		overflow-y: auto;
	}
	.main-nav .navbar-nav .nav-link { padding: .6rem .2rem; }
	.main-nav .navbar-nav .nav-link.active::after { display: none; }
	.main-nav .dropdown-menu {
		background: rgba(255, 255, 255, .06);
		border-top: 0;
		border-left: 2px solid var(--yellow);
		border-radius: 0;
		box-shadow: none;
		margin: .2rem 0 .5rem .4rem;
	}
	.main-nav .dropdown-item { color: rgba(255, 255, 255, .85); }
	.main-nav .dropdown-item:hover { background: rgba(255, 255, 255, .1); color: var(--yellow); }
	.nav-login-btn { display: inline-block; margin: .6rem 0 0; }
	.hero-inner { padding: 3rem 0 4rem; text-align: center; }
	.hero .hero-sub { margin-left: auto; margin-right: auto; }
	.hero-emblem { max-width: 220px; margin-bottom: 1.8rem; }
	.section { padding: 3rem 0; }
}

@media (max-width: 575.98px) {
	body { font-size: 15px; }
	.brand-wrap img { height: 48px; }
	.brand-text .brand-hi { font-size: .98rem; }
	.form-card { padding: 1.3rem; }
	.cta-strip { padding: 1.6rem 1.2rem; text-align: center; }
	.float-btn { width: 44px; height: 44px; font-size: 1.1rem; }
}

/* Print */
@media print {
	.topbar, .main-nav, .notice-bar, .site-footer, .float-actions, .filter-bar { display: none !important; }
	.data-card { box-shadow: none; border: 1px solid #999; }
}
