/* alibely Global Modern UI */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');
@import url('https://cdn.jsdelivr.net/npm/remixicon@3.5.0/fonts/remixicon.css');

/* Brand tokens - updated to warm oranges */
:root {
	/* Modern Indigo Theme */
	--brand-1: #6366f1;
	/* Indigo 500 */
	--brand-2: #4f46e5;
	/* Indigo 600 */
	--brand-3: #ec4899;
	/* Pink 500 */
	--accent-1: #8b5cf6;
	/* Violet 500 */

	--ink-color: #1e293b;
	/* Slate 800 */
	--muted-color: #64748b;
	/* Slate 500 */
	--light-color: #ffffff;

	--surface-1: #ffffff;
	--surface-2: #f8fafc;
	/* Slate 50 */
	--surface-3: #f1f5f9;
	/* Slate 100 */

	--shadow-soft: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
	--shadow-strong: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
	--shadow-glow: 0 0 20px rgba(99, 102, 241, 0.3);

	--radius-sm: 8px;
	--radius-md: 12px;
	--radius-lg: 16px;
	--radius-xl: 24px;

	--gradient-primary: linear-gradient(135deg, var(--brand-1), var(--accent-1));
	--gradient-accent: linear-gradient(135deg, var(--brand-3), var(--brand-1));
	--gradient-bg: radial-gradient(circle at top right, #e0e7ff, #f3f4f6, #ffffff);
}


/* Premium app bar */
.appbar {
	position: sticky;
	top: 0;
	z-index: 1030;
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.75), rgba(255, 255, 255, 0.55));
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	border-bottom: 1px solid rgba(255, 255, 255, 0.6);
	box-shadow: var(--shadow-soft);
}

.navbar-dark .navbar-nav .nav-link {
	color: #1f2a36 !important;
}

/* Location pill */
.location-pill {
	display: inline-flex;
	align-items: center;
	gap: .5rem;
	padding: .375rem .75rem;
	border-radius: 999px;
	background: rgba(255, 255, 255, .55);
	color: #3f5568;
	border: 1px solid rgba(0, 0, 0, .05);
}

.location-pill:hover {
	background: rgba(255, 255, 255, .7);
	color: #1f2a36;
}

/* Buttons */
.btn {
	border-radius: var(--radius-md);
	font-weight: 500;
	letter-spacing: 0.01em;
	padding: 0.6rem 1.2rem;
	transition: all 0.2s ease;
}

.btn-primary {
	background: var(--gradient-primary);
	border: 0;
	color: #ffffff;
	box-shadow: var(--shadow-glow);
}

.btn-primary:hover {
	filter: brightness(1.03);
	transform: translateY(-1px);
}

.btn-outline-primary {
	border-color: rgba(0, 0, 0, 0.1);
	color: var(--ink-color);
}

/* Cards */
.card {
	border: 1px solid rgba(0, 0, 0, 0.05);
	border-radius: var(--radius-card);
	box-shadow: var(--shadow-soft);
	background: rgba(255, 255, 255, 0.9);
}

.card:hover {
	box-shadow: var(--shadow-strong);
}

/* Forms */
.form-control,
.form-select {
	border-radius: var(--radius-md);
	border: 1px solid #e2e8f0;
	padding: 0.75rem 1rem;
	background-color: var(--surface-2);
	transition: all 0.2s ease;
}

.form-control:focus,
.form-select:focus {
	border-color: var(--brand-1);
	box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.15);
	background-color: #fff;
}

.form-label {
	font-weight: 600;
	color: var(--ink-color);
}

/* Tables */
.table {
	border-radius: 10px;
	overflow: hidden;
}

.table thead th {
	background: rgba(255, 255, 255, 0.9);
	border: none;
	font-weight: 600;
	color: var(--ink-color);
}

.table tbody tr:hover {
	background: rgba(247, 151, 30, 0.06);
}

/* Alerts */
.alert {
	border: none;
	border-radius: 12px;
	padding: 1rem 1.25rem;
}

.alert-danger {
	background: rgba(220, 53, 69, 0.08);
	color: #b02a37;
	border-left: 4px solid #dc3545;
}

.alert-success {
	background: rgba(25, 135, 84, 0.08);
	color: #157347;
	border-left: 4px solid #198754;
}

.alert-info {
	background: rgba(13, 110, 253, 0.08);
	color: #0a58ca;
	border-left: 4px solid #0d6efd;
}

/* Utility */
.text-gradient {
	background: var(--gradient-primary);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.shadow-soft {
	box-shadow: var(--shadow-soft) !important;
}

.border-soft {
	border: 1px solid rgba(0, 0, 0, 0.05) !important;
}

/* Scrollbars */
::-webkit-scrollbar {
	width: 8px;
}

::-webkit-scrollbar-track {
	background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
	background: var(--brand-1);
	border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
	background: var(--brand-2);
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
	* {
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: 0.01ms !important;
	}

	.card:hover {
		box-shadow: var(--shadow-soft);
	}
}

/* Shared glass hero banner utilities */
.page-hero-wrap {
	position: relative;
	overflow: hidden;
	padding: 16px 0;
}

.bg-bubble {
	position: absolute;
	width: 480px;
	height: 480px;
	border-radius: 50%;
	filter: blur(80px);
	opacity: .45;
	pointer-events: none;
	z-index: 0;
}

.bg-bubble.orange {
	background: #ffd9a3;
	top: -140px;
	left: -140px;
}

.bg-bubble.sun {
	background: #ffefc2;
	bottom: -160px;
	right: -160px;
}

.glass-hero {
	position: relative;
	z-index: 1;
}

.glass-hero .shell {
	border-radius: 16px;
	background: linear-gradient(180deg, rgba(255, 255, 255, .72), rgba(255, 255, 255, .56));
	backdrop-filter: blur(14px);
	-webkit-backdrop-filter: blur(14px);
	box-shadow: 0 20px 40px rgba(0, 0, 0, .10);
	padding: 22px 24px;
}

/* Footer logo sizing */
.footer-logo {
	width: 80px;
	height: auto;
	display: block;
	border-radius: 12px;
	background: linear-gradient(180deg, rgba(255, 255, 255, .10), rgba(255, 255, 255, .04));
	border: 1px solid rgba(255, 255, 255, .12);
	box-shadow: 0 8px 24px rgba(0, 0, 0, .28);
	padding: 6px;
	transition: transform var(--duration-med, 260ms) var(--ease-standard, cubic-bezier(.2, .8, .2, 1)), box-shadow var(--duration-med, 260ms) var(--ease-standard, cubic-bezier(.2, .8, .2, 1));
}

.footer-logo:hover {
	transform: translateY(-2px);
	box-shadow: 0 14px 34px rgba(0, 0, 0, .34);
}

@media (max-width: 576px) {
	.footer-logo {
		width: 65px;
		padding: 5px;
	}
}

/* Header logo styling (glass card look) */
.navbar .logo-img {
	height: 40px;
	width: auto;
	border-radius: 10px;
	background: linear-gradient(180deg, rgba(255, 255, 255, .12), rgba(255, 255, 255, .06));
	border: 1px solid rgba(255, 255, 255, .16);
	box-shadow: 0 6px 18px rgba(0, 0, 0, .25);
	padding: 6px;
	transition: transform var(--duration-med, 260ms) var(--ease-standard, cubic-bezier(.2, .8, .2, 1)), box-shadow var(--duration-med, 260ms) var(--ease-standard, cubic-bezier(.2, .8, .2, 1));
}

.navbar .logo-img:hover {
	transform: translateY(-1px) scale(1.02);
	box-shadow: 0 10px 26px rgba(0, 0, 0, .30);
}

@media (max-width: 576px) {
	.navbar .logo-img {
		height: 34px;
		padding: 5px;
	}
}

/* ---------- Responsive tweaks for hero & sections ---------- */
@media (max-width: 991.98px) {
	.hero-section .display-4 {
		font-size: 2rem;
	}

	.hero-section .lead {
		font-size: 1rem;
	}

	.hero-section .btn-lg {
		width: 100%;
		margin-bottom: 0.75rem;
	}

	.hero-section .d-flex.gap-3 {
		flex-direction: column;
	}
}

@media (max-width: 767.98px) {
	.page-hero-wrap {
		padding: 12px 0;
	}

	.bg-bubble {
		width: 320px;
		height: 320px;
		filter: blur(60px);
	}

	.display-5 {
		font-size: 1.75rem;
	}

	.lead {
		font-size: 0.95rem;
	}

	.card.service-card {
		margin-bottom: 1rem;
	}
}

/* New Design System Utilities */
.glass-panel {
	background: rgba(255, 255, 255, 0.7);
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
	border: 1px solid rgba(255, 255, 255, 0.5);
	box-shadow: var(--shadow-soft);
}

.hero-section {
	background: var(--gradient-bg);
	min-height: 85vh;
	display: flex;
	align-items: center;
	position: relative;
	overflow: hidden;
}

.hero-badge {
	display: inline-flex;
	align-items: center;
	padding: 6px 16px;
	background: rgba(99, 102, 241, 0.1);
	color: var(--brand-1);
	border-radius: 999px;
	font-weight: 500;
	font-size: 0.9rem;
	margin-bottom: 1.5rem;
}

.hero-title {
	font-size: 3.5rem;
	font-weight: 800;
	line-height: 1.1;
	letter-spacing: -0.02em;
	color: var(--ink-color);
	margin-bottom: 1.5rem;
}

.booking-card {
	background: #ffffff;
	border-radius: var(--radius-xl);
	box-shadow: var(--shadow-strong);
	padding: 2rem;
	border: 1px solid rgba(0, 0, 0, 0.04);
}

.service-card {
	background: #fff;
	border-radius: var(--radius-lg);
	padding: 2rem;
	transition: all 0.3s ease;
	border: 1px solid #f1f5f9;
	height: 100%;
}

.service-card:hover {
	transform: translateY(-5px);
	box-shadow: var(--shadow-strong);
	border-color: var(--brand-1);
}

.service-icon-box {
	width: 60px;
	height: 60px;
	border-radius: var(--radius-md);
	background: var(--surface-3);
	color: var(--brand-1);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.5rem;
	margin-bottom: 1.5rem;
	transition: all 0.3s ease;
}

.service-card:hover .service-icon-box {
	background: var(--gradient-primary);
	color: #fff;
}

/* Floating Shapes for Background */
.shape-blob {
	position: absolute;
	filter: blur(80px);
	z-index: 0;
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	border-bottom: 1px solid rgba(255, 255, 255, 0.6);
	box-shadow: var(--shadow-soft);
}

.navbar-dark .navbar-nav .nav-link {
	color: #1f2a36 !important;
}

/* Location pill */
.location-pill {
	display: inline-flex;
	align-items: center;
	gap: .5rem;
	padding: .375rem .75rem;
	border-radius: 999px;
	background: rgba(255, 255, 255, .55);
	color: #3f5568;
	border: 1px solid rgba(0, 0, 0, .05);
}

.location-pill:hover {
	background: rgba(255, 255, 255, .7);
	color: #1f2a36;
}

/* Buttons */
.btn {
	border-radius: var(--radius-md);
	font-weight: 500;
	letter-spacing: 0.01em;
	padding: 0.6rem 1.2rem;
	transition: all 0.2s ease;
}

.btn-primary {
	background: var(--gradient-primary);
	border: 0;
	color: #ffffff;
	box-shadow: var(--shadow-glow);
}

.btn-primary:hover {
	filter: brightness(1.03);
	transform: translateY(-1px);
}

.btn-outline-primary {
	border-color: rgba(0, 0, 0, 0.1);
	color: var(--ink-color);
}

/* Cards */
.card {
	border: 1px solid rgba(0, 0, 0, 0.05);
	border-radius: var(--radius-card);
	box-shadow: var(--shadow-soft);
	background: rgba(255, 255, 255, 0.9);
}

.card:hover {
	box-shadow: var(--shadow-strong);
}

/* Forms */
.form-control,
.form-select {
	border-radius: var(--radius-md);
	border: 1px solid #e2e8f0;
	padding: 0.75rem 1rem;
	background-color: var(--surface-2);
	transition: all 0.2s ease;
}

.form-control:focus,
.form-select:focus {
	border-color: var(--brand-1);
	box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.15);
	background-color: #fff;
}

.form-label {
	font-weight: 600;
	color: var(--ink-color);
}

/* Tables */
.table {
	border-radius: 10px;
	overflow: hidden;
}

.table thead th {
	background: rgba(255, 255, 255, 0.9);
	border: none;
	font-weight: 600;
	color: var(--ink-color);
}

.table tbody tr:hover {
	background: rgba(247, 151, 30, 0.06);
}

/* Alerts */
.alert {
	border: none;
	border-radius: 12px;
	padding: 1rem 1.25rem;
}

.alert-danger {
	background: rgba(220, 53, 69, 0.08);
	color: #b02a37;
	border-left: 4px solid #dc3545;
}

.alert-success {
	background: rgba(25, 135, 84, 0.08);
	color: #157347;
	border-left: 4px solid #198754;
}

.alert-info {
	background: rgba(13, 110, 253, 0.08);
	color: #0a58ca;
	border-left: 4px solid #0d6efd;
}

/* Utility */
.text-gradient {
	background: var(--gradient-primary);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.shadow-soft {
	box-shadow: var(--shadow-soft) !important;
}

.border-soft {
	border: 1px solid rgba(0, 0, 0, 0.05) !important;
}

/* Scrollbars */
::-webkit-scrollbar {
	width: 8px;
}

::-webkit-scrollbar-track {
	background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
	background: var(--brand-1);
	border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
	background: var(--brand-2);
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
	* {
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: 0.01ms !important;
	}

	.card:hover {
		box-shadow: var(--shadow-soft);
	}
}

/* Shared glass hero banner utilities */
.page-hero-wrap {
	position: relative;
	overflow: hidden;
	padding: 16px 0;
}

.bg-bubble {
	position: absolute;
	width: 480px;
	height: 480px;
	border-radius: 50%;
	filter: blur(80px);
	opacity: .45;
	pointer-events: none;
	z-index: 0;
}

.bg-bubble.orange {
	background: #ffd9a3;
	top: -140px;
	left: -140px;
}

.bg-bubble.sun {
	background: #ffefc2;
	bottom: -160px;
	right: -160px;
}

.glass-hero {
	position: relative;
	z-index: 1;
}

.glass-hero .shell {
	border-radius: 16px;
	background: linear-gradient(180deg, rgba(255, 255, 255, .72), rgba(255, 255, 255, .56));
	backdrop-filter: blur(14px);
	-webkit-backdrop-filter: blur(14px);
	box-shadow: 0 20px 40px rgba(0, 0, 0, .10);
	padding: 22px 24px;
}

/* Footer logo sizing */
.footer-logo {
	width: 80px;
	height: auto;
	display: block;
	border-radius: 12px;
	background: linear-gradient(180deg, rgba(255, 255, 255, .10), rgba(255, 255, 255, .04));
	border: 1px solid rgba(255, 255, 255, .12);
	box-shadow: 0 8px 24px rgba(0, 0, 0, .28);
	padding: 6px;
	transition: transform var(--duration-med, 260ms) var(--ease-standard, cubic-bezier(.2, .8, .2, 1)), box-shadow var(--duration-med, 260ms) var(--ease-standard, cubic-bezier(.2, .8, .2, 1));
}

.footer-logo:hover {
	transform: translateY(-2px);
	box-shadow: 0 14px 34px rgba(0, 0, 0, .34);
}

@media (max-width: 576px) {
	.footer-logo {
		width: 65px;
		padding: 5px;
	}
}

/* Header logo styling (glass card look) */
.navbar .logo-img {
	height: 40px;
	width: auto;
	border-radius: 10px;
	background: linear-gradient(180deg, rgba(255, 255, 255, .12), rgba(255, 255, 255, .06));
	border: 1px solid rgba(255, 255, 255, .16);
	box-shadow: 0 6px 18px rgba(0, 0, 0, .25);
	padding: 6px;
	transition: transform var(--duration-med, 260ms) var(--ease-standard, cubic-bezier(.2, .8, .2, 1)), box-shadow var(--duration-med, 260ms) var(--ease-standard, cubic-bezier(.2, .8, .2, 1));
}

.navbar .logo-img:hover {
	transform: translateY(-1px) scale(1.02);
	box-shadow: 0 10px 26px rgba(0, 0, 0, .30);
}

@media (max-width: 576px) {
	.navbar .logo-img {
		height: 34px;
		padding: 5px;
	}
}

/* ---------- Responsive tweaks for hero & sections ---------- */
@media (max-width: 991.98px) {
	.hero-section .display-4 {
		font-size: 2rem;
	}

	.hero-section .lead {
		font-size: 1rem;
	}

	.hero-section .btn-lg {
		width: 100%;
		margin-bottom: 0.75rem;
	}

	.hero-section .d-flex.gap-3 {
		flex-direction: column;
	}
}

@media (max-width: 767.98px) {
	.page-hero-wrap {
		padding: 12px 0;
	}

	.bg-bubble {
		width: 320px;
		height: 320px;
		filter: blur(60px);
	}

	.display-5 {
		font-size: 1.75rem;
	}

	.lead {
		font-size: 0.95rem;
	}

	.card.service-card {
		margin-bottom: 1rem;
	}
}

/* New Design System Utilities */
.glass-panel {
	background: rgba(255, 255, 255, 0.7);
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
	border: 1px solid rgba(255, 255, 255, 0.5);
	box-shadow: var(--shadow-soft);
}

.hero-section {
	background: var(--gradient-bg);
	min-height: 85vh;
	display: flex;
	align-items: center;
	position: relative;
	overflow: hidden;
}

.hero-badge {
	display: inline-flex;
	align-items: center;
	padding: 6px 16px;
	background: rgba(99, 102, 241, 0.1);
	color: var(--brand-1);
	border-radius: 999px;
	font-weight: 500;
	font-size: 0.9rem;
	margin-bottom: 1.5rem;
}

.hero-title {
	font-size: 3.5rem;
	font-weight: 800;
	line-height: 1.1;
	letter-spacing: -0.02em;
	color: var(--ink-color);
	margin-bottom: 1.5rem;
}

.booking-card {
	background: #ffffff;
	border-radius: var(--radius-xl);
	box-shadow: var(--shadow-strong);
	padding: 2rem;
	border: 1px solid rgba(0, 0, 0, 0.04);
}

.service-card {
	background: #fff;
	border-radius: var(--radius-lg);
	padding: 2rem;
	transition: all 0.3s ease;
	border: 1px solid #f1f5f9;
	height: 100%;
}

.service-card:hover {
	transform: translateY(-5px);
	box-shadow: var(--shadow-strong);
	border-color: var(--brand-1);
}

.service-icon-box {
	width: 60px;
	height: 60px;
	border-radius: var(--radius-md);
	background: var(--surface-3);
	color: var(--brand-1);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.5rem;
	margin-bottom: 1.5rem;
	transition: all 0.3s ease;
}

.service-card:hover .service-icon-box {
	background: var(--gradient-primary);
	color: #fff;
}

/* Floating Shapes for Background */
.shape-blob {
	position: absolute;
	filter: blur(80px);
	z-index: 0;
	opacity: 0.6;
}

.shape-1 {
	top: -10%;
	right: -5%;
	width: 500px;
	height: 500px;
	background: #e0e7ff;
	border-radius: 50%;
}

.shape-2 {
	bottom: -10%;
	left: -10%;
	width: 600px;
	height: 600px;
	background: #fce7f3;
	border-radius: 50%;
}

/* ============================================
   COMPREHENSIVE MOBILE RESPONSIVE STYLES
   ============================================ */

/* Base Mobile Styles (up to 576px) */
@media (max-width: 575.98px) {

	/* Typography */
	.hero-title {
		font-size: 2rem !important;
		line-height: 1.2;
		margin-bottom: 1rem;
	}

	.display-4,
	.display-5,
	.display-6 {
		font-size: 1.75rem !important;
	}

	.lead {
		font-size: 0.95rem !important;
	}

	/* Hero Section */
	.hero-section {
		min-height: auto;
		padding: 2rem 0;
	}

	.hero-section .container {
		padding: 0 1rem;
	}

	.booking-card {
		padding: 1.5rem 1rem;
		margin-top: 1.5rem;
	}

	/* Buttons */
	.btn-lg {
		padding: 0.75rem 1.5rem;
		font-size: 1rem;
	}

	.btn {
		width: 100%;
		margin-bottom: 0.5rem;
	}

	.d-flex.gap-3 {
		flex-direction: column;
		gap: 0.75rem !important;
	}

	/* Cards */
	.card {
		margin-bottom: 1rem;
	}

	.service-card {
		padding: 1.5rem 1rem;
	}

	.service-icon-box {
		width: 50px;
		height: 50px;
		overflow-x: auto;
		-webkit-overflow-scrolling: touch;
	}

	.table {
		font-size: 0.875rem;
		min-width: 600px;
	}

	.table th,
	.table td {
		padding: 0.5rem 0.375rem;
		white-space: nowrap;
	}

	/* Navigation */
	.navbar {
		padding: 0.75rem 0;
	}
}

/* New Design System Utilities */
.glass-panel {
	background: rgba(255, 255, 255, 0.7);
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
	border: 1px solid rgba(255, 255, 255, 0.5);
	box-shadow: var(--shadow-soft);
}

.hero-section {
	background: var(--gradient-bg);
	min-height: 85vh;
	display: flex;
	align-items: center;
	position: relative;
	overflow: hidden;
}

.hero-badge {
	display: inline-flex;
	align-items: center;
	padding: 6px 16px;
	background: rgba(99, 102, 241, 0.1);
	color: var(--brand-1);
	border-radius: 999px;
	font-weight: 500;
	font-size: 0.9rem;
	margin-bottom: 1.5rem;
}

.hero-title {
	font-size: 3.5rem;
	font-weight: 800;
	line-height: 1.1;
	letter-spacing: -0.02em;
	color: var(--ink-color);
	margin-bottom: 1.5rem;
}

.booking-card {
	background: #ffffff;
	border-radius: var(--radius-xl);
	box-shadow: var(--shadow-strong);
	padding: 2rem;
	border: 1px solid rgba(0, 0, 0, 0.04);
}

.service-card {
	background: #fff;
	border-radius: var(--radius-lg);
	padding: 2rem;
	transition: all 0.3s ease;
	border: 1px solid #f1f5f9;
	height: 100%;
}

.service-card:hover {
	transform: translateY(-5px);
	box-shadow: var(--shadow-strong);
	border-color: var(--brand-1);
}

.service-icon-box {
	width: 60px;
	height: 60px;
	border-radius: var(--radius-md);
	background: var(--surface-3);
	color: var(--brand-1);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.5rem;
	margin-bottom: 1.5rem;
	transition: all 0.3s ease;
}

.service-card:hover .service-icon-box {
	background: var(--gradient-primary);
	color: #fff;
}

/* Floating Shapes for Background */
.shape-blob {
	position: absolute;
	filter: blur(80px);
	z-index: 0;
	opacity: 0.6;
}

.shape-1 {
	top: -10%;
	right: -5%;
	width: 500px;
	height: 500px;
	background: #e0e7ff;
	border-radius: 50%;
}

.shape-2 {
	bottom: -10%;
	left: -10%;
	width: 600px;
	height: 600px;
	background: #fce7f3;
	border-radius: 50%;
}

/* ============================================
   COMPREHENSIVE MOBILE RESPONSIVE STYLES
   ============================================ */

/* Base Mobile Styles (up to 576px) */
@media (max-width: 575.98px) {

	/* Typography */
	.hero-title {
		font-size: 2rem !important;
		line-height: 1.2;
		margin-bottom: 1rem;
	}

	.display-4,
	.display-5,
	.display-6 {
		font-size: 1.75rem !important;
	}

	.lead {
		font-size: 0.95rem !important;
	}

	/* Hero Section */
	.hero-section {
		min-height: auto;
		padding: 2rem 0;
	}

	.hero-section .container {
		padding: 0 1rem;
	}

	.booking-card {
		padding: 1.5rem 1rem;
		margin-top: 1.5rem;
	}

	/* Buttons */
	.btn-lg {
		padding: 0.75rem 1.5rem;
		font-size: 1rem;
	}

	.btn {
		width: 100%;
		margin-bottom: 0.5rem;
	}

	.d-flex.gap-3 {
		flex-direction: column;
		gap: 0.75rem !important;
	}

	/* Cards */
	.card {
		margin-bottom: 1rem;
	}

	.service-card {
		padding: 1.5rem 1rem;
	}

	.service-icon-box {
		width: 50px;
		height: 50px;
		overflow-x: auto;
		-webkit-overflow-scrolling: touch;
	}

	.table {
		font-size: 0.875rem;
		min-width: 600px;
	}

	.table th,
	.table td {
		padding: 0.5rem 0.375rem;
		white-space: nowrap;
	}

	/* Navigation */
	.navbar {
		padding: 0.75rem 0;
	}

	.navbar-brand img {
		height: 32px !important;
	}

	.navbar-nav {
		margin-top: 1rem;
	}

	.navbar-nav .nav-link {
		padding: 0.75rem 1rem !important;
		font-size: 0.95rem;
	}

	.dropdown-menu {
		width: 100%;
		margin-top: 0.5rem;
	}

	/* Container padding */
	.container {
		padding-left: 1rem;
		padding-right: 1rem;
	}

	/* Sections */
	section {
		padding: 2rem 0 !important;
	}

	.py-5 {
		padding-top: 2rem !important;
		padding-bottom: 2rem !important;
	}

	/* Grid adjustments */
	.row {
		margin-left: -0.5rem;
		margin-right: -0.5rem;
	}

	.row>* {
		padding-left: 0.5rem;
		padding-right: 0.5rem;
	}

	/* Stats cards */
	.quick-stats,
	.stat-grid {
		grid-template-columns: 1fr !important;
		gap: 1rem !important;
	}

	.stat-card {
		padding: 1.25rem;
	}

	.stat-card .stat-value {
		font-size: 1.75rem;
	}

	/* Glass banner */
	.glass-banner {
		padding: 1.25rem !important;
		flex-direction: column;
		align-items: flex-start !important;
	}

	.glass-banner .title {
		font-size: 1.25rem !important;
		margin-bottom: 0.5rem;
	}

	/* Profile cards */
	.profile-card {
		padding: 1.25rem;
	}

	.profile-card img {
		width: 80px;
		height: 80px;
	}

	/* Dashboard specific */
	.dash-wrap {
		padding: 1rem 0.75rem !important;
	}

	/* Booking form adjustments */
	.input-group {
		flex-wrap: nowrap;
	}

	.input-group-text {
		padding: 0.625rem 0.75rem;
		font-size: 0.875rem;
	}

	/* Service cards grid */
	.col-md-6,
	.col-lg-4,
	.col-xl-3 {
		margin-bottom: 1rem;
	}

	/* Footer */
	footer {
		padding: 2rem 0 1rem !important;
		text-align: center;
	}

	footer .row>div {
		margin-bottom: 1.5rem;
	}

	/* Badges */
	.badge {
		font-size: 0.75rem;
		padding: 0.375rem 0.625rem;
	}

	/* Alerts */
	.alert {
		padding: 0.875rem 1rem;
		font-size: 0.9rem;
	}

	/* Modal adjustments */
	.modal-dialog {
		margin: 0.5rem;
	}

	.modal-content {
		border-radius: 0.75rem;
	}

	/* Image adjustments */
	img {
		max-width: 100%;
		height: auto;
	}

	/* Mobile Grid for Services */
	#services .row {
		--bs-gutter-x: 0.5rem;
		--bs-gutter-y: 0.5rem;
	}

	.service-card {
		padding: 1rem 0.5rem !important;
		text-align: center;
		border: none !important;
		background: transparent !important;
		box-shadow: none !important;
		height: auto !important;
	}

	.service-card:hover {
		transform: none !important;
	}

	.service-icon-box {
		width: 50px !important;
		height: 50px !important;
		margin: 0 auto 0.75rem !important;
		font-size: 1.25rem !important;
		background: #f8fafc !important;
		border-radius: 12px !important;
	}

	.service-card h3 {
		font-size: 0.85rem !important;
		margin-bottom: 0 !important;
		font-weight: 500 !important;
	}

	.service-card p,
	.service-card span {
		display: none !important;
	}
}

.table-card-view tr {
	border: 1px solid var(--border);
	border-radius: 8px;
	margin-bottom: 1rem;
	padding: 1rem;
	background: #fff;
}

.table-card-view td {
	border: none;
	padding: 0.5rem 0;
	text-align: left;
}

.table-card-view td:before {
	content: attr(data-label) ": ";
	font-weight: 600;
	color: var(--ink-color);
	margin-right: 0.5rem;
}

/* Landscape orientation adjustments */
@media (max-width: 991.98px) and (orientation: landscape) {
	.hero-section {
		min-height: auto;
		padding: 1.5rem 0;
	}

	.booking-card {
		margin-top: 1rem;
	}
}

/* Touch device optimizations */
@media (hover: none) and (pointer: coarse) {

	/* Larger touch targets */
	.btn {
		min-height: 44px;
		min-width: 44px;
	}

	.nav-link {
		min-height: 44px;
		display: flex;
		align-items: center;
	}

	.form-control,
	.form-select {
		min-height: 44px;
	}

	/* Remove hover effects on touch devices */
	.card:hover {
		transform: none;
	}

	.btn:hover {
		transform: none;
	}
}

/* Print styles */
@media print {

	.navbar,
	footer,
	.btn,
	.dropdown {
		display: none !important;
	}

	body {
		background: white;
		color: black;
	}
}
/* FIX: Force Desktop Layout on Large Screens */
@media (min-width: 992px) {
    body, html {
        width: 100%;
        overflow-x: hidden;
    }
    .container {
        max-width: 1320px !important;
        margin-left: auto !important;
        margin-right: auto !important;
        padding-left: 1.5rem !important;
        padding-right: 1.5rem !important;
    }
    .hero-section .d-flex.gap-3 {
        flex-direction: row !important;
    }
    .hero-section .btn-lg {
        width: auto !important;
        margin-bottom: 0 !important;
    }
    .service-card {
        height: 100% !important;
    }
}

/* Mobile Responsiveness Improvements */

/* Small devices (phones, less than 576px) */
@media (max-width: 575.98px) {
    .container {
        padding-left: 15px;
        padding-right: 15px;
    }
    
    .hero-title {
        font-size: 2.2rem;
        line-height: 1.2;
    }
    
    .hero-section {
        min-height: auto;
        padding-top: 5rem;
        padding-bottom: 3rem;
    }

    .hero-section .lead {
        font-size: 1rem !important;
    }
    
    .service-card {
        padding: 1rem !important;
    }
    
    .service-card h3 {
        font-size: 0.9rem;
    }
    
    .service-card img {
        height: 60px !important;
        width: 60px !important;
    }
    
    .booking-card {
        padding: 1.25rem;
        margin-top: 2rem;
    }
    
    /* Ensure ride options are scrollable horizontally if needed, or stack nicely */
    .row.g-4 {
        --bs-gutter-x: 1rem;
        --bs-gutter-y: 1rem;
    }

    .hero-badge {
        font-size: 0.8rem;
        padding: 4px 12px;
    }
}

/* Very small devices (phones, less than 360px) */
@media (max-width: 359.98px) {
    .hero-title {
        font-size: 1.8rem;
    }
    
    .btn-lg {
        padding: 0.5rem 1rem;
        font-size: 0.95rem;
    }
    
    .service-card img {
        height: 50px !important;
        width: 50px !important;
    }
}
