﻿/*using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;

namespace EasyTransfer.Content
{
	public class eazytransfer_common
{*/
	/* ================================
   EazyTransfer – Common Styles
   Used on: About, Contact, Faqs, Index, Services
   ================================ */

	/*import url('https://fonts.googleapis.com/css2?family=Syne:wght@600;800&family=DM+Sans:wght@400;500;600&display=swap');*/
	/* ── AUTOCOMPLETE ────────────────────────── */
	/*.autocomplete-results {
	position: absolute;
	background: white;
	z-index: 1000;
	width: 100%;
	border: 1px solid #ddd;
	max-height: 200px;
	overflow-y: auto;
	box-shadow: 0px 4px 6px rgba(0,0,0,0.1);
}

.autocomplete-item {
	padding: 10px;
	cursor: pointer;
	border-bottom: 1px solid #eee;
	color: #333;
}

	.autocomplete-item:hover {
		background-color: #f8f9fa;
	}

.route-field {
	position: relative;
}*/

/* ── RESPONSIVE (global) ─────────────────── */
/*@media (max-width: 991px) {
	.heading-main {
		font-size: 26px !important;
	}

	#step-1 .col-lg-6 {
		margin-bottom: 16px;
	}
}

@media (max-width: 767px) {
	.heading-main {
		font-size: 22px !important;
	}

	.de_form.de_radio .radio-img {
		flex: 0 0 50%;
		max-width: 50%;
	}

	.date-time-field {
		flex-direction: column;
		gap: 8px;
	}

		.date-time-field input,
		.date-time-field select {
			width: 100% !important;
		}

	#step-1 .col-lg-6.pt-3 {
		padding-top: 0 !important;
	}
}

@media (max-width: 480px) {
	.heading-main {
		font-size: 18px !important;
	}

	.p-4 {
		padding: 16px !important;
	}

	.radio-img label {
		font-size: 11px;
	}

	.route-box {
		padding: 8px;
	}

	#send_message {
		width: 100%;
	}
}*/

/* ── EAZYTRANSFER ABOUT PANEL ────────────── */
/*.et-about-panel {
	animation: etFadeSlide 0.7s cubic-bezier(.22,1,.36,1) both;
}

@keyframes etFadeSlide {
	from {
		opacity: 0;
		transform: translateX(32px);
	}

	to {
		opacity: 1;
		transform: translateX(0);
	}
}

.et-about-inner {
	background: linear-gradient(135deg, #111 0%, #1a1a1a 60%, #0d0d0d 100%);
	border: 1px solid rgba(245,197,24,0.18);
	border-radius: 16px;
	padding: 32px 28px 28px;
	position: relative;
	overflow: hidden;
	box-shadow: 0 8px 48px rgba(0,0,0,0.45), inset 0 1px 0 rgba(245,197,24,0.08);
}

	.et-about-inner::before {
		content: '';
		position: absolute;
		top: -60px;
		right: -60px;
		width: 180px;
		height: 180px;
		background: radial-gradient(circle, rgba(245,197,24,0.13) 0%, transparent 70%);
		pointer-events: none;
	}

	.et-about-inner::after {
		content: '';
		position: absolute;
		bottom: -40px;
		left: -40px;
		width: 140px;
		height: 140px;
		background: radial-gradient(circle, rgba(245,197,24,0.07) 0%, transparent 70%);
		pointer-events: none;
	}

.et-about-badge {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: rgba(245,197,24,0.1);
	border: 1px solid rgba(245,197,24,0.3);
	color: #f5c518;
	font-family: 'DM Sans', sans-serif;
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 1.5px;
	text-transform: uppercase;
	padding: 5px 14px;
	border-radius: 50px;
	margin-bottom: 16px;
	animation: etFadeSlide 0.6s 0.1s both;
}

.et-badge-dot {
	width: 7px;
	height: 7px;
	background: #f5c518;
	border-radius: 50%;
	display: inline-block;
	animation: etPulse 1.8s infinite;
}

@keyframes etPulse {
	0%, 100% {
		opacity: 1;
		transform: scale(1);
	}

	50% {
		opacity: 0.5;
		transform: scale(1.4);
	}
}

.et-about-heading {
	font-family: 'Syne', sans-serif;
	font-size: 22px;
	font-weight: 800;
	color: #fff;
	line-height: 1.25;
	margin-bottom: 14px;
	letter-spacing: -0.3px;
	animation: etFadeSlide 0.6s 0.15s both;
}

.et-yellow {
	color: #f5c518;
}

.et-about-desc {
	font-family: 'DM Sans', sans-serif;
	font-size: 13.5px;
	color: rgba(255,255,255,0.65);
	line-height: 1.7;
	margin-bottom: 20px;
	animation: etFadeSlide 0.6s 0.2s both;
}

.et-services-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 8px;
	margin-bottom: 22px;
	animation: etFadeSlide 0.6s 0.25s both;
}

.et-service-chip {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 6px;
	background: rgba(255,255,255,0.04);
	border: 1px solid rgba(255,255,255,0.07);
	border-radius: 10px;
	padding: 12px 8px;
	font-family: 'DM Sans', sans-serif;
	font-size: 11px;
	color: rgba(255,255,255,0.7);
	text-align: center;
	transition: all 0.25s ease;
	cursor: default;
}

	.et-service-chip:hover {
		background: rgba(245,197,24,0.1);
		border-color: rgba(245,197,24,0.35);
		color: #f5c518;
		transform: translateY(-2px);
		box-shadow: 0 4px 16px rgba(245,197,24,0.12);
	}

.et-chip-icon {
	width: 32px;
	height: 32px;
	background: rgba(245,197,24,0.12);
	border-radius: 8px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 14px;
	color: #f5c518;
	transition: background 0.25s;
}

.et-service-chip:hover .et-chip-icon {
	background: rgba(245,197,24,0.22);
}

.et-stats-row {
	display: flex;
	align-items: center;
	gap: 0;
	background: rgba(245,197,24,0.06);
	border: 1px solid rgba(245,197,24,0.15);
	border-radius: 12px;
	padding: 14px 0;
	animation: etFadeSlide 0.6s 0.3s both;
}

.et-stat {
	flex: 1;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 3px;
}

.et-stat-num {
	font-family: 'Syne', sans-serif;
	font-size: 20px;
	font-weight: 800;
	color: #f5c518;
	line-height: 1;
}

.et-stat-label {
	font-family: 'DM Sans', sans-serif;
	font-size: 10px;
	color: rgba(255,255,255,0.5);
	letter-spacing: 0.5px;
	text-transform: uppercase;
}

.et-stat-divider {
	width: 1px;
	height: 36px;
	background: rgba(245,197,24,0.2);
}

@media (max-width: 991px) {
	.et-services-grid {
		grid-template-columns: repeat(3, 1fr);
	}

	.et-about-heading {
		font-size: 19px;
	}

	.et-about-inner {
		margin-top: 20px;
	}
}

@media (max-width: 576px) {
	.et-services-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.et-about-heading {
		font-size: 17px;
	}

	.et-stat-num {
		font-size: 17px;
	}
}*/

/* ── QUOTE CARD ──────────────────────────── */
/*.et-quote-card {
	background: #fff;
	border-radius: 20px;
	padding: 28px 26px;
	box-shadow: 0 8px 40px rgba(0,0,0,0.13);
	display: flex;
	flex-direction: column;
	gap: 18px;
	width: 100%;
	animation: etCardIn 0.65s cubic-bezier(.22,1,.36,1) both;
}

@keyframes etCardIn {
	from {
		opacity: 0;
		transform: translateY(24px) scale(0.97);
	}

	to {
		opacity: 1;
		transform: translateY(0) scale(1);
	}
}

.et-quote-header {
	display: flex;
	align-items: center;
	gap: 12px;
	padding-bottom: 14px;
	border-bottom: 2px solid #f5c518;
}

.et-quote-icon {
	width: 42px;
	height: 42px;
	background: #f5c518;
	border-radius: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 18px;
	color: #111;
	flex-shrink: 0;
}

.et-quote-title {
	font-family: 'Syne', sans-serif;
	font-size: 18px;
	font-weight: 800;
	color: #111;
	line-height: 1.1;
}

.et-quote-sub {
	font-family: 'DM Sans', sans-serif;
	font-size: 12px;
	color: #888;
	margin-top: 2px;
}

.et-field-group {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.et-field-label {
	font-family: 'Syne', sans-serif;
	font-size: 15px;
	font-weight: 800;
	color: #111;
	margin: 0;
	display: flex;
	align-items: center;
	gap: 8px;
	letter-spacing: -0.2px;
}

	.et-field-label i {
		font-size: 16px;
	}

.et-input-wrap {
	position: relative;
}

.et-input-icon {
	position: absolute;
	left: 14px;
	top: 50%;
	transform: translateY(-50%);
	font-size: 16px;
	pointer-events: none;
	transition: color 0.2s;
	z-index: 1;
}

	.et-input-icon.from {
		color: #22c55e;
	}

	.et-input-icon.to {
		color: #ef4444;
	}

.et-input {
	width: 100%;
	border: 2px solid #ebebeb;
	border-radius: 12px;
	padding: 15px 14px 15px 44px;
	font-family: 'DM Sans', sans-serif;
	font-size: 15px;
	font-weight: 500;
	color: #111;
	background: #f8f8f8;
	outline: none;
	transition: all 0.25s cubic-bezier(.22,1,.36,1);
}

	.et-input:focus {
		border-color: #f5c518;
		background: #fff;
		box-shadow: 0 0 0 4px rgba(245,197,24,0.14), 0 2px 16px rgba(245,197,24,0.10);
		padding-left: 44px;
	}

.et-field-group:focus-within .et-input-icon.from {
	color: #16a34a;
}

.et-field-group:focus-within .et-input-icon.to {
	color: #dc2626;
}

.et-input::placeholder {
	color: #c0c0c0;
	font-weight: 400;
	font-size: 14px;
}

.et-field-group:focus-within .et-input {
	border-left: 3px solid #f5c518;
}

.et-add-stop {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-family: 'DM Sans', sans-serif;
	font-size: 13px;
	font-weight: 700;
	color: #444;
	cursor: pointer;
	background: #f9f9f9;
	border: 1.5px dashed #ddd;
	border-radius: 10px;
	padding: 10px 16px;
	width: 100%;
	transition: all 0.25s cubic-bezier(.22,1,.36,1);
	position: relative;
	overflow: hidden;
}

	.et-add-stop::before {
		content: '';
		position: absolute;
		inset: 0;
		background: linear-gradient(90deg, rgba(245,197,24,0.08), transparent);
		opacity: 0;
		transition: opacity 0.25s;
	}

	.et-add-stop:hover {
		color: #111;
		border-color: #f5c518;
		border-style: solid;
		background: #fffbea;
		transform: translateY(-1px);
		box-shadow: 0 4px 14px rgba(245,197,24,0.18);
	}

		.et-add-stop:hover::before {
			opacity: 1;
		}

.et-add-icon {
	width: 26px;
	height: 26px;
	border-radius: 8px;
	background: #f5c518;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 11px;
	color: #111;
	font-weight: 900;
	transition: all 0.25s;
	flex-shrink: 0;
}

.et-add-stop:hover .et-add-icon {
	background: #111;
	color: #f5c518;
	transform: rotate(90deg);
}

.et-btn-row {
	display: flex;
	gap: 10px;
	margin-top: 4px;
}

.et-btn-login {
	flex: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 13px 18px;
	border-radius: 10px;
	border: 2px solid #111;
	background: #111;
	color: #fff;
	font-family: 'Syne', sans-serif;
	font-size: 14px;
	font-weight: 700;
	text-decoration: none;
	transition: all 0.22s ease;
	cursor: pointer;
}

	.et-btn-login:hover {
		background: #333;
		border-color: #333;
		color: #f5c518;
		text-decoration: none;
		transform: translateY(-1px);
		box-shadow: 0 4px 16px rgba(0,0,0,0.18);
	}

.et-btn-quote {
	flex: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 13px 18px;
	border-radius: 10px;
	border: 2px solid #f5c518;
	background: #f5c518;
	color: #111;
	font-family: 'Syne', sans-serif;
	font-size: 14px;
	font-weight: 800;
	cursor: pointer;
	transition: all 0.22s ease;
}

	.et-btn-quote:hover {
		background: #e6b800;
		border-color: #e6b800;
		transform: translateY(-1px);
		box-shadow: 0 4px 20px rgba(245,197,24,0.4);
	}

@media (max-width: 991px) {
	.et-btn-row {
		flex-direction: column;
	}

	.et-quote-card {
		padding: 22px 18px;
	}
}*/

/* ── ROUTE BUILDER ───────────────────────── */
/*.et-route-builder {
	display: flex;
	flex-direction: column;
	gap: 0;
}

.et-route-row {
	display: flex;
	align-items: flex-start;
	gap: 14px;
	min-height: 80px;
}

.et-row-last {
	min-height: auto;
}

.et-route-left {
	display: flex;
	flex-direction: column;
	align-items: center;
	flex-shrink: 0;
	padding-top: 4px;
	width: 36px;
}

.et-dot {
	width: 36px;
	height: 36px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 16px;
	color: #fff;
	flex-shrink: 0;
	box-shadow: 0 3px 10px rgba(0,0,0,0.18);
	transition: transform 0.2s;
	z-index: 1;
}

.et-dot-green {
	background: #22c55e;
}

.et-dot-blue {
	background: #3b82f6;
	cursor: pointer;
}

.et-dot-red {
	background: #ef4444;
}

.et-add-row:hover .et-dot-blue {
	transform: scale(1.15) rotate(90deg);
	background: #2563eb;
}

.et-connector {
	flex: 1;
	width: 2px;
	min-height: 32px;
	background: repeating-linear-gradient( to bottom, #d1d5db 0px, #d1d5db 5px, transparent 5px, transparent 10px );
	margin: 4px 0;
}

.et-route-right {
	flex: 1;
	display: flex;
	flex-direction: column;
	gap: 7px;
	padding-top: 2px;
}

.et-badge {
	display: inline-flex;
	align-items: center;
	font-family: 'Syne', sans-serif;
	font-size: 11px;
	font-weight: 800;
	letter-spacing: 0.8px;
	text-transform: uppercase;
	padding: 3px 10px;
	border-radius: 20px;
	width: fit-content;
}

.et-badge-green {
	background: #22c55e;
	color: #fff;
}

.et-badge-red {
	background: #ef4444;
	color: #fff;
}

.et-route-input {
	width: 100%;
	border: 2px solid #ebebeb;
	border-radius: 12px;
	padding: 13px 14px;
	font-family: 'DM Sans', sans-serif;
	font-size: 15px;
	font-weight: 500;
	color: #111;
	background: #f8f8f8;
	outline: none;
	transition: all 0.25s cubic-bezier(.22,1,.36,1);
}

	.et-route-input:focus {
		border-color: #f5c518;
		background: #fff;
		box-shadow: 0 0 0 4px rgba(245,197,24,0.13);
		border-left: 3px solid #f5c518;
	}

	.et-route-input::placeholder {
		color: #c0c0c0;
		font-size: 14px;
		font-weight: 400;
	}

.et-add-label {
	font-family: 'DM Sans', sans-serif;
	font-size: 14px;
	font-weight: 600;
	color: #6b7280;
	cursor: pointer;
	padding-top: 7px;
	transition: color 0.2s;
}

.et-add-row:hover .et-add-label {
	color: #3b82f6;
}

.et-stop-row {
	display: flex;
	align-items: flex-start;
	gap: 14px;
	min-height: 80px;
}

	.et-stop-row .et-route-right {
		position: relative;
	}

.et-stop-input-wrap {
	position: relative;
	display: flex;
	align-items: center;
}

	.et-stop-input-wrap .et-route-input {
		padding-right: 46px;
	}

.et-stop-remove {
	position: absolute;
	right: 12px;
	top: 50%;
	transform: translateY(-50%);
	width: 26px;
	height: 26px;
	border-radius: 50%;
	background: #fee2e2;
	border: none;
	color: #ef4444;
	font-size: 13px;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.2s;
	flex-shrink: 0;
	line-height: 1;
}

	.et-stop-remove:hover {
		background: #ef4444;
		color: #fff;
		transform: translateY(-50%) scale(1.1);
	}*/

/* ── BRAND HEADER in about panel ─────────── */
/*.et-brand-header {
	display: flex;
	align-items: center;
	gap: 14px;
	margin-bottom: 4px;
}

.et-brand-logo {
	width: 52px;
	height: 52px;
	background: rgba(245,197,24,0.12);
	border: 1.5px solid rgba(245,197,24,0.3);
	border-radius: 14px;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	flex-shrink: 0;
}

.et-logo-fallback {
	width: 100%;
	height: 100%;
	align-items: center;
	justify-content: center;
	font-size: 22px;
	color: #f5c518;
}

.et-brand-info {
	display: flex;
	flex-direction: column;
	gap: 6px;
}

.et-brand-name {
	font-family: 'Syne', sans-serif;
	font-size: 20px;
	font-weight: 800;
	color: #fff;
	line-height: 1;
	letter-spacing: -0.3px;
}

.et-divider {
	height: 1px;
	background: linear-gradient(90deg, rgba(245,197,24,0.3), transparent);
	margin: 16px 0 14px;
}

.et-trust-row {
	display: flex;
	gap: 8px;
	flex-wrap: wrap;
	margin-top: 14px;
}

.et-trust-item {
	display: flex;
	align-items: center;
	gap: 6px;
	background: rgba(255,255,255,0.05);
	border: 1px solid rgba(245,197,24,0.15);
	border-radius: 8px;
	padding: 7px 12px;
	font-family: 'DM Sans', sans-serif;
	font-size: 12px;
	font-weight: 600;
	color: rgba(255,255,255,0.8);
	transition: all 0.2s;
	flex: 1;
	min-width: fit-content;
	justify-content: center;
}

	.et-trust-item i {
		color: #f5c518;
		font-size: 13px;
	}

	.et-trust-item:hover {
		background: rgba(245,197,24,0.1);
		border-color: rgba(245,197,24,0.35);
		color: #f5c518;
		transform: translateY(-1px);
	}*/

	