/* Typography & Base */
:root {
	--bg: #0a0a0a;
	--bg-elev: #1a1a1a;
	--text: #ffffff;
	--accent: #00bfa6;
	--muted: #c9c9c9;
	--radius: 14px;
	--radius-sm: 10px;
	--shadow: 0 10px 30px rgba(0, 0, 0, 0.45);
}

*,
*::before,
*::after {
	box-sizing: border-box;
}

html,
body {
	margin: 0;
	padding: 0;
	background: var(--bg);
	color: var(--text);
	font-family: 'Inter', 'Poppins', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
	line-height: 1.6;
	scroll-behavior: smooth;
}

img {
	max-width: 100%;
	display: block;
	border-radius: var(--radius-sm);
}

.container {
	width: min(1100px, 92%);
	margin: 0 auto;
}

.sr-only {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	border: 0;
}

/* Navbar */
.site-header {
	position: sticky;
	top: 0;
	z-index: 1000;
	background: rgba(10, 10, 10, 0.85);
	backdrop-filter: blur(8px);
	border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.navbar {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: min(1200px, 94%);
	margin: 0 auto;
	padding: 16px 0;
}

.logo {
	color: var(--text);
	text-decoration: none;
	font-weight: 700;
	letter-spacing: 0.3px;
	border-radius: 10px;
	padding: 6px 10px;
	background: linear-gradient(90deg, rgba(0, 191, 166, 0.2), rgba(0, 0, 0, 0));
}

.nav-links {
	list-style: none;
	display: flex;
	gap: 18px;
	margin: 0;
	padding: 0;
}

.nav-links a {
	color: var(--text);
	text-decoration: none;
	padding: 8px 12px;
	border-radius: 10px;
	transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.nav-links a:hover {
	background: rgba(255, 255, 255, 0.06);
	color: var(--accent);
	transform: translateY(-1px);
}

.nav-links a.active {
	color: var(--accent);
	background: rgba(0, 191, 166, 0.12);
}

.social-links {
	display: flex;
	align-items: center;
	gap: 12px;
}

.social-links a {
	color: var(--muted);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 34px;
	height: 34px;
	border-radius: 10px;
	border: 1px solid rgba(255, 255, 255, 0.08);
	background: rgba(255, 255, 255, 0.04);
	transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
	text-decoration: none;
}

.social-links a:hover {
	color: var(--accent);
	background: rgba(0, 191, 166, 0.12);
	border-color: rgba(0, 191, 166, 0.25);
	transform: translateY(-1px);
}

.nav-toggle {
	display: none;
	border: 1px solid rgba(255, 255, 255, 0.15);
	background: var(--bg-elev);
	color: var(--text);
	border-radius: 8px;
	padding: 8px 10px;
}

/* Hero */
.hero {
	display: grid;
	grid-template-columns: 1.15fr 0.85fr;
	gap: 40px;
	align-items: center;
	width: min(1200px, 94%);
	margin: 48px auto 0;
	padding: 40px 0 64px;
}

.hero-content h1 {
	font-size: clamp(2rem, 4vw, 3.25rem);
	line-height: 1.15;
	margin: 0 0 12px 0;
	letter-spacing: 0.2px;
}

.hero-content p {
	margin: 0 0 22px 0;
	color: var(--muted);
	max-width: 60ch;
}

.hero-art {
	min-height: 280px;
	border-radius: var(--radius);
	background:
		radial-gradient(120px 120px at 20% 30%, rgba(0, 191, 166, 0.35), transparent 60%),
		radial-gradient(180px 180px at 80% 70%, rgba(0, 191, 166, 0.25), transparent 60%),
		linear-gradient(180deg, #111111, #0a0a0a);
	box-shadow: var(--shadow);
}

/* Buttons */
.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	text-decoration: none;
	font-weight: 600;
	border-radius: 999px;
	padding: 12px 18px;
	border: 1px solid transparent;
	transition: transform 0.15s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease;
	cursor: pointer;
}

.btn-primary {
	background: var(--accent);
	color: #062a25;
	box-shadow: 0 8px 24px rgba(0, 191, 166, 0.35);
}

.btn-primary:hover {
	transform: translateY(-1px);
	box-shadow: 0 12px 32px rgba(0, 191, 166, 0.45);
}

.btn-secondary {
	background: rgba(255, 255, 255, 0.06);
	color: var(--text);
	border-color: rgba(255, 255, 255, 0.12);
}

.btn-secondary:hover {
	background: rgba(255, 255, 255, 0.1);
}

.btn-compact {
	background: rgba(255, 255, 255, 0.08);
	color: var(--text);
	padding: 8px 12px;
	border-radius: 10px;
}

/* Page header */
.page-header {
	padding: 40px 0 10px;
}

.page-header h1 {
	margin: 0 0 8px 0;
	font-size: clamp(1.6rem, 3.2vw, 2.2rem);
}

.page-header p {
	margin: 0;
	color: var(--muted);
}

/* Cards */
.card-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
	padding: 10px 0 64px;
}

.card {
	background: var(--bg-elev);
	border: 1px solid rgba(255, 255, 255, 0.06);
	border-radius: var(--radius);
	overflow: hidden;
	box-shadow: var(--shadow);
	transform: translateY(0);
	transition: transform 0.18s ease, box-shadow 0.25s ease, border-color 0.2s ease;
}

.card:hover {
	transform: translateY(-6px);
	border-color: rgba(0, 191, 166, 0.35);
	box-shadow: 0 16px 38px rgba(0, 0, 0, 0.55);
}

.card img {
	height: 220px;
	width: 100%;
	object-fit: cover;
	transition: transform 0.35s ease, filter 0.35s ease;
	filter: saturation(0.95) contrast(1.05);
}

.card:hover img {
	transform: scale(1.03);
	filter: saturation(1.05) contrast(1.08);
}

.card-body {
	padding: 16px;
}

.card-body h2 {
	margin: 0 0 6px 0;
	font-size: 1.25rem;
}

.card-body p {
	margin: 0 0 12px 0;
	color: var(--muted);
}

/* Content area */
.content {
	background: var(--bg-elev);
	border: 1px solid rgba(255, 255, 255, 0.06);
	border-radius: var(--radius);
	padding: 20px;
	box-shadow: var(--shadow);
	margin-bottom: 64px;
}

.content h2 {
	margin-top: 18px;
}

.badge {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 4px 12px;
	border-radius: 999px;
	background: rgba(0, 191, 166, 0.16);
	color: var(--accent);
	font-weight: 600;
	font-size: 0.8rem;
	text-transform: uppercase;
	letter-spacing: 0.7px;
}

.cart-price {
	font-weight: 700;
	color: var(--accent);
	font-size: 1.1rem;
}

.home-social {
	background: var(--bg-elev);
	border: 1px solid rgba(255, 255, 255, 0.06);
	border-radius: var(--radius);
	padding: 28px 24px 36px;
	box-shadow: var(--shadow);
	margin-bottom: 72px;
}

.home-social-caption {
	margin: 0 0 18px 0;
	color: var(--muted);
	font-size: 1.05rem;
}

.home-social-links {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
	gap: 14px;
}

.home-social-links a {
	display: flex;
	flex-direction: column;
	gap: 4px;
	text-decoration: none;
	padding: 12px 14px;
	border-radius: var(--radius-sm);
	border: 1px solid rgba(255, 255, 255, 0.08);
	background: rgba(255, 255, 255, 0.02);
	color: var(--text);
	transition: border-color 0.2s ease, transform 0.2s ease, background 0.2s ease;
}

.home-social-links a span {
	font-weight: 600;
}

.home-social-links a small {
	color: var(--muted);
}

.home-social-links a:hover {
	border-color: rgba(0, 191, 166, 0.35);
	background: rgba(0, 191, 166, 0.1);
	transform: translateY(-2px);
}

.faq-section {
	margin-bottom: 28px;
}

.faq-heading {
	max-width: 720px;
	margin-bottom: 24px;
}

.faq-heading h2 {
	margin: 12px 0 8px;
	font-size: clamp(1.7rem, 3vw, 2.4rem);
	line-height: 1.15;
}

.faq-heading p {
	margin: 0;
	color: var(--muted);
}

.faq-list {
	display: grid;
	gap: 14px;
}

.faq-item {
	background:
		linear-gradient(135deg, rgba(0, 191, 166, 0.09), rgba(255, 255, 255, 0.02) 38%, rgba(255, 255, 255, 0.03));
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: var(--radius);
	box-shadow: var(--shadow);
	padding: 0 22px;
	transition: border-color 0.2s ease, transform 0.2s ease, background 0.2s ease;
}

.faq-item[open] {
	border-color: rgba(0, 191, 166, 0.35);
	background:
		linear-gradient(135deg, rgba(0, 191, 166, 0.12), rgba(255, 255, 255, 0.03) 42%, rgba(255, 255, 255, 0.04));
}

.faq-item:hover {
	transform: translateY(-2px);
}

.faq-item summary {
	position: relative;
	list-style: none;
	cursor: pointer;
	padding: 20px 42px 20px 0;
	font-size: 1.02rem;
	font-weight: 600;
}

.faq-item summary::-webkit-details-marker {
	display: none;
}

.faq-item summary::after {
	content: "+";
	position: absolute;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
	color: var(--accent);
	font-size: 1.5rem;
	font-weight: 400;
	line-height: 1;
}

.faq-item p {
	margin: 0 0 20px;
	color: var(--muted);
	max-width: 76ch;
}

.faq-item[open] summary::after {
	content: "-";
}

.blog-section {
	margin-bottom: 72px;
}

.blog-card {
	display: grid;
	grid-template-columns: minmax(0, 1.7fr) auto;
	align-items: center;
	gap: 20px;
	padding: 30px 28px;
	border-radius: var(--radius);
	border: 1px solid rgba(255, 255, 255, 0.08);
	background:
		radial-gradient(circle at top right, rgba(0, 191, 166, 0.22), transparent 36%),
		linear-gradient(135deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02));
	box-shadow: var(--shadow);
}

.blog-copy h2 {
	margin: 12px 0 8px;
	font-size: clamp(1.6rem, 3vw, 2.2rem);
	line-height: 1.15;
}

.blog-copy p {
	margin: 0;
	max-width: 62ch;
	color: var(--muted);
}

.blog-actions {
	display: flex;
	justify-content: flex-end;
}

.about-grid {
	display: grid;
	gap: 18px;
}

.about-grid section {
	background: rgba(255, 255, 255, 0.02);
	border: 1px solid rgba(255, 255, 255, 0.04);
	border-radius: var(--radius-sm);
	padding: 16px 18px;
}

.about-grid ul {
	margin: 12px 0 0 18px;
	color: var(--muted);
}

/* Forms */
.contact-form {
	display: grid;
	gap: 14px;
}

.form-row {
	display: grid;
	gap: 6px;
}

.form-row label {
	font-weight: 600;
}

.form-row input,
.form-row textarea {
	background: #111111;
	color: var(--text);
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: 10px;
	padding: 12px 12px;
	font: inherit;
	outline: none;
	transition: border-color 0.15s ease, box-shadow 0.2s ease;
}

.form-row input:focus,
.form-row textarea:focus {
	border-color: var(--accent);
	box-shadow: 0 0 0 4px rgba(0, 191, 166, 0.12);
}

/* Footer */
.site-footer {
	border-top: 1px solid rgba(255, 255, 255, 0.06);
	color: var(--muted);
	text-align: center;
	padding: 24px 12px 40px;
}

/* Chatbot */
.chatbot {
	position: fixed;
	right: 20px;
	bottom: 20px;
	z-index: 1100;
}

.chatbot-bubble {
	background: var(--accent);
	color: #062a25;
	border: none;
	border-radius: 999px;
	width: 56px;
	height: 56px;
	box-shadow: 0 12px 28px rgba(0, 191, 166, 0.45);
	cursor: pointer;
	font-size: 22px;
	transition: transform 0.15s ease, box-shadow 0.2s ease;
}

.chatbot-bubble:hover {
	transform: translateY(-2px);
	box-shadow: 0 16px 34px rgba(0, 191, 166, 0.55);
}

.chatbot-window {
	position: absolute;
	right: 0;
	bottom: 70px;
	width: min(340px, 86vw);
	background: var(--bg-elev);
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: 16px;
	box-shadow: var(--shadow);
	display: none;
	overflow: hidden;
}

.chatbot-window.open {
	display: grid;
	grid-template-rows: auto 1fr auto;
}

.chatbot-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 12px 14px;
	background: rgba(255, 255, 255, 0.04);
	border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.chatbot-close {
	background: transparent;
	color: var(--text);
	border: none;
	font-size: 20px;
	cursor: pointer;
}

.chatbot-messages {
	padding: 12px;
	max-height: 360px;
	overflow: auto;
	display: grid;
	gap: 8px;
}

.msg {
	padding: 10px 12px;
	border-radius: 12px;
	max-width: 80%;
	font-size: 0.95rem;
}

.msg.user {
	background: rgba(255, 255, 255, 0.08);
	justify-self: end;
}

.msg.bot {
	background: rgba(0, 191, 166, 0.12);
	border: 1px solid rgba(0, 191, 166, 0.25);
}

.chatbot-input {
	display: grid;
	grid-template-columns: 1fr auto;
	gap: 8px;
	padding: 12px;
	border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.chatbot-input input {
	background: #111111;
	color: var(--text);
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: 10px;
	padding: 10px 12px;
}

/* Service Categories Section */
.service-categories {
	margin: 48px 0;
}

.section-title {
	font-size: 1.5rem;
	font-weight: 600;
	margin-bottom: 24px;
	color: var(--text);
}

.service-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
	margin-bottom: 48px;
}

.service-card {
	background: var(--bg-elev);
	border-radius: var(--radius);
	overflow: hidden;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	border: 1px solid rgba(255, 255, 255, 0.06);
}

.service-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 12px 40px rgba(0, 191, 166, 0.15), var(--shadow);
	border-color: rgba(0, 191, 166, 0.3);
}

.service-card img {
	width: 100%;
	height: 200px;
	object-fit: cover;
	border-radius: 0;
	transition: transform 0.3s ease;
}

.service-card:hover img {
	transform: scale(1.05);
}

.service-card-body {
	padding: 20px;
}

.service-card-body h3 {
	font-size: 1.2rem;
	font-weight: 600;
	margin: 0 0 8px 0;
	color: var(--text);
}

.service-card-body p {
	font-size: 0.9rem;
	color: var(--muted);
	margin: 0 0 12px 0;
	line-height: 1.5;
}

.price-range {
	font-size: 0.95rem;
	font-weight: 600;
	color: var(--accent);
	margin-top: 8px;
}

/* Featured Offers Section */
.featured-offers {
	margin: 64px 0;
	padding: 40px 0;
	border-top: 1px solid rgba(255, 255, 255, 0.06);
	border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.offers-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
}

.offer-card {
	background: var(--bg-elev);
	border-radius: var(--radius);
	padding: 24px;
	border: 1px solid rgba(255, 255, 255, 0.06);
	position: relative;
	transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.offer-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 12px 40px rgba(0, 191, 166, 0.2), var(--shadow);
	border-color: var(--accent);
}

.offer-badge {
	position: absolute;
	top: 16px;
	right: 16px;
	background: var(--accent);
	color: var(--bg);
	font-size: 0.75rem;
	font-weight: 600;
	padding: 4px 12px;
	border-radius: 20px;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.offer-card h3 {
	font-size: 1.3rem;
	font-weight: 600;
	margin: 0 0 12px 0;
	color: var(--text);
	padding-right: 80px;
}

.offer-card p {
	font-size: 0.9rem;
	color: var(--muted);
	margin: 0 0 20px 0;
	line-height: 1.6;
}

.offer-price {
	font-size: 1.4rem;
	font-weight: 700;
	color: var(--accent);
	margin: 16px 0;
}

.offer-original {
	font-size: 1rem;
	font-weight: 400;
	color: var(--muted);
	text-decoration: line-through;
	margin-left: 8px;
}

.offer-card .btn {
	width: 100%;
	margin-top: 8px;
}

/* CTA Section */
.cta-section {
	margin: 64px 0;
	padding: 48px 32px;
	background: var(--bg-elev);
	border-radius: var(--radius);
	border: 1px solid rgba(255, 255, 255, 0.06);
	text-align: center;
}

.cta-content h2 {
	font-size: 1.8rem;
	font-weight: 600;
	margin: 0 0 12px 0;
	color: var(--text);
}

.cta-content p {
	font-size: 1rem;
	color: var(--muted);
	margin: 0 0 24px 0;
}

/* Cart page */
.cart-page {
	display: grid;
	grid-template-columns: minmax(0, 2fr) minmax(260px, 1fr);
	gap: 24px;
	margin-bottom: 64px;
}

.cart-main {
	background: var(--bg-elev);
	border-radius: var(--radius);
	border: 1px solid rgba(255, 255, 255, 0.06);
	padding: 20px;
	box-shadow: var(--shadow);
}

.cart-empty {
	margin: 0;
	color: var(--muted);
}

.cart-items {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	gap: 12px;
}

.cart-item {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	padding: 12px 14px;
	border-radius: var(--radius-sm);
	border: 1px solid rgba(255, 255, 255, 0.06);
	background: rgba(255, 255, 255, 0.02);
}

.cart-item-main h3 {
	margin: 0 0 4px 0;
	font-size: 1rem;
}

.cart-item-meta {
	margin: 0 0 4px 0;
	color: var(--muted);
	font-size: 0.85rem;
}

.cart-item-price {
	margin: 0;
	font-weight: 600;
	color: var(--accent);
}

.cart-summary {
	background: var(--bg-elev);
	border-radius: var(--radius);
	border: 1px solid rgba(255, 255, 255, 0.06);
	padding: 20px;
	box-shadow: var(--shadow);
	height: fit-content;
}

.cart-summary h2 {
	margin: 0 0 12px 0;
}

.cart-summary-row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 4px;
}

.cart-summary-row span {
	color: var(--muted);
}

.cart-summary-row strong {
	font-size: 1.2rem;
}

.cart-count-badge {
	display: none;
	margin-left: 6px;
	min-width: 20px;
	height: 20px;
	padding: 0 6px;
	border-radius: 999px;
	background: var(--accent);
	color: #062a25;
	font-size: 0.75rem;
	font-weight: 700;
	align-items: center;
	justify-content: center;
}

.cart-toast {
	position: fixed;
	left: 50%;
	bottom: 24px;
	transform: translateX(-50%);
	background: var(--bg-elev);
	color: var(--text);
	padding: 10px 16px;
	border-radius: 999px;
	border: 1px solid rgba(0, 191, 166, 0.4);
	box-shadow: var(--shadow);
	font-size: 0.9rem;
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.2s ease, transform 0.2s ease;
	z-index: 1200;
}

.cart-toast.show {
	opacity: 1;
	transform: translate(-50%, -4px);
}

/* Responsive */
@media (max-width: 900px) {
	.hero {
		grid-template-columns: 1fr;
		gap: 24px;
	}

	.card-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.cart-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.service-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.offers-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 640px) {
	.nav-toggle {
		display: inline-block;
	}

	.navbar {
		flex-wrap: wrap;
		gap: 8px 0;
	}

	.nav-links {
		width: 100%;
		flex-direction: column;
		background: rgba(26, 26, 26, 0.9);
		border: 1px solid rgba(255, 255, 255, 0.06);
		border-radius: 12px;
		padding: 8px;
		display: none;
	}

	.nav-links.open {
		display: flex;
	}

	.social-links {
		margin-left: auto;
		gap: 10px;
	}

	.card-grid {
		grid-template-columns: 1fr;
	}

	.cart-grid {
		grid-template-columns: 1fr;
	}

	.cart-page {
		grid-template-columns: 1fr;
	}

	.service-grid {
		grid-template-columns: 1fr;
	}

	.offers-grid {
		grid-template-columns: 1fr;
	}

	.cta-section {
		padding: 32px 20px;
	}

	.cta-content h2 {
		font-size: 1.5rem;
	}

	.faq-item {
		padding: 0 16px;
	}

	.faq-item summary {
		padding: 18px 36px 18px 0;
	}

	.blog-card {
		grid-template-columns: 1fr;
		padding: 24px 20px;
	}

	.blog-actions {
		justify-content: flex-start;
	}
}

/* Animations */
main {
	animation: fadeIn 0.4s ease-out forwards;
}

@keyframes fadeIn {
	from {
		opacity: 0;
		transform: translateY(10px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes pop {
	0% {
		transform: scale(1);
	}

	50% {
		transform: scale(1.3);
	}

	100% {
		transform: scale(1);
	}
}

.pop-anim {
	animation: pop 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}

@keyframes typingBlink {
	0% {
		opacity: 0.2;
	}

	20% {
		opacity: 1;
	}

	100% {
		opacity: 0.2;
	}
}

.typing-indicator {
	animation: typingBlink 1.4s infinite both;
	font-weight: bold;
	letter-spacing: 2px;
}
