/* ===== SEOMARKET24 - PREMIUM DESIGN ===== */

/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&family=Space+Grotesk:wght@400;500;600;700&display=swap');

/* ===== CSS VARIABLES ===== */
:root {
	--primary: #6366f1;
	--primary-dark: #4f46e5;
	--primary-light: #818cf8;
	--primary-glow: rgba(99, 102, 241, 0.3);
	--accent: #22d3ee;
	--accent-dark: #06b6d4;
	--gradient-1: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	--gradient-2: linear-gradient(135deg, #6366f1 0%, #22d3ee 100%);
	--gradient-3: linear-gradient(180deg, #0f0f23 0%, #1a1a3e 100%);
	--dark: #0f0f23;
	--dark-secondary: #1a1a3e;
	--dark-card: #252547;
	--gray-100: #f8fafc;
	--gray-200: #e2e8f0;
	--gray-300: #cbd5e1;
	--gray-400: #94a3b8;
	--gray-500: #64748b;
	--white: #ffffff;
	--success: #10b981;
	--danger: #f43f5e;
	--warning: #fbbf24;
	--radius: 16px;
	--radius-lg: 24px;
	--radius-full: 9999px;
	--shadow-glow: 0 0 40px rgba(99, 102, 241, 0.15);
	--shadow-card: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
	--transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

body {
	font-family: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
	color: var(--dark);
	line-height: 1.7;
	background: var(--gray-100);
	overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
	font-family: 'Space Grotesk', sans-serif;
	font-weight: 700;
	letter-spacing: -0.02em;
}

/* ===== NAVBAR ===== */
.navbar {
	padding: 15px 0;
	background: rgba(255, 255, 255, 0.98) !important;
	backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20px);
	border-bottom: 1px solid rgba(99, 102, 241, 0.1);
	position: sticky;
	top: 0;
	z-index: 1000;
}

.navbar > .container,
.navbar > .container-fluid {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
}

.navbar-brand {
	font-family: 'Space Grotesk', sans-serif;
	font-weight: 800;
	font-size: 1.5rem;
	background: var(--gradient-2);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	text-decoration: none;
}

.navbar-nav {
	display: flex;
	flex-direction: row;
	align-items: center;
	list-style: none;
	margin: 0;
	padding: 0;
	gap: 5px;
}

.navbar-toggler {
	display: none;
	border: none;
	background: transparent;
	padding: 10px;
	cursor: pointer;
}

.navbar-collapse {
	display: flex;
	align-items: center;
}

.nav-item {
	list-style: none;
}

.nav-link {
	font-weight: 500;
	color: var(--gray-500) !important;
	padding: 10px 18px !important;
	border-radius: var(--radius);
	transition: var(--transition);
	position: relative;
	text-decoration: none;
	display: block;
}

.nav-link:hover {
	color: var(--primary) !important;
	background: rgba(99, 102, 241, 0.08);
}

.nav-item .btn {
	margin-left: 5px;
	border-radius: var(--radius-full);
	font-weight: 600;
	padding: 10px 24px;
	border: none;
	transition: var(--transition);
}

@media (max-width: 991px) {
	.navbar-toggler {
		display: block;
	}
	
	.navbar-collapse {
		display: none;
		width: 100%;
		flex-direction: column;
		align-items: flex-start;
		padding-top: 15px;
	}
	
	.navbar-collapse.show {
		display: flex;
	}
	
	.navbar-nav {
		flex-direction: column;
		width: 100%;
		gap: 5px;
	}
	
	.nav-item {
		width: 100%;
	}
	
	.nav-link {
		width: 100%;
	}
}

/* ===== HERO SECTION ===== */
.hero-section {
	background: var(--gradient-3);
	color: var(--white);
	text-align: center;
	padding: 120px 20px 100px;
	position: relative;
	overflow: hidden;
}

.hero-section::before {
	content: '';
	position: absolute;
	top: -50%;
	left: -50%;
	width: 200%;
	height: 200%;
	background: radial-gradient(circle at 30% 50%, rgba(99, 102, 241, 0.15) 0%, transparent 50%),
				radial-gradient(circle at 70% 80%, rgba(34, 211, 238, 0.1) 0%, transparent 40%);
	animation: heroGlow 15s ease-in-out infinite;
}

@keyframes heroGlow {
	0%, 100% { transform: translate(0, 0) rotate(0deg); }
	33% { transform: translate(30px, -30px) rotate(5deg); }
	66% { transform: translate(-20px, 20px) rotate(-5deg); }
}

.hero-section::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	height: 200px;
	background: linear-gradient(to top, var(--gray-100), transparent);
	pointer-events: none;
}

.hero-section .container {
	position: relative;
	z-index: 2;
}

.hero-section h1 {
	font-size: 4rem;
	font-weight: 900;
	margin-bottom: 24px;
	line-height: 1.1;
	background: linear-gradient(135deg, #fff 0%, #c7d2fe 50%, #22d3ee 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	text-shadow: none;
}

.hero-section p {
	font-size: 1.25rem;
	font-weight: 400;
	opacity: 0.85;
	margin-bottom: 40px;
	max-width: 600px;
	margin-left: auto;
	margin-right: auto;
	color: var(--gray-300);
}

.hero-section .btn-primary {
	background: var(--gradient-2);
	border: none;
	color: var(--white);
	font-weight: 700;
	padding: 18px 48px;
	font-size: 1.1rem;
	border-radius: var(--radius-full);
	transition: var(--transition);
	box-shadow: 0 20px 40px rgba(99, 102, 241, 0.4);
	position: relative;
	overflow: hidden;
}

.hero-section .btn-primary::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
	transition: 0.5s;
}

.hero-section .btn-primary:hover::before {
	left: 100%;
}

.hero-section .btn-primary:hover {
	transform: translateY(-4px) scale(1.02);
	box-shadow: 0 30px 60px rgba(99, 102, 241, 0.5);
}

/* ===== PANEL SECTION ===== */
.panel-section {
	padding: 100px 20px;
	text-align: center;
	background: var(--gray-100);
	position: relative;
}

.panel-section h2 {
	margin-bottom: 60px;
	font-size: 2.75rem;
	font-weight: 800;
	color: var(--dark);
	position: relative;
	display: inline-block;
}

.panel-section h2::after {
	content: '';
	position: absolute;
	bottom: -12px;
	left: 50%;
	transform: translateX(-50%);
	width: 80px;
	height: 4px;
	background: var(--gradient-2);
	border-radius: var(--radius-full);
}

.panel-card {
	background: var(--white);
	border: none;
	border-radius: var(--radius-lg);
	padding: 40px 32px;
	height: 100%;
	min-height: 200px;
	transition: var(--transition);
	display: flex;
	flex-direction: column;
	justify-content: center;
	position: relative;
	overflow: hidden;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.panel-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 4px;
	background: var(--gradient-2);
	transform: scaleX(0);
	transition: var(--transition);
}

.panel-card:hover {
	transform: translateY(-12px);
	box-shadow: var(--shadow-card), var(--shadow-glow);
}

.panel-card:hover::before {
	transform: scaleX(1);
}

.panel-card h5 {
	font-size: 1.25rem;
	font-weight: 700;
	color: var(--dark);
	margin-bottom: 16px;
}

.panel-card p {
	font-size: 0.95rem;
	color: var(--gray-500);
	margin: 0;
	line-height: 1.6;
}

/* ===== FEATURES SECTION ===== */
.features-section {
	background: var(--white);
	padding: 100px 20px;
	position: relative;
}

.features-section::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: radial-gradient(circle at 20% 50%, rgba(99, 102, 241, 0.03) 0%, transparent 50%);
}

.features-section .icon {
	font-size: 2rem;
	color: var(--white);
	margin-bottom: 20px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 80px;
	height: 80px;
	background: var(--gradient-2);
	border-radius: var(--radius);
	box-shadow: 0 15px 35px rgba(99, 102, 241, 0.3);
	transition: var(--transition);
}

.features-section .col-md-3:hover .icon {
	transform: scale(1.1) rotate(5deg);
}

.features-section p {
	font-size: 1rem;
	font-weight: 600;
	color: var(--dark);
	margin-top: 12px;
}

/* ===== FOOTER ===== */
.footer-section {
	background: var(--dark);
	color: var(--white);
	padding: 80px 0 40px;
	position: relative;
}

.footer-section::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 1px;
	background: var(--gradient-2);
}

.footer-section h6 {
	font-family: 'Space Grotesk', sans-serif;
	font-size: 0.9rem;
	font-weight: 700;
	margin-bottom: 24px;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	color: var(--accent);
}

.footer-section p {
	color: var(--gray-400);
	font-size: 0.9rem;
	line-height: 1.8;
}

.footer-section ul {
	padding: 0;
	list-style: none;
	margin: 0;
}

.footer-section ul li {
	margin-bottom: 14px;
}

.footer-section ul li a {
	color: var(--gray-400);
	text-decoration: none;
	font-size: 0.9rem;
	transition: var(--transition);
	display: inline-block;
}

.footer-section ul li a:hover {
	color: var(--white);
	transform: translateX(5px);
}

.footer-section img {
	max-width: 60px;
	border-radius: var(--radius);
	transition: var(--transition);
}

.footer-section img:hover {
	transform: scale(1.1);
}

.footer-bottom {
	background: rgba(0, 0, 0, 0.3);
	color: var(--gray-400);
	padding: 24px 0;
	text-align: center;
	font-size: 0.875rem;
}

/* ===== PRODUCTS GRID ===== */
.products-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
	gap: 24px;
	margin-bottom: 30px;
}

.products-grid .custom-card {
	height: 100%;
}

/* ===== CUSTOM CARD (PRODUCTS) ===== */
.custom-card {
	position: relative;
	border-radius: var(--radius-lg);
	overflow: hidden;
	transition: var(--transition);
	padding: 32px;
	background: var(--white);
	border: 1px solid rgba(99, 102, 241, 0.1);
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
	height: 100%;
	display: flex;
	flex-direction: column;
}

.custom-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: var(--gradient-2);
	opacity: 0;
	transition: var(--transition);
	z-index: 0;
}

.custom-card:hover {
	transform: translateY(-8px) scale(1.02);
	box-shadow: var(--shadow-card), var(--shadow-glow);
	border-color: var(--primary);
}

.custom-card > * {
	position: relative;
	z-index: 1;
}

.card-title {
	font-size: 1.2rem;
	font-weight: 700;
	margin-bottom: 12px;
	color: var(--dark);
}

.price {
	font-family: 'Space Grotesk', sans-serif;
	font-size: 1.5rem;
	font-weight: 800;
	margin-bottom: 16px;
	display: block;
	background: var(--gradient-2);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.code {
	font-size: 0.8rem;
	color: var(--gray-400);
	display: inline-block;
	margin-bottom: 16px;
	background: var(--gray-100);
	padding: 6px 12px;
	border-radius: var(--radius-full);
}

.min-max {
	display: flex;
	justify-content: space-between;
	margin-top: 16px;
	gap: 12px;
}

.min_span {
	background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
	color: #92400e;
	padding: 8px 16px;
	border-radius: var(--radius-full);
	font-size: 0.8rem;
	font-weight: 600;
	flex: 1;
	text-align: center;
}

.max_span {
	background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
	color: #1e40af;
	padding: 8px 16px;
	border-radius: var(--radius-full);
	font-size: 0.8rem;
	font-weight: 600;
	flex: 1;
	text-align: center;
}

.card-footer {
	background: var(--gray-100);
	padding: 16px 20px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	border-top: 1px solid var(--gray-200);
	margin: auto -32px -32px;
	margin-top: auto;
}

.custom-card:hover .card-footer {
	opacity: 1;
	transform: translateY(0);
}

.btn-order {
	background: var(--gradient-2);
	color: var(--white);
	border: none;
	padding: 12px 28px;
	border-radius: var(--radius-full);
	text-decoration: none;
	font-weight: 700;
	transition: var(--transition);
	box-shadow: 0 10px 25px rgba(99, 102, 241, 0.3);
}

.btn-order:hover {
	transform: translateY(-2px);
	box-shadow: 0 15px 35px rgba(99, 102, 241, 0.4);
	color: var(--white);
}

.details-link {
	text-decoration: none;
	font-size: 0.875rem;
	color: var(--gray-500);
	font-weight: 600;
	transition: var(--transition);
}

.details-link:hover {
	color: var(--primary);
}

/* ===== BUTTONS ===== */
.btn {
	border-radius: var(--radius);
	font-weight: 600;
	padding: 12px 24px;
	transition: var(--transition);
	border: none;
}

.btn-primary {
	background: var(--gradient-2) !important;
	border: none !important;
	color: var(--white) !important;
	box-shadow: 0 10px 25px rgba(99, 102, 241, 0.25);
}

.btn-primary:hover {
	transform: translateY(-2px);
	box-shadow: 0 15px 35px rgba(99, 102, 241, 0.35);
}

.btn-success {
	background: linear-gradient(135deg, #10b981 0%, #059669 100%) !important;
	border: none !important;
	color: var(--white) !important;
	box-shadow: 0 10px 25px rgba(16, 185, 129, 0.25);
}

.btn-success:hover {
	transform: translateY(-2px);
	box-shadow: 0 15px 35px rgba(16, 185, 129, 0.35);
}

.btn-warning {
	background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%) !important;
	border: none !important;
	color: var(--dark) !important;
	box-shadow: 0 10px 25px rgba(251, 191, 36, 0.25);
}

.btn-danger {
	background: linear-gradient(135deg, #f43f5e 0%, #e11d48 100%) !important;
	border: none !important;
	color: var(--white) !important;
}

/* ===== BADGE ===== */
.badge {
	font-size: 0.75rem;
	width: 1.75rem;
	height: 1.75rem;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	font-weight: 700;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* ===== FORM STYLES ===== */
.form-control {
	border: 2px solid var(--gray-200);
	border-radius: var(--radius);
	padding: 14px 20px;
	font-size: 1rem;
	transition: var(--transition);
	background: var(--white);
}

.form-control:focus {
	border-color: var(--primary);
	box-shadow: 0 0 0 4px rgba(99, 102, 241, 0.1);
	outline: none;
}

.form-label {
	font-weight: 600;
	color: var(--dark);
	margin-bottom: 10px;
	font-size: 0.95rem;
}

.form-select {
	border: 2px solid var(--gray-200);
	border-radius: var(--radius);
	padding: 14px 20px;
	font-size: 1rem;
	transition: var(--transition);
}

.form-select:focus {
	border-color: var(--primary);
	box-shadow: 0 0 0 4px rgba(99, 102, 241, 0.1);
}

/* ===== JUMBOTRON ===== */
.jumbotron {
	padding: 40px 20px;
	margin-bottom: 30px;
	background: var(--white);
	border-radius: var(--radius-lg);
	text-align: center;
	width: 100%;
	display: block;
}

.jumbotron * {
	text-align: center;
}

.jumbotron h1 {
	font-size: 2.5rem;
	font-weight: 800;
	color: var(--dark);
	margin-bottom: 16px;
	text-align: center;
}

.jumbotron .lead {
	font-size: 1.1rem;
	color: var(--gray-500);
	margin-bottom: 20px;
	text-align: center;
}

.category-buttons {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 10px;
	margin-top: 20px;
}

.category-buttons .btn {
	border-radius: var(--radius-full);
	padding: 10px 24px;
	font-weight: 500;
	transition: var(--transition);
}

.category-buttons .btn-secondary {
	background: var(--gradient-2) !important;
	color: var(--white) !important;
	border: none !important;
}

.category-buttons .btn.border-secondary {
	background: var(--white);
	border: 2px solid var(--gray-300) !important;
	color: var(--gray-500);
}

.category-buttons .btn.border-secondary:hover {
	border-color: var(--primary) !important;
	color: var(--primary);
	background: rgba(99, 102, 241, 0.05);
}

/* ===== PAGE SECTIONS ===== */
.page-section {
	padding: 60px 0;
}

.page-section h1,
.page-section h2 {
	font-size: 2rem;
	font-weight: 800;
	color: var(--dark);
	margin-bottom: 24px;
}

.page-section h3 {
	font-size: 1.5rem;
	font-weight: 700;
	color: var(--dark);
	margin-top: 32px;
	margin-bottom: 16px;
}

.page-section p {
	color: var(--gray-500);
	line-height: 1.8;
	margin-bottom: 16px;
}

.page-section ul {
	color: var(--gray-500);
	padding-left: 24px;
	margin-bottom: 20px;
}

.page-section ul li {
	margin-bottom: 10px;
	line-height: 1.7;
}

.page-content {
	background: var(--white);
	border-radius: var(--radius-lg);
	padding: 48px;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.login-section,
.register-section {
	padding: 60px 0;
	min-height: auto;
}

.login-section > .container,
.register-section > .container {
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
}

.login-section h1,
.register-section h1 {
	font-size: 2.5rem;
	font-weight: 800;
	color: var(--dark);
	margin-bottom: 16px;
}

/* ===== CONTACT STYLES ===== */
.contact-card {
	border: 2px solid rgba(99, 102, 241, 0.15) !important;
	border-radius: var(--radius-lg) !important;
	transition: var(--transition);
	padding: 32px !important;
}

.contact-card:hover {
	border-color: var(--primary) !important;
	box-shadow: var(--shadow-glow);
	transform: translateY(-4px);
}

.contact-card h3 {
	color: var(--primary) !important;
	font-weight: 700;
}

/* ===== TABLE STYLES ===== */
.table {
	border-radius: var(--radius);
	overflow: hidden;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.table thead th {
	background: var(--gradient-3);
	font-weight: 700;
	color: var(--white);
	border: none;
	padding: 18px 20px;
	font-size: 0.9rem;
	text-transform: uppercase;
	letter-spacing: 0.05em;
}

.table tbody tr {
	transition: var(--transition);
}

.table tbody tr:hover {
	background: rgba(99, 102, 241, 0.03);
}

.table tbody td {
	padding: 18px 20px;
	vertical-align: middle;
	border-color: var(--gray-100);
}

/* ===== ALERT STYLES ===== */
.alert {
	border-radius: var(--radius);
	border: none;
	padding: 20px 24px;
	font-weight: 500;
}

.alert-success {
	background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
	color: #065f46;
}

.alert-danger {
	background: linear-gradient(135deg, #fee2e2 0%, #fecaca 100%);
	color: #991b1b;
}

.alert-warning {
	background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
	color: #92400e;
}

.alert-info {
	background: linear-gradient(135deg, #e0e7ff 0%, #c7d2fe 100%);
	color: #3730a3;
}

/* ===== DROPDOWN STYLES ===== */
.dropdown-menu {
	border: none;
	border-radius: var(--radius);
	box-shadow: var(--shadow-card);
	padding: 12px;
	background: var(--white);
}

.dropdown-item {
	border-radius: var(--radius);
	padding: 12px 20px;
	font-weight: 500;
	transition: var(--transition);
}

.dropdown-item:hover {
	background: var(--gray-100);
	color: var(--primary);
}

/* ===== BOOTSTRAP GRID SYSTEM ===== */
.container {
	width: 100%;
	max-width: 1200px;
	margin-left: auto;
	margin-right: auto;
	padding-left: 15px;
	padding-right: 15px;
}

.container-fluid {
	width: 100%;
	padding-left: 15px;
	padding-right: 15px;
}

.row {
	display: flex;
	flex-wrap: wrap;
	margin-left: -15px;
	margin-right: -15px;
}

/* Text alignment */
[align="center"],
.text-center {
	text-align: center !important;
}

[align="left"],
.text-start {
	text-align: left !important;
}

[align="right"],
.text-end {
	text-align: right !important;
}

.col, .col-1, .col-2, .col-3, .col-4, .col-5, .col-6, .col-7, .col-8, .col-9, .col-10, .col-11, .col-12,
.col-sm, .col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12,
.col-md, .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12,
.col-lg, .col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12,
.col-xl, .col-xl-1, .col-xl-2, .col-xl-3, .col-xl-4, .col-xl-5, .col-xl-6, .col-xl-7, .col-xl-8, .col-xl-9, .col-xl-10, .col-xl-11, .col-xl-12 {
	position: relative;
	width: 100%;
	padding: 0 15px;
}

.col { flex: 1 0 0%; }
.col-1 { flex: 0 0 8.333333%; max-width: 8.333333%; }
.col-2 { flex: 0 0 16.666667%; max-width: 16.666667%; }
.col-3 { flex: 0 0 25%; max-width: 25%; }
.col-4 { flex: 0 0 33.333333%; max-width: 33.333333%; }
.col-5 { flex: 0 0 41.666667%; max-width: 41.666667%; }
.col-6 { flex: 0 0 50%; max-width: 50%; }
.col-7 { flex: 0 0 58.333333%; max-width: 58.333333%; }
.col-8 { flex: 0 0 66.666667%; max-width: 66.666667%; }
.col-9 { flex: 0 0 75%; max-width: 75%; }
.col-10 { flex: 0 0 83.333333%; max-width: 83.333333%; }
.col-11 { flex: 0 0 91.666667%; max-width: 91.666667%; }
.col-12 { flex: 0 0 100%; max-width: 100%; }

@media (min-width: 576px) {
	.col-sm { flex: 1 0 0%; }
	.col-sm-1 { flex: 0 0 8.333333%; max-width: 8.333333%; }
	.col-sm-2 { flex: 0 0 16.666667%; max-width: 16.666667%; }
	.col-sm-3 { flex: 0 0 25%; max-width: 25%; }
	.col-sm-4 { flex: 0 0 33.333333%; max-width: 33.333333%; }
	.col-sm-5 { flex: 0 0 41.666667%; max-width: 41.666667%; }
	.col-sm-6 { flex: 0 0 50%; max-width: 50%; }
	.col-sm-7 { flex: 0 0 58.333333%; max-width: 58.333333%; }
	.col-sm-8 { flex: 0 0 66.666667%; max-width: 66.666667%; }
	.col-sm-9 { flex: 0 0 75%; max-width: 75%; }
	.col-sm-10 { flex: 0 0 83.333333%; max-width: 83.333333%; }
	.col-sm-11 { flex: 0 0 91.666667%; max-width: 91.666667%; }
	.col-sm-12 { flex: 0 0 100%; max-width: 100%; }
}

@media (min-width: 768px) {
	.col-md { flex: 1 0 0%; }
	.col-md-1 { flex: 0 0 8.333333%; max-width: 8.333333%; }
	.col-md-2 { flex: 0 0 16.666667%; max-width: 16.666667%; }
	.col-md-3 { flex: 0 0 25%; max-width: 25%; }
	.col-md-4 { flex: 0 0 33.333333%; max-width: 33.333333%; }
	.col-md-5 { flex: 0 0 41.666667%; max-width: 41.666667%; }
	.col-md-6 { flex: 0 0 50%; max-width: 50%; }
	.col-md-7 { flex: 0 0 58.333333%; max-width: 58.333333%; }
	.col-md-8 { flex: 0 0 66.666667%; max-width: 66.666667%; }
	.col-md-9 { flex: 0 0 75%; max-width: 75%; }
	.col-md-10 { flex: 0 0 83.333333%; max-width: 83.333333%; }
	.col-md-11 { flex: 0 0 91.666667%; max-width: 91.666667%; }
	.col-md-12 { flex: 0 0 100%; max-width: 100%; }
}

@media (min-width: 992px) {
	.col-lg { flex: 1 0 0%; }
	.col-lg-1 { flex: 0 0 8.333333%; max-width: 8.333333%; }
	.col-lg-2 { flex: 0 0 16.666667%; max-width: 16.666667%; }
	.col-lg-3 { flex: 0 0 25%; max-width: 25%; }
	.col-lg-4 { flex: 0 0 33.333333%; max-width: 33.333333%; }
	.col-lg-5 { flex: 0 0 41.666667%; max-width: 41.666667%; }
	.col-lg-6 { flex: 0 0 50%; max-width: 50%; }
	.col-lg-7 { flex: 0 0 58.333333%; max-width: 58.333333%; }
	.col-lg-8 { flex: 0 0 66.666667%; max-width: 66.666667%; }
	.col-lg-9 { flex: 0 0 75%; max-width: 75%; }
	.col-lg-10 { flex: 0 0 83.333333%; max-width: 83.333333%; }
	.col-lg-11 { flex: 0 0 91.666667%; max-width: 91.666667%; }
	.col-lg-12 { flex: 0 0 100%; max-width: 100%; }
}

@media (min-width: 1200px) {
	.col-xl { flex: 1 0 0%; }
	.col-xl-1 { flex: 0 0 8.333333%; max-width: 8.333333%; }
	.col-xl-2 { flex: 0 0 16.666667%; max-width: 16.666667%; }
	.col-xl-3 { flex: 0 0 25%; max-width: 25%; }
	.col-xl-4 { flex: 0 0 33.333333%; max-width: 33.333333%; }
	.col-xl-5 { flex: 0 0 41.666667%; max-width: 41.666667%; }
	.col-xl-6 { flex: 0 0 50%; max-width: 50%; }
	.col-xl-7 { flex: 0 0 58.333333%; max-width: 58.333333%; }
	.col-xl-8 { flex: 0 0 66.666667%; max-width: 66.666667%; }
	.col-xl-9 { flex: 0 0 75%; max-width: 75%; }
	.col-xl-10 { flex: 0 0 83.333333%; max-width: 83.333333%; }
	.col-xl-11 { flex: 0 0 91.666667%; max-width: 91.666667%; }
	.col-xl-12 { flex: 0 0 100%; max-width: 100%; }
}

/* ===== BOOTSTRAP SPACING ===== */
.g-0 { --bs-gutter-x: 0; --bs-gutter-y: 0; }
.g-1 { --bs-gutter-x: 0.25rem; --bs-gutter-y: 0.25rem; }
.g-2 { --bs-gutter-x: 0.5rem; --bs-gutter-y: 0.5rem; }
.g-3 { --bs-gutter-x: 1rem; --bs-gutter-y: 1rem; }
.g-4 { --bs-gutter-x: 1.5rem; --bs-gutter-y: 1.5rem; }
.g-5 { --bs-gutter-x: 3rem; --bs-gutter-y: 3rem; }

.row.g-0 > * { padding: 0; }
.row.g-1 > * { padding: 0.125rem; }
.row.g-2 > * { padding: 0.25rem; }
.row.g-3 > * { padding: 0.5rem; }
.row.g-4 > * { padding: 0.75rem; }
.row.g-5 > * { padding: 1.5rem; }

.mb-0 { margin-bottom: 0 !important; }
.mb-1 { margin-bottom: 0.25rem !important; }
.mb-2 { margin-bottom: 0.5rem !important; }
.mb-3 { margin-bottom: 1rem !important; }
.mb-4 { margin-bottom: 1.5rem !important; }
.mb-5 { margin-bottom: 3rem !important; }

.mt-0 { margin-top: 0 !important; }
.mt-1 { margin-top: 0.25rem !important; }
.mt-2 { margin-top: 0.5rem !important; }
.mt-3 { margin-top: 1rem !important; }
.mt-4 { margin-top: 1.5rem !important; }
.mt-5 { margin-top: 3rem !important; }

.my-0 { margin-top: 0 !important; margin-bottom: 0 !important; }
.my-1 { margin-top: 0.25rem !important; margin-bottom: 0.25rem !important; }
.my-2 { margin-top: 0.5rem !important; margin-bottom: 0.5rem !important; }
.my-3 { margin-top: 1rem !important; margin-bottom: 1rem !important; }
.my-4 { margin-top: 1.5rem !important; margin-bottom: 1.5rem !important; }
.my-5 { margin-top: 3rem !important; margin-bottom: 3rem !important; }

.mx-auto { margin-left: auto !important; margin-right: auto !important; }

.p-0 { padding: 0 !important; }
.p-1 { padding: 0.25rem !important; }
.p-2 { padding: 0.5rem !important; }
.p-3 { padding: 1rem !important; }
.p-4 { padding: 1.5rem !important; }
.p-5 { padding: 3rem !important; }

.py-0 { padding-top: 0 !important; padding-bottom: 0 !important; }
.py-1 { padding-top: 0.25rem !important; padding-bottom: 0.25rem !important; }
.py-2 { padding-top: 0.5rem !important; padding-bottom: 0.5rem !important; }
.py-3 { padding-top: 1rem !important; padding-bottom: 1rem !important; }
.py-4 { padding-top: 1.5rem !important; padding-bottom: 1.5rem !important; }
.py-5 { padding-top: 3rem !important; padding-bottom: 3rem !important; }

.px-0 { padding-left: 0 !important; padding-right: 0 !important; }
.px-1 { padding-left: 0.25rem !important; padding-right: 0.25rem !important; }
.px-2 { padding-left: 0.5rem !important; padding-right: 0.5rem !important; }
.px-3 { padding-left: 1rem !important; padding-right: 1rem !important; }
.px-4 { padding-left: 1.5rem !important; padding-right: 1.5rem !important; }
.px-5 { padding-left: 3rem !important; padding-right: 3rem !important; }

/* ===== BOOTSTRAP FLEX ===== */
.d-flex { display: flex !important; }
.d-none { display: none !important; }
.d-block { display: block !important; }
.d-inline { display: inline !important; }
.d-inline-block { display: inline-block !important; }

.flex-row { flex-direction: row !important; }
.flex-column { flex-direction: column !important; }
.flex-wrap { flex-wrap: wrap !important; }
.flex-nowrap { flex-wrap: nowrap !important; }

.justify-content-start { justify-content: flex-start !important; }
.justify-content-end { justify-content: flex-end !important; }
.justify-content-center { justify-content: center !important; }
.justify-content-between { justify-content: space-between !important; }
.justify-content-around { justify-content: space-around !important; }

.align-items-start { align-items: flex-start !important; }
.align-items-end { align-items: flex-end !important; }
.align-items-center { align-items: center !important; }
.align-items-stretch { align-items: stretch !important; }

.align-self-start { align-self: flex-start !important; }
.align-self-end { align-self: flex-end !important; }
.align-self-center { align-self: center !important; }

.flex-grow-0 { flex-grow: 0 !important; }
.flex-grow-1 { flex-grow: 1 !important; }
.flex-shrink-0 { flex-shrink: 0 !important; }
.flex-shrink-1 { flex-shrink: 1 !important; }

/* ===== BOOTSTRAP TEXT ===== */
.text-start { text-align: left !important; }
.text-end { text-align: right !important; }
.text-center { text-align: center !important; }

.text-muted { color: var(--gray-500) !important; }
.text-dark { color: var(--dark) !important; }
.text-white { color: var(--white) !important; }
.text-success { color: var(--success) !important; }
.text-danger { color: var(--danger) !important; }
.text-warning { color: var(--warning) !important; }

.fw-light { font-weight: 300 !important; }
.fw-normal { font-weight: 400 !important; }
.fw-medium { font-weight: 500 !important; }
.fw-semibold { font-weight: 600 !important; }
.fw-bold { font-weight: 700 !important; }

.fs-1 { font-size: 2.5rem !important; }
.fs-2 { font-size: 2rem !important; }
.fs-3 { font-size: 1.75rem !important; }
.fs-4 { font-size: 1.5rem !important; }
.fs-5 { font-size: 1.25rem !important; }
.fs-6 { font-size: 1rem !important; }

.small { font-size: 0.875rem !important; }

/* ===== BOOTSTRAP DISPLAY ===== */
@media (min-width: 576px) {
	.d-sm-none { display: none !important; }
	.d-sm-block { display: block !important; }
	.d-sm-flex { display: flex !important; }
}

@media (min-width: 768px) {
	.d-md-none { display: none !important; }
	.d-md-block { display: block !important; }
	.d-md-flex { display: flex !important; }
}

@media (min-width: 992px) {
	.d-lg-none { display: none !important; }
	.d-lg-block { display: block !important; }
	.d-lg-flex { display: flex !important; }
}

/* ===== BOOTSTRAP POSITION ===== */
.position-relative { position: relative !important; }
.position-absolute { position: absolute !important; }
.position-fixed { position: fixed !important; }
.position-sticky { position: sticky !important; }

.top-0 { top: 0 !important; }
.end-0 { right: 0 !important; }
.bottom-0 { bottom: 0 !important; }
.start-0 { left: 0 !important; }

/* ===== BOOTSTRAP SIZING ===== */
.w-25 { width: 25% !important; }
.w-50 { width: 50% !important; }
.w-75 { width: 75% !important; }
.w-100 { width: 100% !important; }
.w-auto { width: auto !important; }

.h-100 { height: 100% !important; }
.h-auto { height: auto !important; }

.mw-100 { max-width: 100% !important; }
.mh-100 { max-height: 100% !important; }

/* ===== BOOTSTRAP BORDERS ===== */
.border { border: 1px solid var(--gray-200) !important; }
.border-0 { border: 0 !important; }
.border-top { border-top: 1px solid var(--gray-200) !important; }
.border-bottom { border-bottom: 1px solid var(--gray-200) !important; }
.border-start { border-left: 1px solid var(--gray-200) !important; }
.border-end { border-right: 1px solid var(--gray-200) !important; }

.rounded { border-radius: var(--radius) !important; }
.rounded-0 { border-radius: 0 !important; }
.rounded-circle { border-radius: 50% !important; }
.rounded-pill { border-radius: var(--radius-full) !important; }

/* ===== BOOTSTRAP SHADOWS ===== */
.shadow { box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important; }
.shadow-sm { box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075) !important; }
.shadow-lg { box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175) !important; }
.shadow-none { box-shadow: none !important; }

/* ===== BOOTSTRAP BACKGROUNDS ===== */
.bg-white { background-color: var(--white) !important; }
.bg-light { background-color: var(--gray-100) !important; }
.bg-dark { background-color: var(--dark) !important; }
.bg-success { background-color: var(--success) !important; }
.bg-danger { background-color: var(--danger) !important; }
.bg-warning { background-color: var(--warning) !important; }
.bg-transparent { background-color: transparent !important; }

/* ===== LIST STYLES ===== */
ul, ol {
	padding-left: 20px;
}

.list-unstyled {
	padding-left: 0;
	list-style: none;
}

.list-inline {
	padding-left: 0;
	list-style: none;
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

.list-inline-item {
	display: inline-block;
}

.list-group {
	display: flex;
	flex-direction: column;
	padding-left: 0;
	margin-bottom: 0;
	border-radius: var(--radius);
	overflow: hidden;
}

.list-group-item {
	position: relative;
	display: flex;
	padding: 12px 16px;
	background: var(--white);
	border: 1px solid var(--gray-200);
	margin-top: -1px;
}

.list-group-item:first-child {
	margin-top: 0;
	border-top-left-radius: var(--radius);
	border-top-right-radius: var(--radius);
}

.list-group-item:last-child {
	border-bottom-left-radius: var(--radius);
	border-bottom-right-radius: var(--radius);
}

/* ===== CARD COMPONENT ===== */
.card {
	background: var(--white);
	border: 1px solid var(--gray-200);
	border-radius: var(--radius);
	overflow: hidden;
}

.card-body {
	padding: 24px;
}

.card-header {
	padding: 16px 24px;
	background: var(--gray-100);
	border-bottom: 1px solid var(--gray-200);
}

.card-title {
	margin-bottom: 12px;
	font-weight: 700;
}

.card-text {
	color: var(--gray-500);
}

/* ===== LINK STYLES ===== */
a {
	color: var(--primary);
	text-decoration: none;
	transition: var(--transition);
}

a:hover {
	color: var(--primary-dark);
}

/* ===== IMG STYLES ===== */
img {
	max-width: 100%;
	height: auto;
}

.img-fluid {
	max-width: 100%;
	height: auto;
}

/* ===== HR STYLES ===== */
hr {
	margin: 20px 0;
	border: none;
	border-top: 1px solid var(--gray-200);
}

/* ===== UTILITY CLASSES ===== */
.text-primary {
	color: var(--primary) !important;
}

.bg-primary {
	background: var(--primary) !important;
}

.text-gradient {
	background: var(--gradient-2);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
	.hero-section h1 {
		font-size: 2.75rem;
	}
	
	.panel-section h2 {
		font-size: 2rem;
	}
}

@media (max-width: 768px) {
	.hero-section {
		padding: 80px 20px 60px;
	}

	.hero-section h1 {
		font-size: 2rem;
	}

	.hero-section p {
		font-size: 1rem;
	}

	.panel-section,
	.features-section {
		padding: 60px 20px;
	}

	.panel-section h2 {
		font-size: 1.75rem;
		margin-bottom: 40px;
	}

	.panel-card {
		min-height: auto;
		padding: 28px 24px;
		margin-bottom: 20px;
	}

	.footer-section {
		text-align: center;
		padding: 60px 0 30px;
	}

	.footer-section .col-md-3 {
		margin-bottom: 40px;
	}
	
	.custom-card {
		padding: 24px;
	}
	
	.card-footer {
		margin: 16px -24px -24px;
	}
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(40px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes pulse {
	0%, 100% {
		transform: scale(1);
	}
	50% {
		transform: scale(1.05);
	}
}

.panel-card {
	animation: fadeInUp 0.6s ease-out backwards;
}

.panel-card:nth-child(1) { animation-delay: 0.1s; }
.panel-card:nth-child(2) { animation-delay: 0.2s; }
.panel-card:nth-child(3) { animation-delay: 0.3s; }
.panel-card:nth-child(4) { animation-delay: 0.4s; }

.custom-card {
	animation: fadeInUp 0.5s ease-out backwards;
}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar {
	width: 10px;
}

::-webkit-scrollbar-track {
	background: var(--gray-100);
}

::-webkit-scrollbar-thumb {
	background: var(--gradient-2);
	border-radius: var(--radius-full);
}

::-webkit-scrollbar-thumb:hover {
	background: var(--primary-dark);
}

/* ===== SELECTION ===== */
::selection {
	background: var(--primary);
	color: var(--white);
}
