/* Theme: dark header/footer, light content, modern neumorphic card */

:root {
	--brand-bg: #1f242b;
	--brand-accent: #82c29c; /* soft green like on screenshot */
	--brand-primary: #e63946; /* legacy accent kept for CTAs */
	--text-muted: #7c8795;
	--surface: #ffffff;
	--surface-2: #f5f7fa;
}

html, body {
	height: 100%;
}

body {
	font-family: "Poppins", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
	background: linear-gradient(180deg, var(--surface-2), #ffffff);
	color: #1c1f23;
	margin: 0;
}

/* Header */
.site-header {
	background: var(--brand-bg);
	color: #fff;
	padding: 28px 0;
	box-shadow: inset 0 -1px 0 rgba(255,255,255,0.04);
}

.brand {
	display: flex;
	align-items: center;
	gap: 14px;
	color: #fff;
	text-decoration: none;
}

.brand-logo {
	width: 44px;
	height: 44px;
}

.brand-title {
	font-weight: 700;
	letter-spacing: 0.5px;
	font-size: 22px;
}

.brand-sub {
	color: rgba(255,255,255,0.7);
	font-size: 13px;
}

/* Hero/form section */
.hero {
	padding: 48px 16px 24px;
}

.card-elevated {
	background: var(--surface);
	border: 1px solid #e9edf3;
	border-radius: 16px;
	box-shadow: 0 10px 30px rgba(17, 23, 34, 0.06);
}

.form-title {
	font-weight: 700;
	margin-bottom: 6px;
}

.form-subtitle {
	color: var(--text-muted);
	margin-bottom: 18px;
}

.btn-brand {
	background: var(--brand-primary);
	border: none;
	color: #fff;
	font-weight: 600;
	padding: 12px 14px;
	border-radius: 12px;
	transition: transform .08s ease, box-shadow .2s ease, background .2s ease;
}

.btn-brand:hover {
	background: #d62828;
	transform: translateY(-1px);
	box-shadow: 0 6px 14px rgba(214, 40, 40, 0.25);
}

.form-control {
	border-radius: 12px;
}

.required {
	color: #dc3545;
}

/* Footer */
.site-footer {
	background: var(--brand-bg);
	color: #d7dde5;
	padding: 40px 0 30px;
	margin-top: 48px;
}

.location-item {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	margin-bottom: 8px;
}

.location-dot {
	color: var(--brand-accent);
	font-size: 18px;
	line-height: 1.2;
}

.copyright {
	border-top: 1px solid rgba(255,255,255,0.08);
	margin-top: 22px;
	padding-top: 18px;
	font-size: 13px;
	color: #a8b3c2;
}


