/*
Theme Name: Team Nikolov
Theme URI: http://localhost/teamnikolov
Author: Team Nikolov
Description: Премиум къстъм тема за Team Nikolov — хамалски услуги, къртене, извозване. Тъмен индустриален дизайн с жълти акценти.
Version: 1.1.0
Requires at least: 6.0
Requires PHP: 7.4
License: GPL v2 or later
Text Domain: teamnikolov
*/

/* ============================================================
   1. CSS Variables
   ============================================================ */
:root {
	--tn-bg:         #0B0F12;
	--tn-bg-alt:     #10161C;
	--tn-card:       #141B22;
	--tn-card-2:     #1C2530;
	--tn-border:     #2A3540;
	--tn-border-soft:#1F2832;
	--tn-yellow:     #FFD23F;
	--tn-yellow-2:   #FFC72C;
	--tn-yellow-soft:rgba(255,210,63,0.12);
	--tn-text:       #F1F4F7;
	--tn-muted:      #A7B4C2;
	--tn-dim:        #6C7A89;
	--tn-success:    #4ADE80;
	--tn-danger:     #EF4444;
	--tn-radius:     14px;
	--tn-radius-sm:  8px;
	--tn-radius-lg:  22px;
	--tn-shadow:     0 10px 40px rgba(0,0,0,0.45);
	--tn-shadow-yel: 0 14px 40px rgba(255,210,63,0.25);
	--tn-tr:         .28s cubic-bezier(.4,.0,.2,1);
	--tn-container:  1200px;
	--tn-font-head:  'Russo One', 'Oswald', system-ui, sans-serif;
	--tn-font-body:  'Inter', 'Segoe UI', system-ui, sans-serif;
}

/* ============================================================
   2. Reset & Base
   ============================================================ */
*,*::before,*::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
	margin: 0;
	font-family: var(--tn-font-body);
	font-size: 16px;
	line-height: 1.6;
	color: var(--tn-text);
	background: var(--tn-bg);
	-webkit-font-smoothing: antialiased;
	overflow-x: hidden;
}
img, svg, video { max-width: 100%; height: auto; display: block; }
a { color: var(--tn-yellow); text-decoration: none; transition: color var(--tn-tr); }
a:hover { color: var(--tn-yellow-2); }
button { font-family: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
input, textarea, select { font-family: inherit; font-size: inherit; color: inherit; }
ul, ol { padding-left: 1.2rem; }
hr { border: 0; border-top: 1px solid var(--tn-border); margin: 2rem 0; }

/* ============================================================
   3. Typography
   ============================================================ */
h1,h2,h3,h4,h5,h6 {
	font-family: var(--tn-font-head);
	font-weight: 400;
	line-height: 1.15;
	margin: 0 0 .6em;
	letter-spacing: .5px;
	text-transform: uppercase;
}
h1 { font-size: clamp(2.2rem, 5.2vw, 4rem); }
h2 { font-size: clamp(1.8rem, 3.8vw, 2.8rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.55rem); }
p { margin: 0 0 1rem; color: var(--tn-muted); }
strong { color: var(--tn-text); font-weight: 600; }
.tn-accent { color: var(--tn-yellow); }

/* ============================================================
   4. Layout utilities
   ============================================================ */
.tn-container {
	width: 100%;
	max-width: var(--tn-container);
	margin: 0 auto;
	padding: 0 24px;
}
.tn-section {
	position: relative;
	padding: clamp(60px, 9vw, 110px) 0;
}
.tn-section--alt { background: var(--tn-bg-alt); }
.tn-section--hatched::before {
	content: "";
	position: absolute; inset: 0;
	background-image:
		repeating-linear-gradient(135deg,
			transparent 0 20px,
			rgba(255,210,63,.03) 20px 22px);
	pointer-events: none;
}
.tn-eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	font-family: var(--tn-font-body);
	font-size: .82rem;
	font-weight: 700;
	letter-spacing: 3px;
	text-transform: uppercase;
	color: var(--tn-yellow);
	margin-bottom: 14px;
}
.tn-eyebrow::before {
	content: "";
	width: 34px; height: 2px;
	background: var(--tn-yellow);
}
.tn-section-head {
	text-align: center;
	max-width: 720px;
	margin: 0 auto 60px;
}
.tn-section-head p { font-size: 1.05rem; }

/* ============================================================
   5. Buttons
   ============================================================ */
.tn-btn {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 16px 30px;
	border-radius: 999px;
	font-family: var(--tn-font-body);
	font-weight: 700;
	font-size: .95rem;
	letter-spacing: .5px;
	text-transform: uppercase;
	transition: transform var(--tn-tr), background var(--tn-tr), color var(--tn-tr), box-shadow var(--tn-tr);
	white-space: nowrap;
}
.tn-btn--primary {
	background: var(--tn-yellow);
	color: #0B0F12;
	box-shadow: var(--tn-shadow-yel);
}
.tn-btn--primary:hover {
	background: var(--tn-yellow-2);
	color: #0B0F12;
	transform: translateY(-2px);
}
.tn-btn--ghost {
	background: transparent;
	color: var(--tn-text);
	border: 2px solid var(--tn-border);
}
.tn-btn--ghost:hover {
	border-color: var(--tn-yellow);
	color: var(--tn-yellow);
}
.tn-btn svg { width: 18px; height: 18px; }

/* ============================================================
   6. Warning tape divider
   ============================================================ */
.tn-tape {
	height: 28px;
	background:
		repeating-linear-gradient(-45deg,
			#FFD23F 0 22px,
			#0B0F12 22px 44px);
	position: relative;
	box-shadow: inset 0 2px 0 rgba(0,0,0,.25), inset 0 -2px 0 rgba(0,0,0,.25);
}

/* ============================================================
   7. Header / Top bar / Nav
   ============================================================ */
.tn-topbar {
	background: #07090B;
	border-bottom: 1px solid var(--tn-border-soft);
	font-size: .85rem;
	color: var(--tn-muted);
}
.tn-topbar__inner {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 10px 0;
	gap: 20px;
	flex-wrap: wrap;
}
.tn-topbar a { color: var(--tn-muted); }
.tn-topbar a:hover { color: var(--tn-yellow); }
.tn-topbar__list { display: flex; gap: 22px; list-style: none; padding: 0; margin: 0; flex-wrap: wrap; }
.tn-topbar__item { display: inline-flex; align-items: center; gap: 8px; }
.tn-topbar__item svg { width: 14px; height: 14px; color: var(--tn-yellow); }

.tn-header {
	position: sticky;
	top: 0;
	z-index: 100;
	background: rgba(11,15,18,.92);
	backdrop-filter: blur(12px);
	border-bottom: 1px solid var(--tn-border-soft);
	transition: background var(--tn-tr), box-shadow var(--tn-tr);
}
.tn-header.is-scrolled { box-shadow: 0 8px 30px rgba(0,0,0,.5); }
.tn-header__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 14px 0;
	gap: 30px;
}

.tn-logo {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	font-family: var(--tn-font-head);
	font-size: 1.3rem;
	color: var(--tn-text);
	text-transform: uppercase;
	letter-spacing: 1px;
	line-height: 1;
}
.tn-logo:hover { color: var(--tn-yellow); }
.tn-logo__mark-svg {
	width: 44px; height: 44px;
	display: block;
	filter: drop-shadow(0 6px 14px rgba(255,210,63,.25));
	transition: transform var(--tn-tr);
}
.tn-logo:hover .tn-logo__mark-svg { transform: rotate(-4deg) scale(1.04); }
.tn-logo__name { display: flex; flex-direction: column; gap: 2px; }
.tn-logo__sub {
	font-family: var(--tn-font-body);
	font-size: .65rem;
	font-weight: 500;
	color: var(--tn-yellow);
	letter-spacing: 2.5px;
}

.tn-nav { display: flex; align-items: center; gap: 6px; }
.tn-nav ul {
	list-style: none;
	display: flex;
	gap: 4px;
	margin: 0;
	padding: 0;
}
.tn-nav a {
	display: inline-block;
	padding: 10px 16px;
	color: var(--tn-text);
	font-weight: 500;
	font-size: .95rem;
	border-radius: 8px;
	transition: color var(--tn-tr), background var(--tn-tr);
}
.tn-nav a:hover,
.tn-nav .current-menu-item > a { color: var(--tn-yellow); background: var(--tn-yellow-soft); }

.tn-header__cta { display: flex; align-items: center; gap: 14px; }
.tn-header__phone {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	color: var(--tn-text);
	font-weight: 700;
	font-size: 1rem;
}
.tn-header__phone:hover { color: var(--tn-yellow); }
.tn-header__phone svg {
	width: 36px; height: 36px;
	padding: 8px;
	background: var(--tn-yellow);
	color: #0B0F12;
	border-radius: 50%;
}

.tn-burger {
	display: none;
	width: 42px; height: 42px;
	border-radius: 10px;
	background: var(--tn-card);
	border: 1px solid var(--tn-border);
	align-items: center;
	justify-content: center;
}
.tn-burger span {
	display: block;
	width: 20px; height: 2px;
	background: var(--tn-text);
	position: relative;
	transition: transform var(--tn-tr), opacity var(--tn-tr);
}
.tn-burger span::before,
.tn-burger span::after {
	content: ""; position: absolute; left: 0;
	width: 20px; height: 2px; background: var(--tn-text);
	transition: transform var(--tn-tr);
}
.tn-burger span::before { top: -6px; }
.tn-burger span::after  { top:  6px; }
.tn-burger.is-open span { background: transparent; }
.tn-burger.is-open span::before { transform: translateY(6px) rotate(45deg); }
.tn-burger.is-open span::after  { transform: translateY(-6px) rotate(-45deg); }

/* ============================================================
   8. Hero
   ============================================================ */
.tn-hero {
	position: relative;
	overflow: hidden;
	padding: clamp(80px, 12vw, 150px) 0 clamp(100px, 14vw, 180px);
	background:
		radial-gradient(1200px 600px at 80% 20%, rgba(255,210,63,.08), transparent 60%),
		radial-gradient(900px 500px at 10% 90%, rgba(255,210,63,.05), transparent 60%),
		linear-gradient(180deg, #0B0F12 0%, #10161C 100%);
}
.tn-hero::before {
	content: "";
	position: absolute;
	inset: 0;
	background-image:
		linear-gradient(rgba(255,255,255,.02) 1px, transparent 1px),
		linear-gradient(90deg, rgba(255,255,255,.02) 1px, transparent 1px);
	background-size: 60px 60px;
	mask-image: radial-gradient(ellipse at center, #000 30%, transparent 75%);
	pointer-events: none;
}
.tn-hero__inner {
	position: relative;
	display: grid;
	grid-template-columns: 1.3fr 1fr;
	gap: 60px;
	align-items: center;
}
.tn-hero__badge {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 8px 16px;
	background: var(--tn-yellow-soft);
	border: 1px solid rgba(255,210,63,.3);
	border-radius: 999px;
	color: var(--tn-yellow);
	font-size: .82rem;
	font-weight: 600;
	letter-spacing: 1px;
	text-transform: uppercase;
	margin-bottom: 22px;
}
.tn-hero__badge::before {
	content: "";
	width: 8px; height: 8px;
	background: var(--tn-yellow);
	border-radius: 50%;
	animation: tn-pulse 1.8s infinite;
}
@keyframes tn-pulse {
	0%, 100% { box-shadow: 0 0 0 0 rgba(255,210,63,.7); }
	50%      { box-shadow: 0 0 0 8px rgba(255,210,63,0);  }
}
.tn-hero h1 {
	font-size: clamp(2.4rem, 6vw, 4.6rem);
	line-height: 1.05;
	margin-bottom: 20px;
}
.tn-hero h1 .tn-accent { display: inline-block; position: relative; }
.tn-hero h1 .tn-accent::after {
	content: "";
	position: absolute;
	left: 0; right: 0; bottom: 8%;
	height: 14px;
	background: rgba(255,210,63,.25);
	z-index: -1;
	transform: skewX(-12deg);
}
.tn-hero__lead {
	font-size: 1.18rem;
	line-height: 1.7;
	color: var(--tn-muted);
	max-width: 560px;
	margin-bottom: 36px;
}
.tn-hero__cta { display: flex; gap: 14px; flex-wrap: wrap; }
.tn-hero__stats {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 30px;
	margin-top: 60px;
	padding-top: 40px;
	border-top: 1px solid var(--tn-border);
}
.tn-hero__stat-num {
	font-family: var(--tn-font-head);
	font-size: 2.2rem;
	color: var(--tn-yellow);
	line-height: 1;
	margin-bottom: 6px;
}
.tn-hero__stat-lbl {
	font-size: .85rem;
	color: var(--tn-muted);
	text-transform: uppercase;
	letter-spacing: 1.5px;
}

/* Hero visual card */
.tn-hero__visual {
	position: relative;
	aspect-ratio: 4/5;
	border-radius: var(--tn-radius-lg);
	background: linear-gradient(135deg, #1C2530 0%, #0B0F12 100%);
	border: 1px solid var(--tn-border);
	overflow: hidden;
	box-shadow: var(--tn-shadow);
	display: flex;
	align-items: flex-end;
	padding: 30px;
}
.tn-hero__visual-img {
	position: absolute;
	inset: 0;
	width: 100%; height: 100%;
	object-fit: cover;
	z-index: 0;
}
.tn-hero__visual::before {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(11,15,18,.2) 0%, rgba(11,15,18,.55) 55%, rgba(11,15,18,.92) 100%);
	z-index: 1;
}
.tn-hero__visual::after {
	content: "";
	position: absolute;
	inset: 0;
	background-image: repeating-linear-gradient(-45deg, rgba(255,210,63,.06) 0 18px, transparent 18px 36px);
	z-index: 1;
	mix-blend-mode: overlay;
	pointer-events: none;
}
.tn-hero__visual-icon,
.tn-hero__visual-card { z-index: 2; }
.tn-hero__visual-icon {
	position: absolute;
	top: 40px; right: 40px;
	width: 80px; height: 80px;
	background: var(--tn-yellow);
	color: #0B0F12;
	border-radius: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: var(--tn-shadow-yel);
	transform: rotate(-6deg);
}
.tn-hero__visual-icon svg { width: 44px; height: 44px; }
.tn-hero__visual-card {
	position: relative;
	background: rgba(11,15,18,.85);
	backdrop-filter: blur(8px);
	padding: 24px;
	border-radius: var(--tn-radius);
	border: 1px solid var(--tn-border);
	width: 100%;
}
.tn-hero__visual-label {
	font-size: .75rem;
	color: var(--tn-yellow);
	text-transform: uppercase;
	letter-spacing: 2px;
	margin-bottom: 8px;
	font-weight: 700;
}
.tn-hero__visual-title {
	font-family: var(--tn-font-head);
	font-size: 1.3rem;
	color: var(--tn-text);
	margin-bottom: 10px;
	text-transform: uppercase;
}
.tn-hero__visual-text {
	font-size: .92rem;
	color: var(--tn-muted);
	margin: 0;
}

/* ============================================================
   9. Services
   ============================================================ */
.tn-services__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 22px;
}
.tn-service {
	position: relative;
	background: var(--tn-card);
	border: 1px solid var(--tn-border);
	border-radius: var(--tn-radius);
	padding: 32px 28px;
	transition: transform var(--tn-tr), border-color var(--tn-tr), box-shadow var(--tn-tr);
	overflow: hidden;
}
.tn-service::before {
	content: "";
	position: absolute;
	top: 0; left: 0; right: 0;
	height: 3px;
	background: var(--tn-yellow);
	transform: scaleX(0);
	transform-origin: left;
	transition: transform .4s cubic-bezier(.4,.0,.2,1);
}
.tn-service:hover {
	transform: translateY(-6px);
	border-color: rgba(255,210,63,.3);
	box-shadow: 0 20px 50px rgba(0,0,0,.5);
}
.tn-service:hover::before { transform: scaleX(1); }
.tn-service__icon {
	width: 64px; height: 64px;
	background: var(--tn-yellow-soft);
	border: 1px solid rgba(255,210,63,.2);
	border-radius: 16px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--tn-yellow);
	margin-bottom: 22px;
	transition: background var(--tn-tr);
}
.tn-service:hover .tn-service__icon {
	background: var(--tn-yellow);
	color: #0B0F12;
}
.tn-service__icon svg { width: 32px; height: 32px; }
.tn-service__title {
	font-size: 1.15rem;
	margin-bottom: 10px;
	color: var(--tn-text);
}
.tn-service__text { color: var(--tn-muted); font-size: .95rem; margin: 0; }
.tn-service__num {
	position: absolute;
	top: 22px; right: 26px;
	font-family: var(--tn-font-head);
	font-size: 2.5rem;
	color: var(--tn-border);
	transition: color var(--tn-tr);
}
.tn-service:hover .tn-service__num { color: var(--tn-yellow); opacity: .4; }

/* ============================================================
   10. Why-us / Features strip
   ============================================================ */
.tn-why__inner {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 80px;
	align-items: center;
}
.tn-why__image {
	position: relative;
	aspect-ratio: 4/3;
	border-radius: var(--tn-radius-lg);
	background: linear-gradient(135deg, #1C2530 0%, #0B0F12 100%);
	border: 1px solid var(--tn-border);
	overflow: hidden;
	box-shadow: var(--tn-shadow);
}
.tn-why__image img {
	position: absolute;
	inset: 0;
	width: 100%; height: 100%;
	object-fit: cover;
	z-index: 0;
}
.tn-why__image::before {
	content: "";
	position: absolute; inset: 0;
	background: linear-gradient(135deg, rgba(11,15,18,.15) 0%, rgba(11,15,18,.55) 100%);
	z-index: 1;
}
.tn-why__image::after {
	content: "";
	position: absolute; inset: 0;
	background: repeating-linear-gradient(-45deg, rgba(255,210,63,.08) 0 24px, transparent 24px 48px);
	z-index: 1;
	mix-blend-mode: overlay;
	pointer-events: none;
}
.tn-why__image-badge { z-index: 2; }
.tn-why__image-badge {
	position: absolute;
	bottom: 30px; left: 30px;
	background: var(--tn-yellow);
	color: #0B0F12;
	padding: 20px 26px;
	border-radius: var(--tn-radius);
	font-family: var(--tn-font-head);
	line-height: 1.1;
	box-shadow: var(--tn-shadow-yel);
}
.tn-why__image-badge strong { font-size: 2.6rem; display: block; }
.tn-why__image-badge span   { font-size: .8rem; letter-spacing: 1.5px; text-transform: uppercase; }

.tn-why__list {
	list-style: none;
	padding: 0;
	margin: 30px 0 0;
	display: grid;
	gap: 20px;
}
.tn-why__item {
	display: flex;
	gap: 18px;
	align-items: flex-start;
}
.tn-why__check {
	flex-shrink: 0;
	width: 36px; height: 36px;
	background: var(--tn-yellow);
	color: #0B0F12;
	border-radius: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 700;
}
.tn-why__check svg { width: 20px; height: 20px; }
.tn-why__item-title {
	font-family: var(--tn-font-head);
	font-size: 1.05rem;
	text-transform: uppercase;
	color: var(--tn-text);
	margin: 3px 0 4px;
	letter-spacing: .5px;
}
.tn-why__item-text { color: var(--tn-muted); font-size: .95rem; margin: 0; }

/* ============================================================
   11. Process / Steps
   ============================================================ */
.tn-process__grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 22px;
	position: relative;
}
.tn-step {
	background: var(--tn-card);
	border: 1px solid var(--tn-border);
	border-radius: var(--tn-radius);
	padding: 28px 24px;
	text-align: center;
	position: relative;
	transition: transform var(--tn-tr), border-color var(--tn-tr);
}
.tn-step:hover { transform: translateY(-4px); border-color: rgba(255,210,63,.3); }
.tn-step__num {
	width: 56px; height: 56px;
	margin: 0 auto 16px;
	background: var(--tn-bg);
	border: 2px dashed var(--tn-yellow);
	color: var(--tn-yellow);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-family: var(--tn-font-head);
	font-size: 1.4rem;
}
.tn-step__title {
	font-family: var(--tn-font-head);
	text-transform: uppercase;
	font-size: 1.05rem;
	margin-bottom: 8px;
	color: var(--tn-text);
	letter-spacing: .5px;
}
.tn-step__text { font-size: .92rem; color: var(--tn-muted); margin: 0; }

/* ============================================================
   12. Gallery
   ============================================================ */
.tn-gallery__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 18px;
}
.tn-gallery__item {
	position: relative;
	aspect-ratio: 4/3;
	border-radius: var(--tn-radius);
	overflow: hidden;
	background: var(--tn-card);
	border: 1px solid var(--tn-border);
	transition: transform var(--tn-tr), box-shadow var(--tn-tr);
}
.tn-gallery__item:hover {
	transform: translateY(-6px);
	box-shadow: 0 20px 50px rgba(0,0,0,.5);
}
.tn-gallery__item img {
	position: absolute;
	inset: 0;
	width: 100%; height: 100%;
	object-fit: cover;
	z-index: 0;
	transition: transform .5s ease-out;
}
.tn-gallery__item:hover img { transform: scale(1.05); }
.tn-gallery__item::before {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(to top, rgba(11,15,18,.92) 0%, rgba(11,15,18,.35) 50%, transparent 100%);
	z-index: 1;
	transition: opacity var(--tn-tr);
}
.tn-gallery__caption {
	position: absolute;
	bottom: 0; left: 0; right: 0;
	padding: 24px 20px 18px;
	color: var(--tn-text);
	font-family: var(--tn-font-head);
	text-transform: uppercase;
	font-size: .95rem;
	letter-spacing: 1px;
	z-index: 2;
	border-left: 3px solid var(--tn-yellow);
	margin: 0 16px 16px 0;
	padding-left: 14px;
	transform: translateY(4px);
	transition: transform var(--tn-tr);
}
.tn-gallery__item:hover .tn-gallery__caption { transform: translateY(0); }

/* ============================================================
   13. Testimonials
   ============================================================ */
.tn-reviews__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
}
.tn-review {
	background: var(--tn-card);
	border: 1px solid var(--tn-border);
	border-radius: var(--tn-radius);
	padding: 30px;
	position: relative;
}
.tn-review__stars { color: var(--tn-yellow); letter-spacing: 2px; margin-bottom: 14px; font-size: 1.1rem; }
.tn-review__text  { font-size: 1rem; color: var(--tn-text); margin-bottom: 22px; font-style: italic; }
.tn-review__author { display: flex; align-items: center; gap: 14px; }
.tn-review__avatar {
	width: 46px; height: 46px;
	background: var(--tn-yellow);
	color: #0B0F12;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 700;
	font-family: var(--tn-font-head);
}
.tn-review__name  { font-weight: 700; color: var(--tn-text); }
.tn-review__role  { font-size: .85rem; color: var(--tn-muted); }
.tn-review__quote {
	position: absolute;
	top: 20px; right: 24px;
	font-family: var(--tn-font-head);
	font-size: 3.5rem;
	color: var(--tn-border);
	line-height: 1;
}

/* ============================================================
   14. CTA strip
   ============================================================ */
.tn-cta {
	background:
		linear-gradient(135deg, #FFD23F 0%, #FFC72C 100%);
	color: #0B0F12;
	padding: 70px 0;
	position: relative;
	overflow: hidden;
}
.tn-cta::before {
	content: "";
	position: absolute; inset: 0;
	background-image:
		repeating-linear-gradient(-45deg,
			rgba(0,0,0,.08) 0 22px,
			transparent 22px 44px);
	pointer-events: none;
}
.tn-cta__inner {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 40px;
	flex-wrap: wrap;
}
.tn-cta h2 { color: #0B0F12; margin: 0; font-size: clamp(1.5rem, 3vw, 2.2rem); }
.tn-cta p  { color: #0B0F12; opacity: .85; margin: 8px 0 0; font-weight: 500; }
.tn-cta .tn-btn--primary {
	background: #0B0F12;
	color: var(--tn-yellow);
	box-shadow: 0 10px 30px rgba(0,0,0,.3);
}
.tn-cta .tn-btn--primary:hover { background: #000; color: var(--tn-yellow); }

/* ============================================================
   15. Contact
   ============================================================ */
.tn-contact__inner {
	display: grid;
	grid-template-columns: 1fr 1.2fr;
	gap: 60px;
}
.tn-contact__info { }
.tn-contact__list {
	list-style: none;
	padding: 0;
	margin: 30px 0 0;
	display: grid;
	gap: 18px;
}
.tn-contact__item {
	display: flex;
	gap: 16px;
	align-items: flex-start;
	padding: 18px;
	background: var(--tn-card);
	border: 1px solid var(--tn-border);
	border-radius: var(--tn-radius);
	transition: border-color var(--tn-tr);
}
.tn-contact__item:hover { border-color: rgba(255,210,63,.3); }
.tn-contact__icon {
	flex-shrink: 0;
	width: 46px; height: 46px;
	background: var(--tn-yellow-soft);
	color: var(--tn-yellow);
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
}
.tn-contact__icon svg { width: 22px; height: 22px; }
.tn-contact__label {
	font-size: .78rem;
	color: var(--tn-muted);
	text-transform: uppercase;
	letter-spacing: 1.5px;
	margin-bottom: 2px;
}
.tn-contact__value { color: var(--tn-text); font-weight: 600; font-size: 1rem; }
.tn-contact__value a { color: var(--tn-text); }
.tn-contact__value a:hover { color: var(--tn-yellow); }

.tn-form {
	background: var(--tn-card);
	border: 1px solid var(--tn-border);
	border-radius: var(--tn-radius-lg);
	padding: 40px;
}
.tn-form h3 {
	margin-bottom: 6px;
	font-size: 1.4rem;
}
.tn-form__lead { margin-bottom: 24px; }
.tn-form__row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 16px;
	margin-bottom: 16px;
}
.tn-field { margin-bottom: 16px; }
.tn-field label {
	display: block;
	font-size: .82rem;
	color: var(--tn-muted);
	margin-bottom: 8px;
	text-transform: uppercase;
	letter-spacing: 1px;
	font-weight: 600;
}
.tn-field input,
.tn-field select,
.tn-field textarea {
	width: 100%;
	padding: 14px 16px;
	background: var(--tn-bg);
	border: 1px solid var(--tn-border);
	border-radius: var(--tn-radius-sm);
	color: var(--tn-text);
	transition: border-color var(--tn-tr), background var(--tn-tr);
	font-size: .95rem;
}
.tn-field input:focus,
.tn-field select:focus,
.tn-field textarea:focus {
	outline: 0;
	border-color: var(--tn-yellow);
	background: #0B0F12;
}
.tn-field textarea { min-height: 130px; resize: vertical; }
.tn-field--full { grid-column: 1 / -1; }

.tn-form__msg {
	padding: 14px 18px;
	border-radius: var(--tn-radius-sm);
	font-size: .92rem;
	margin-bottom: 16px;
	display: none;
}
.tn-form__msg--ok  { background: rgba(74,222,128,.12); border: 1px solid rgba(74,222,128,.3); color: var(--tn-success); display: block; }
.tn-form__msg--err { background: rgba(239,68,68,.12);  border: 1px solid rgba(239,68,68,.3);  color: var(--tn-danger);  display: block; }

/* ============================================================
   16. Footer
   ============================================================ */
.tn-footer {
	background: #07090B;
	border-top: 1px solid var(--tn-border);
	padding: 70px 0 0;
}
.tn-footer__grid {
	display: grid;
	grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
	gap: 50px;
	padding-bottom: 50px;
}
.tn-footer h4 {
	font-size: .95rem;
	margin-bottom: 20px;
	color: var(--tn-text);
	letter-spacing: 1.5px;
}
.tn-footer__about p { font-size: .95rem; }
.tn-footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.tn-footer a { color: var(--tn-muted); font-size: .92rem; }
.tn-footer a:hover { color: var(--tn-yellow); }
.tn-footer__social {
	display: flex;
	gap: 10px;
	margin-top: 20px;
}
.tn-footer__social a {
	width: 40px; height: 40px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 10px;
	background: var(--tn-card);
	border: 1px solid var(--tn-border);
	color: var(--tn-muted);
	transition: all var(--tn-tr);
}
.tn-footer__social a:hover {
	background: var(--tn-yellow);
	color: #0B0F12;
	border-color: var(--tn-yellow);
}
.tn-footer__social svg { width: 18px; height: 18px; }
.tn-footer__bottom {
	border-top: 1px solid var(--tn-border-soft);
	padding: 24px 0;
	text-align: center;
	color: var(--tn-dim);
	font-size: .88rem;
}

/* ============================================================
   17. Floating call button (mobile & desktop)
   ============================================================ */
.tn-call-fab {
	position: fixed;
	bottom: 24px;
	right: 24px;
	z-index: 90;
	display: inline-flex;
	align-items: center;
	gap: 12px;
	padding: 14px 24px 14px 18px;
	background: var(--tn-yellow);
	color: #0B0F12;
	border-radius: 999px;
	font-weight: 700;
	box-shadow: 0 10px 30px rgba(255,210,63,.4);
	animation: tn-bob 2.6s ease-in-out infinite;
}
.tn-call-fab:hover { color: #0B0F12; transform: scale(1.05); }
.tn-call-fab svg { width: 22px; height: 22px; }
@keyframes tn-bob {
	0%, 100% { transform: translateY(0); }
	50%      { transform: translateY(-4px); }
}

/* ============================================================
   18. Page header (inner pages)
   ============================================================ */
.tn-page-head {
	padding: 70px 0 50px;
	background:
		radial-gradient(800px 400px at 50% 0%, rgba(255,210,63,.07), transparent 70%),
		var(--tn-bg-alt);
	border-bottom: 1px solid var(--tn-border);
	text-align: center;
}
.tn-page-head h1 { margin-bottom: 10px; }
.tn-breadcrumb {
	color: var(--tn-muted);
	font-size: .9rem;
	letter-spacing: 1px;
}
.tn-breadcrumb a { color: var(--tn-yellow); }

/* ============================================================
   19. Content typography (single/page)
   ============================================================ */
.tn-content {
	padding: 60px 0;
	max-width: 820px;
	margin: 0 auto;
}
.tn-content p { color: var(--tn-text); font-size: 1.05rem; }
.tn-content h2, .tn-content h3 { margin-top: 1.8em; }
.tn-content blockquote {
	border-left: 4px solid var(--tn-yellow);
	padding: 14px 22px;
	background: var(--tn-card);
	margin: 1.5em 0;
	border-radius: var(--tn-radius-sm);
}

/* ============================================================
   20. Animations: scroll reveal
   ============================================================ */
.tn-reveal {
	opacity: 0;
	transform: translateY(30px);
	transition: opacity .7s cubic-bezier(.4,.0,.2,1), transform .7s cubic-bezier(.4,.0,.2,1);
}
.tn-reveal.is-visible {
	opacity: 1;
	transform: translateY(0);
}

/* ============================================================
   21. Responsive
   ============================================================ */
@media (max-width: 1024px) {
	.tn-hero__inner { grid-template-columns: 1fr; gap: 50px; }
	.tn-hero__visual { max-width: 480px; margin: 0 auto; width: 100%; }
	.tn-services__grid { grid-template-columns: repeat(2, 1fr); }
	.tn-process__grid  { grid-template-columns: repeat(2, 1fr); }
	.tn-gallery__grid  { grid-template-columns: repeat(2, 1fr); }
	.tn-reviews__grid  { grid-template-columns: 1fr; }
	.tn-why__inner     { grid-template-columns: 1fr; gap: 40px; }
	.tn-contact__inner { grid-template-columns: 1fr; }
	.tn-footer__grid   { grid-template-columns: 1fr 1fr; gap: 40px; }
}

@media (max-width: 768px) {
	.tn-topbar__inner { justify-content: center; text-align: center; }
	.tn-header__phone span { display: none; }
	.tn-nav {
		position: fixed;
		top: 0; right: -100%;
		width: 85%;
		max-width: 340px;
		height: 100vh;
		background: var(--tn-bg-alt);
		border-left: 1px solid var(--tn-border);
		padding: 100px 30px 30px;
		transition: right var(--tn-tr);
		z-index: 99;
		overflow-y: auto;
	}
	.tn-nav.is-open { right: 0; }
	.tn-nav ul { flex-direction: column; gap: 2px; }
	.tn-nav a { display: block; padding: 14px 16px; font-size: 1rem; }
	.tn-burger { display: inline-flex; }
	.tn-services__grid { grid-template-columns: 1fr; }
	.tn-gallery__grid  { grid-template-columns: 1fr; }
	.tn-hero__stats    { grid-template-columns: 1fr 1fr; gap: 20px; }
	.tn-footer__grid   { grid-template-columns: 1fr; gap: 36px; }
	.tn-cta__inner     { flex-direction: column; text-align: center; }
	.tn-form           { padding: 28px 22px; }
	.tn-form__row      { grid-template-columns: 1fr; }
	.tn-call-fab span  { display: none; }
	.tn-call-fab       { padding: 16px; }
}

@media (max-width: 480px) {
	.tn-hero__stats { grid-template-columns: 1fr; }
	.tn-hero__cta .tn-btn { width: 100%; justify-content: center; }
	.tn-logo__name .tn-logo__sub { display: none; }
}
