	/* Base & Design System - Enhanced Blue & White Theme */
	:root {
		--bg:#f8fafc;
		--bg-light:#ffffff;
		--card:#ffffff;
		--text:#0f172a;
		--text-light:#475569;
		--muted:#64748b;
		--primary:#2563eb;
		--primary-dark:#1e40af;
		--primary-light:#3b82f6;
		--accent:#0ea5e9;
		--success:#16a34a;
		--danger:#dc2626;
		--gradient:linear-gradient(135deg, #2563eb 0%, #3b82f6 50%, #0ea5e9 100%);
		--gradient-hover:linear-gradient(135deg, #1e40af 0%, #2563eb 50%, #0284c7 100%);
		--shadow:0 10px 40px rgba(37,99,235,0.12);
		--shadow-hover:0 20px 60px rgba(37,99,235,0.2);
		--border:#e2e8f0;
	}
	* { 
		box-sizing: border-box; 
		margin:0; 
		padding:0;
		cursor: none;
	}
	html { scroll-behavior: smooth; }
	body {
		font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
		background: var(--bg);
		color: var(--text);
		line-height: 1.6;
	}

	/* ========== Custom Cursor ========== */
	.custom-cursor {
		width: 20px;
		height: 20px;
		border: 2px solid #2563eb;
		border-radius: 50%;
		position: fixed;
		pointer-events: none;
		z-index: 99999;
		transition: transform 0.15s ease, border-color 0.2s ease;
		mix-blend-mode: difference;
	}

	.custom-cursor.active {
		transform: scale(1.8);
		border-color: #fff;
		background: rgba(37, 99, 235, 0.2);
	}

	/* ========== Loading Screen ========== */
	.loading-screen {
		position: fixed;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		background: linear-gradient(135deg, #1e3a8a 0%, #2563eb 50%, #3b82f6 100%);
		display: flex;
		flex-direction: column;
		justify-content: center;
		align-items: center;
		z-index: 100000;
		transition: opacity 0.5s ease, visibility 0.5s ease;
	}

	.loading-screen.hidden {
		opacity: 0;
		visibility: hidden;
	}

	.loading-logo {
		position: relative;
		margin-bottom: 40px;
		animation: floatLogo 3s ease-in-out infinite;
	}

.loading-logo img {
	width: 120px;
	height: 120px;
	border-radius: 50%;
	object-fit: cover;
	filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.3));
	animation: rotateLogo 4s linear infinite;
	border: 4px solid rgba(255, 255, 255, 0.3);
	background: white;
	padding: 10px;
}

	@keyframes floatLogo {
		0%, 100% { transform: translateY(0px); }
		50% { transform: translateY(-20px); }
	}

	@keyframes rotateLogo {
		0% { transform: rotate(0deg) scale(1); }
		25% { transform: rotate(5deg) scale(1.05); }
		50% { transform: rotate(0deg) scale(1); }
		75% { transform: rotate(-5deg) scale(1.05); }
		100% { transform: rotate(0deg) scale(1); }
	}

	.loading-text {
		color: white;
		font-size: 32px;
		font-weight: 700;
		letter-spacing: 3px;
		margin-bottom: 20px;
		text-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
		animation: pulseText 2s ease-in-out infinite;
	}

	@keyframes pulseText {
		0%, 100% { opacity: 1; transform: scale(1); }
		50% { opacity: 0.7; transform: scale(1.05); }
	}

	.loading-spinner {
		width: 60px;
		height: 60px;
		position: relative;
		margin-bottom: 30px;
	}

	.loading-spinner::before,
	.loading-spinner::after {
		content: '';
		position: absolute;
		border-radius: 50%;
		border: 3px solid transparent;
		border-top-color: white;
	}

	.loading-spinner::before {
		width: 60px;
		height: 60px;
		animation: spin 1.5s linear infinite;
	}

	.loading-spinner::after {
		width: 45px;
		height: 45px;
		top: 7.5px;
		left: 7.5px;
		border-top-color: rgba(255, 255, 255, 0.6);
		animation: spin 1s linear infinite reverse;
	}

	@keyframes spin {
		0% { transform: rotate(0deg); }
		100% { transform: rotate(360deg); }
	}

	.loading-progress {
		width: 300px;
		height: 4px;
		background: rgba(255, 255, 255, 0.2);
		border-radius: 10px;
		overflow: hidden;
		position: relative;
	}

	.loading-progress-bar {
		height: 100%;
		background: linear-gradient(90deg, 
			rgba(255, 255, 255, 0.8) 0%, 
			white 50%, 
			rgba(255, 255, 255, 0.8) 100%);
		border-radius: 10px;
		animation: loadingBar 2s ease-in-out infinite;
		box-shadow: 0 0 15px rgba(255, 255, 255, 0.6);
	}

	@keyframes loadingBar {
		0% { transform: translateX(-100%); }
		50% { transform: translateX(100%); }
		100% { transform: translateX(100%); }
	}

	.loading-tagline {
		color: rgba(255, 255, 255, 0.9);
		font-size: 16px;
		margin-top: 20px;
		font-weight: 300;
		letter-spacing: 1px;
		animation: fadeInOut 3s ease-in-out infinite;
	}

	@keyframes fadeInOut {
		0%, 100% { opacity: 0.6; }
		50% { opacity: 1; }
	}

	/* Particle Effect */
	.loading-particle {
		position: absolute;
		width: 4px;
		height: 4px;
		background: white;
		border-radius: 50%;
		opacity: 0;
		animation: particleFloat 3s ease-in-out infinite;
	}

	.loading-particle:nth-child(1) { left: 10%; animation-delay: 0s; }
	.loading-particle:nth-child(2) { left: 20%; animation-delay: 0.5s; }
	.loading-particle:nth-child(3) { left: 30%; animation-delay: 1s; }
	.loading-particle:nth-child(4) { left: 40%; animation-delay: 1.5s; }
	.loading-particle:nth-child(5) { left: 50%; animation-delay: 2s; }
	.loading-particle:nth-child(6) { left: 60%; animation-delay: 2.5s; }
	.loading-particle:nth-child(7) { left: 70%; animation-delay: 0.8s; }
	.loading-particle:nth-child(8) { left: 80%; animation-delay: 1.3s; }
	.loading-particle:nth-child(9) { left: 90%; animation-delay: 1.8s; }

@keyframes particleFloat {
	0% {
		bottom: 0;
		opacity: 0;
		transform: translateY(0) scale(1);
	}
	50% {
		opacity: 0.8;
		transform: translateY(-50vh) scale(1.5);
	}
	100% {
		bottom: 100%;
		opacity: 0;
		transform: translateY(-100vh) scale(0.5);
	}
}

/* ========== Lightbox Modal ========== */
.lightbox {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.95);
	display: none;
	justify-content: center;
	align-items: center;
	z-index: 100001;
	opacity: 0;
	transition: opacity 0.3s ease;
	cursor: zoom-out !important;
}

.lightbox.active {
	display: flex;
	opacity: 1;
}

.lightbox-content {
	position: relative;
	max-width: 90%;
	max-height: 90%;
	animation: zoomIn 0.3s ease;
}

.lightbox-content img {
	max-width: 100%;
	max-height: 90vh;
	width: auto;
	height: auto;
	border-radius: 12px;
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
	object-fit: contain;
}

.lightbox-close {
	position: absolute;
	top: -50px;
	right: 0;
	background: white;
	color: var(--primary);
	border: none;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	font-size: 24px;
	cursor: pointer !important;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.3s;
	box-shadow: 0 4px 15px rgba(255, 255, 255, 0.3);
}

.lightbox-close:hover {
	transform: rotate(90deg) scale(1.1);
	background: var(--primary);
	color: white;
}

.lightbox-nav {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	background: white;
	color: var(--primary);
	border: none;
	width: 50px;
	height: 50px;
	border-radius: 50%;
	font-size: 24px;
	cursor: pointer !important;
	transition: all 0.3s;
	box-shadow: 0 4px 15px rgba(255, 255, 255, 0.3);
	display: flex;
	align-items: center;
	justify-content: center;
}

.lightbox-nav:hover {
	background: var(--primary);
	color: white;
	transform: translateY(-50%) scale(1.1);
}

.lightbox-prev {
	left: 20px;
}

.lightbox-next {
	right: 20px;
}

.lightbox-counter {
	position: absolute;
	bottom: -50px;
	left: 50%;
	transform: translateX(-50%);
	color: white;
	font-size: 16px;
	font-weight: 600;
	background: rgba(255, 255, 255, 0.1);
	padding: 8px 16px;
	border-radius: 20px;
	backdrop-filter: blur(10px);
}

@keyframes zoomIn {
	from {
		transform: scale(0.8);
		opacity: 0;
	}
	to {
		transform: scale(1);
		opacity: 1;
	}
}

/* Gallery Image Hover Effect */
.gallery img {
	cursor: zoom-in !important;
	transition: all 0.3s;
}

.gallery img:hover {
	transform: scale(1.05);
	box-shadow: 0 15px 40px rgba(37, 99, 235, 0.3);
}

/* Enhanced Animations */
	@keyframes fadeInUp { 
		from { opacity:0; transform:translateY(40px); } 
		to { opacity:1; transform:translateY(0); } 
	}
	@keyframes fadeInLeft { 
		from { opacity:0; transform:translateX(-40px); } 
		to { opacity:1; transform:translateX(0); } 
	}
	@keyframes fadeInRight { 
		from { opacity:0; transform:translateX(40px); } 
		to { opacity:1; transform:translateX(0); } 
	}
	@keyframes pulse { 
		0%, 100% { transform:scale(1); box-shadow: 0 0 0 0 rgba(37,99,235,0.4); } 
		50% { transform:scale(1.05); box-shadow: 0 0 0 20px rgba(37,99,235,0); } 
	}
	@keyframes float { 
		0%, 100% { transform:translateY(0) rotate(0deg); } 
		33% { transform:translateY(-15px) rotate(2deg); }
		66% { transform:translateY(-8px) rotate(-2deg); }
	}
	@keyframes slideIn { 
		from { opacity:0; transform:translateX(-30px); } 
		to { opacity:1; transform:translateX(0); } 
	}
	@keyframes bounce {
		0%, 100% { transform: translateY(0); }
		50% { transform: translateY(-10px); }
	}
	@keyframes shine {
		0% { background-position: -200% center; }
		100% { background-position: 200% center; }
	}
	@keyframes rotate {
		from { transform: rotate(0deg); }
		to { transform: rotate(360deg); }
	}

	.fade-in { animation: fadeInUp 0.8s ease-out forwards; }
	.fade-left { animation: fadeInLeft 0.8s ease-out forwards; }
	.fade-right { animation: fadeInRight 0.8s ease-out forwards; }
	.delay-1 { animation-delay: 0.15s; opacity:0; }
	.delay-2 { animation-delay: 0.3s; opacity:0; }
	.delay-3 { animation-delay: 0.45s; opacity:0; }
	.delay-4 { animation-delay: 0.6s; opacity:0; }

	/* Layout */
	.container { max-width: 1200px; margin: 0 auto; padding: 24px; }
	.container.small { max-width: 520px; }

	/* Header with Interactive Nav */
	.site-header {
		padding: 20px 32px;
		background: rgba(255,255,255,0.95);
		backdrop-filter: blur(20px);
		border-bottom: 1px solid var(--border);
		position: sticky;
		top:0;
		z-index:100;
		display: flex;
		justify-content: space-between;
		align-items: center;
		box-shadow: 0 4px 20px rgba(37,99,235,0.06);
		transition: all 0.3s;
	}
	.site-header:hover {
		box-shadow: 0 6px 30px rgba(37,99,235,0.12);
	}
	.header-logo {
		display: flex;
		align-items: center;
		gap: 12px;
		cursor: pointer;
		transition: all 0.3s;
	}
	.header-logo:hover {
		transform: scale(1.05);
	}
	.header-logo img {
		width: 50px;
		height: 50px;
		border-radius: 50%;
		object-fit: cover;
		border: 2px solid var(--primary);
		padding: 4px;
		background: white;
		transition: all 0.3s;
		animation: float 3s ease-in-out infinite;
	}
	.header-logo:hover img {
		transform: rotate(360deg);
		box-shadow: 0 4px 15px rgba(37,99,235,0.3);
	}
	.header-logo span {
		font-size: 1.4rem; 
		font-weight: 800; 
		background: var(--gradient); 
		-webkit-background-clip: text; 
		-webkit-text-fill-color: transparent; 
		background-clip: text;
	}
	.site-header nav a { 
		color: var(--text); 
		text-decoration: none; 
		margin-left: 28px; 
		transition: all 0.3s; 
		font-weight:600;
		position: relative;
		padding: 8px 0;
	}
	.site-header nav a::after {
		content: '';
		position: absolute;
		bottom: 0;
		left: 0;
		width: 0;
		height: 3px;
		background: var(--gradient);
		transition: width 0.3s;
		border-radius: 2px;
	}
	.site-header nav a:hover::after {
		width: 100%;
	}
	.site-header nav a:hover { 
		color: var(--primary);
		transform: translateY(-2px);
	}

	/* Hero Section - Ultra Interactive */
	.hero {
		text-align: center;
		padding: 100px 32px;
		background: var(--gradient);
		border-radius: 32px;
		margin: 40px 0;
		box-shadow: var(--shadow);
		position: relative;
		overflow: hidden;
		transition: all 0.3s;
	}
	.hero:hover {
		box-shadow: var(--shadow-hover);
		transform: translateY(-4px);
	}
	.hero::before {
		content: '';
		position: absolute;
		top:-50%;
		left:-50%;
		width: 200%;
		height: 200%;
		background: radial-gradient(circle, rgba(255,255,255,0.15) 0%, transparent 60%);
		animation: float 8s ease-in-out infinite;
		pointer-events: none;
		z-index: 1;
	}
	.hero::after {
		content: '';
		position: absolute;
		top:0;
		left:-100%;
		width: 50%;
		height: 100%;
		background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
		animation: shine 3s infinite;
		pointer-events: none;
		z-index: 1;
	}
	.hero h2 { 
		font-size: 3.2rem; 
		font-weight:900; 
		margin-bottom:20px; 
		color:#fff; 
		position:relative; 
		z-index:1; 
		text-shadow: 0 4px 20px rgba(0,0,0,0.2);
		letter-spacing: -1px;
	}
	.hero p { 
		font-size: 1.3rem; 
		margin-bottom:16px; 
		color:#ffffff; 
		position:relative; 
		z-index:1;
		font-weight: 500;
	}
	.hero .logo-badge { 
		display:inline-block; 
		width:110px; 
		height:110px; 
		margin-bottom:28px; 
		animation: pulse 3s infinite; 
		background:#fff; 
		border-radius:24px; 
		padding:12px;
		box-shadow: 0 10px 40px rgba(0,0,0,0.15);
		transition: all 0.3s;
	}
	.hero .logo-badge:hover {
		transform: scale(1.1) rotate(5deg);
		animation: none;
	}

	/* Services Section - Card Animations */
	.services { margin: 100px 0; }
	.services h3 {
		text-align:center; 
		font-size:3rem; 
		margin-bottom:60px;
		color: var(--text);
		font-weight: 800;
		position: relative;
		display: inline-block;
		width: 100%;
	}
	.services h3::after {
		content: '';
		position: absolute;
		bottom: -12px;
		left: 50%;
		transform: translateX(-50%);
		width: 120px;
		height: 5px;
		background: var(--gradient);
		border-radius: 3px;
	}
	.services-grid {
		display: grid;
		grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
		gap: 28px;
	}
	.service-card {
		background: var(--card);
		padding: 40px 32px;
		border-radius: 20px;
		text-align: center;
		box-shadow: 0 4px 20px rgba(37,99,235,0.08);
		border: 2px solid var(--border);
		transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
		position: relative;
		overflow: hidden;
	}
	.service-card::before {
		content: '';
		position: absolute;
		top: 0;
		left: -100%;
		width: 100%;
		height: 100%;
		background: linear-gradient(90deg, transparent, rgba(37,99,235,0.05), transparent);
		transition: left 0.5s;
	}
	.service-card:hover::before {
		left: 100%;
	}
	.service-card:hover {
		transform: translateY(-12px) scale(1.02);
		box-shadow: 0 20px 60px rgba(37,99,235,0.2);
		border-color: var(--primary-light);
	}
	.service-icon {
		font-size: 4rem;
		margin-bottom: 20px;
		display: inline-block;
		transition: all 0.4s;
	}
	.service-card:hover .service-icon {
		transform: scale(1.2) rotate(10deg);
		filter: drop-shadow(0 10px 20px rgba(37,99,235,0.3));
	}
	.service-card h4 {
		font-size: 1.6rem;
		margin-bottom: 14px;
		color: var(--primary);
		font-weight: 700;
		transition: all 0.3s;
	}
	.service-card:hover h4 {
		color: var(--primary-dark);
		transform: scale(1.05);
	}
	.service-card p {
		color: var(--text-light);
		line-height: 1.7;
		font-size: 1.05rem;
	}

	/* Why Choose Section - Animated Benefits */
	.why-choose {
		margin: 100px 0;
		padding: 70px 40px;
		background: var(--card);
		border-radius: 32px;
		box-shadow: 0 4px 30px rgba(37,99,235,0.1);
		border: 2px solid var(--border);
		position: relative;
		overflow: hidden;
	}
	.why-choose::before {
		content: '';
		position: absolute;
		top: -50%;
		right: -50%;
		width: 100%;
		height: 100%;
		background: radial-gradient(circle, rgba(37,99,235,0.05) 0%, transparent 70%);
		animation: float 10s ease-in-out infinite reverse;
	}
	.why-choose h3 {
		text-align:center; 
		font-size:3rem; 
		margin-bottom:50px;
		color: var(--text);
		font-weight: 800;
		position: relative;
	}
	.benefits-grid {
		display: grid;
		grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
		gap: 36px;
		margin-top: 50px;
		position: relative;
		z-index: 1;
	}
	.benefit {
		display: flex;
		gap: 20px;
		align-items: start;
		animation: slideIn 0.8s ease-out;
		padding: 24px;
		border-radius: 16px;
		transition: all 0.3s;
		background: var(--bg);
	}
	.benefit:hover {
		transform: translateX(10px);
		background: var(--bg-light);
		box-shadow: 0 8px 30px rgba(37,99,235,0.12);
	}
	.benefit-icon {
		font-size: 2.5rem;
		color: var(--primary);
		font-weight: bold;
		flex-shrink: 0;
		transition: all 0.3s;
	}
	.benefit:hover .benefit-icon {
		transform: scale(1.2) rotate(360deg);
	}
	.benefit h4 {
		font-size: 1.3rem;
		margin-bottom: 10px;
		color: var(--text);
		font-weight: 700;
	}
	.benefit p {
		color: var(--text-light);
		line-height: 1.6;
	}

	/* CTA Section - Pulsing Call to Action */
	.cta-section {
		margin: 100px 0;
	}
	.cta-card {
		background: var(--gradient);
		padding: 80px 40px;
		border-radius: 32px;
		text-align: center;
		box-shadow: var(--shadow);
		position: relative;
		overflow: hidden;
		transition: all 0.3s;
	}
	.cta-card:hover {
		transform: scale(1.02);
		box-shadow: var(--shadow-hover);
	}
	.cta-card::before {
		content: '';
		position: absolute;
		top: -50%;
		left: -50%;
		width: 200%;
		height: 200%;
		background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
		animation: rotate 20s linear infinite;
	}
	.cta-card h3 {
		font-size: 2.8rem;
		color: #fff;
		margin-bottom: 20px;
		text-shadow: 0 4px 20px rgba(0,0,0,0.2);
		font-weight: 800;
		position: relative;
		z-index: 1;
	}
	.cta-card p {
		font-size: 1.3rem;
		color: #ffffff;
		position: relative;
		z-index: 1;
		font-weight: 500;
	}

	/* Cards - Interactive */
	.card {
		background: var(--card);
		padding: 36px;
		border-radius: 20px;
		box-shadow: 0 4px 20px rgba(37,99,235,0.08);
		border: 2px solid var(--border);
		transition: all 0.4s;
		position: relative;
	}
	.card::before {
		content: '';
		position: absolute;
		inset: 0;
		border-radius: 20px;
		padding: 2px;
		background: var(--gradient);
		-webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
		-webkit-mask-composite: xor;
		mask-composite: exclude;
		opacity: 0;
		transition: opacity 0.3s;
	}
	.card:hover::before {
		opacity: 1;
	}
	.card:hover { 
		transform: translateY(-6px); 
		box-shadow: 0 20px 60px rgba(37,99,235,0.15);
	}

	/* Forms - Enhanced */
	label { 
		display:block; 
		margin: 18px 0 10px; 
		color: var(--text); 
		font-weight:700; 
		font-size:0.95rem; 
		letter-spacing:0.3px;
	}
	input[type="text"], 
	input[type="email"], 
	input[type="tel"],
	input[type="password"], 
	input[type="url"], 
	textarea, 
	select {
		width:100%;
		padding: 16px 18px;
		border-radius: 12px;
		border: 2px solid var(--border);
		background: var(--bg-light);
		color: var(--text);
		font-size:1.05rem;
		transition: all 0.3s;
		font-weight: 500;
		-webkit-appearance: none;
		-moz-appearance: none;
		appearance: none;
	}
	input[type="tel"] {
		background: var(--bg-light);
	}
	input:focus, textarea:focus, select:focus {
		outline:none;
		border-color: var(--primary);
		box-shadow: 0 0 0 4px rgba(37,99,235,0.1);
		transform: translateY(-2px);
	}
	textarea { min-height: 150px; resize: vertical; }

	/* Select dropdown arrow */
	select {
		background-image: url('data:image/svg+xml;charset=UTF-8,<svg width="12" height="8" viewBox="0 0 12 8" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M1 1L6 6L11 1" stroke="%232563eb" stroke-width="2" stroke-linecap="round"/></svg>');
		background-repeat: no-repeat;
		background-position: right 16px center;
		padding-right: 48px;
	}

	/* Buttons - Ultra Interactive */
	.btn-primary, .btn-secondary {
		display:inline-block;
		padding: 16px 36px;
		border:0;
		border-radius: 12px;
		cursor:pointer;
		font-weight:700;
		font-size:1.1rem;
		transition: all 0.3s;
		text-decoration:none;
		position: relative;
		overflow: hidden;
	}
	.btn-primary::before, .btn-secondary::before {
		content: '';
		position: absolute;
		top: 50%;
		left: 50%;
		width: 0;
		height: 0;
		border-radius: 50%;
		background: rgba(255,255,255,0.3);
		transform: translate(-50%, -50%);
		transition: width 0.6s, height 0.6s;
	}
	.btn-primary:hover::before, .btn-secondary:hover::before {
		width: 300px;
		height: 300px;
	}
	.btn-primary {
		background: var(--primary);
		color:#fff;
		box-shadow: 0 6px 20px rgba(37,99,235,0.3);
	}
	.btn-primary:hover {
		background: var(--primary-dark);
		transform: translateY(-3px);
		box-shadow: 0 10px 35px rgba(37,99,235,0.4);
	}
	.btn-secondary {
		background: var(--accent);
		color:#fff;
		box-shadow: 0 6px 20px rgba(14,165,233,0.3);
	}
	.btn-secondary:hover {
		background: #0284c7;
		transform: translateY(-3px);
	}

	/* Alerts */
	.alert {
		padding: 18px 24px;
		border-radius: 12px;
		margin: 18px 0;
		font-weight:600;
		border-left: 5px solid;
		animation: fadeInLeft 0.5s;
	}
	.alert-success {
		background: rgba(22,163,74,.12);
		border-color: var(--success);
		color: #166534;
	}
	.alert-danger {
		background: rgba(220,38,38,.12);
		border-color: var(--danger);
		color: #991b1b;
	}

	/* Gallery - Zoom Effect */
	.gallery { margin-top:80px; }
	.gallery h3 { 
		font-size:2.5rem; 
		margin-bottom:32px; 
		text-align:center; 
		color: var(--text);
		font-weight: 800;
	}
	.grid {
		display:grid;
		grid-template-columns: repeat(auto-fill, minmax(220px,1fr));
		gap: 20px;
	}
	.gallery .grid img {
		width:100%;
		height:220px;
		object-fit:cover;
		border-radius:16px;
		transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
		cursor:pointer;
		border: 3px solid var(--border);
		box-shadow: 0 4px 15px rgba(37,99,235,0.08);
	}
	.gallery .grid img:hover {
		transform: scale(1.08) rotate(2deg);
		box-shadow: 0 15px 50px rgba(37,99,235,0.25);
		border-color: var(--primary);
		z-index: 10;
	}

	/* Footer */
	.site-footer {
		padding: 60px 32px 32px;
		background: var(--card);
		margin-top:100px;
		border-top: 3px solid var(--border);
		box-shadow: 0 -4px 20px rgba(37,99,235,0.06);
	}
	.footer-content {
		max-width: 1200px;
		margin: 0 auto;
		display: grid;
		grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
		gap: 40px;
		margin-bottom: 32px;
	}
	.footer-section h4 {
		color: var(--primary);
		margin-bottom: 18px;
		font-size: 1.2rem;
		font-weight: 800;
	}
	.footer-section p, .footer-section a {
		color: var(--text-light);
		margin-bottom: 10px;
		text-decoration: none;
		display: block;
		transition: all 0.3s;
		font-weight: 500;
	}
	.footer-section a:hover {
		color: var(--primary);
		transform: translateX(5px);
	}

	/* Payment Form - Premium Design */
	.payment-form {
		max-width:540px;
		margin: 0 auto;
		position:relative;
		z-index:2;
		background: #ffffff;
		backdrop-filter: blur(20px);
		box-shadow: 0 25px 80px rgba(37,99,235,0.25);
		border: 3px solid var(--primary-light);
		padding: 0 !important;
		overflow: hidden;
	}
	.form-header {
		background: var(--gradient);
		padding: 36px 32px;
		text-align: center;
		position: relative;
		overflow: hidden;
	}
	.form-header::before {
		content: '';
		position: absolute;
		top: -50%;
		left: -50%;
		width: 200%;
		height: 200%;
		background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
		animation: float 8s ease-in-out infinite;
		pointer-events: none;
		z-index: 1;
	}
	.form-icon {
		font-size: 3.5rem;
		margin-bottom: 12px;
		display: inline-block;
		animation: bounce 2s infinite;
		filter: drop-shadow(0 4px 8px rgba(0,0,0,0.2));
	}
	.form-header h3 {
		color: #ffffff;
		font-size: 2rem;
		font-weight: 800;
		margin: 0 0 12px 0;
		text-shadow: 0 2px 10px rgba(0,0,0,0.2);
		position: relative;
		z-index: 1;
	}
	.form-subtitle {
		color: #ffffff;
		font-size: 1.15rem;
		margin: 0;
		font-weight: 500;
		position: relative;
		z-index: 1;
	}
	.price-tag {
		font-size: 1.5rem;
		font-weight: 800;
		color: #fef08a;
		text-shadow: 0 2px 8px rgba(0,0,0,0.3);
	}
	.form-body {
		padding: 36px 32px 32px;
		background: #ffffff;
		position: relative;
		z-index: 10;
	}
	.form-body label {
		color: var(--text);
		font-size: 1rem;
		font-weight: 700;
		margin-bottom: 10px;
		display: block;
		position: relative;
		z-index: 10;
	}
	.form-body input[type="email"],
	.form-body input[type="tel"],
	.form-body input[type="text"],
	.form-body select {
		background: #ffffff;
		border: 2px solid var(--border);
		color: var(--text);
		font-size: 1.05rem;
		font-weight: 600;
		position: relative;
		z-index: 10;
		pointer-events: auto;
		margin-bottom: 4px;
		-webkit-appearance: none;
		-moz-appearance: none;
		appearance: none;
	}
	.form-body input[type="tel"] {
		font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
	}
	.form-body input[type="email"]:focus,
	.form-body input[type="tel"]:focus,
	.form-body input[type="text"]:focus,
	.form-body select:focus {
		background: #ffffff;
		border-color: var(--primary);
	}
	.form-body select {
		background-image: url('data:image/svg+xml;charset=UTF-8,<svg width="12" height="8" viewBox="0 0 12 8" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M1 1L6 6L11 1" stroke="%232563eb" stroke-width="2" stroke-linecap="round"/></svg>');
		background-repeat: no-repeat;
		background-position: right 16px center;
		padding-right: 48px;
		cursor: pointer;
	}
	.form-body button {
		position: relative;
		z-index: 10;
		pointer-events: auto;
	}
	.form-body button span {
		font-size: 1.2rem;
		margin-right: 8px;
	}
	.form-footer {
		background: var(--bg);
		padding: 24px 32px;
		border-top: 2px solid var(--border);
	}
	.form-footer .feature {
		color: var(--text);
		font-size: 0.95rem;
		font-weight: 600;
		margin-bottom: 10px;
		padding-left: 8px;
	}
	.form-footer .feature:last-child {
		margin-bottom: 0;
	}

	/* Switch for admin */
	.switch {
		display:flex;
		gap:14px;
		align-items:center;
		cursor:pointer;
	}
	.switch input[type="checkbox"] {
		width:auto;
	}

	/* Mobile Optimization */
	@media (max-width: 768px) {
		body { font-size: 16px; }
		
		.hero { padding: 60px 20px; border-radius: 20px; margin: 24px 0; }
		.hero h2 { font-size:2rem; line-height: 1.2; }
		.hero p { font-size:1rem; line-height: 1.5; }
		.hero .logo-badge { width: 80px; height: 80px; margin-bottom: 20px; }
		
		.site-header { 
			flex-direction:row; 
			flex-wrap: wrap;
			justify-content: space-between;
			gap:12px; 
			padding:16px 20px;
		}
		.header-logo span { font-size: 1.1rem; }
		.site-header nav { width: 100%; display: flex; justify-content: space-around; margin-top: 8px; }
		.site-header nav a { margin-left: 0; font-size: 0.95rem; }
		
		.container { padding: 16px; }
		
		/* Payment Form Mobile */
		.payment-form { 
			max-width: 100%; 
			margin: 0;
			border-radius: 20px;
		}
		.form-header { padding: 28px 20px; }
		.form-header h3 { font-size: 1.6rem; }
		.form-subtitle { font-size: 1rem; }
		.form-icon { font-size: 3rem; }
		.form-body { padding: 24px 20px; }
		.form-footer { padding: 20px; }
		
		/* Services Mobile */
		.services { margin: 60px 0; }
		.services h3 { font-size: 2rem; margin-bottom: 40px; }
		.services-grid { 
			grid-template-columns: 1fr; 
			gap: 20px; 
		}
		.service-card { padding: 32px 24px; }
		
		/* Benefits Mobile */
		.why-choose { 
			margin: 60px 0; 
			padding: 40px 20px;
			border-radius: 20px;
		}
		.why-choose h3 { font-size: 2rem; margin-bottom: 32px; }
		.benefits-grid { 
			grid-template-columns: 1fr; 
			gap: 24px; 
		}
		.benefit { padding: 20px; }
		
		/* Gallery Mobile */
		.gallery h3 { font-size: 2rem; }
		.grid { 
			grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); 
			gap: 12px; 
		}
		.gallery .grid img { height: 150px; }
		
		/* CTA Mobile */
		.cta-section { margin: 60px 0; }
		.cta-card { 
			padding: 50px 24px;
			border-radius: 20px;
		}
		.cta-card h3 { font-size: 1.8rem; line-height: 1.2; }
		.cta-card p { font-size: 1rem; }
		
		/* Footer Mobile */
		.site-footer { padding: 40px 20px 24px; }
		.footer-content { 
			grid-template-columns: 1fr; 
			gap: 32px; 
			text-align: center;
		}
		
		/* Buttons Mobile */
		.btn-primary, .btn-secondary { 
			padding: 14px 28px; 
			font-size: 1rem;
			width: 100%;
		}
		
		/* Form Inputs Mobile - Prevent Zoom */
		input[type="text"], 
		input[type="email"], 
		input[type="tel"],
		input[type="password"], 
		input[type="url"], 
		textarea, 
		select {
			font-size: 16px !important;
			padding: 14px 16px;
		}
	}

	@media (max-width: 480px) {
		.hero h2 { font-size: 1.75rem; }
		.hero p { font-size: 0.95rem; }
		
		.header-logo span { font-size: 1rem; }
	.header-logo img { width: 35px; height: 35px; }
		.site-header nav a { font-size: 0.85rem; }
		
		.form-header h3 { font-size: 1.4rem; }
		.price-tag { font-size: 1.3rem; }
		
		.services h3, .why-choose h3, .gallery h3, .cta-card h3 { 
			font-size: 1.6rem; 
		}
		
		.service-icon { font-size: 3rem; }
		.benefit-icon { font-size: 2rem; }
		
		.loading-text {
			font-size: 24px;
			letter-spacing: 2px;
		}
		
		.loading-progress {
			width: 250px;
		}
		
	.loading-logo img {
		width: 90px;
		height: 90px;
	}
	
	.header-logo img {
		width: 40px;
		height: 40px;
	}
	
	.header-logo span {
		font-size: 1.2rem;
	}
		
	.loading-tagline {
		font-size: 14px;
	}
	
	.lightbox-close {
		top: 20px;
		right: 20px;
		width: 35px;
		height: 35px;
		font-size: 20px;
	}
	
	.lightbox-nav {
		width: 40px;
		height: 40px;
		font-size: 20px;
	}
	
	.lightbox-prev {
		left: 10px;
	}
	
	.lightbox-next {
		right: 10px;
	}
	
	.lightbox-counter {
		bottom: 20px;
		font-size: 14px;
		padding: 6px 12px;
	}
}
