/* TurboSoft — faqe statike modulësh (redakto përmbajtjen në HTML) */

:root {
	--accent: #218b8e;
	--accent-dark: #1a6f72;
	--text: #2c3e50;
	--muted: #5a6c7d;
	--border: #e4e8ec;
	--bg-soft: #f5f8f9;
	--white: #fff;
}

*,
*::before,
*::after {
	box-sizing: border-box;
}

body {
	margin: 0;
	font-family: "Segoe UI", system-ui, -apple-system, sans-serif;
	font-size: 16px;
	line-height: 1.55;
	color: var(--text);
	background: var(--white);
}

a {
	color: var(--accent);
	text-decoration: none;
}

a:hover,
a:focus {
	text-decoration: underline;
	color: var(--accent-dark);
}

.container,
.container-lg {
	max-width: 1100px;
	margin: 0 auto;
	padding: 0 1.25rem;
}

/* Header */
.site-header {
	background: var(--white);
	border-bottom: 1px solid var(--border);
	position: sticky;
	top: 0;
	z-index: 50;
}

.site-header-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 1rem;
	padding: 0.85rem 0;
}

.header-end {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: flex-end;
	gap: 0.75rem 1rem;
}

.nav-mobile-toggle {
	display: none;
	align-items: center;
	justify-content: center;
	width: 2.3rem;
	height: 2.3rem;
	border: 1px solid var(--border);
	border-radius: 8px;
	background: var(--white);
	color: var(--text);
	cursor: pointer;
}

.logo {
	font-weight: 800;
	font-size: 1.15rem;
	color: var(--text) !important;
	text-decoration: none !important;
}

.logo span {
	color: var(--accent);
}

.nav-main ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

.nav-main a {
	font-weight: 600;
	font-size: 0.92rem;
}

.nav-main a[aria-current="page"] {
	color: var(--accent-dark);
}

/* Dropdown "Produktet" */
.nav-main-list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 0.25rem 0.5rem;
}

.nav-dropdown {
	position: relative;
}

.nav-dropdown-toggle {
	display: inline-flex;
	align-items: center;
	gap: 0.35rem;
	margin: 0;
	padding: 0.35rem 0.5rem;
	font: inherit;
	font-weight: 600;
	font-size: 0.92rem;
	color: var(--accent);
	background: transparent;
	border: 1px solid transparent;
	border-radius: 8px;
	cursor: pointer;
	text-decoration: none;
}

.nav-dropdown-toggle:hover,
.nav-dropdown-toggle:focus-visible {
	color: var(--accent-dark);
	background: rgba(33, 139, 142, 0.08);
	outline: none;
}

.nav-dropdown-chevron {
	display: inline-block;
	width: 0;
	height: 0;
	border-left: 5px solid transparent;
	border-right: 5px solid transparent;
	border-top: 6px solid currentColor;
	opacity: 0.75;
	transition: transform 0.2s ease;
}

.nav-dropdown.is-open .nav-dropdown-chevron {
	transform: rotate(180deg);
}

.nav-dropdown-menu {
	position: absolute;
	top: calc(100% + 0.35rem);
	left: 0;
	min-width: 14rem;
	margin: 0;
	padding: 0.35rem 0;
	list-style: none;
	background: var(--white);
	border: 1px solid var(--border);
	border-radius: 10px;
	box-shadow: 0 12px 40px rgba(15, 23, 42, 0.12);
	z-index: 100;
	display: none;
}

.nav-dropdown.is-open .nav-dropdown-menu {
	display: block;
}

.nav-dropdown-menu a {
	display: block;
	padding: 0.5rem 1rem;
	font-weight: 600;
	font-size: 0.9rem;
	color: var(--text) !important;
	text-decoration: none !important;
}

.nav-dropdown-menu a:hover,
.nav-dropdown-menu a:focus {
	background: var(--bg-soft);
	color: var(--accent-dark) !important;
}

.nav-dropdown-menu a[aria-current="page"] {
	color: var(--accent-dark) !important;
	background: rgba(33, 139, 142, 0.08);
}

@media (max-width: 720px) {
	.site-header .site-header-inner {
		gap: 0.6rem;
		flex-wrap: nowrap;
		align-items: center;
	}

	.site-header .header-end {
		width: auto;
		margin-left: auto;
		justify-content: flex-end;
		flex-wrap: nowrap;
		position: relative;
	}

	.site-header .nav-mobile-toggle {
		display: none !important;
	}

	.site-header .nav-main {
		display: block;
		width: auto;
		position: static;
		background: transparent;
		border: none;
		padding: 0;
		box-shadow: none;
	}

	.site-header .nav-main-list {
		width: auto;
		flex-direction: row;
		align-items: center;
	}

	.site-header .nav-main-list > li {
		width: auto;
	}

	.site-header .nav-main-list > li > a,
	.site-header .nav-dropdown-toggle {
		display: inline-flex;
		width: auto;
		justify-content: space-between;
		padding: 0.35rem 0.5rem;
	}

	.site-header .nav-dropdown-toggle::before {
		content: "\f0ca";
		font-family: "Font Awesome 6 Free";
		font-weight: 900;
		font-size: 0.78rem;
		margin-right: 0.38rem;
	}

	.nav-dropdown-menu {
		position: absolute;
		top: calc(100% + 0.3rem);
		right: 0;
		left: auto;
		min-width: 13.8rem;
		max-height: min(68vh, 24rem);
		overflow: auto;
		border: 1px solid var(--border);
		border-radius: 10px;
		background: var(--white);
		box-shadow: 0 14px 36px rgba(15, 23, 42, 0.2);
		padding: 0.35rem 0;
		margin-top: 0;
		z-index: 140;
	}

	.nav-dropdown.is-open .nav-dropdown-menu {
		display: block;
	}
}

/* Gjuha — dropdown me flamuj (emoji) */
.lang-dropdown-wrap {
	flex-shrink: 0;
}

.lang-select {
	margin: 0;
	padding: 0.45rem 0.35rem;
	font-family: inherit;
	font-size: 1.05rem;
	font-weight: 600;
	line-height: 1.3;
	color: var(--text);
	background-color: var(--white);
	border: 1px solid var(--border);
	border-radius: 8px;
	cursor: pointer;
	min-width: 2.8rem;
	width: 2.8rem;
	text-align: center;
	text-align-last: center;
	appearance: none;
	-webkit-appearance: none;
	transition: border-color 0.15s, box-shadow 0.15s;
}

.lang-select:hover,
.lang-select:focus {
	border-color: var(--accent);
	outline: none;
	box-shadow: 0 0 0 3px rgba(33, 139, 142, 0.15);
}

/* Hero */
.hero {
	background: linear-gradient(180deg, var(--bg-soft), var(--white));
	padding: 2.5rem 0 2rem;
	border-bottom: 1px solid var(--border);
}

.hero h1 {
	margin: 0 0 0.75rem;
	font-size: clamp(1.6rem, 4vw, 2.1rem);
	line-height: 1.2;
}

.hero .lead {
	margin: 0;
	max-width: 720px;
	font-size: 1.05rem;
	color: var(--muted);
}

.breadcrumb {
	font-size: 0.88rem;
	color: var(--muted);
	margin-bottom: 1rem;
}

.breadcrumb a {
	font-weight: 600;
}

/* Sections */
.section {
	padding: 2.25rem 0;
}

.section.alt {
	background: var(--bg-soft);
}

.section h2 {
	margin: 0 0 1rem;
	font-size: 1.35rem;
}

.section p {
	margin: 0 0 1rem;
	color: var(--muted);
	max-width: 800px;
}

.section p:last-child {
	margin-bottom: 0;
}

.feature-list {
	margin: 0;
	padding-left: 1.25rem;
	color: var(--muted);
	max-width: 800px;
}

.feature-list li {
	margin-bottom: 0.5rem;
}

ol.feature-list {
	list-style: decimal;
}

.two-col {
	display: grid;
	gap: 1.5rem;
}

@media (min-width: 768px) {
	.two-col {
		grid-template-columns: 1fr 1fr;
	}
}

.cta-bar {
	text-align: center;
	padding: 2rem 1rem;
	background: var(--text);
	color: var(--white);
}

.cta-bar h2 {
	margin: 0 0 0.5rem;
	font-size: 1.2rem;
	color: var(--white);
}

.cta-bar p {
	margin: 0 0 1rem;
	color: rgba(255, 255, 255, 0.88);
	max-width: none;
}

.btn {
	display: inline-block;
	padding: 0.6rem 1.2rem;
	border-radius: 4px;
	font-weight: 600;
	font-size: 0.95rem;
	border: 2px solid transparent;
	text-decoration: none !important;
}

.btn-primary {
	background: var(--accent);
	color: var(--white) !important;
	border-color: var(--accent);
}

.btn-primary:hover,
.btn-primary:focus {
	background: var(--accent-dark);
	border-color: var(--accent-dark);
	color: var(--white) !important;
}

.btn-outline {
	background: transparent;
	color: var(--accent) !important;
	border-color: var(--accent);
}

/* Cards (index) */
.cards {
	display: grid;
	gap: 1rem;
}

@media (min-width: 600px) {
	.cards {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (min-width: 900px) {
	.cards {
		grid-template-columns: repeat(3, 1fr);
	}
}

.card {
	display: block;
	padding: 1.25rem;
	background: var(--white);
	border: 1px solid var(--border);
	border-radius: 8px;
	color: inherit !important;
	text-decoration: none !important;
	transition: border-color 0.2s, box-shadow 0.2s;
	box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
}

.card:hover,
.card:focus {
	border-color: var(--accent);
	box-shadow: 0 4px 14px rgba(33, 139, 142, 0.12);
}

.card h3 {
	margin: 0 0 0.4rem;
	font-size: 1.05rem;
	color: var(--text);
}

.card p {
	margin: 0;
	font-size: 0.9rem;
	color: var(--muted);
}

/* Footer */
.site-footer {
	padding: 1.5rem 0;
	border-top: 1px solid var(--border);
	font-size: 0.88rem;
	color: var(--muted);
	text-align: center;
}
