/* ═══════════════════════════════════════════════════════
   FPBM Portal — Login + Portal + Public Profile Styles
   FHA Maldives Brand: #0f4a8a / #3b82f6 / #ffffff
   ═══════════════════════════════════════════════════════ */

/* ─── Shared Base ─────────────────────────────────────── */
.fpbm-login-wrap,
.fpbm-portal-wrap,
.fpbm-profile-wrap {
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
	color: #1e293b;
}

/* ═══════════════════════════════════════════════════════
   LOGIN PAGE
   ═══════════════════════════════════════════════════════ */
.fpbm-login-wrap {
	display: flex;
	justify-content: center;
	align-items: flex-start;
	min-height: 65vh;
	padding: 48px 16px;
	background: linear-gradient(160deg, #f0f7ff 0%, #e8f4ff 100%);
}
.fpbm-login-card {
	background: #ffffff;
	border-radius: 20px;
	box-shadow: 0 16px 48px rgba(15, 74, 138, 0.12), 0 2px 8px rgba(15, 74, 138, 0.06);
	padding: 44px 40px;
	width: 100%;
	max-width: 440px;
	border: 1px solid rgba(15, 74, 138, 0.08);
	animation: fpbmFadeUp 0.35s ease both;
}
@keyframes fpbmFadeUp {
	from { opacity: 0; transform: translateY(14px); }
	to   { opacity: 1; transform: translateY(0); }
}
.fpbm-login-logo {
	text-align: center;
	margin-bottom: 30px;
}
.fpbm-login-icon {
	font-size: 52px;
	margin-bottom: 14px;
	display: block;
	line-height: 1;
}
.fpbm-login-card h2 {
	font-size: 23px;
	font-weight: 800;
	margin: 0 0 8px;
	color: #0f172a;
	text-align: center;
	letter-spacing: -0.3px;
}
.fpbm-login-card p {
	font-size: 14px;
	color: #64748b;
	margin: 0;
	text-align: center;
	line-height: 1.6;
}
.fpbm-already-in {
	text-align: center;
	font-size: 15px;
}
.fpbm-restricted {
	text-align: center;
}
.fpbm-restricted .fpbm-login-icon {
	font-size: 44px;
}

/* Alert */
.fpbm-alert {
	padding: 12px 16px;
	border-radius: 10px;
	font-size: 13px;
	margin-bottom: 18px;
	font-weight: 500;
}
.fpbm-alert-error {
	background: #fef2f2;
	color: #991b1b;
	border: 1px solid #fca5a5;
}

/* Fields */
.fpbm-field {
	margin-bottom: 18px;
}
.fpbm-field label {
	display: block;
	font-size: 11.5px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.07em;
	color: #475569;
	margin-bottom: 7px;
}
.fpbm-field input[type="text"],
.fpbm-field input[type="email"],
.fpbm-field input[type="password"],
.fpbm-field textarea {
	width: 100%;
	padding: 12px 14px;
	border: 1.5px solid #e2e8f0;
	border-radius: 10px;
	font-size: 14px;
	box-sizing: border-box;
	transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
	background: #f8fafc;
	color: #1e293b;
}
.fpbm-field input:focus,
.fpbm-field textarea:focus {
	outline: none;
	border-color: #3b82f6;
	background: #fff;
	box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.14);
}
.fpbm-field textarea {
	resize: vertical;
}

/* Buttons */
.fpbm-portal-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 7px;
	padding: 12px 24px;
	border-radius: 10px;
	font-size: 14px;
	font-weight: 700;
	cursor: pointer;
	border: none;
	transition: all 0.18s ease;
	text-decoration: none;
	letter-spacing: 0.01em;
}
.fpbm-portal-btn-primary {
	background: linear-gradient(135deg, #0f4a8a 0%, #3b82f6 100%);
	color: #fff;
	box-shadow: 0 4px 14px rgba(15, 74, 138, 0.28);
}
.fpbm-portal-btn-primary:hover {
	filter: brightness(1.08);
	transform: translateY(-2px);
	box-shadow: 0 8px 20px rgba(15, 74, 138, 0.38);
}
.fpbm-portal-btn-primary:active {
	transform: translateY(0);
	filter: brightness(0.97);
}
.fpbm-portal-btn-outline {
	background: transparent;
	color: #1e40af;
	border: 1.5px solid #93c5fd;
}
.fpbm-portal-btn-outline:hover {
	background: #eff6ff;
	border-color: #3b82f6;
}
.fpbm-btn-full    { width: 100%; margin-top: 6px; }
.fpbm-btn-sm      { padding: 6px 14px; font-size: 12px; }
.fpbm-btn-lg      { padding: 15px 40px; font-size: 15px; }

.fpbm-login-form .fpbm-portal-btn-primary {
	margin-top: 6px;
}
.fpbm-hint {
	font-size: 13px;
	color: #64748b;
	margin: 0 0 14px;
	line-height: 1.6;
}

/* ═══════════════════════════════════════════════════════
   PORTAL PAGE (Exhibitor Dashboard)
   ═══════════════════════════════════════════════════════ */
.fpbm-portal-wrap {
	max-width: 1120px;
	margin: 0 auto;
	padding: 0 16px 70px;
}

/* Portal Header */
.fpbm-portal-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 28px 0 22px;
	border-bottom: 2px solid #e2e8f0;
	margin-bottom: 30px;
	flex-wrap: wrap;
	gap: 14px;
}
.fpbm-portal-header-info {
	display: flex;
	flex-direction: column;
	gap: 5px;
}
.fpbm-badge-booth {
	display: inline-block;
	background: linear-gradient(135deg, #dbeafe, #eff6ff);
	color: #1e40af;
	padding: 3px 14px;
	border-radius: 20px;
	font-size: 12px;
	font-weight: 700;
	width: fit-content;
	border: 1px solid #bfdbfe;
}
.fpbm-portal-header h2 {
	margin: 0;
	font-size: 23px;
	font-weight: 800;
	color: #0f172a;
	letter-spacing: -0.3px;
}
.fpbm-portal-email {
	margin: 0;
	font-size: 13px;
	color: #64748b;
}
.fpbm-portal-logout {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 9px 20px;
	border: 1.5px solid #e2e8f0;
	border-radius: 10px;
	font-size: 13px;
	font-weight: 600;
	color: #64748b;
	text-decoration: none;
	transition: all 0.18s ease;
}
.fpbm-portal-logout:hover {
	border-color: #dc2626;
	color: #dc2626;
	background: #fef2f2;
}

/* Message bar */
.fpbm-portal-msg {
	padding: 14px 20px;
	border-radius: 10px;
	font-size: 14px;
	font-weight: 600;
	margin-bottom: 22px;
	animation: fpbmFadeUp 0.25s ease both;
}
.fpbm-msg-success {
	background: #f0fdf4;
	color: #15803d;
	border: 1px solid #86efac;
}
.fpbm-msg-error {
	background: #fef2f2;
	color: #dc2626;
	border: 1px solid #fca5a5;
}

/* Grid */
.fpbm-portal-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 26px;
	align-items: start;
}
@media (max-width: 768px) {
	.fpbm-portal-grid { grid-template-columns: 1fr; }
}

/* Cards */
.fpbm-portal-card {
	background: #fff;
	border: 1px solid #e8f0fe;
	border-radius: 14px;
	padding: 26px;
	margin-bottom: 22px;
	box-shadow: 0 2px 10px rgba(15, 74, 138, 0.05);
	transition: box-shadow 0.2s ease;
}
.fpbm-portal-card:hover {
	box-shadow: 0 6px 20px rgba(15, 74, 138, 0.10);
}
.fpbm-portal-card h3 {
	font-size: 15px;
	font-weight: 700;
	color: #0f172a;
	margin: 0 0 18px;
	padding-bottom: 14px;
	border-bottom: 2px solid #f1f5f9;
	display: flex;
	align-items: center;
	gap: 8px;
}

/* Logo Upload */
.fpbm-logo-area {
	border: 2px dashed #bfdbfe;
	border-radius: 12px;
	padding: 18px;
	text-align: center;
	margin-bottom: 14px;
	min-height: 110px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #f8fafc;
	transition: border-color 0.2s, background 0.2s;
}
.fpbm-logo-area:hover {
	border-color: #3b82f6;
	background: #eff6ff;
}
.fpbm-logo-area img#fpbm-logo-preview {
	max-width: 100%;
	max-height: 160px;
	border-radius: 8px;
	object-fit: contain;
}
.fpbm-logo-placeholder span {
	font-size: 34px;
}
.fpbm-logo-placeholder p {
	margin: 6px 0 0;
	font-size: 13px;
	color: #94a3b8;
}

/* Product list */
.fpbm-product-item {
	display: flex;
	gap: 8px;
	align-items: center;
	margin-bottom: 8px;
	animation: fpbmFadeUp 0.2s ease both;
}
.fpbm-product-input {
	flex: 1;
	padding: 9px 12px;
	border: 1.5px solid #e2e8f0;
	border-radius: 8px;
	font-size: 14px;
	transition: border-color 0.2s, box-shadow 0.2s;
	background: #f8fafc;
}
.fpbm-product-input:focus {
	outline: none;
	border-color: #3b82f6;
	background: #fff;
	box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.12);
}
.fpbm-remove-product {
	background: transparent;
	border: 1.5px solid #fca5a5;
	color: #dc2626;
	border-radius: 8px;
	padding: 6px 10px;
	cursor: pointer;
	font-size: 12px;
	font-weight: 700;
	transition: all 0.15s;
	flex-shrink: 0;
}
.fpbm-remove-product:hover {
	background: #fef2f2;
	border-color: #dc2626;
}

/* Image grid */
.fpbm-images-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(110px, 1fr));
	gap: 10px;
}
.fpbm-img-slot {
	aspect-ratio: 1;
	border-radius: 10px;
	overflow: hidden;
	position: relative;
	border: 2px solid #e2e8f0;
	background: #f8fafc;
	transition: border-color 0.2s, box-shadow 0.2s;
}
.fpbm-img-slot.empty {
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	border-style: dashed;
	transition: all 0.18s ease;
}
.fpbm-img-slot.empty:hover {
	border-color: #3b82f6;
	background: #eff6ff;
	transform: scale(1.03);
}
.fpbm-img-add {
	font-size: 28px;
	color: #94a3b8;
}
.fpbm-img-slot.filled img {
	width: 100%; height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 0.3s ease;
}
.fpbm-img-slot.filled:hover img {
	transform: scale(1.06);
}
.fpbm-remove-img {
	position: absolute;
	top: 5px; right: 5px;
	background: rgba(0, 0, 0, 0.65);
	color: #fff;
	border: none;
	border-radius: 50%;
	width: 24px; height: 24px;
	font-size: 11px;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	transition: opacity 0.18s;
	backdrop-filter: blur(4px);
}
.fpbm-img-slot.filled:hover .fpbm-remove-img { opacity: 1; }
.fpbm-img-count {
	font-size: 13px;
	color: #64748b;
	font-weight: 400;
	margin-left: 6px;
}

/* Save Bar */
.fpbm-portal-save-bar {
	text-align: center;
	padding: 28px 0 0;
}

/* ═══════════════════════════════════════════════════════
   PUBLIC PROFILE PAGE
   ═══════════════════════════════════════════════════════ */
.fpbm-profile-wrap {
	max-width: 920px;
	margin: 0 auto;
	padding: 0 16px 70px;
}

/* Profile Header */
.fpbm-profile-header {
	display: flex;
	align-items: center;
	gap: 28px;
	padding: 40px 44px;
	border-radius: 20px;
	background: linear-gradient(135deg, #0f4a8a 0%, #1e6db5 50%, #3b82f6 100%);
	box-shadow: 0 8px 32px rgba(15, 74, 138, 0.28);
	margin-bottom: 40px;
	flex-wrap: wrap;
	position: relative;
	overflow: hidden;
}
/* Decorative shimmer */
.fpbm-profile-header::before {
	content: '';
	position: absolute;
	top: -60px; right: -60px;
	width: 240px; height: 240px;
	background: rgba(255,255,255,0.06);
	border-radius: 50%;
}
.fpbm-profile-header::after {
	content: '';
	position: absolute;
	bottom: -40px; left: -40px;
	width: 180px; height: 180px;
	background: rgba(255,255,255,0.04);
	border-radius: 50%;
}

.fpbm-profile-logo {
	width: 120px;
	height: 120px;
	object-fit: contain;
	border-radius: 14px;
	border: 3px solid rgba(255,255,255,0.9);
	background: #ffffff;
	padding: 8px;
	box-shadow: 0 6px 20px rgba(0,0,0,0.18);
	flex-shrink: 0;
	position: relative;
	z-index: 1;
}
.fpbm-profile-logo-ph {
	width: 120px;
	height: 120px;
	background: rgba(255,255,255,0.15);
	border-radius: 14px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 52px;
	flex-shrink: 0;
	border: 3px solid rgba(255,255,255,0.3);
	position: relative;
	z-index: 1;
}

.fpbm-profile-header-info {
	position: relative;
	z-index: 1;
}
.fpbm-profile-header-info h1 {
	font-size: 30px;
	font-weight: 800;
	margin: 10px 0 0;
	color: #ffffff;
	letter-spacing: -0.5px;
	text-shadow: 0 2px 8px rgba(0,0,0,0.15);
}
.fpbm-profile-meta {
	display: flex;
	gap: 8px;
	align-items: center;
	flex-wrap: wrap;
}
.fpbm-profile-booth-tag {
	display: inline-block;
	background: rgba(255,255,255,0.18);
	color: #ffffff;
	padding: 4px 14px;
	border-radius: 20px;
	font-size: 12px;
	font-weight: 700;
	border: 1px solid rgba(255,255,255,0.3);
	backdrop-filter: blur(8px);
}

/* Status badges — on the dark header they use slightly different styles */
.fpbm-profile-status,
.fpbm-state-available { background: rgba(255,255,255,0.9); color: #047857; padding: 4px 14px; border-radius: 20px; font-size: 12px; font-weight: 700; display: inline-block; border: 1px solid rgba(255,255,255,0.6); }
.fpbm-state-tentative  { background: rgba(255,255,255,0.9); color: #b45309; padding: 4px 14px; border-radius: 20px; font-size: 12px; font-weight: 700; display: inline-block; border: 1px solid rgba(255,255,255,0.6); }
.fpbm-state-sponsor    { background: rgba(255,255,255,0.9); color: #6d28d9; padding: 4px 14px; border-radius: 20px; font-size: 12px; font-weight: 700; display: inline-block; border: 1px solid rgba(255,255,255,0.6); }
.fpbm-state-confirmed  { background: rgba(255,255,255,0.95); color: #0f4a8a; padding: 4px 14px; border-radius: 20px; font-size: 12px; font-weight: 700; display: inline-block; border: 1px solid rgba(255,255,255,0.8); box-shadow: 0 2px 8px rgba(0,0,0,0.12); }

/* Profile Grid Layout */
.fpbm-profile-grid {
	display: grid;
	grid-template-columns: 1.6fr 1fr;
	gap: 30px;
	margin-bottom: 40px;
	align-items: start;
}
.fpbm-profile-main {
	display: flex;
	flex-direction: column;
	gap: 30px;
}
.fpbm-profile-sidebar {
	display: flex;
	flex-direction: column;
	gap: 30px;
}
@media (max-width: 768px) {
	.fpbm-profile-grid {
		grid-template-columns: 1fr;
		gap: 26px;
	}
}

/* Profile Sections (Glassmorphism & Lift Effect) */
.fpbm-profile-section {
	background: #ffffff;
	border: 1px solid #e8f0fe;
	border-radius: 16px;
	padding: 30px;
	box-shadow: 0 4px 20px rgba(15, 74, 138, 0.04);
	transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}
.fpbm-profile-section:hover {
	transform: translateY(-2px);
	box-shadow: 0 10px 30px rgba(15, 74, 138, 0.08);
}
.fpbm-profile-section h2 {
	font-size: 17px;
	font-weight: 800;
	color: #0f172a;
	margin: 0 0 20px;
	padding-bottom: 14px;
	border-bottom: 2px solid #f1f5f9;
	display: flex;
	align-items: center;
	gap: 10px;
}
.fpbm-section-title-icon {
	width: 22px;
	height: 22px;
	flex-shrink: 0;
	fill: none;
	stroke: #0f4a8a;
	stroke-width: 2.2;
	stroke-linecap: round;
	stroke-linejoin: round;
	vertical-align: middle;
}
.fpbm-profile-meta .fpbm-svg-meta-icon {
	width: 14px;
	height: 14px;
	fill: none;
	stroke: currentColor;
	stroke-width: 2.5;
	stroke-linecap: round;
	stroke-linejoin: round;
	margin-right: 4px;
	vertical-align: text-top;
}
.fpbm-profile-desc {
	font-size: 14.5px;
	line-height: 1.8;
	color: #475569;
	background: transparent;
	padding: 0;
	border: none;
}

/* Products & Services Pills */
.fpbm-profile-products {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}
.fpbm-profile-products li {
	background: #eff6ff;
	color: #0f4a8a;
	padding: 9px 22px;
	border-radius: 30px;
	font-size: 13px;
	font-weight: 600;
	border: 1.5px solid #bfdbfe;
	transition: all 0.22s ease;
	cursor: default;
}
.fpbm-profile-products li:hover {
	background: linear-gradient(135deg, #0f4a8a, #3b82f6);
	color: #ffffff;
	border-color: transparent;
	transform: translateY(-2px);
	box-shadow: 0 6px 16px rgba(15, 74, 138, 0.28);
}

/* Showcase Gallery */
.fpbm-profile-gallery {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
	gap: 16px;
}
.fpbm-gallery-item {
	aspect-ratio: 1;
	overflow: hidden;
	border-radius: 14px;
	background: #f1f5f9;
	border: 1.5px solid #e2e8f0;
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	position: relative;
}
.fpbm-gallery-item::after {
	content: '🔍';
	position: absolute;
	inset: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 24px;
	background: rgba(15, 74, 138, 0.5);
	opacity: 0;
	transition: opacity 0.25s ease;
}
.fpbm-gallery-item:hover {
	transform: translateY(-5px);
	box-shadow: 0 14px 30px rgba(15, 74, 138, 0.18);
	border-color: #93c5fd;
}
.fpbm-gallery-item:hover::after {
	opacity: 1;
}
.fpbm-gallery-item img {
	width: 100%; height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 0.4s ease;
}
.fpbm-gallery-item:hover img { transform: scale(1.1); }

/* Pending */
.fpbm-profile-pending {
	text-align: center;
	padding: 44px 32px;
	background: #f8fafc;
	border: 1.5px dashed #cbd5e1;
	border-radius: 14px;
	color: #64748b;
	margin: 28px 0;
	font-size: 15px;
}

/* Error */
.fpbm-profile-error {
	color: #dc2626;
	background: #fef2f2;
	padding: 14px 20px;
	border-radius: 10px;
	border-left: 4px solid #dc2626;
}

/* Back link */
.fpbm-profile-back {
	margin-top: 44px;
	padding-top: 22px;
	border-top: 1.5px solid #e8f0fe;
}
.fpbm-back-link {
	font-size: 14px;
	color: #3b82f6;
	text-decoration: none;
	font-weight: 700;
	display: inline-flex;
	align-items: center;
	gap: 6px;
	transition: color 0.18s, gap 0.18s;
}
.fpbm-back-link:hover {
	color: #0f4a8a;
	gap: 10px;
	text-decoration: none;
}

/* ─── Responsive ──────────────────────────────────────── */
@media (max-width: 600px) {
	.fpbm-login-card {
		padding: 32px 24px;
	}
	.fpbm-profile-header {
		padding: 28px 24px;
		gap: 18px;
	}
	.fpbm-profile-header-info h1 {
		font-size: 22px;
	}
	.fpbm-profile-logo,
	.fpbm-profile-logo-ph {
		width: 90px;
		height: 90px;
	}
	.fpbm-profile-gallery {
		grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
	}
	.fpbm-portal-header {
		flex-direction: column;
		align-items: flex-start;
	}
}

/* ═══════════════════════════════════════════════════════
   CUSTOM BRANDING & SOCIAL LINKS EXTENSIONS
   ═══════════════════════════════════════════════════════ */

/* Event Custom Branding Header Styles */
.fpbm-event-login-logo {
	max-height: 80px;
	width: auto;
	margin: 0 auto 18px;
	display: block;
	object-fit: contain;
}
.fpbm-portal-brand-bar {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 16px 20px;
	background: rgba(255, 255, 255, 0.7);
	border: 1px solid rgba(15, 74, 138, 0.08);
	border-radius: 14px;
	margin-top: 24px;
	margin-bottom: 12px;
	backdrop-filter: blur(12px);
}
.fpbm-portal-brand-logo {
	max-height: 40px;
	width: auto;
	object-fit: contain;
}
.fpbm-portal-brand-name {
	font-size: 16px;
	font-weight: 800;
	color: #0f4a8a;
	letter-spacing: -0.2px;
}

/* Public Profile Custom Branding Header Styles */
.fpbm-profile-brand-header {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 16px 20px;
	background: rgba(255, 255, 255, 0.7);
	border: 1px solid rgba(15, 74, 138, 0.08);
	border-radius: 14px;
	margin-top: 24px;
	margin-bottom: 24px;
	backdrop-filter: blur(12px);
}
.fpbm-profile-brand-logo {
	max-height: 40px;
	width: auto;
	object-fit: contain;
}
.fpbm-profile-brand-name {
	font-size: 16px;
	font-weight: 800;
	color: #0f4a8a;
	letter-spacing: -0.2px;
}

/* Custom Inputs with Icons (Dashboard) */
.fpbm-input-with-icon {
	position: relative;
	display: flex;
	align-items: center;
	width: 100%;
}
.fpbm-input-with-icon .fpbm-input-icon {
	position: absolute;
	left: 14px;
	font-size: 16px;
	pointer-events: none;
	display: flex;
	align-items: center;
	justify-content: center;
}
.fpbm-input-with-icon input {
	padding-left: 42px !important;
}
.fpbm-social-field {
	margin-bottom: 14px !important;
}

/* Selected Industry tag */
.fpbm-profile-industry-tag {
	display: inline-block;
	background: rgba(255, 255, 255, 0.18);
	color: #ffffff;
	padding: 4px 14px;
	border-radius: 20px;
	font-size: 12px;
	font-weight: 700;
	border: 1px solid rgba(255, 255, 255, 0.3);
	backdrop-filter: blur(8px);
}

/* Social Connections Sidebar Card */
.fpbm-connections-card {
	padding: 24px !important;
}
.fpbm-profile-socials {
	display: flex;
	flex-direction: column;
	gap: 12px;
}
.fpbm-social-btn {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 12px 18px;
	border-radius: 10px;
	font-size: 14px;
	font-weight: 700;
	text-decoration: none !important;
	transition: all 0.22s cubic-bezier(0.4, 0, 0.2, 1);
	box-shadow: 0 2px 6px rgba(15, 74, 138, 0.05);
	border: 1px solid rgba(15, 74, 138, 0.08);
}
.fpbm-social-btn span {
	transition: transform 0.2s;
}
.fpbm-social-btn:hover {
	transform: translateY(-2px) scale(1.01);
}
.fpbm-social-btn:hover span {
	transform: translateX(2px);
}
.fpbm-social-svg {
	width: 20px;
	height: 20px;
	flex-shrink: 0;
	transition: transform 0.22s;
}
.fpbm-social-btn:hover .fpbm-social-svg {
	transform: scale(1.12);
}

/* Individual Social Branding Colors */
.fpbm-social-web {
	background: #f8fafc;
	color: #0f4a8a;
}
.fpbm-social-web:hover {
	background: #eff6ff;
	border-color: #3b82f6;
}
.fpbm-social-fb {
	background: #f0f7ff;
	color: #1877f2;
	border-color: rgba(24, 119, 242, 0.15);
}
.fpbm-social-fb:hover {
	background: #1877f2;
	color: #ffffff;
	box-shadow: 0 6px 18px rgba(24, 119, 242, 0.3);
}
.fpbm-social-insta {
	background: #fff5f5;
	color: #e1306c;
	border-color: rgba(225, 48, 108, 0.15);
}
.fpbm-social-insta:hover {
	background: linear-gradient(45deg, #fccc63 0%, #fbad50 15%, #cd486b 40%, #e1306c 65%, #8a3ab9 90%);
	color: #ffffff;
	box-shadow: 0 6px 18px rgba(225, 48, 108, 0.3);
}
.fpbm-social-linkedin {
	background: #f0f9ff;
	color: #0a66c2;
	border-color: rgba(10, 102, 194, 0.15);
}
.fpbm-social-linkedin:hover {
	background: #0a66c2;
	color: #ffffff;
	box-shadow: 0 6px 18px rgba(10, 102, 194, 0.3);
}
