/* === USA PATRIOTIC THEME - STICKY FOOTER === */
:root {
	--usa-navy: #002868;
	--usa-red: #BF0A30;
	--usa-white: #FFFFFF;
	--usa-gold: #FFD700;
	--usa-navy-dark: #001a4d;
	--usa-red-dark: #8B0000;
	--usa-light-blue: #E8EEF5;
}

/* === TICKET MODAL - Global Styles === */
.lnh-ticket-modal-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 40, 104, 0.6);
	z-index: 100001;
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 15px;
	box-sizing: border-box;
}
.lnh-ticket-modal {
	background: #fff;
	border-radius: 8px;
	max-width: 480px;
	width: 100%;
	max-height: 85vh;
	overflow-y: auto;
	position: relative;
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.25);
}
.lnh-ticket-modal-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 12px 16px;
	border-bottom: 1px solid #eee;
	background: linear-gradient(135deg, var(--usa-navy) 0%, var(--usa-navy-dark) 100%);
	position: sticky;
	top: 0;
	z-index: 10;
}
.lnh-ticket-modal-title {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 15px;
	font-weight: 700;
	color: #fff;
	margin: 0;
}
.lnh-ticket-icon {
	font-size: 16px;
}
.lnh-ticket-modal-close {
	width: 26px;
	height: 26px;
	border: none;
	background: var(--usa-red);
	cursor: pointer;
	font-size: 18px;
	color: #fff;
	border-radius: 4px;
	display: flex;
	align-items: center;
	justify-content: center;
	line-height: 1;
}
.lnh-ticket-modal-body {
	padding: 12px 16px 16px;
}
.lnh-ticket-form {
	display: flex;
	flex-direction: column;
	gap: 10px;
}
.lnh-form-row {
	display: flex;
	gap: 10px;
}
.lnh-form-row .lnh-form-group {
	flex: 1;
}
.lnh-form-group {
	display: flex;
	flex-direction: column;
}
.lnh-form-input,
.lnh-form-select,
.lnh-form-textarea {
	width: 100%;
	padding: 8px 12px;
	border: 1px solid #ddd;
	border-radius: 5px;
	font-size: 13px;
	color: #333;
	background: #fff;
	box-sizing: border-box;
}
.lnh-form-input:focus,
.lnh-form-select:focus,
.lnh-form-textarea:focus {
	outline: none;
	border-color: var(--usa-navy);
}
.lnh-form-textarea {
	min-height: 60px;
	resize: vertical;
}
.lnh-form-select {
	appearance: none;
	background-image: url('data:image/svg+xml,%3Csvg xmlns=%27http://www.w3.org/2000/svg%27 width=%2712%27 height=%2712%27 viewBox=%270 0 12 12%27%3E%3Cpath fill=%27%23666%27 d=%27M6 8L1 3h10z%27/%3E%3C/svg%3E');
	background-repeat: no-repeat;
	background-position: right 12px center;
	padding-right: 32px;
	cursor: pointer;
}
.lnh-photo-section {
	margin-top: 4px;
}
.lnh-photo-label {
	font-size: 11px;
	color: #666;
	margin-bottom: 6px;
}
.lnh-photo-upload {
	display: flex;
	align-items: center;
	border: 1px solid #ddd;
	border-radius: 5px;
	overflow: hidden;
}
.lnh-photo-text {
	flex: 1;
	padding: 8px 10px;
	font-size: 12px;
	color: #999;
}
.lnh-photo-btn {
	background: var(--usa-navy);
	color: #fff;
	border: none;
	padding: 8px 12px;
	font-size: 12px;
	font-weight: 500;
	cursor: pointer;
	white-space: nowrap;
}
.lnh-photo-input {
	display: none;
}
.lnh-photo-preview {
	display: flex;
	gap: 6px;
	flex-wrap: wrap;
	margin-top: 8px;
}
.lnh-photo-item {
	position: relative;
	width: 50px;
	height: 50px;
	border-radius: 5px;
	overflow: hidden;
}
.lnh-photo-item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.lnh-photo-remove {
	position: absolute;
	top: 2px;
	right: 2px;
	width: 16px;
	height: 16px;
	background: rgba(0, 0, 0, 0.6);
	color: #fff;
	border: none;
	border-radius: 50%;
	font-size: 10px;
	cursor: pointer;
	line-height: 1;
}
.lnh-form-actions {
	display: flex;
	gap: 10px;
	margin-top: 6px;
}
.lnh-btn-cancel,
.lnh-btn-submit {
	flex: 1;
	padding: 10px 16px;
	font-size: 13px;
	font-weight: 600;
	border: none;
	border-radius: 5px;
	cursor: pointer;
}
.lnh-btn-cancel {
	background: #9ca3af;
	color: #fff;
}
.lnh-btn-submit {
	background: var(--usa-red);
	color: #fff;
}
.lnh-form-response {
	margin-top: 12px;
	padding: 10px 12px;
	border-radius: 5px;
	font-size: 12px;
	display: none;
}
.lnh-form-response.success {
	display: block;
	background: #d1fae5;
	color: #065f46;
	border: 1px solid #a7f3d0;
}
.lnh-form-response.error {
	display: block;
	background: #fee2e2;
	color: #991b1b;
	border: 1px solid #fecaca;
}
.lnh-btn-submit.loading {
	opacity: 0.7;
	pointer-events: none;
}

/* Success Modal - Global */
.lnh-success-modal-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 40, 104, 0.6);
	z-index: 100002;
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 15px;
	box-sizing: border-box;
}
.lnh-success-modal {
	background: #fff;
	border-radius: 12px;
	padding: 30px 25px;
	text-align: center;
	max-width: 340px;
	width: 100%;
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
	animation: lnhSuccessPop 0.4s ease-out;
}
@keyframes lnhSuccessPop {
	0% { transform: scale(0.8); opacity: 0; }
	100% { transform: scale(1); opacity: 1; }
}
.lnh-success-icon {
	width: 60px;
	height: 60px;
	background: linear-gradient(135deg, #10b981, #059669);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 16px;
	font-size: 30px;
	color: #fff;
}
.lnh-success-title {
	font-size: 17px;
	font-weight: 700;
	color: #1f2937;
	margin: 0 0 10px;
}
.lnh-success-message {
	font-size: 13px;
	color: #6b7280;
	line-height: 1.5;
	margin: 0 0 20px;
}
.lnh-success-loader {
	width: 100%;
	height: 3px;
	background: #e5e7eb;
	border-radius: 2px;
	overflow: hidden;
}
.lnh-success-loader::after {
	content: '';
	display: block;
	width: 100%;
	height: 100%;
	background: linear-gradient(135deg, var(--usa-navy), var(--usa-red));
	animation: lnhLoadingBar 3s linear forwards;
}
@keyframes lnhLoadingBar {
	0% { width: 100%; }
	100% { width: 0%; }
}

/* Mobile compact adjustments */
@media (max-width: 480px) {
	.lnh-form-row {
		flex-direction: column;
		gap: 10px;
	}
	.lnh-ticket-modal-body {
		padding: 10px 12px 14px;
	}
	.lnh-form-actions {
		flex-direction: column-reverse;
		gap: 8px;
	}
	.lnh-ticket-modal {
		max-height: 90vh;
	}
}

/* Animation */
@keyframes lnh-spin {
	from { transform: rotate(0deg); }
	to { transform: rotate(360deg); }
}
