/* Reset */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, font, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td {
	margin: 0;
	padding: 0;
	border: 0;
	outline: 0;
	font-size: 100%;
	vertical-align: baseline;
	background: transparent;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}

:focus {
	outline: 0;
}

ins {
	text-decoration: none;
}
del {
	text-decoration: line-through;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
}

/* Box Sizing */
*{
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

/* Smooth Scrolling */
html {
	scroll-behavior: smooth;
}

html, body{
	height: 100%;
}

/* Base Styles */
body{
	font-family: 'Roboto', sans-serif;
	font-size: 18px;
	line-height: 1.6;
	font-weight: 300;
	color: #2c3e50;
	background: #ffffff;
	background-attachment: fixed;
	position: relative;
}

body::before {
	content: '';
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: url('../img/pattern.png') repeat;
	background-size: 57%;
	opacity: 0.15;
	z-index: -1;
	pointer-events: none;
}

/* Layout */
.wrap{
	min-height: 100%;
	margin-bottom: -80px;
	padding-bottom: 80px;
}/* Header */
header{
	padding: 10px 0;
	background: linear-gradient(135deg, #3a3a3a 0%, #2d8b73 100%);
	box-shadow: 0 2px 10px rgba(0,0,0,0.15);
	position: sticky;
	top: 0;
	z-index: 1000;
	transition: all 0.3s ease;
	backdrop-filter: blur(10px);
}

.logo{
	height: 50px;
	transition: transform 0.3s ease;
	filter: drop-shadow(0 2px 5px rgba(0,0,0,0.2));
}

.logo:hover{
	transform: scale(1.05);
}

.logo-link {
	display: inline-block;
}

.header-content{
	display: inline-block;
	vertical-align: middle;
	width: 20%;
	position: relative;
}

/* Snow Toggle Button */
.snow-toggle {
	position: absolute;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
	background: rgba(45, 139, 115, 0.1);
	border: 2px solid rgba(45, 139, 115, 0.3);
	border-radius: 50%;
	width: 40px;
	height: 40px;
	cursor: pointer;
	transition: all 0.3s ease;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #42AF90;
	font-size: 18px;
}

.snow-toggle:hover {
	background: rgba(45, 139, 115, 0.2);
	transform: translateY(-50%) scale(1.1);
	box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.snow-toggle.active {
	background: linear-gradient(135deg, #42AF90 0%, #2d8b73 100%);
	color: white;
	animation: snowPulse 1.5s infinite;
}

@keyframes snowPulse {
	0%, 100% {
		box-shadow: 0 0 10px rgba(66, 175, 144, 0.5);
	}
	50% {
		box-shadow: 0 0 20px rgba(66, 175, 144, 0.8);
	}
}

/* Snowflakes */
.snowflake {
	position: fixed;
	top: -20px;
	color: #42AF90;
	text-shadow: 0 0 3px rgba(66, 175, 144, 0.5), 0 0 8px rgba(66, 175, 144, 0.3);
	z-index: 9999;
	pointer-events: none;
	animation: fall linear forwards, sway 3s ease-in-out infinite;
	user-select: none;
	font-weight: bold;
}

@keyframes fall {
	to {
		transform: translateY(100vh) rotate(360deg);
	}
}

@keyframes sway {
	0%, 100% {
		left: var(--end-position, 50%);
	}
	25% {
		left: calc(var(--end-position, 50%) - 2%);
	}
	75% {
		left: calc(var(--end-position, 50%) + 2%);
	}
}

.header-right{
	float: right;
	text-align: right;
	width: 75%;
	display: flex;
	justify-content: flex-end;
	align-items: center;
	gap: 30px;
	flex-wrap: wrap;
}

.contact-item {
	display: flex;
	align-items: center;
	gap: 8px;
	color: #ffffff;
	font-size: 14px;
	background: rgba(255,255,255,0.15);
	padding: 6px 12px;
	border-radius: 20px;
	backdrop-filter: blur(10px);
	transition: all 0.3s ease;
	border: 1px solid rgba(255,255,255,0.2);
}

.contact-item:hover {
	background: rgba(255,255,255,0.25);
	transform: translateY(-1px);
	box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.contact-item i {
	font-size: 16px;
	color: #7de5c8;
}

.contact-item span {
	margin-right: 5px;
}

.header-right a{
	color: #ffffff;
	text-decoration: none;
	font-weight: 500;
	transition: color 0.3s ease;
}

.header-right a:hover {
	color: #ffd700;
}

.header-right a .bigger{
	font-size: 18px;
	font-weight: 700;
}
/* Footer */
footer{
	background: linear-gradient(135deg, #3a3a3a 0%, #2d8b73 100%);
	padding: 18px 0;
	font-size: 14px;
	line-height: 1;
	color: #ecf0f1;
	box-shadow: 0 -2px 10px rgba(0,0,0,0.15);
	border-top: 1px solid rgba(255,255,255,0.1);
}footer i {
	margin-right: 8px;
	color: #7de5c8;
}

/* Container */
.container{
	min-width: 360px;
	max-width: 1200px;
	padding: 0 30px;
	margin: 0 auto;
}

.footer-content{
	display: inline-block;
	vertical-align: middle;
	width: 50%;
	padding: 5px 0;
	margin: 0;
}

.footer-right{
	text-align: right;
	margin-left: -4px;
}

.footer-right a{
	color: #ecf0f1;
	text-decoration: none;
	transition: color 0.3s ease;
}

.footer-right a:hover {
	color: #42AF90;
}

.footer-right a .bigger{
	font-size: 18px;
	font-weight: 500;
}

/* Section */
section {
	padding: 60px 0;
	animation: fadeIn 0.6s ease-in;
}

@keyframes fadeIn {
	from {
		opacity: 0;
		transform: translateY(20px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

section a{
	color: #42AF90;
	text-decoration: none;
	font-weight: 500;
	transition: color 0.3s ease;
}

section a:hover {
	color: #2d8b73;
	text-decoration: underline;
}

/* Section Headers */
.section-header {
	display: flex;
	align-items: center;
	gap: 15px;
	margin-bottom: 40px;
}

.section-header i {
	font-size: 36px;
	color: #42AF90;
	animation: pulse 2s infinite;
}

@keyframes pulse {
	0%, 100% {
		transform: scale(1);
	}
	50% {
		transform: scale(1.1);
	}
}

h1,
h2{
	font-size: 32px;
	font-weight: 500;
	margin: 0;
	color: #2c3e50;
	text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
}

h3 {
	font-size: 18px;
	font-weight: 500;
	color: #2c3e50;
	margin-bottom: 10px;
}

h4 {
	font-size: 20px;
	font-weight: 500;
	color: #2c3e50;
	margin-bottom: 8px;
}

/* Info Cards */
.info-cards {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 30px;
	margin-bottom: 60px;
}

.info-card {
	background: white;
	border-radius: 20px;
	padding: 20px 25px;
	box-shadow: 0 10px 30px rgba(0,0,0,0.1);
	transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
	position: relative;
	overflow: hidden;
	display: flex;
	align-items: center;
	gap: 20px;
}

.info-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 5px;
	background: linear-gradient(90deg, #42AF90 0%, #2d8b73 100%);
	transform: scaleX(0);
	transition: transform 0.3s ease;
}

.info-card:hover::before {
	transform: scaleX(1);
}

.info-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 20px 40px rgba(66, 175, 144, 0.3);
}

.card-icon {
	width: 50px;
	height: 50px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 0;
	font-size: 24px;
	color: white;
	transition: all 0.3s ease;
	flex-shrink: 0;
}

.phone-icon {
	background: linear-gradient(135deg, #42AF90 0%, #2d8b73 100%);
}

.email-icon {
	background: linear-gradient(135deg, #42AF90 0%, #2d8b73 100%);
}

.info-card:hover .card-icon {
	transform: rotate(360deg);
}

.info-card p {
	color: #5a6c7d;
	line-height: 1.6;
	font-size: 16px;
}

/* Download Grid */
.download-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 25px;
}

.download-card {
	background: white;
	border-radius: 15px;
	overflow: hidden;
	box-shadow: 0 8px 25px rgba(0,0,0,0.1);
	transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.download-card:hover {
	transform: translateY(-8px) scale(1.02);
	box-shadow: 0 15px 35px rgba(66, 175, 144, 0.3);
}

.download-card a {
	display: flex;
	align-items: center;
	padding: 25px;
	text-decoration: none;
	gap: 20px;
	position: relative;
}

.download-icon {
	flex-shrink: 0;
	width: 80px;
	height: 80px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
	border-radius: 15px;
	transition: all 0.3s ease;
}

.download-card:hover .download-icon {
	transform: scale(1.1) rotate(5deg);
}

.download-icon img {
	max-width: 60px;
	max-height: 60px;
	object-fit: contain;
}

.download-info {
	flex: 1;
}

.download-info h4 {
	color: #2c3e50;
	margin-bottom: 5px;
}

.download-info p {
	color: #7f8c8d;
	font-size: 14px;
	margin: 0;
}

.download-arrow {
	font-size: 32px;
	color: #42AF90;
	transition: all 0.3s ease;
}

.download-card:hover .download-arrow {
	color: #2d8b73;
	transform: translateX(5px);
	animation: bounce 1s infinite;
}

@keyframes bounce {
	0%, 100% {
		transform: translateX(0);
	}
	50% {
		transform: translateX(10px);
	}
}

/* Responsive Design */
@media (max-width: 767px){
	header{
		padding: 15px 0;
		position: relative;
	}

	.container{
		padding: 0 15px;
	}

	.header-content{
		float: none;
		display: block;
		text-align: center;
		width: 100%;
		padding: 15px 0;
	}

	.snow-toggle {
		position: relative;
		margin: 10px auto 0;
		transform: none;
	}

	.snow-toggle:hover {
		transform: scale(1.1);
	}

	.header-right {
		float: none;
		width: 100%;
		justify-content: center;
		gap: 15px;
		padding-top: 10px;
		flex-direction: column;
	}

	.contact-item {
		font-size: 13px;
		padding: 6px 12px;
		flex-direction: row;
		flex-wrap: wrap;
		text-align: center;
		gap: 5px;
		margin-bottom: 10px;
		justify-content: center;
	}

	.contact-item i {
		font-size: 16px;
	}

	.footer-content{
		float: none;
		display: block;
		text-align: center;
		width: 100%;
		padding: 15px 0;
	}

	.footer-right {
		text-align: center;
		margin-left: 0;
	}

	section {
		padding: 40px 0;
	}

	h1, h2 {
		font-size: 26px;
	}

	.section-header {
		justify-content: center;
		text-align: center;
	}

	.info-cards {
		grid-template-columns: 1fr;
		gap: 20px;
	}

	.download-grid {
		grid-template-columns: 1fr;
		gap: 15px;
	}

	.download-card a {
		flex-direction: column;
		text-align: center;
	}

	.download-arrow {
		position: absolute;
		bottom: 15px;
		right: 15px;
		font-size: 24px;
	}
}

@media (max-width: 480px) {
	.logo {
		height: 50px;
	}

	.header-right a .bigger {
		font-size: 18px;
	}

	h1, h2 {
		font-size: 22px;
	}

	.info-card {
		padding: 25px;
	}

	.card-icon {
		width: 60px;
		height: 60px;
		font-size: 28px;
	}
}