/* ===== GEOSOFT Support Float-Button + Dialog ===== */

:root {
	--gs-accent: #f4a900;        /* GEOSOFT-Gelb – hier ggf. euren CI-Wert eintragen */
	--gs-accent-dark: #c98a00;   /* dunklere Variante (Hover/Text)               */
	--gs-on-accent: #2b2316;     /* dunkle Schrift/Icon AUF Gelb                 */
	--gs-text: #2b2b2b;
	--gs-muted: #6b7280;
	--gs-radius: 14px;
}

/* ---- Float-Button (FAB) ---- */
.gs-support-fab {
	position: fixed;
	bottom: 28px;
	right: 28px;
	width: 64px;
	height: 64px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--gs-on-accent);
	background: var(--gs-accent);
	border: 3px solid #fff;
	box-shadow: 0 6px 18px rgba(0, 0, 0, 0.22);
	cursor: pointer;
	z-index: 1000;
	transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.gs-support-fab:hover {
	background: var(--gs-accent-dark);
	transform: translateY(-2px);
	box-shadow: 0 10px 24px rgba(0, 0, 0, 0.28);
}

.gs-support-fab:active {
	transform: scale(0.97);
}

/* ---- Overlay / Backdrop ---- */
.gs-support-overlay {
	display: none;
	position: fixed;
	inset: 0;
	background: rgba(17, 24, 39, 0.55);
	backdrop-filter: blur(3px);
	-webkit-backdrop-filter: blur(3px);
	z-index: 1050;
	align-items: center;
	justify-content: center;
	padding: 16px;
	opacity: 0;
	transition: opacity 0.2s ease;
}

.gs-support-overlay.is-open {
	display: flex;
	opacity: 1;
}

/* ---- Dialog ---- */
.gs-support-dialog {
	background: #fff;
	border-radius: var(--gs-radius);
	max-width: 400px;
	width: 100%;
	padding: 30px 26px 26px;
	position: relative;
	box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
	text-align: center;
	color: var(--gs-text);
	transform: translateY(14px) scale(0.97);
	transition: transform 0.22s cubic-bezier(0.22, 1, 0.36, 1);
}

.gs-support-overlay.is-open .gs-support-dialog {
	transform: translateY(0) scale(1);
}

.gs-support-close {
	position: absolute;
	top: 12px;
	right: 14px;
	width: 30px;
	height: 30px;
	border-radius: 50%;
	background: #f3f4f6;
	border: none;
	font-size: 20px;
	line-height: 1;
	color: #9ca3af;
	cursor: pointer;
	transition: background 0.15s ease, color 0.15s ease;
}

.gs-support-close:hover {
	background: #e5e7eb;
	color: #374151;
}

/* ---- Header / Icon-Badge ---- */
.gs-support-badge {
	width: 64px;
	height: 64px;
	margin: 0 auto 14px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--gs-accent-dark);
	background: rgba(244, 169, 0, 0.15);
}

.gs-support-title {
	margin: 0 0 4px;
	font-size: 1.35em;
	font-weight: 700;
}

.gs-support-sub {
	margin: 0 0 20px;
	color: var(--gs-muted);
	font-size: 0.92em;
}

/* Headset-Icon (Inline-SVG, erbt Farbe) */
.gs-support-icon {
	fill: none;
	stroke: currentColor;
	stroke-width: 2;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.gs-support-fab .gs-support-icon { width: 28px; height: 28px; }
.gs-support-badge .gs-support-icon { width: 32px; height: 32px; }

/* ---- Telefon ---- */
.gs-support-phone {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 9px;
	font-size: 1.4em;
	font-weight: 700;
	color: var(--gs-text);
	text-decoration: none;
	padding: 11px;
	border-radius: 10px;
	background: #f9fafb;
	margin-bottom: 16px;
	transition: background 0.15s ease;
}

.gs-support-phone:hover {
	background: #f1f3f5;
	color: var(--gs-accent-dark);
	text-decoration: none;
}

.gs-support-phone .gs-support-icon {
	width: 20px;
	height: 20px;
	color: var(--gs-accent-dark);
}

/* ---- Öffnungszeiten ---- */
.gs-support-hours {
	text-align: left;
	margin: 0 0 16px;
	padding: 14px 16px;
	border: 1px solid #eef0f2;
	border-radius: 10px;
}

.gs-support-hours h4 {
	display: flex;
	align-items: center;
	gap: 7px;
	font-size: 0.95em;
	font-weight: 700;
	color: var(--gs-text);
	margin: 0 0 10px;
}

.gs-support-hours h4 .gs-support-icon {
	width: 16px;
	height: 16px;
	color: var(--gs-accent-dark);
}

.gs-support-hours-row {
	display: flex;
	justify-content: space-between;
	gap: 12px;
	font-size: 0.88em;
	color: var(--gs-muted);
	line-height: 1.9;
}

.gs-support-hours-row span:first-child {
	font-weight: 600;
	color: #4b5563;
}

/* ---- Hinweistext ---- */
.gs-support-hint {
	background: rgba(244, 169, 0, 0.12);
	border-radius: 10px;
	padding: 12px 14px;
	margin: 0 0 18px;
	font-size: 0.85em;
	color: #4b5563;
	text-align: left;
	line-height: 1.5;
}

.gs-support-hint strong {
	color: var(--gs-accent-dark);
}

/* ---- Download-Button ---- */
.gs-support-dl {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 9px;
	width: 100%;
	padding: 13px;
	border-radius: 10px;
	background: var(--gs-accent);
	color: var(--gs-on-accent);
	font-size: 1em;
	font-weight: 600;
	text-decoration: none;
	transition: background 0.15s ease;
}

.gs-support-dl:hover {
	background: var(--gs-accent-dark);
	color: #fff;
	text-decoration: none;
}

.gs-support-dl .gs-support-icon { width: 18px; height: 18px; }

/* ---- Nur Tablet & Desktop: Button auf Handys ausblenden ---- */
@media (max-width: 767px) {
	.gs-support-fab {
		display: none;
	}
}