/* ==========================================================================
   The Silk Valley Theme - Main Styles
   Inspired by Charifund charity theme
   ========================================================================== */

:root {
	--tsv-primary: #00715d;
	--tsv-primary-dark: #005a4a;
	--tsv-primary-light: #009e82;
	--tsv-accent: #ffc107;
	--tsv-accent-dark: #e0a800;
	--tsv-yellow: #ffc107;
	--tsv-green: #00715d;
	--tsv-dark: #122f2a;
	--tsv-text: #4a5568;
	--tsv-text-light: #718096;
	--tsv-white: #ffffff;
	--tsv-gray-50: #f8fafc;
	--tsv-gray-100: #f1f5f9;
	--tsv-gray-200: #e2e8f0;
	--tsv-font-heading: 'Fraunces', Georgia, serif;
	--tsv-font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
	--tsv-radius: 12px;
	--tsv-radius-lg: 20px;
	--tsv-shadow: 0 4px 24px rgba(15, 23, 42, 0.08);
	--tsv-shadow-lg: 0 12px 48px rgba(15, 23, 42, 0.12);
	--tsv-transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	--tsv-header-height: 72px;
	--tsv-topbar-height: 42px;
	--tsv-container-wide: 1680px;
}

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

html { scroll-behavior: smooth; }

body.tsv-theme.tsv-loading {
	overflow: hidden;
}

body.tsv-theme {
	font-family: var(--tsv-font-body);
	font-size: 16px;
	line-height: 1.7;
	color: var(--tsv-text);
	background: var(--tsv-white);
	overflow-x: hidden;
}

body.tsv-theme.cursor-active { cursor: none; }

h1, h2, h3, h4, h5, h6 {
	font-family: var(--tsv-font-heading);
	color: var(--tsv-dark);
	font-weight: 700;
	line-height: 1.3;
}

a { color: var(--tsv-primary); text-decoration: none; transition: var(--tsv-transition); }
a:hover { color: var(--tsv-primary-light); }

img { max-width: 100%; height: auto; display: block; }

/* Wide container for header & full-width sections */
.tsv-container-wide {
	max-width: var(--tsv-container-wide);
	margin-left: auto;
	margin-right: auto;
	padding-left: 24px;
	padding-right: 24px;
}

/* Custom Cursor */
.tsv-cursor {
	position: fixed;
	top: 0; left: 0;
	pointer-events: none;
	z-index: 99999;
	mix-blend-mode: difference;
	display: none;
}
@media (min-width: 1024px) and (hover: hover) {
	.tsv-cursor { display: block; }
}
.tsv-cursor__dot {
	width: 8px; height: 8px;
	background: var(--tsv-white);
	border-radius: 50%;
	position: absolute;
	transform: translate(-50%, -50%);
	transition: transform 0.1s ease;
}
.tsv-cursor__ring {
	width: 40px; height: 40px;
	border: 2px solid var(--tsv-white);
	border-radius: 50%;
	position: absolute;
	transform: translate(-50%, -50%);
	transition: width 0.3s, height 0.3s, opacity 0.3s;
	opacity: 0.5;
}
.tsv-cursor.is-hover .tsv-cursor__ring {
	width: 60px; height: 60px;
	opacity: 0.8;
}
.tsv-cursor.is-click .tsv-cursor__dot {
	transform: translate(-50%, -50%) scale(0.5);
}

/* Preloader */
.tsv-preloader {
	position: fixed;
	inset: 0;
	background: var(--tsv-white);
	z-index: 99998;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: opacity 0.5s ease, visibility 0.5s ease;
}
.tsv-preloader.is-hidden {
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
}
.tsv-preloader__inner {
	display: flex;
	align-items: center;
	justify-content: center;
}
.tsv-preloader__spinner {
	position: relative;
	width: 64px;
	height: 64px;
}
.tsv-preloader__ring {
	position: absolute;
	inset: 0;
	border-radius: 50%;
	border: 4px solid transparent;
}
.tsv-preloader__ring--outer {
	border-top-color: var(--tsv-primary);
	border-right-color: var(--tsv-primary);
	animation: tsvSpin 0.9s linear infinite;
}
.tsv-preloader__ring--inner {
	inset: 10px;
	border-bottom-color: var(--tsv-accent);
	border-left-color: var(--tsv-accent);
	animation: tsvSpin 0.7s linear infinite reverse;
}
@keyframes tsvSpin {
	to { transform: rotate(360deg); }
}

/* Buttons */
.tsv-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 14px 28px;
	font-family: var(--tsv-font-body);
	font-size: 15px;
	font-weight: 600;
	border-radius: 50px;
	border: 2px solid transparent;
	cursor: pointer;
	transition: var(--tsv-transition);
	text-decoration: none;
	white-space: nowrap;
}
.tsv-btn--sm { padding: 10px 20px; font-size: 14px; }
.tsv-btn--lg { padding: 16px 36px; font-size: 16px; }
.tsv-btn--block { width: 100%; }
.tsv-btn--primary {
	background: var(--tsv-primary);
	color: var(--tsv-white);
	border-color: var(--tsv-primary);
}
.tsv-btn--primary:hover {
	background: var(--tsv-primary-dark);
	border-color: var(--tsv-primary-dark);
	color: var(--tsv-white);
	transform: translateY(-2px);
	box-shadow: 0 8px 24px rgba(0, 113, 93, 0.3);
}
.tsv-btn--outline {
	background: transparent;
	color: var(--tsv-primary);
	border-color: var(--tsv-primary);
}
.tsv-btn--outline:hover {
	background: var(--tsv-primary);
	color: var(--tsv-white);
}
.tsv-btn--white {
	background: var(--tsv-white);
	color: var(--tsv-primary);
	border-color: var(--tsv-white);
}
.tsv-btn--white:hover {
	background: var(--tsv-gray-100);
	color: var(--tsv-primary-dark);
	transform: translateY(-2px);
}
.tsv-btn--outline-white {
	background: transparent;
	color: var(--tsv-white);
	border-color: rgba(255,255,255,0.6);
}
.tsv-btn--outline-white:hover {
	background: var(--tsv-white);
	color: var(--tsv-primary);
	border-color: var(--tsv-white);
}
.tsv-btn--accent {
	background: var(--tsv-accent);
	color: var(--tsv-dark);
	border-color: var(--tsv-accent);
}
.tsv-btn--accent:hover {
	background: var(--tsv-accent-dark);
	border-color: var(--tsv-accent-dark);
	color: var(--tsv-dark);
	transform: translateY(-2px);
	box-shadow: 0 8px 24px rgba(255, 193, 7, 0.35);
}

/* Section Utilities */
.tsv-section {
	padding: 100px 0;
	position: relative;
	overflow: hidden;
}
.tsv-section--gray { background: var(--tsv-gray-50); }
.tsv-section--dark { background: var(--tsv-primary-dark); }

.tsv-section__bg-icon {
	position: absolute;
	font-size: 200px;
	color: rgba(0, 113, 93, 0.05);
	pointer-events: none;
	z-index: 0;
}
.tsv-section--dark .tsv-section__bg-icon { color: rgba(255,255,255,0.03); }
.tsv-section__bg-icon--1 { top: 10%; right: -5%; }
.tsv-section__bg-icon--2 { bottom: 10%; left: -3%; font-size: 150px; }
.tsv-section__bg-icon--3 { top: 5%; left: 5%; }
.tsv-section__bg-icon--4 { top: 20%; right: 5%; }
.tsv-section__bg-icon--5 { bottom: 5%; right: 10%; }
.tsv-section__bg-icon--6 { top: 10%; left: 8%; }

.tsv-section__tag {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-size: 14px;
	font-weight: 600;
	color: var(--tsv-primary);
	text-transform: uppercase;
	letter-spacing: 1px;
	margin-bottom: 16px;
}
.tsv-section__tag--light { color: var(--tsv-accent); }
.tsv-section__tag i { font-size: 12px; }

.tsv-section__title {
	font-size: clamp(2rem, 4vw, 2.75rem);
	margin-bottom: 20px;
}
.tsv-section__title--light { color: var(--tsv-white); }
.tsv-section__header { margin-bottom: 50px; position: relative; z-index: 1; }
.tsv-section__header--left { text-align: left; }
.tsv-section__desc {
	font-size: 17px;
	color: var(--tsv-text-light);
	max-width: 600px;
}
.tsv-text-accent {
	color: var(--tsv-accent);
	position: relative;
}
.tsv-text-accent::after {
	content: '';
	position: absolute;
	bottom: 2px;
	left: 0;
	width: 100%;
	height: 8px;
	background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='196' height='15' viewBox='0 0 196 15' fill='none'%3E%3Cpath d='M1 13C42.1844 2.92057 142.978 -3.87406 195 9.2668' stroke='%23ffc107' stroke-width='4'/%3E%3C/svg%3E") no-repeat center;
	background-size: 100% 100%;
	opacity: 0.6;
	z-index: -1;
}

/* Top Bar */
.tsv-topbar {
	background: var(--tsv-primary-dark);
	color: rgba(255,255,255,0.85);
	font-size: 13px;
	padding: 10px 0;
}
.tsv-topbar__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	flex-wrap: wrap;
}
.tsv-topbar__left {
	display: flex;
	gap: 24px;
	flex-wrap: wrap;
}
.tsv-topbar__left a {
	color: rgba(255,255,255,0.85);
	display: flex;
	align-items: center;
	gap: 6px;
}
.tsv-topbar__left a:hover { color: var(--tsv-white); }
.tsv-topbar__center span { font-weight: 500; }
.tsv-topbar__right {
	display: flex;
	align-items: center;
	gap: 20px;
}
.tsv-topbar__cta {
	color: var(--tsv-accent);
	font-weight: 600;
}
.tsv-topbar__cta:hover { color: var(--tsv-white); }
.tsv-topbar__social {
	display: flex;
	gap: 12px;
}
.tsv-topbar__social a {
	color: rgba(255,255,255,0.7);
	width: 28px; height: 28px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	border: 1px solid rgba(255,255,255,0.2);
	font-size: 12px;
}
.tsv-topbar__social a:hover {
	background: var(--tsv-accent);
	border-color: var(--tsv-accent);
	color: var(--tsv-white);
}

/* Header */
.tsv-header {
	background: var(--tsv-white);
	position: sticky;
	top: 0;
	z-index: 1000;
	box-shadow: 0 2px 20px rgba(0,0,0,0.06);
	transition: var(--tsv-transition);
	overflow: visible;
}
.tsv-header.is-scrolled {
	box-shadow: 0 4px 30px rgba(0,0,0,0.1);
}
.tsv-header > .tsv-container-wide {
	position: relative;
}
.tsv-header__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: var(--tsv-header-height);
	gap: 12px;
}

/* Logo */
.tsv-header__logo {
	flex-shrink: 0;
	max-width: 220px;
}
.tsv-logo {
	display: flex;
	align-items: center;
	gap: 10px;
	text-decoration: none;
}
.tsv-logo__icon {
	width: 42px; height: 42px;
	background: linear-gradient(135deg, var(--tsv-primary), var(--tsv-primary-light));
	border-radius: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--tsv-white);
	font-size: 18px;
	flex-shrink: 0;
}
.tsv-logo__text {
	display: flex;
	flex-direction: column;
	line-height: 1.15;
	min-width: 0;
}
.tsv-logo__text strong {
	font-family: var(--tsv-font-heading);
	font-size: 17px;
	color: var(--tsv-dark);
	white-space: nowrap;
}
.tsv-logo__text small {
	font-size: 10px;
	color: var(--tsv-text-light);
	font-weight: 500;
	white-space: nowrap;
}
.tsv-logo--light .tsv-logo__text strong,
.tsv-logo--light .tsv-logo__text small { color: var(--tsv-white); }

/* Navigation */
.tsv-nav {
	flex: 1;
	display: flex;
	justify-content: center;
	min-width: 0;
	padding: 0 8px;
}
.tsv-nav__list {
	display: flex;
	align-items: center;
	justify-content: center;
	list-style: none;
	margin: 0;
	padding: 0;
	gap: 0;
	flex-wrap: nowrap;
}
.tsv-nav__item {
	position: static;
}
.tsv-nav__item--has-mega {
	position: static;
}
.tsv-nav__link {
	display: flex;
	align-items: center;
	gap: 4px;
	padding: 8px 11px;
	font-size: 13px;
	font-weight: 600;
	color: var(--tsv-dark);
	border-radius: 8px;
	transition: var(--tsv-transition);
	white-space: nowrap;
	line-height: 1.2;
}
.tsv-nav__link:hover,
.tsv-nav__item--active .tsv-nav__link {
	color: var(--tsv-primary);
	background: rgba(0, 113, 93, 0.06);
}
.tsv-nav__arrow {
	font-size: 9px;
	transition: transform 0.3s;
	margin-left: 2px;
}
.tsv-nav__item--has-mega:hover .tsv-nav__arrow,
.tsv-nav__item--has-mega.is-mega-open .tsv-nav__arrow {
	transform: rotate(180deg);
}

/* Megamenu */
.tsv-megamenu {
	position: absolute;
	top: 100%;
	left: 50%;
	transform: translateX(-50%) translateY(6px);
	width: max-content;
	max-width: min(960px, calc(100vw - 48px));
	background: var(--tsv-white);
	border-radius: var(--tsv-radius-lg);
	box-shadow: var(--tsv-shadow-lg);
	padding: 28px;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.25s, visibility 0.25s, transform 0.25s;
	z-index: 200;
	border: 1px solid var(--tsv-gray-200);
	pointer-events: none;
}
.tsv-megamenu::before {
	content: '';
	position: absolute;
	top: -14px;
	left: 0;
	right: 0;
	height: 14px;
}
.tsv-nav__item--has-mega:hover > .tsv-megamenu,
.tsv-nav__item--has-mega.is-mega-open > .tsv-megamenu {
	opacity: 1;
	visibility: visible;
	transform: translateX(-50%) translateY(0);
	pointer-events: auto;
}
.tsv-megamenu__inner {
	display: flex;
	gap: 24px;
	flex-wrap: wrap;
}
.tsv-megamenu__col {
	min-width: 180px;
	max-width: 260px;
	flex: 1;
}
.tsv-megamenu__image {
	position: relative;
	border-radius: var(--tsv-radius);
	overflow: hidden;
	margin-bottom: 16px;
	height: 140px;
}
.tsv-megamenu__image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.5s;
}
.tsv-megamenu__col:hover .tsv-megamenu__image img {
	transform: scale(1.08);
}
.tsv-megamenu__image-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(to top, rgba(15,23,42,0.8), transparent);
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	padding: 12px;
	color: var(--tsv-white);
}
.tsv-megamenu__image-overlay i {
	font-size: 20px;
	margin-bottom: 4px;
	color: var(--tsv-accent);
}
.tsv-megamenu__image-overlay span {
	font-weight: 600;
	font-size: 14px;
}
.tsv-megamenu__title {
	font-size: 16px;
	margin-bottom: 12px;
	color: var(--tsv-dark);
}
.tsv-megamenu__links {
	list-style: none;
	margin: 0;
	padding: 0;
}
.tsv-megamenu__links li { margin-bottom: 6px; }
.tsv-megamenu__links a {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 13px;
	color: var(--tsv-text);
	padding: 4px 0;
}
.tsv-megamenu__links a i {
	font-size: 10px;
	color: var(--tsv-primary-light);
	opacity: 0;
	transform: translateX(-5px);
	transition: var(--tsv-transition);
}
.tsv-megamenu__links a:hover {
	color: var(--tsv-primary);
	padding-left: 4px;
}
.tsv-megamenu__links a:hover i {
	opacity: 1;
	transform: translateX(0);
}

/* Programs megamenu - full width */
.tsv-megamenu[data-megamenu="programs"] {
	width: min(1400px, calc(100vw - 48px));
	max-width: min(1400px, calc(100vw - 48px));
	max-height: calc(100vh - var(--tsv-header-height) - 32px);
	overflow-y: auto;
	left: 50%;
	transform: translateX(-50%) translateY(6px);
}
.tsv-nav__item--has-mega:hover > .tsv-megamenu[data-megamenu="programs"],
.tsv-nav__item--has-mega.is-mega-open > .tsv-megamenu[data-megamenu="programs"] {
	transform: translateX(-50%) translateY(0);
}
.tsv-megamenu[data-megamenu="programs"] .tsv-megamenu__inner {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 20px;
}
.tsv-megamenu[data-megamenu="programs"] .tsv-megamenu__col {
	min-width: 0;
	max-width: none;
}
.tsv-megamenu[data-megamenu="more"] {
	width: min(720px, calc(100vw - 48px));
}
.tsv-megamenu[data-megamenu="more"] .tsv-megamenu__inner {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 24px;
}

.tsv-header__actions {
	display: flex;
	align-items: center;
	gap: 10px;
	flex-shrink: 0;
}
.tsv-header__actions .tsv-btn--sm {
	padding: 9px 18px;
	font-size: 13px;
}
.tsv-header__phone {
	align-items: center;
	gap: 10px;
	text-decoration: none;
	color: var(--tsv-dark);
}
.tsv-header__phone-icon {
	width: 44px; height: 44px;
	background: var(--tsv-gray-100);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--tsv-primary);
	font-size: 18px;
}
.tsv-header__phone-text {
	display: flex;
	flex-direction: column;
	line-height: 1.3;
}
.tsv-header__phone-text small {
	font-size: 11px;
	color: var(--tsv-text-light);
}
.tsv-header__phone-text strong {
	font-size: 14px;
	color: var(--tsv-dark);
}

/* Mobile Toggle */
.tsv-mobile-toggle {
	display: none;
	flex-direction: column;
	gap: 5px;
	background: none;
	border: none;
	padding: 8px;
	cursor: pointer;
}
.tsv-mobile-toggle span {
	display: block;
	width: 24px;
	height: 2px;
	background: var(--tsv-dark);
	transition: var(--tsv-transition);
	border-radius: 2px;
}
.tsv-mobile-toggle.is-active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.tsv-mobile-toggle.is-active span:nth-child(2) { opacity: 0; }
.tsv-mobile-toggle.is-active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile Menu */
.tsv-mobile-menu {
	position: fixed;
	inset: 0;
	z-index: 9999;
	pointer-events: none;
}
.tsv-mobile-menu.is-open { pointer-events: auto; }
.tsv-mobile-menu__overlay {
	position: absolute;
	inset: 0;
	background: rgba(15,23,42,0.6);
	opacity: 0;
	transition: opacity 0.3s;
}
.tsv-mobile-menu.is-open .tsv-mobile-menu__overlay { opacity: 1; }
.tsv-mobile-menu__panel {
	position: absolute;
	top: 0; right: 0;
	width: 100%;
	max-width: 400px;
	height: 100%;
	background: var(--tsv-white);
	transform: translateX(100%);
	transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	display: flex;
	flex-direction: column;
	overflow: hidden;
}
.tsv-mobile-menu.is-open .tsv-mobile-menu__panel { transform: translateX(0); }
.tsv-mobile-menu__header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 20px;
	border-bottom: 1px solid var(--tsv-gray-200);
}
.tsv-mobile-menu__close {
	background: none;
	border: none;
	font-size: 24px;
	color: var(--tsv-dark);
	cursor: pointer;
	padding: 4px;
}
.tsv-mobile-menu__body {
	flex: 1;
	overflow-y: auto;
	padding: 20px;
}
.tsv-mobile-menu__footer {
	padding: 20px;
	border-top: 1px solid var(--tsv-gray-200);
	display: flex;
	flex-direction: column;
	gap: 10px;
}

/* Mobile Nav Clone Styles */
.tsv-mobile-nav__item { border-bottom: 1px solid var(--tsv-gray-200); }
.tsv-mobile-nav__link {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 14px 0;
	font-weight: 600;
	color: var(--tsv-dark);
	cursor: pointer;
}
.tsv-mobile-nav__sub {
	display: none;
	padding: 0 0 12px 16px;
}
.tsv-mobile-nav__item.is-open .tsv-mobile-nav__sub { display: block; }
.tsv-mobile-nav__sub-title {
	font-weight: 600;
	font-size: 14px;
	color: var(--tsv-primary);
	margin: 12px 0 8px;
	display: flex;
	align-items: center;
	gap: 8px;
}
.tsv-mobile-nav__sub-title img {
	width: 40px; height: 30px;
	object-fit: cover;
	border-radius: 4px;
}
.tsv-mobile-nav__sub a {
	display: block;
	padding: 6px 0;
	font-size: 14px;
	color: var(--tsv-text);
}
.tsv-mobile-nav__sub a:hover { color: var(--tsv-primary); }

/* Hero */
.tsv-hero { position: relative; }
.tsv-hero__slider { height: 85vh; min-height: 600px; max-height: 900px; }
.tsv-hero__slide {
	height: 100%;
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
	position: relative;
	display: flex;
	align-items: center;
}
.tsv-hero__overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(135deg, rgba(0, 90, 74, 0.88) 0%, rgba(18, 47, 42, 0.65) 100%);
}
.tsv-hero__content {
	position: relative;
	z-index: 2;
	max-width: 700px;
	padding: 40px 0;
}
.tsv-hero__tag {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: rgba(255, 193, 7, 0.15);
	border: 1px solid rgba(255, 193, 7, 0.35);
	color: var(--tsv-accent);
	padding: 8px 16px;
	border-radius: 50px;
	font-size: 13px;
	font-weight: 600;
	margin-bottom: 24px;
}
.tsv-hero__title {
	font-size: clamp(2.5rem, 5vw, 4rem);
	color: var(--tsv-white);
	margin-bottom: 20px;
	line-height: 1.15;
}
.tsv-hero__title-accent {
	display: block;
	color: var(--tsv-accent);
}
.tsv-hero__desc {
	font-size: 18px;
	color: rgba(255,255,255,0.85);
	margin-bottom: 32px;
	max-width: 550px;
}
.tsv-hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
}
.tsv-hero__pagination {
	bottom: 40px !important;
}
.tsv-hero__pagination .swiper-pagination-bullet {
	width: 12px; height: 12px;
	background: rgba(255,255,255,0.4);
	opacity: 1;
}
.tsv-hero__pagination .swiper-pagination-bullet-active {
	background: var(--tsv-accent);
	width: 32px;
	border-radius: 6px;
}
.tsv-hero__nav {
	position: absolute;
	bottom: 40px;
	right: 60px;
	z-index: 10;
	display: flex;
	gap: 10px;
}
.tsv-hero__prev, .tsv-hero__next {
	width: 50px; height: 50px;
	background: rgba(255,255,255,0.15);
	border: 1px solid rgba(255,255,255,0.3);
	border-radius: 50%;
	color: var(--tsv-white);
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: var(--tsv-transition);
	backdrop-filter: blur(4px);
}
.tsv-hero__prev:hover, .tsv-hero__next:hover {
	background: var(--tsv-accent);
	border-color: var(--tsv-accent);
}
.tsv-hero__prev::after, .tsv-hero__next::after { display: none; }

/* Brand Marquee */
.tsv-brands {
	background: var(--tsv-white);
	padding: 24px 0;
	border-bottom: 1px solid var(--tsv-gray-200);
	overflow: hidden;
}
.tsv-brands__track {
	display: flex;
	animation: tsvMarquee 30s linear infinite;
	width: max-content;
}
.tsv-brands__item {
	padding: 0 40px;
	white-space: nowrap;
	font-weight: 600;
	color: var(--tsv-text-light);
	font-size: 15px;
	opacity: 0.7;
}
@keyframes tsvMarquee {
	0% { transform: translateX(0); }
	100% { transform: translateX(-50%); }
}

/* About */
.tsv-about__images {
	position: relative;
	padding-right: 60px;
	padding-bottom: 60px;
}
.tsv-about__img-main {
	border-radius: var(--tsv-radius-lg);
	overflow: hidden;
	box-shadow: var(--tsv-shadow-lg);
}
.tsv-about__img-main img { width: 100%; }
.tsv-about__img-secondary {
	position: absolute;
	bottom: 0;
	right: 0;
	width: 55%;
	border-radius: var(--tsv-radius);
	overflow: hidden;
	border: 6px solid var(--tsv-white);
	box-shadow: var(--tsv-shadow);
}
.tsv-about__experience {
	position: absolute;
	top: 30px;
	right: 0;
	background: var(--tsv-primary);
	color: var(--tsv-white);
	padding: 24px;
	border-radius: var(--tsv-radius);
	text-align: center;
	box-shadow: var(--tsv-shadow-lg);
}
.tsv-about__experience strong {
	display: block;
	font-family: var(--tsv-font-heading);
	font-size: 3rem;
	line-height: 1;
}
.tsv-about__experience span {
	font-size: 13px;
	font-weight: 500;
}
.tsv-about__cards { margin: 30px 0; }
.tsv-about__card {
	display: flex;
	gap: 16px;
	padding: 20px;
	background: var(--tsv-gray-50);
	border-radius: var(--tsv-radius);
	margin-bottom: 16px;
	transition: var(--tsv-transition);
}
.tsv-about__card:hover {
	background: var(--tsv-white);
	box-shadow: var(--tsv-shadow);
	transform: translateX(8px);
}
.tsv-about__card-icon {
	width: 50px; height: 50px;
	min-width: 50px;
	background: linear-gradient(135deg, var(--tsv-primary), var(--tsv-primary-light));
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--tsv-white);
	font-size: 20px;
}
.tsv-about__card h4 { font-size: 18px; margin-bottom: 6px; }
.tsv-about__card p { font-size: 14px; margin: 0; color: var(--tsv-text-light); }
.tsv-about__quote {
	background: var(--tsv-primary-dark);
	color: rgba(255,255,255,0.9);
	padding: 30px;
	border-radius: var(--tsv-radius);
	margin: 30px 0;
	position: relative;
}
.tsv-about__quote i {
	font-size: 24px;
	color: var(--tsv-accent);
	margin-bottom: 12px;
	display: block;
}
.tsv-about__quote p { font-style: italic; margin-bottom: 12px; }
.tsv-about__quote cite { font-size: 14px; color: var(--tsv-accent); font-style: normal; font-weight: 600; }

/* Pillars */
.tsv-pillars__slider { padding: 20px 0 60px; position: relative; }
.tsv-pillar-card {
	display: block;
	background: var(--tsv-white);
	padding: 36px 28px;
	border-radius: var(--tsv-radius-lg);
	box-shadow: var(--tsv-shadow);
	transition: var(--tsv-transition);
	height: 100%;
	text-decoration: none;
	color: inherit;
	border: 1px solid transparent;
}
.tsv-pillar-card:hover {
	transform: translateY(-8px);
	box-shadow: var(--tsv-shadow-lg);
	border-color: var(--tsv-primary-light);
	color: inherit;
}
.tsv-pillar-card__icon {
	width: 70px; height: 70px;
	background: color-mix(in srgb, var(--pillar-color, var(--tsv-primary)) 15%, transparent);
	border-radius: 16px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 28px;
	color: var(--pillar-color, var(--tsv-primary));
	margin-bottom: 20px;
	transition: var(--tsv-transition);
}
.tsv-pillar-card:hover .tsv-pillar-card__icon {
	background: var(--pillar-color, var(--tsv-primary));
	color: var(--tsv-white);
}
.tsv-pillar-card h4 { font-size: 20px; margin-bottom: 12px; }
.tsv-pillar-card p { font-size: 14px; color: var(--tsv-text-light); margin-bottom: 16px; }
.tsv-pillar-card__link {
	font-size: 14px;
	font-weight: 600;
	color: var(--tsv-primary);
	display: flex;
	align-items: center;
	gap: 6px;
}
.tsv-pillars__nav {
	display: flex;
	justify-content: center;
	gap: 10px;
	margin-top: 20px;
}
.tsv-pillars__prev, .tsv-pillars__next {
	width: 48px; height: 48px;
	background: var(--tsv-white);
	border: 2px solid var(--tsv-gray-200);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--tsv-primary);
	cursor: pointer;
	transition: var(--tsv-transition);
}
.tsv-pillars__prev:hover, .tsv-pillars__next:hover {
	background: var(--tsv-primary);
	border-color: var(--tsv-primary);
	color: var(--tsv-white);
}
.tsv-pillars__prev::after, .tsv-pillars__next::after { display: none; }

/* Helping - Charifund style */
.tsv-helping {
	position: relative;
	overflow: hidden;
	background: var(--tsv-white);
}
.tsv-helping__bg-heart {
	position: absolute;
	right: 4%;
	bottom: 8%;
	font-size: clamp(120px, 15vw, 200px);
	color: rgba(0, 113, 93, 0.05);
	pointer-events: none;
	z-index: 0;
}
.tsv-helping__media {
	position: relative;
	min-height: 520px;
	padding: 40px 20px 40px 70px;
}
.tsv-helping__decor {
	position: absolute;
	pointer-events: none;
	z-index: 1;
	transition: transform 0.15s ease-out;
	will-change: transform;
}
.tsv-helping__decor--grid {
	left: 0;
	bottom: 30px;
	width: 120px;
	opacity: 0.9;
}
.tsv-helping__decor--hand {
	top: 0;
	left: 50px;
	width: 50px;
}
.tsv-helping__decor--line {
	top: 30px;
	left: 100px;
	width: 180px;
	z-index: 2;
}
.tsv-helping__vertical-banner {
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	background: var(--tsv-primary);
	color: var(--tsv-white);
	padding: 28px 10px;
	border-radius: 6px;
	z-index: 3;
}
.tsv-helping__vertical-banner span {
	writing-mode: vertical-rl;
	transform: rotate(180deg);
	font-size: 13px;
	font-weight: 600;
	letter-spacing: 0.5px;
	white-space: nowrap;
	text-transform: capitalize;
}
.tsv-helping__collage {
	position: relative;
	max-width: 480px;
	margin-left: auto;
	margin-right: auto;
}
.tsv-helping__main {
	position: relative;
	border-radius: var(--tsv-radius-lg);
	overflow: hidden;
	box-shadow: var(--tsv-shadow-lg);
	transition: transform 0.15s ease-out;
	will-change: transform;
}
.tsv-helping__main img {
	width: 100%;
	display: block;
	aspect-ratio: 4 / 5;
	object-fit: cover;
}
.tsv-helping__main-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(0, 113, 93, 0.12) 0%, rgba(0, 90, 74, 0.22) 100%);
	pointer-events: none;
}
.tsv-helping__play {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 72px;
	height: 72px;
	border-radius: 50%;
	background: var(--tsv-accent);
	border: 4px solid var(--tsv-white);
	color: var(--tsv-dark);
	font-size: 22px;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	z-index: 5;
	transition: var(--tsv-transition);
	box-shadow: 0 8px 30px rgba(0,0,0,0.2);
	padding-left: 4px;
}
.tsv-helping__play:hover {
	background: var(--tsv-accent-dark);
	transform: translate(-50%, -50%) scale(1.08);
}
.tsv-helping__thumb {
	position: absolute;
	border: 6px solid var(--tsv-white);
	border-radius: var(--tsv-radius);
	overflow: hidden;
	box-shadow: var(--tsv-shadow-lg);
	z-index: 4;
	transition: transform 0.15s ease-out;
	will-change: transform;
}
.tsv-helping__thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}
.tsv-helping__thumb--top {
	top: -20px;
	left: -50px;
	width: 160px;
	height: 160px;
}
.tsv-helping__thumb--bottom {
	bottom: -30px;
	right: -40px;
	width: 170px;
	height: 170px;
}
.tsv-helping__content {
	position: relative;
	z-index: 1;
}
.tsv-helping__script-tag {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-family: 'Caveat', cursive;
	font-size: 22px;
	font-weight: 700;
	color: var(--tsv-primary);
	margin-bottom: 16px;
}
.tsv-helping__script-tag i {
	font-family: 'Font Awesome 6 Free';
	font-size: 16px;
}
.tsv-helping__title {
	font-family: var(--tsv-font-heading);
	font-size: clamp(2rem, 3.5vw, 2.75rem);
	line-height: 1.2;
	margin-bottom: 20px;
	color: var(--tsv-dark);
}
.tsv-helping__title-highlight {
	color: var(--tsv-accent);
	position: relative;
}
.tsv-helping__desc {
	font-size: 16px;
	color: var(--tsv-text-light);
	margin-bottom: 28px;
	max-width: 520px;
}
.tsv-helping__feature {
	padding: 0;
}
.tsv-helping__feature-icon {
	width: 56px;
	height: 56px;
	background: rgba(255, 193, 7, 0.15);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--tsv-accent);
	font-size: 24px;
	margin-bottom: 14px;
}
.tsv-helping__feature h5 {
	font-size: 18px;
	margin-bottom: 8px;
}
.tsv-helping__feature p {
	font-size: 14px;
	color: var(--tsv-text-light);
	margin: 0;
	line-height: 1.6;
}
.tsv-helping__list {
	list-style: none;
	padding: 0;
	margin: 28px 0;
}
.tsv-helping__list li {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	padding: 7px 0;
	font-weight: 500;
	font-size: 15px;
	color: var(--tsv-dark);
}
.tsv-helping__list i {
	color: var(--tsv-accent);
	margin-top: 3px;
	flex-shrink: 0;
}
.tsv-helping__footer {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 24px;
	margin-top: 10px;
}
.tsv-helping__phone {
	display: flex;
	align-items: center;
	gap: 12px;
	color: var(--tsv-dark);
	text-decoration: none;
}
.tsv-helping__phone:hover {
	color: var(--tsv-primary);
}
.tsv-helping__phone-icon {
	width: 48px;
	height: 48px;
	background: var(--tsv-gray-100);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--tsv-primary);
	font-size: 18px;
}
.tsv-helping__phone strong {
	font-size: 18px;
}

/* Video Modal */
.tsv-video-modal {
	position: fixed;
	inset: 0;
	z-index: 10000;
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.3s, visibility 0.3s;
}
.tsv-video-modal.is-open {
	opacity: 1;
	visibility: visible;
}
.tsv-video-modal__overlay {
	position: absolute;
	inset: 0;
	background: rgba(15, 23, 42, 0.85);
}
.tsv-video-modal__dialog {
	position: relative;
	width: min(900px, 92vw);
	z-index: 2;
}
.tsv-video-modal__close {
	position: absolute;
	top: -48px;
	right: 0;
	width: 40px;
	height: 40px;
	border: none;
	background: var(--tsv-white);
	border-radius: 50%;
	font-size: 18px;
	cursor: pointer;
	color: var(--tsv-dark);
	display: flex;
	align-items: center;
	justify-content: center;
	transition: var(--tsv-transition);
}
.tsv-video-modal__close:hover {
	background: var(--tsv-accent);
}
.tsv-video-modal__frame {
	position: relative;
	padding-bottom: 56.25%;
	height: 0;
	border-radius: var(--tsv-radius);
	overflow: hidden;
	background: #000;
}
.tsv-video-modal__frame iframe {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	border: 0;
}

/* Impact Stats */
.tsv-stat-card {
	text-align: center;
	padding: 40px 24px;
	background: rgba(255,255,255,0.05);
	border-radius: var(--tsv-radius-lg);
	border: 1px solid rgba(255,255,255,0.1);
	transition: var(--tsv-transition);
}
.tsv-stat-card:hover {
	background: rgba(255,255,255,0.1);
	transform: translateY(-4px);
}
.tsv-stat-card__icon {
	font-size: 36px;
	color: var(--tsv-accent);
	margin-bottom: 16px;
}
.tsv-stat-card__number {
	font-family: var(--tsv-font-heading);
	font-size: 3rem;
	color: var(--tsv-white);
	line-height: 1;
	margin-bottom: 8px;
}
.tsv-stat-card__suffix { color: var(--tsv-accent); }
.tsv-stat-card p {
	color: rgba(255,255,255,0.7);
	margin: 0;
	font-weight: 500;
}
.tsv-progress-item { margin-bottom: 16px; }
.tsv-progress-item__header {
	display: flex;
	justify-content: space-between;
	margin-bottom: 8px;
	color: rgba(255,255,255,0.9);
	font-weight: 500;
}
.tsv-progress-bar {
	height: 8px;
	background: rgba(255,255,255,0.15);
	border-radius: 4px;
	overflow: hidden;
}
.tsv-progress-bar--sm { height: 6px; }
.tsv-progress-bar__fill {
	height: 100%;
	width: 0;
	background: linear-gradient(90deg, var(--tsv-accent), var(--tsv-primary-light));
	border-radius: 4px;
	transition: width 1.5s ease;
}

/* Project Cards */
.tsv-project-card {
	background: var(--tsv-white);
	border-radius: var(--tsv-radius-lg);
	overflow: hidden;
	box-shadow: var(--tsv-shadow);
	transition: var(--tsv-transition);
	height: 100%;
	display: flex;
	flex-direction: column;
}
.tsv-project-card:hover {
	transform: translateY(-6px);
	box-shadow: var(--tsv-shadow-lg);
}
.tsv-project-card__image {
	position: relative;
	height: 220px;
	overflow: hidden;
}
.tsv-project-card__image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.5s;
}
.tsv-project-card:hover .tsv-project-card__image img { transform: scale(1.08); }
.tsv-project-card__country {
	position: absolute;
	bottom: 12px;
	left: 12px;
	background: rgba(15,23,42,0.8);
	color: var(--tsv-white);
	padding: 6px 12px;
	border-radius: 50px;
	font-size: 12px;
	font-weight: 500;
	display: flex;
	align-items: center;
	gap: 4px;
}
.tsv-project-card__body {
	padding: 24px;
	flex: 1;
	display: flex;
	flex-direction: column;
}
.tsv-project-card__body h4 {
	font-size: 18px;
	margin-bottom: 10px;
}
.tsv-project-card__body h4 a { color: var(--tsv-dark); }
.tsv-project-card__body h4 a:hover { color: var(--tsv-primary); }
.tsv-project-card__body > p {
	font-size: 14px;
	color: var(--tsv-text-light);
	flex: 1;
}
.tsv-project-card__progress { margin: 16px 0; }
.tsv-project-card__progress-header {
	display: flex;
	justify-content: space-between;
	font-size: 12px;
	font-weight: 600;
	margin-bottom: 6px;
	color: var(--tsv-text);
}
.tsv-project-card__progress .tsv-progress-bar {
	background: var(--tsv-gray-200);
}

/* Dual CTA */
.tsv-dual-cta__box {
	position: relative;
	min-height: 320px;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 60px 40px;
	background-size: cover;
	background-position: center;
}
.tsv-dual-cta__box--volunteer {
	background-image: url('https://images.unsplash.com/photo-1529156069898-49953e39b3ac?w=800&h=500&fit=crop');
}
.tsv-dual-cta__box--donate {
	background-image: url('https://images.unsplash.com/photo-1532629345422-7515f3d4bb06?w=800&h=500&fit=crop');
}
.tsv-dual-cta__overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(135deg, rgba(0, 113, 93, 0.92), rgba(0, 90, 74, 0.88));
}
.tsv-dual-cta__box--donate .tsv-dual-cta__overlay {
	background: linear-gradient(135deg, rgba(0, 113, 93, 0.92), rgba(0, 158, 130, 0.88));
}
.tsv-dual-cta__content {
	position: relative;
	z-index: 2;
	text-align: center;
	color: var(--tsv-white);
}
.tsv-dual-cta__content h3 {
	color: var(--tsv-white);
	font-size: 2rem;
	margin-bottom: 12px;
}
.tsv-dual-cta__content p {
	opacity: 0.9;
	margin-bottom: 24px;
}

/* News Cards */
.tsv-news-card {
	background: var(--tsv-white);
	border-radius: var(--tsv-radius-lg);
	overflow: hidden;
	box-shadow: var(--tsv-shadow);
	transition: var(--tsv-transition);
	height: 100%;
}
.tsv-news-card:hover {
	transform: translateY(-6px);
	box-shadow: var(--tsv-shadow-lg);
}
.tsv-news-card__image {
	position: relative;
	height: 220px;
	overflow: hidden;
}
.tsv-news-card__image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.5s;
}
.tsv-news-card:hover .tsv-news-card__image img { transform: scale(1.08); }
.tsv-news-card__category {
	position: absolute;
	top: 16px;
	left: 16px;
	background: var(--tsv-primary);
	color: var(--tsv-white);
	padding: 4px 14px;
	border-radius: 50px;
	font-size: 12px;
	font-weight: 600;
}
.tsv-news-card__body { padding: 24px; }
.tsv-news-card__meta {
	display: flex;
	gap: 16px;
	font-size: 13px;
	color: var(--tsv-text-light);
	margin-bottom: 12px;
}
.tsv-news-card__meta span { display: flex; align-items: center; gap: 4px; }
.tsv-news-card__body h4 {
	font-size: 18px;
	margin-bottom: 16px;
	line-height: 1.4;
}
.tsv-news-card__body h4 a { color: var(--tsv-dark); }
.tsv-news-card__body h4 a:hover { color: var(--tsv-primary); }
.tsv-news-card__read {
	font-weight: 600;
	font-size: 14px;
	color: var(--tsv-primary);
	display: inline-flex;
	align-items: center;
	gap: 6px;
}

/* Testimonials */
.tsv-testimonials__slider { padding-bottom: 50px; }
.tsv-testimonial-card {
	background: var(--tsv-white);
	padding: 40px;
	border-radius: var(--tsv-radius-lg);
	box-shadow: var(--tsv-shadow);
	text-align: center;
	max-width: 700px;
	margin: 0 auto;
}
.tsv-testimonial-card__quote {
	font-size: 32px;
	color: var(--tsv-primary-light);
	margin-bottom: 20px;
	opacity: 0.5;
}
.tsv-testimonial-card p {
	font-size: 18px;
	font-style: italic;
	color: var(--tsv-text);
	margin-bottom: 24px;
	line-height: 1.8;
}
.tsv-testimonial-card__author strong {
	display: block;
	font-size: 16px;
	color: var(--tsv-dark);
}
.tsv-testimonial-card__author span {
	font-size: 14px;
	color: var(--tsv-text-light);
}
.tsv-testimonials__pagination { bottom: 0 !important; }
.tsv-testimonials__pagination .swiper-pagination-bullet-active {
	background: var(--tsv-primary);
}

/* Partners */
.tsv-partners__marquee {
	overflow: hidden;
	padding: 20px 0;
}
.tsv-partners__track {
	display: flex;
	animation: tsvMarquee 40s linear infinite;
	width: max-content;
}
.tsv-partners__item {
	padding: 16px 40px;
	background: var(--tsv-gray-50);
	border-radius: var(--tsv-radius);
	margin: 0 12px;
	white-space: nowrap;
	font-weight: 600;
	color: var(--tsv-text-light);
	display: flex;
	align-items: center;
	gap: 8px;
}
.tsv-partners__item i { color: var(--tsv-primary-light); }

/* CTA Section */
.tsv-cta {
	position: relative;
	padding: 120px 0;
}
.tsv-cta__bg {
	position: absolute;
	inset: 0;
	background-size: cover;
	background-position: center;
	background-attachment: fixed;
}
.tsv-cta__overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(135deg, rgba(0, 90, 74, 0.92), rgba(18, 47, 42, 0.9));
}
.tsv-cta__inner {
	position: relative;
	z-index: 2;
}
.tsv-cta__title {
	font-size: clamp(2rem, 4vw, 2.75rem);
	color: var(--tsv-white);
	margin-bottom: 20px;
}
.tsv-cta__inner > p {
	color: rgba(255,255,255,0.85);
	font-size: 18px;
	max-width: 650px;
	margin: 0 auto 32px;
}
.tsv-cta__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	justify-content: center;
}
.tsv-cta__stat {
	text-align: center;
	padding: 20px 30px;
}
.tsv-cta__stat strong {
	display: block;
	font-family: var(--tsv-font-heading);
	font-size: 2.5rem;
	color: var(--tsv-white);
}
.tsv-cta__stat span {
	font-size: 14px;
	color: rgba(255,255,255,0.7);
}

/* Footer */
.tsv-footer__cta {
	background: var(--tsv-primary);
	padding: 60px 0;
}
.tsv-footer__cta-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 30px;
	flex-wrap: wrap;
}
.tsv-footer__cta-content h3 {
	color: var(--tsv-white);
	font-size: 1.75rem;
	margin-bottom: 8px;
}
.tsv-footer__cta-content p {
	color: rgba(255,255,255,0.8);
	margin: 0;
}
.tsv-footer__newsletter {
	display: flex;
	gap: 10px;
	flex: 1;
	max-width: 500px;
}
.tsv-footer__newsletter input {
	flex: 1;
	padding: 14px 20px;
	border: none;
	border-radius: 50px;
	font-size: 15px;
	outline: none;
}
.tsv-footer__main {
	background: var(--tsv-primary-dark);
	padding: 80px 0 40px;
	color: rgba(255,255,255,0.8);
}
.tsv-footer__main h5 {
	color: var(--tsv-white);
	font-size: 18px;
	margin-bottom: 24px;
}
.tsv-footer__brand p {
	margin: 20px 0;
	font-size: 15px;
	line-height: 1.8;
}
.tsv-footer__social {
	display: flex;
	gap: 10px;
}
.tsv-footer__social a {
	width: 40px; height: 40px;
	background: rgba(255,255,255,0.1);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--tsv-white);
	font-size: 16px;
}
.tsv-footer__social a:hover {
	background: var(--tsv-accent);
}
.tsv-footer__links {
	list-style: none;
	padding: 0;
	margin: 0;
}
.tsv-footer__links li { margin-bottom: 10px; }
.tsv-footer__links a {
	color: rgba(255,255,255,0.7);
	font-size: 15px;
}
.tsv-footer__links a:hover { color: var(--tsv-white); padding-left: 4px; }
.tsv-footer__contact {
	list-style: none;
	padding: 0;
	margin: 0;
}
.tsv-footer__contact li {
	display: flex;
	gap: 12px;
	margin-bottom: 14px;
	font-size: 15px;
}
.tsv-footer__contact i {
	color: var(--tsv-accent);
	margin-top: 4px;
}
.tsv-footer__contact a { color: rgba(255,255,255,0.7); }
.tsv-footer__contact a:hover { color: var(--tsv-white); }
.tsv-footer__bottom {
	background: rgba(0,0,0,0.2);
	padding: 20px 0;
}
.tsv-footer__bottom-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 16px;
}
.tsv-footer__bottom p {
	margin: 0;
	font-size: 14px;
	color: rgba(255,255,255,0.6);
}
.tsv-footer__legal {
	display: flex;
	gap: 24px;
	list-style: none;
	margin: 0;
	padding: 0;
}
.tsv-footer__legal a {
	color: rgba(255,255,255,0.6);
	font-size: 14px;
}
.tsv-footer__legal a:hover { color: var(--tsv-white); }

/* Back to Top */
.tsv-back-top {
	position: fixed;
	bottom: 30px;
	right: 30px;
	width: 48px; height: 48px;
	background: var(--tsv-primary);
	color: var(--tsv-white);
	border: none;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 18px;
	cursor: pointer;
	opacity: 0;
	visibility: hidden;
	transform: translateY(20px);
	transition: var(--tsv-transition);
	z-index: 999;
	box-shadow: var(--tsv-shadow-lg);
}
.tsv-back-top.is-visible {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}
.tsv-back-top:hover {
	background: var(--tsv-accent);
	transform: translateY(-4px);
}

/* Page Header */
.tsv-page-header {
	background: linear-gradient(135deg, var(--tsv-primary-dark), var(--tsv-primary));
	padding: 80px 0 60px;
	text-align: center;
}
.tsv-page-header h1 {
	color: var(--tsv-white);
	font-size: 2.5rem;
	margin-bottom: 12px;
}
.tsv-page-header p { color: rgba(255,255,255,0.8); font-size: 18px; }
.tsv-breadcrumb {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	font-size: 14px;
	color: rgba(255,255,255,0.7);
	margin-top: 16px;
}
.tsv-breadcrumb a { color: var(--tsv-accent); }

/* Responsive */
@media (max-width: 1499px) {
	.tsv-nav__link { padding: 8px 9px; font-size: 12.5px; }
	.tsv-logo__text strong { font-size: 16px; }
	.tsv-header__logo { max-width: 200px; }
}

@media (max-width: 1399px) {
	:root { --tsv-container-wide: 100%; }
	.tsv-nav__link { padding: 8px 7px; font-size: 12px; }
	.tsv-logo__text small { display: none; }
	.tsv-megamenu[data-megamenu="programs"] .tsv-megamenu__inner {
		grid-template-columns: repeat(3, 1fr);
	}
}

@media (max-width: 1299px) {
	.tsv-nav { display: none; }
	.tsv-mobile-toggle { display: flex; }
	.tsv-header__phone { display: none !important; }
}

@media (max-width: 991px) {
	.tsv-section { padding: 70px 0; }
	.tsv-topbar__center { display: none; }
	.tsv-hero__slider { height: 70vh; min-height: 500px; }
	.tsv-hero__nav { right: 20px; bottom: 80px; }
	.tsv-about__images { padding-right: 40px; padding-bottom: 40px; margin-bottom: 30px; }
	.tsv-footer__cta-inner { flex-direction: column; text-align: center; }
	.tsv-footer__newsletter { max-width: 100%; width: 100%; flex-direction: column; }
	.tsv-helping__media {
		min-height: auto;
		padding: 20px 10px 40px 50px;
		margin-bottom: 20px;
	}
	.tsv-helping__thumb--top {
		left: -20px;
		width: 120px;
		height: 120px;
	}
	.tsv-helping__thumb--bottom {
		right: -10px;
		width: 130px;
		height: 130px;
	}
	.tsv-helping__vertical-banner { display: none; }
}

@media (max-width: 767px) {
	.tsv-topbar__left { display: none; }
	.tsv-topbar { text-align: center; }
	.tsv-topbar__inner { justify-content: center; }
	.tsv-hero__actions { flex-direction: column; }
	.tsv-hero__actions .tsv-btn { width: 100%; }
	.tsv-cta__actions { flex-direction: column; align-items: center; }
	.tsv-cta__actions .tsv-btn { width: 100%; max-width: 300px; }
	.tsv-dual-cta__box { min-height: 280px; padding: 40px 24px; }
	.tsv-footer__bottom-inner { flex-direction: column; text-align: center; }
	.tsv-footer__legal { flex-wrap: wrap; justify-content: center; }
}

@media (max-width: 575px) {
	.tsv-header__actions .tsv-btn { display: none !important; }
	.tsv-logo__text small { display: none; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
	*, *::before, *::after {
		animation-duration: 0.01ms !important;
		transition-duration: 0.01ms !important;
	}
	.tsv-brands__track,
	.tsv-partners__track { animation: none; }
}
