:root {
	--primary-color: #e74c3c;
	--primary-dark: #c0392b;
	--secondary-color: #2c3e50;
	--accent-color: #f39c12;
	--text-dark: #2c3e50;
	--text-light: #7f8c8d;
	--bg-light: #f8f9fa;
	--bg-dark: #2d3e50;
	--bg-darker: #1a1a1a;
	--white: #ffffff;
	--gradient-primary: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
	--gradient-dark: linear-gradient(135deg, #2d3e50 0%, #1a1a1a 100%);
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
	color: var(--text-dark);
	line-height: 1.6;
	overflow-x: hidden;
}

html {
	scroll-behavior: smooth;
}

.uk-navbar-container {
	background: rgba(26, 26, 26, 0.98) !important;
	backdrop-filter: blur(10px);
	z-index: 1000;
	transition: all 0.3s ease;
	padding: 0;
	min-height: 60px;
}

.uk-navbar-container .uk-container {
	padding: 0 30px;
}

.uk-navbar-sticky {
	box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.uk-navbar-item {
	min-height: 60px;
	padding: 0;
}

.uk-navbar-nav {
	margin: 0;
}

.uk-navbar-nav > li > a {
	color: var(--white) !important;
	font-weight: 600;
	text-transform: uppercase;
	font-size: 0.85rem;
	letter-spacing: 0.5px;
	transition: all 0.3s ease;
	position: relative;
	min-height: 60px;
	padding: 0 20px;
}

.uk-navbar-nav > li > a::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 0;
	height: 2px;
	background: var(--primary-color);
	transition: width 0.3s ease;
}

.uk-navbar-nav > li > a:hover::after,
.uk-navbar-nav > li.uk-active > a::after {
	width: 80%;
}

.uk-navbar-toggle {
	color: var(--white);
	min-height: 60px;
}

.logo-wrapper {
	display: flex;
	flex-direction: column;
	gap: 2px;
}

.logo-text {
	font-size: 1.4rem;
	font-weight: 800;
	color: var(--white);
	letter-spacing: 0.5px;
	line-height: 1;
}

.logo-accent {
	color: var(--primary-color);
}

.logo-subtitle {
	font-size: 0.65rem;
	color: var(--accent-color);
	text-transform: uppercase;
	letter-spacing: 2px;
	line-height: 1;
}

.uk-offcanvas-bar {
	background: var(--bg-darker);
}

.uk-offcanvas-close {
	color: var(--white);
}

.uk-nav-primary > li > a {
	color: var(--white);
	font-size: 1.2rem;
	font-weight: 600;
}

.uk-nav-primary > li > a:hover {
	color: var(--primary-color);
}

.hero-section {
	min-height: 100vh;
	position: relative;
	padding-top: 60px;
}

.hero-overlay {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(135deg, rgba(231, 76, 60, 0.92) 0%, rgba(44, 62, 80, 0.95) 100%);
	z-index: 1;
}

.hero-section .uk-container {
	z-index: 2;
}

.hero-badge {
	display: inline-block;
	padding: 8px 20px;
	background: rgba(255, 255, 255, 0.15);
	border: 1px solid rgba(255, 255, 255, 0.4);
	border-radius: 30px;
	color: var(--white);
	font-size: 0.9rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 1px;
	backdrop-filter: blur(10px);
}

.hero-title {
	font-size: 3.5rem;
	font-weight: 800;
	line-height: 1.2;
	color: var(--white);
	margin: 0;
	text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-title .highlight {
	color: var(--accent-color);
	position: relative;
}

.hero-subtitle {
	font-size: 1.3rem;
	color: var(--white);
	max-width: 700px;
	line-height: 1.8;
	text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
	font-weight: 400;
}

.cta-button {
	background: var(--gradient-primary) !important;
	border: none !important;
	text-transform: uppercase;
	font-weight: 700;
	letter-spacing: 1px;
	transition: all 0.3s ease !important;
	box-shadow: 0 4px 15px rgba(231, 76, 60, 0.4);
	color: var(--white) !important;
}

.cta-button:hover {
	transform: translateY(-2px);
	box-shadow: 0 6px 25px rgba(231, 76, 60, 0.6);
}

.uk-button-default {
	background: transparent !important;
	border: 2px solid var(--white) !important;
	color: var(--white) !important;
	text-transform: uppercase;
	font-weight: 700;
	letter-spacing: 1px;
	transition: all 0.3s ease !important;
}

.uk-button-default:hover {
	background: var(--white) !important;
	color: var(--primary-color) !important;
}

.hero-features {
	display: flex;
	gap: 30px;
	flex-wrap: wrap;
}

.hero-features > div {
	display: flex;
	align-items: center;
	gap: 10px;
	color: var(--white);
	font-weight: 700;
	text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.hero-features svg {
	color: var(--accent-color);
}

.scroll-indicator {
	position: absolute;
	bottom: 30px;
	left: 50%;
	transform: translateX(-50%);
	z-index: 2;
	animation: bounce 2s infinite;
}

.scroll-indicator a {
	color: var(--white);
	opacity: 0.8;
	transition: opacity 0.3s ease;
}

.scroll-indicator a:hover {
	opacity: 1;
}

@keyframes bounce {
	0%, 20%, 50%, 80%, 100% {
		transform: translateX(-50%) translateY(0);
	}
	40% {
		transform: translateX(-50%) translateY(-10px);
	}
	60% {
		transform: translateX(-50%) translateY(-5px);
	}
}

.about-section {
	background: var(--bg-light);
}

.section-header {
	position: relative;
}

.section-badge {
	display: inline-block;
	padding: 6px 18px;
	background: var(--gradient-primary);
	color: var(--white);
	border-radius: 20px;
	font-size: 0.85rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 1px;
}

.section-title {
	font-size: 2.8rem;
	font-weight: 800;
	color: var(--text-dark);
	margin-top: 15px;
}

.section-divider {
	width: 80px;
	height: 4px;
	background: var(--gradient-primary);
	margin: 20px auto;
	border-radius: 2px;
}

.section-description {
	font-size: 1.2rem;
	color: var(--text-dark);
	max-width: 700px;
	margin: 0 auto;
	font-weight: 500;
}

.info-card {
	background: var(--white);
	padding: 40px;
	border-radius: 15px;
	box-shadow: 0 5px 30px rgba(0, 0, 0, 0.08);
	transition: all 0.3s ease;
	height: 100%;
}

.info-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
}

.info-card-accent {
	background: var(--bg-dark);
	color: var(--white) !important;
}

.info-card-accent h3 {
	color: var(--white) !important;
}

.info-card-accent p {
	color: rgba(255, 255, 255, 0.95) !important;
	font-weight: 400;
}

.info-icon {
	color: var(--primary-color);
	margin-bottom: 20px;
}

.info-card-accent .info-icon {
	color: var(--accent-color);
}

.info-card h3 {
	font-size: 1.8rem;
	font-weight: 700;
	color: var(--text-dark);
	margin-bottom: 15px;
}

.info-card p {
	font-size: 1.05rem;
	color: var(--text-dark);
	line-height: 1.8;
	margin-bottom: 15px;
	font-weight: 500;
}

.stats-grid {
	background: var(--white);
	border-radius: 15px;
	overflow: hidden;
	box-shadow: 0 5px 30px rgba(0, 0, 0, 0.08);
}

.stat-card {
	padding: 40px 20px;
	border-right: 1px solid #e0e0e0;
	transition: all 0.3s ease;
}

.stat-card:hover {
	background: var(--gradient-primary);
}

.stat-card:hover .stat-number,
.stat-card:hover .stat-label {
	color: var(--white);
}

.stat-number {
	font-size: 2.5rem;
	font-weight: 800;
	color: var(--primary-color);
	margin-bottom: 10px;
}

.stat-label {
	font-size: 0.95rem;
	color: var(--text-dark);
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.services-section {
	background: var(--white);
}

.service-card {
	background: var(--bg-light);
	padding: 40px 30px;
	border-radius: 15px;
	transition: all 0.3s ease;
	height: 100%;
	position: relative;
	border: 2px solid transparent;
}

.service-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
	border-color: var(--primary-color);
}

.service-card-featured {
	background: var(--bg-dark);
	color: var(--white);
	border-color: var(--accent-color);
}

.service-card-featured h3 {
	color: var(--white) !important;
}

.service-card-featured p {
	color: rgba(255, 255, 255, 0.95) !important;
	font-weight: 400;
}

.featured-badge {
	position: absolute;
	top: -15px;
	right: 20px;
	background: var(--accent-color);
	color: var(--white);
	padding: 5px 15px;
	border-radius: 20px;
	font-size: 0.75rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.service-icon {
	width: 80px;
	height: 80px;
	background: var(--gradient-primary);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 25px;
	color: var(--white);
}

.service-card-featured .service-icon {
	background: var(--accent-color);
}

.service-card h3 {
	font-size: 1.6rem;
	font-weight: 700;
	color: var(--text-dark);
	margin-bottom: 15px;
}

.service-card p {
	font-size: 1rem;
	color: var(--text-dark);
	line-height: 1.7;
	margin-bottom: 20px;
	font-weight: 500;
}

.service-list {
	list-style: none;
	padding: 0;
}

.service-list li {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 10px;
	color: var(--text-dark);
	font-weight: 600;
}

.service-card-featured .service-list li {
	color: rgba(255, 255, 255, 0.95);
}

.service-list svg {
	color: var(--primary-color);
	flex-shrink: 0;
}

.service-card-featured .service-list svg {
	color: var(--accent-color);
}

.process-section {
	background: var(--bg-light);
	padding: 60px 40px;
	border-radius: 15px;
}

.process-section h3 {
	font-size: 2.2rem;
	font-weight: 700;
	color: var(--text-dark);
}

.process-step {
	position: relative;
	padding: 30px 20px;
}

.process-number {
	width: 70px;
	height: 70px;
	background: var(--gradient-primary);
	color: var(--white);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 2rem;
	font-weight: 800;
	margin: 0 auto 20px;
	box-shadow: 0 5px 20px rgba(231, 76, 60, 0.3);
}

.process-step h4 {
	font-size: 1.4rem;
	font-weight: 700;
	color: var(--text-dark);
	margin-bottom: 10px;
}

.process-step p {
	font-size: 1rem;
	color: var(--text-dark);
	font-weight: 500;
}

.cta-section {
	background: var(--bg-dark);
	position: relative;
	overflow: hidden;
}

.cta-section::before {
	content: '';
	position: absolute;
	top: -50%;
	right: -10%;
	width: 500px;
	height: 500px;
	background: radial-gradient(circle, rgba(231, 76, 60, 0.2) 0%, transparent 70%);
	border-radius: 50%;
}

.cta-section h2 {
	font-size: 2.8rem;
	font-weight: 800;
	color: var(--white);
	text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.cta-section p {
	color: var(--white);
	font-weight: 400;
	text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.contact-section {
	background: var(--bg-light);
}

.contact-info-card {
	background: var(--white);
	padding: 40px;
	border-radius: 15px;
	box-shadow: 0 5px 30px rgba(0, 0, 0, 0.08);
	height: 100%;
	text-align: center;
	transition: all 0.3s ease;
}

.contact-info-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
}

.contact-icon-wrapper {
	width: 80px;
	height: 80px;
	background: var(--gradient-primary);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 20px;
	color: var(--white);
}

.contact-info-card h3 {
	font-size: 1.4rem;
	font-weight: 700;
	color: var(--text-dark);
	margin-bottom: 15px;
}

.contact-info-card p {
	font-size: 1.05rem;
	color: var(--text-dark);
	line-height: 1.6;
	font-weight: 600;
}

.contact-info-card a {
	color: var(--primary-color);
	text-decoration: none;
	transition: color 0.3s ease;
	font-weight: 700;
}

.contact-info-card a:hover {
	color: var(--primary-dark);
}

.opening-hours-card {
	background: var(--white);
	padding: 50px;
	border-radius: 15px;
	box-shadow: 0 5px 30px rgba(0, 0, 0, 0.08);
	max-width: 600px;
	margin: 0 auto;
}

.opening-hours-card h3 {
	font-size: 2rem;
	font-weight: 700;
	color: var(--text-dark);
}

.opening-hours-card svg {
	color: var(--primary-color);
}

.hours-grid {
	display: flex;
	flex-direction: column;
	gap: 15px;
}

.hours-row {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 15px 20px;
	background: var(--bg-light);
	border-radius: 8px;
}

.hours-row .day {
	font-weight: 700;
	color: var(--text-dark);
	font-size: 1.05rem;
}

.hours-row .time {
	font-weight: 600;
	color: var(--primary-color);
	font-size: 1.05rem;
}

.footer-section {
	background: var(--bg-darker);
	color: rgba(255, 255, 255, 0.9);
}

.footer-logo {
	margin-bottom: 15px;
}

.footer-section h4 {
	color: var(--white);
	font-size: 1.2rem;
	font-weight: 700;
	margin-bottom: 20px;
}

.footer-section p {
	color: rgba(255, 255, 255, 0.8);
}

.footer-links,
.footer-contact {
	list-style: none;
	padding: 0;
}

.footer-links li,
.footer-contact li {
	margin-bottom: 10px;
}

.footer-links a {
	color: rgba(255, 255, 255, 0.8);
	text-decoration: none;
	transition: color 0.3s ease;
	font-weight: 500;
}

.footer-links a:hover {
	color: var(--primary-color);
}

.footer-contact li {
	display: flex;
	align-items: center;
	gap: 10px;
	color: rgba(255, 255, 255, 0.8);
	font-weight: 500;
}

.footer-contact svg {
	color: var(--primary-color);
}

.footer-bottom {
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	padding-top: 20px;
}

.footer-bottom p {
	color: rgba(255, 255, 255, 0.6);
	font-size: 0.9rem;
}

@media (max-width: 960px) {
	.hero-title {
		font-size: 2.5rem;
	}
	
	.hero-subtitle {
		font-size: 1.1rem;
	}
	
	.section-title {
		font-size: 2.2rem;
	}
	
	.uk-button-large {
		font-size: 0.9rem;
		padding: 0 25px;
		line-height: 45px;
	}
	
	.stat-card {
		border-right: none;
		border-bottom: 1px solid #e0e0e0;
	}
}

@media (max-width: 640px) {
	.uk-navbar-container .uk-container {
		padding: 0 15px;
	}
	
	.logo-text {
		font-size: 1.1rem;
	}
	
	.logo-subtitle {
		font-size: 0.55rem;
	}
	
	.hero-title {
		font-size: 2rem;
	}
	
	.hero-subtitle {
		font-size: 1rem;
	}
	
	.section-title {
		font-size: 1.8rem;
	}
	
	.uk-button-large {
		width: 100%;
		margin-left: 0 !important;
		margin-top: 10px;
	}
	
	.hero-features {
		flex-direction: column;
		gap: 15px;
	}
	
	.info-card,
	.service-card,
	.contact-info-card {
		padding: 25px;
	}
	
	.opening-hours-card {
		padding: 30px 20px;
	}
	
	.hours-row {
		flex-direction: column;
		gap: 5px;
		text-align: center;
	}
}
