/* ==========================================================================
   AE Nepal — Educational Consultancy Theme
   ========================================================================== */

:root {
	--td-primary: #2e2b4f;
	--td-primary-dark: #242141;
	--td-primary-deep: #191733;
	--td-accent: #f59e0b;
	--td-accent-dark: #d97706;
	--td-ink: #0f172a;
	--td-muted: #5b6b84;
	--td-line: #e4e9f2;
	--td-bg: #f6f8fc;
	--td-surface: #ffffff;
	--td-success: #16a34a;
	--td-danger: #dc2626;
	--td-radius: 16px;
	--td-radius-sm: 10px;
	--td-shadow-sm: 0 2px 10px rgba(15, 42, 107, 0.08);
	--td-shadow: 0 10px 30px rgba(15, 42, 107, 0.12);
	--td-shadow-lg: 0 24px 60px rgba(15, 42, 107, 0.18);
	--td-font-body: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
	--td-font-head: 'Plus Jakarta Sans', 'Inter', system-ui, sans-serif;
}

*,
*::before,
*::after {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
	-webkit-text-size-adjust: 100%;
}

body {
	margin: 0;
	font-family: var(--td-font-body);
	font-size: 16px;
	line-height: 1.7;
	color: var(--td-ink);
	background: var(--td-surface);
	overflow-x: hidden;
	overflow-wrap: break-word;
}

img {
	max-width: 100%;
	height: auto;
	display: block;
}

a {
	color: var(--td-primary);
	text-decoration: none;
	transition: color 0.2s ease;
}

a:hover {
	color: var(--td-primary-dark);
}

h1, h2, h3, h4, h5, h6 {
	font-family: var(--td-font-head);
	line-height: 1.25;
	margin: 0 0 0.6em;
	font-weight: 700;
	color: var(--td-ink);
}

h1 { font-size: clamp(1.9rem, 4.2vw, 3rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2.25rem); }
h3 { font-size: 1.2rem; }

p {
	margin: 0 0 1em;
	color: var(--td-muted);
}

input[type='text'],
input[type='email'],
input[type='tel'],
input[type='url'],
input[type='search'],
input[type='number'],
select,
textarea {
	width: 100%;
	padding: 12px 14px;
	border: 1.5px solid var(--td-line);
	border-radius: var(--td-radius-sm);
	font-family: var(--td-font-body);
	font-size: 1rem;
	color: var(--td-ink);
	background: var(--td-surface);
	transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

input:focus,
select:focus,
textarea:focus {
	outline: none;
	border-color: var(--td-primary);
	box-shadow: 0 0 0 4px rgba(46, 43, 79, 0.12);
}

textarea {
	resize: vertical;
}

/* Layout helpers */
.td-container {
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 24px;
}

.td-grid {
	display: grid;
	gap: 28px;
}

.td-grid-2 { grid-template-columns: repeat(2, 1fr); }
.td-grid-3 { grid-template-columns: repeat(3, 1fr); }
.td-grid-4 { grid-template-columns: repeat(4, 1fr); }

.td-section {
	padding: 84px 0;
}

.td-section-head {
	max-width: 640px;
	margin: 0 auto 52px;
	text-align: center;
}

.td-section-head h2 {
	margin-bottom: 0.4em;
}

.td-eyebrow {
	display: inline-block;
	font-family: var(--td-font-head);
	font-weight: 700;
	font-size: 0.8rem;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--td-primary);
	background: rgba(46, 43, 79, 0.1);
	padding: 6px 14px;
	border-radius: 999px;
	margin-bottom: 16px;
}

/* Buttons */
.td-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	font-family: var(--td-font-head);
	font-weight: 600;
	font-size: 0.95rem;
	padding: 13px 26px;
	border-radius: 999px;
	border: 2px solid transparent;
	cursor: pointer;
	transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
	line-height: 1.2;
}

.td-btn:hover { transform: translateY(-2px); }

.td-btn-lg {
	padding: 16px 32px;
	font-size: 1.05rem;
}

.td-btn-primary {
	background: var(--td-primary);
	color: #fff;
	box-shadow: 0 8px 20px rgba(46, 43, 79, 0.28);
}

.td-btn-primary:hover {
	background: var(--td-primary-dark);
	color: #fff;
	box-shadow: 0 12px 26px rgba(46, 43, 79, 0.36);
}

.td-btn-accent {
	background: var(--td-accent);
	color: #1e1b0a;
	box-shadow: 0 8px 20px rgba(245, 158, 11, 0.35);
}

.td-btn-accent:hover {
	background: var(--td-accent-dark);
	color: #fff;
}

.td-btn-ghost {
	background: rgba(255, 255, 255, 0.08);
	border-color: rgba(255, 255, 255, 0.4);
	color: #fff;
}

.td-btn-ghost:hover {
	background: rgba(255, 255, 255, 0.18);
	color: #fff;
}

.td-btn-outline {
	border-color: var(--td-primary);
	color: var(--td-primary);
	background: transparent;
}

.td-btn-outline:hover {
	background: var(--td-primary);
	color: #fff;
}

/* Skip link */
.td-skip-link {
	position: absolute;
	left: -9999px;
	top: 0;
	background: var(--td-primary);
	color: #fff;
	padding: 10px 18px;
	z-index: 1000;
	border-radius: 0 0 8px 0;
}

.td-skip-link:focus {
	left: 0;
}

/* Top bar */
.td-topbar {
	background: var(--td-primary-deep);
	color: rgba(255, 255, 255, 0.85);
	font-size: 0.85rem;
}

.td-topbar-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	min-height: 42px;
	gap: 16px;
}

.td-topbar-contacts {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 12px;
}

.td-topbar-contacts a {
	color: inherit;
	display: inline-flex;
	align-items: center;
	gap: 7px;
}

.td-topbar-contacts a:hover { color: #fff; }

.td-topbar-contacts span {
	display: inline-flex;
	align-items: center;
	gap: 7px;
}

.td-topbar-contacts svg {
	opacity: 0.75;
}

.td-topbar-divider {
	width: 1px;
	height: 14px;
	background: rgba(255, 255, 255, 0.25);
}

.td-topbar-social {
	display: flex;
	align-items: center;
	gap: 6px;
}

.td-topbar-social a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 28px;
	height: 28px;
	border-radius: 50%;
	color: rgba(255, 255, 255, 0.85);
}

.td-topbar-social a:hover {
	background: rgba(255, 255, 255, 0.15);
	color: #fff;
}

/* Header */
.td-header {
	position: sticky;
	top: 0;
	z-index: 1000;
	background: rgba(255, 255, 255, 0.98);
	border-bottom: 1px solid var(--td-line);
	transition: box-shadow 0.3s ease;
}

.td-header.is-scrolled {
	box-shadow: 0 6px 24px rgba(15, 42, 107, 0.12);
}

.td-header-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	min-height: 78px;
	gap: 24px;
}

/* Brand / logo */
.td-brand-name {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	text-decoration: none;
}

.td-brand-logo {
	width: 46px;
	height: 46px;
	border-radius: 12px;
	/* box-shadow: 0 8px 18px rgba(46, 43, 79, 0.3); */
	flex-shrink: 0;
}

.td-brand-text {
	display: flex;
	flex-direction: column;
	line-height: 1.15;
}

.td-brand-text strong {
	font-family: var(--td-font-head);
	font-size: 1.2rem;
	color: var(--td-ink);
}

.td-brand-text small {
	font-size: 0.72rem;
	color: var(--td-muted);
	letter-spacing: 0.04em;
}

/* Menu */
.td-menu {
	display: flex;
	align-items: center;
	gap: 6px;
	list-style: none;
	margin: 0;
	padding: 0;
}

.td-menu a {
	display: block;
	padding: 10px 14px;
	font-family: var(--td-font-head);
	font-weight: 600;
	font-size: 0.95rem;
	color: var(--td-ink);
	border-radius: 8px;
}

.td-menu a:hover,
.td-menu li.current-menu-item > a {
	color: var(--td-primary);
	background: rgba(46, 43, 79, 0.08);
}

.td-menu .sub-menu {
	position: absolute;
	top: 100%;
	left: 0;
	min-width: 220px;
	background: #fff;
	border: 1px solid var(--td-line);
	border-radius: 12px;
	box-shadow: var(--td-shadow);
	opacity: 0;
	visibility: hidden;
	transform: translateY(8px);
	transition: all 0.25s ease;
	list-style: none;
	padding: 8px;
	margin: 0;
	z-index: 100;
}

.td-menu li {
	position: relative;
}

.td-menu li:hover > .sub-menu {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.td-header-actions {
	display: flex;
	align-items: center;
	gap: 12px;
}

.td-nav-toggle {
	display: none;
	background: none;
	border: none;
	cursor: pointer;
	color: var(--td-ink);
	padding: 6px;
	line-height: 0;
}

.td-icon-close { display: none; }

.td-nav-toggle[aria-expanded='true'] .td-icon-open { display: none; }
.td-nav-toggle[aria-expanded='true'] .td-icon-close { display: inline-block; }

.td-nav-close {
	display: none;
	background: none;
	border: none;
	cursor: pointer;
	color: var(--td-ink);
	padding: 8px;
	line-height: 0;
}

.td-mobile-only { display: none; }

/* Hero */
.td-hero {
	position: relative;
	background: linear-gradient(135deg, var(--td-primary-deep) 0%, var(--td-primary) 60%, #5b57a8 100%);
	color: #fff;
	overflow: hidden;
	padding: 100px 0 140px;
}

.td-hero-bg {
	position: absolute;
	inset: 0;
	overflow: hidden;
	pointer-events: none;
}

.td-hero-blob {
	position: absolute;
	border-radius: 50%;
	filter: blur(2px);
}

.td-hero-blob-1 {
	width: 480px;
	height: 480px;
	top: -160px;
	right: -120px;
	background: radial-gradient(circle, rgba(255, 255, 255, 0.14), transparent 65%);
}

.td-hero-blob-2 {
	width: 360px;
	height: 360px;
	bottom: -120px;
	left: -100px;
	background: radial-gradient(circle, rgba(245, 158, 11, 0.22), transparent 65%);
}

.td-hero-blob-3 {
	width: 220px;
	height: 220px;
	top: 40%;
	left: 52%;
	background: radial-gradient(circle, rgba(255, 255, 255, 0.1), transparent 65%);
}

.td-hero-dots {
	position: absolute;
	top: 90px;
	left: 40px;
	width: 120px;
	height: 120px;
	background-image: radial-gradient(rgba(255, 255, 255, 0.35) 1.5px, transparent 1.5px);
	background-size: 18px 18px;
	opacity: 0.5;
}

.td-hero-inner {
	position: relative;
	z-index: 2;
	display: grid;
	grid-template-columns: 1.15fr 0.85fr;
	align-items: center;
	gap: 48px;
}

.td-hero .td-eyebrow {
	color: #ffd27a;
	background: rgba(245, 158, 11, 0.15);
}

.td-hero h1 {
	color: #fff;
	margin-bottom: 0.5em;
	font-size: clamp(2rem, 4.6vw, 3.4rem);
}

.td-lead {
	color: rgba(255, 255, 255, 0.85);
	font-size: 1.12rem;
	max-width: 560px;
}

.td-hero-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
	margin: 30px 0 26px;
}

.td-hero-badges {
	list-style: none;
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
	margin: 0;
	padding: 0;
}

.td-hero-badges li {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-size: 0.9rem;
	color: rgba(255, 255, 255, 0.9);
}

.td-hero-badges svg {
	color: #4ade80;
}

/* Hero art */
.td-hero-visual {
	position: relative;
	min-height: 340px;
}

.td-hero-photo img {
	width: 100%;
	max-height: 420px;
	object-fit: cover;
	border-radius: 24px;
	box-shadow: var(--td-shadow-lg);
	border: 1px solid rgba(255, 255, 255, 0.25);
}

.td-hero-art {
	position: relative;
	width: 100%;
	max-width: 460px;
	margin: 0 auto;
}

.td-art-globe {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 280px;
	height: 280px;
	margin: 0 auto;
	border-radius: 50%;
	background: radial-gradient(circle at 35% 30%, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.03));
	border: 1px solid rgba(255, 255, 255, 0.2);
	box-shadow: inset 0 0 60px rgba(255, 255, 255, 0.08), var(--td-shadow-lg);
	animation: td-float 6s ease-in-out infinite;
}

@keyframes td-float {
	0%, 100% { transform: translateY(0); }
	50% { transform: translateY(-14px); }
}

.td-art-card,
.td-art-chip {
	position: absolute;
	background: rgba(255, 255, 255, 0.95);
	color: var(--td-ink);
	border-radius: 16px;
	padding: 14px 18px;
	box-shadow: var(--td-shadow-lg);
	display: flex;
	align-items: center;
	gap: 12px;
}

.td-art-card-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	border-radius: 12px;
	background: rgba(46, 43, 79, 0.12);
	color: var(--td-primary);
	flex-shrink: 0;
}

.td-art-card strong,
.td-art-chip strong {
	display: block;
	font-family: var(--td-font-head);
	font-size: 0.95rem;
	line-height: 1.3;
}

.td-art-card small,
.td-art-chip small {
	color: var(--td-muted);
	font-size: 0.78rem;
}

.td-art-card-1 {
	top: 26px;
	left: 0;
	max-width: 250px;
	z-index: 2;
	animation: td-float 5s ease-in-out infinite;
}

.td-art-card-2 {
	bottom: 40px;
	right: 0;
	z-index: 2;
	animation: td-float 7s ease-in-out infinite;
}

.td-art-chip {
	flex-direction: column;
	align-items: flex-start;
	gap: 2px;
	top: -12px;
	right: 0;
	z-index: 2;
	background: var(--td-accent);
	color: #1e1b0a;
}

.td-art-chip svg {
	align-self: flex-start;
}

.td-art-chip strong {
	font-size: 1.3rem;
}

/* Hero wave */
.td-hero-wave {
	position: absolute;
	bottom: -1px;
	left: 0;
	right: 0;
	line-height: 0;
	z-index: 2;
}

.td-hero-wave svg {
	width: 100%;
	height: 60px;
	display: block;
}

/* Stats */
.td-stats-section {
	padding: 0;
	margin-top: -58px;
	position: relative;
	z-index: 5;
}

.td-stats {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	background: #fff;
	border-radius: var(--td-radius);
	box-shadow: var(--td-shadow-lg);
	overflow: hidden;
}

.td-stat {
	text-align: center;
	padding: 34px 20px;
	position: relative;
}

.td-stat + .td-stat::before {
	content: '';
	position: absolute;
	left: 0;
	top: 25%;
	height: 50%;
	width: 1px;
	background: var(--td-line);
}

.td-stat strong {
	display: block;
	font-family: var(--td-font-head);
	font-size: 2.4rem;
	font-weight: 800;
	color: var(--td-primary);
	line-height: 1.1;
}

.td-stat strong:not([data-suffix])::after {
	content: '+';
	font-size: 1.5rem;
}

.td-stat span {
	font-size: 0.92rem;
	color: var(--td-muted);
	font-weight: 600;
}

/* Service cards */
.td-service-card {
	background: #fff;
	border: 1px solid var(--td-line);
	border-radius: var(--td-radius);
	padding: 30px;
	box-shadow: var(--td-shadow-sm);
	transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
	display: flex;
	flex-direction: column;
}

.td-service-card:hover {
	transform: translateY(-6px);
	box-shadow: var(--td-shadow);
	border-color: rgba(46, 43, 79, 0.35);
}

.td-service-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 60px;
	height: 60px;
	border-radius: 16px;
	background: rgba(46, 43, 79, 0.1);
	color: var(--td-primary);
	margin-bottom: 20px;
}

.td-service-card:hover .td-service-icon {
	background: var(--td-primary);
	color: #fff;
}

.td-service-card h3 {
	margin-bottom: 0.4em;
}

.td-service-card p {
	font-size: 0.95rem;
	flex-grow: 1;
}

.td-service-link {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-family: var(--td-font-head);
	font-weight: 700;
	font-size: 0.92rem;
	color: var(--td-primary);
	margin-top: 8px;
}

.td-service-link svg {
	transition: transform 0.2s ease;
}

.td-service-link:hover svg {
	transform: translateX(4px);
}

/* Destinations */
.td-dests-section {
	background: var(--td-bg);
}

.td-dest-grid {
	row-gap: 32px;
}

.td-dest-card {
	background: #fff;
	border: 1px solid var(--td-line);
	border-radius: var(--td-radius);
	padding: 26px;
	text-align: center;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 6px;
	overflow: hidden;
}

.td-dest-card:hover {
	transform: translateY(-6px);
	box-shadow: var(--td-shadow);
}

.td-dest-thumb-sm {
	display: block;
	align-self: stretch;
	aspect-ratio: 16 / 9;
	margin: -26px -26px 14px;
	overflow: hidden;
	background: var(--td-bg);
}

.td-dest-thumb-sm img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.4s ease;
}

.td-dest-card:hover .td-dest-thumb-sm img {
	transform: scale(1.05);
}

.td-dest-flag {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 64px;
	height: 64px;
	border-radius: 50%;
	font-family: var(--td-font-head);
	font-weight: 800;
	font-size: 1.15rem;
	color: #fff;
	background: linear-gradient(135deg, var(--td-primary), var(--td-primary-deep));
	box-shadow: 0 10px 22px rgba(46, 43, 79, 0.3);
	margin-bottom: 12px;
}

.td-dest-card h3 {
	margin-bottom: 0.2em;
	font-size: 1.1rem;
}

.td-dest-card p {
	font-size: 0.88rem;
	margin-bottom: 8px;
}

.td-dest-link {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-weight: 700;
	font-size: 0.88rem;
	color: var(--td-primary);
	margin-top: auto;
}

.td-dest-link svg {
	transition: transform 0.2s ease;
}

.td-dest-card:hover .td-dest-link svg {
	transform: translateX(4px);
}

/* Why choose us */
.td-why-inner {
	display: grid;
	grid-template-columns: 0.9fr 1.1fr;
	align-items: center;
	gap: 60px;
}

.td-why-media {
	position: relative;
}

.td-why-photo {
	position: relative;
	min-height: 380px;
	border-radius: 24px;
	background:
		radial-gradient(circle at 30% 20%, rgba(46, 43, 79, 0.18), transparent 55%),
		radial-gradient(circle at 80% 80%, rgba(245, 158, 11, 0.2), transparent 55%),
		linear-gradient(150deg, var(--td-primary), var(--td-primary-deep));
	box-shadow: var(--td-shadow-lg);
	overflow: hidden;
}

.td-why-photo::after {
	content: '';
	position: absolute;
	inset: 0;
	background-image: radial-gradient(rgba(255, 255, 255, 0.16) 1.5px, transparent 1.5px);
	background-size: 26px 26px;
	opacity: 0.45;
}

.td-why-icon {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 120px;
	height: 120px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.16);
	color: #fff;
	backdrop-filter: blur(4px);
	z-index: 2;
}

.td-why-badge {
	position: absolute;
	bottom: 24px;
	left: 24px;
	background: #fff;
	border-radius: 14px;
	padding: 14px 20px;
	box-shadow: var(--td-shadow);
	z-index: 2;
	display: inline-block;
}

.td-why-badge strong {
	display: block;
	font-family: var(--td-font-head);
	font-size: 1.5rem;
	color: var(--td-primary);
	line-height: 1.2;
}

.td-why-badge small {
	color: var(--td-muted);
	font-size: 0.82rem;
}

.td-check-list {
	list-style: none;
	margin: 0 0 28px;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 18px;
}

.td-check-list li {
	display: flex;
	align-items: flex-start;
	gap: 14px;
}

.td-check-list li > svg {
	flex-shrink: 0;
	color: var(--td-primary);
	background: rgba(46, 43, 79, 0.1);
	border-radius: 50%;
	padding: 5px;
	width: 28px;
	height: 28px;
	margin-top: 2px;
}

.td-check-list strong {
	display: block;
	font-family: var(--td-font-head);
	color: var(--td-ink);
}

.td-check-list span {
	color: var(--td-muted);
	font-size: 0.92rem;
}

.td-check-list-sm {
	gap: 8px;
	margin-bottom: 18px;
}

.td-check-list-sm li {
	gap: 8px;
	font-size: 0.9rem;
}

.td-check-list-sm li > svg {
	width: 20px;
	height: 20px;
	padding: 3px;
}

/* Steps */
.td-steps-section {
	background: var(--td-bg);
}

.td-step {
	background: #fff;
	border: 1px solid var(--td-line);
	border-radius: var(--td-radius);
	padding: 26px;
	text-align: center;
	box-shadow: var(--td-shadow-sm);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.td-step:hover {
	transform: translateY(-6px);
	box-shadow: var(--td-shadow);
}

.td-step-num {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 56px;
	height: 56px;
	border-radius: 50%;
	font-family: var(--td-font-head);
	font-weight: 800;
	font-size: 1.2rem;
	color: var(--td-primary);
	background: rgba(46, 43, 79, 0.1);
	margin-bottom: 16px;
}

.td-step h3 {
	font-size: 1.05rem;
}

.td-step p {
	font-size: 0.9rem;
	margin: 0;
}

/* Testimonials */
.td-testi-card {
	position: relative;
	background: #fff;
	border: 1px solid var(--td-line);
	border-radius: var(--td-radius);
	padding: 30px;
	box-shadow: var(--td-shadow-sm);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.td-testi-card:hover {
	transform: translateY(-6px);
	box-shadow: var(--td-shadow);
}

.td-testi-quote {
	position: absolute;
	top: 20px;
	right: 24px;
	color: rgba(46, 43, 79, 0.14);
}

.td-stars {
	display: flex;
	gap: 3px;
	margin-bottom: 14px;
	color: var(--td-accent);
}

.td-testi-card > p {
	font-size: 0.96rem;
	margin-bottom: 22px;
}

.td-testi-author {
	display: flex;
	align-items: center;
	gap: 14px;
	border-top: 1px solid var(--td-line);
	padding-top: 18px;
}

.td-testi-avatar,
.td-team-avatar {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 52px;
	height: 52px;
	border-radius: 50%;
	font-family: var(--td-font-head);
	font-weight: 800;
	font-size: 1.2rem;
	color: #fff;
	background: linear-gradient(135deg, var(--td-primary), var(--td-primary-deep));
	flex-shrink: 0;
}

.td-testi-author strong {
	display: block;
	font-family: var(--td-font-head);
	font-size: 0.98rem;
}

.td-testi-author span {
	color: var(--td-muted);
	font-size: 0.85rem;
}

/* News cards */
.td-news-card,
.td-post-card {
	background: #fff;
	border: 1px solid var(--td-line);
	border-radius: var(--td-radius);
	overflow: hidden;
	box-shadow: var(--td-shadow-sm);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	display: flex;
	flex-direction: column;
}

.td-news-card:hover,
.td-post-card:hover {
	transform: translateY(-6px);
	box-shadow: var(--td-shadow);
}

.td-news-thumb {
	display: block;
	overflow: hidden;
	aspect-ratio: 16 / 9;
	background: var(--td-bg);
}

.td-news-thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.4s ease;
}

.td-news-card:hover .td-news-thumb img,
.td-post-card:hover .td-news-thumb img {
	transform: scale(1.06);
}

.td-news-body,
.td-post-body {
	padding: 24px;
	display: flex;
	flex-direction: column;
	flex-grow: 1;
}

.td-news-date {
	font-size: 0.8rem;
	font-weight: 600;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	color: var(--td-primary);
	margin-bottom: 8px;
}

.td-news-body h3,
.td-post-body h2 {
	font-size: 1.12rem;
	margin-bottom: 8px;
}

.td-news-body h3 a,
.td-post-body h2 a {
	color: var(--td-ink);
}

.td-news-body h3 a:hover,
.td-post-body h2 a:hover {
	color: var(--td-primary);
}

.td-news-body p,
.td-post-body p {
	font-size: 0.92rem;
	flex-grow: 1;
}

/* CTA */
.td-cta-section {
	padding-top: 0;
}

.td-cta {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 32px;
	flex-wrap: wrap;
	background: linear-gradient(120deg, var(--td-primary-deep), var(--td-primary));
	border-radius: 24px;
	padding: 52px 56px;
	color: #fff;
	box-shadow: var(--td-shadow-lg);
	position: relative;
	overflow: hidden;
}

.td-cta::before {
	content: '';
	position: absolute;
	right: -60px;
	top: -60px;
	width: 260px;
	height: 260px;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(245, 158, 11, 0.35), transparent 65%);
}

.td-cta h2 {
	color: #fff;
	margin-bottom: 0.3em;
}

.td-cta p {
	color: rgba(255, 255, 255, 0.85);
	margin: 0;
	max-width: 520px;
}

.td-cta .td-btn {
	position: relative;
	z-index: 2;
	flex-shrink: 0;
}

/* Page hero (inner pages) */
.td-page-hero {
	background: linear-gradient(135deg, var(--td-primary-deep), var(--td-primary) 70%, #5b57a8);
	color: #fff;
	padding: 72px 0 84px;
	text-align: center;
	position: relative;
	overflow: hidden;
}

.td-page-hero::before {
	content: '';
	position: absolute;
	inset: 0;
	background-image: radial-gradient(rgba(255, 255, 255, 0.12) 1.5px, transparent 1.5px);
	background-size: 28px 28px;
	opacity: 0.4;
}

.td-page-hero .td-container {
	position: relative;
	z-index: 2;
}

.td-page-hero h1 {
	color: #fff;
}

.td-page-hero p {
	color: rgba(255, 255, 255, 0.85);
	max-width: 640px;
	margin: 0 auto;
}

.td-page-hero .td-eyebrow {
	background: rgba(255, 255, 255, 0.14);
	color: #ffd27a;
}

/* Breadcrumbs */
.td-breadcrumbs {
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 0.85rem;
	color: rgba(255, 255, 255, 0.7);
	margin-bottom: 14px;
	justify-content: center;
}

.td-breadcrumbs a {
	color: rgba(255, 255, 255, 0.85);
}

.td-breadcrumbs a:hover {
	color: #fff;
}

/* Blog layout */
.td-with-sidebar {
	display: grid;
	grid-template-columns: 1fr 320px;
	gap: 48px;
	padding-top: 60px;
	padding-bottom: 80px;
	align-items: start;
}

.td-main {
	min-width: 0;
}

.td-sidebar .widget {
	background: #fff;
	border: 1px solid var(--td-line);
	border-radius: var(--td-radius);
	padding: 24px;
	margin-bottom: 24px;
	box-shadow: var(--td-shadow-sm);
}

.td-sidebar .widget-title,
.footer-title {
	font-size: 1.05rem;
	margin-bottom: 14px;
}

.td-sidebar ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

.td-sidebar ul li {
	margin-bottom: 10px;
}

.td-sidebar ul a {
	color: var(--td-muted);
}

.td-sidebar ul a:hover {
	color: var(--td-primary);
}

/* Post meta */
.td-post-meta {
	display: flex;
	gap: 20px;
	justify-content: center;
	flex-wrap: wrap;
	font-size: 0.88rem;
	color: rgba(255, 255, 255, 0.85);
}

.td-post-meta span {
	display: inline-flex;
	align-items: center;
	gap: 7px;
}

/* Article */
.td-article {
	background: #fff;
	border: 1px solid var(--td-line);
	border-radius: var(--td-radius);
	overflow: hidden;
	box-shadow: var(--td-shadow-sm);
}

.td-article-thumb img {
	width: 100%;
}

.td-article-content {
	padding: 36px;
}

.td-article-content h2,
.td-article-content h3 {
	margin-top: 1.4em;
}

.td-article-content p {
	font-size: 1.02rem;
}

.td-article-content a {
	text-decoration: underline;
	text-underline-offset: 3px;
}

.td-article-content blockquote {
	border-left: 4px solid var(--td-primary);
	margin: 1.6em 0;
	padding: 8px 22px;
	background: rgba(46, 43, 79, 0.05);
	border-radius: 0 12px 12px 0;
}

.td-article-content blockquote p {
	margin: 0;
	font-style: italic;
}

.td-article-content table {
	display: block;
	width: 100%;
	overflow-x: auto;
	-webkit-overflow-scrolling: touch;
}

.td-article-content ul,
.td-article-content ol {
	padding-left: 22px;
}

.td-page-links {
	margin-top: 20px;
}

.td-tags {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	padding: 0 36px 36px;
}

.td-tags a {
	background: var(--td-bg);
	color: var(--td-muted);
	font-size: 0.82rem;
	padding: 6px 14px;
	border-radius: 999px;
}

.td-tags a:hover {
	background: var(--td-primary);
	color: #fff;
}

.td-post-nav {
	display: flex;
	justify-content: space-between;
	gap: 20px;
	margin: 32px 0;
}

.td-post-nav a {
	font-family: var(--td-font-head);
	font-weight: 600;
	font-size: 0.92rem;
	max-width: 46%;
}

/* Pagination */
.pagination,
.nav-links {
	display: flex;
	justify-content: center;
	gap: 8px;
	margin-top: 44px;
	flex-wrap: wrap;
}

.pagination .page-numbers,
.nav-links .page-numbers {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 44px;
	height: 44px;
	padding: 0 12px;
	border-radius: 10px;
	border: 1.5px solid var(--td-line);
	font-weight: 600;
	color: var(--td-ink);
	background: #fff;
}

.pagination .page-numbers.current,
.nav-links .page-numbers.current {
	background: var(--td-primary);
	border-color: var(--td-primary);
	color: #fff;
}

.pagination .page-numbers:hover,
.nav-links .page-numbers:hover {
	border-color: var(--td-primary);
	color: var(--td-primary);
}

/* 404 */
.td-404-code {
	font-size: clamp(4rem, 12vw, 7rem);
	font-weight: 800;
	line-height: 1;
	color: #ffd27a;
	margin-bottom: 8px;
}

.td-404-actions {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 16px;
	flex-wrap: wrap;
	margin-top: 24px;
}

.td-404-actions .search-form {
	display: inline-flex;
}

/* Search form */
.search-form {
	display: flex;
	gap: 8px;
	max-width: 420px;
}

.search-form .search-field {
	border-radius: 999px 0 0 999px;
}

.search-form .search-submit {
	border-radius: 0 999px 999px 0;
	background: var(--td-primary);
	border: none;
	color: #fff;
	font-family: var(--td-font-head);
	font-weight: 600;
	padding: 0 22px;
	cursor: pointer;
}

/* Empty state */
.td-empty {
	text-align: center;
	padding: 60px 20px;
	background: #fff;
	border: 1px dashed var(--td-line);
	border-radius: var(--td-radius);
}

.td-empty .search-form {
	margin: 20px auto 0;
}

/* College cards */
.td-college-card {
	background: #fff;
	border: 1px solid var(--td-line);
	border-radius: var(--td-radius);
	padding: 28px;
	box-shadow: var(--td-shadow-sm);
	display: flex;
	flex-direction: column;
	overflow: hidden;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.td-college-card:hover {
	transform: translateY(-6px);
	box-shadow: var(--td-shadow);
}

.td-college-thumb {
	margin: -28px -28px 24px;
	aspect-ratio: 16 / 9;
	overflow: hidden;
	background: var(--td-bg);
}

.td-college-thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.4s ease;
}

.td-college-card:hover .td-college-thumb img {
	transform: scale(1.05);
}

.td-college-head {
	display: flex;
	align-items: center;
	gap: 16px;
	margin-bottom: 16px;
}

.td-college-avatar {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 60px;
	height: 60px;
	border-radius: 16px;
	font-family: var(--td-font-head);
	font-weight: 800;
	font-size: 1.5rem;
	color: #fff;
	background: linear-gradient(135deg, var(--td-primary), var(--td-primary-deep));
	flex-shrink: 0;
	box-shadow: 0 10px 22px rgba(46, 43, 79, 0.3);
}

.td-college-title h2 {
	font-size: 1.15rem;
	margin-bottom: 2px;
}

.td-college-location {
	display: inline-flex;
	align-items: center;
	gap: 5px;
	font-size: 0.85rem;
	color: var(--td-muted);
}

.td-college-location svg {
	color: var(--td-primary);
}

.td-college-card > p {
	font-size: 0.92rem;
	flex-grow: 1;
}

.td-college-courses {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin: 14px 0 20px;
}

.td-college-courses span {
	background: rgba(46, 43, 79, 0.08);
	color: var(--td-primary);
	font-size: 0.78rem;
	font-weight: 600;
	padding: 5px 12px;
	border-radius: 999px;
}

.td-college-cta {
	align-self: flex-start;
}

/* Comments */
.td-comments {
	margin-top: 40px;
	background: #fff;
	border: 1px solid var(--td-line);
	border-radius: var(--td-radius);
	padding: 32px;
	box-shadow: var(--td-shadow-sm);
}

.td-comment-list {
	list-style: none;
	padding: 0;
	margin: 0 0 20px;
}

.td-comment-list .comment {
	margin-bottom: 24px;
}

.td-comment-list .comment-body {
	background: var(--td-bg);
	border-radius: 12px;
	padding: 18px;
}

.td-comment-list .comment-author img {
	border-radius: 50%;
	margin-right: 10px;
	display: inline-block;
}

.td-comment-list .children {
	list-style: none;
	padding-left: 30px;
}

.comment-form label {
	display: block;
	font-weight: 600;
	font-size: 0.9rem;
	margin-bottom: 6px;
}

.comment-form p {
	margin-bottom: 16px;
}

.comment-form input,
.comment-form textarea {
	max-width: 640px;
}

.comment-form .submit,
.comment-form .td-btn {
	border: none;
}

/* About page */
.td-about-story .td-why-copy p {
	margin-bottom: 1.2em;
}

.td-mission-section {
	background: var(--td-bg);
}

.td-value-card {
	background: #fff;
	border: 1px solid var(--td-line);
	border-radius: var(--td-radius);
	padding: 30px;
	box-shadow: var(--td-shadow-sm);
	text-align: center;
}

.td-value-card .td-service-icon {
	margin: 0 auto 18px;
}

.td-team-card {
	background: #fff;
	border: 1px solid var(--td-line);
	border-radius: var(--td-radius);
	padding: 30px 20px;
	text-align: center;
	box-shadow: var(--td-shadow-sm);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.td-team-card:hover {
	transform: translateY(-6px);
	box-shadow: var(--td-shadow);
}

.td-team-avatar {
	width: 84px;
	height: 84px;
	font-size: 1.9rem;
	margin: 0 auto 16px;
	background: linear-gradient(135deg, var(--td-accent), var(--td-accent-dark));
	box-shadow: 0 12px 26px rgba(217, 119, 6, 0.35);
}

.td-team-card h3 {
	font-size: 1.05rem;
	margin-bottom: 2px;
}

.td-team-card p {
	font-size: 0.9rem;
	margin: 0;
}

/* Destinations page */
.td-dest-list {
	display: flex;
	flex-direction: column;
	gap: 36px;
}

.td-dest-detail {
	background: #fff;
	border: 1px solid var(--td-line);
	border-radius: var(--td-radius);
	padding: 36px;
	box-shadow: var(--td-shadow-sm);
	display: flex;
	gap: 32px;
	align-items: stretch;
}

.td-dest-thumb {
	flex: 0 0 300px;
	align-self: flex-start;
	aspect-ratio: 16 / 9;
	border-radius: 12px;
	overflow: hidden;
	background: var(--td-bg);
}

.td-dest-thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.4s ease;
}

.td-dest-detail:hover .td-dest-thumb img {
	transform: scale(1.05);
}

.td-dest-body {
	flex: 1;
	min-width: 0;
}

.td-dest-detail-head {
	display: flex;
	gap: 22px;
	align-items: flex-start;
}

.td-dest-flag-lg {
	width: 76px;
	height: 76px;
	font-size: 1.3rem;
	flex-shrink: 0;
	margin: 0;
}

.td-dest-detail-head h2 {
	margin-bottom: 0.2em;
}

.td-dest-facts {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 16px;
	margin: 26px 0;
}

.td-dest-fact {
	background: var(--td-bg);
	border-radius: 12px;
	padding: 16px;
}

.td-dest-fact span {
	display: block;
	font-size: 0.78rem;
	font-weight: 600;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	color: var(--td-muted);
	margin-bottom: 4px;
}

.td-dest-fact strong {
	font-family: var(--td-font-head);
	font-size: 0.98rem;
}

.td-dest-features {
	list-style: none;
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 12px;
	padding: 0;
	margin: 0 0 26px;
}

.td-dest-features li {
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 0.95rem;
	color: var(--td-ink);
}

.td-dest-features svg {
	color: var(--td-primary);
	flex-shrink: 0;
}

/* Contact page */
.td-contact-grid {
	display: grid;
	grid-template-columns: 0.9fr 1.1fr;
	gap: 56px;
	align-items: start;
}

.td-contact-info h2,
.td-contact-form-wrap h2 {
	margin-bottom: 0.3em;
}

.td-contact-cards {
	list-style: none;
	margin: 28px 0 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 14px;
}

.td-contact-cards li {
	display: flex;
	align-items: flex-start;
	gap: 16px;
	background: #fff;
	border: 1px solid var(--td-line);
	border-radius: 14px;
	padding: 18px;
	box-shadow: var(--td-shadow-sm);
}

.td-contact-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 48px;
	height: 48px;
	border-radius: 12px;
	background: rgba(46, 43, 79, 0.1);
	color: var(--td-primary);
	flex-shrink: 0;
}

.td-contact-cards strong {
	display: block;
	font-family: var(--td-font-head);
	margin-bottom: 2px;
}

.td-contact-cards span,
.td-contact-cards a {
	display: block;
	color: var(--td-muted);
	font-size: 0.95rem;
}

.td-contact-form-wrap {
	background: #fff;
	border: 1px solid var(--td-line);
	border-radius: var(--td-radius);
	padding: 36px;
	box-shadow: var(--td-shadow);
}

.td-contact-form .td-form-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 20px;
}

.td-form-field label {
	display: block;
	font-family: var(--td-font-head);
	font-weight: 600;
	font-size: 0.9rem;
	margin-bottom: 6px;
}

.td-form-field {
	margin: 0 0 18px;
}

.td-form-note {
	font-size: 0.82rem;
	margin-bottom: 16px;
}

.td-form-message {
	margin-top: 16px;
	padding: 14px 18px;
	border-radius: 10px;
	font-weight: 600;
	font-size: 0.95rem;
	display: none;
}

.td-form-message.td-ok {
	display: block;
	background: rgba(22, 163, 74, 0.12);
	color: var(--td-success);
	border: 1px solid rgba(22, 163, 74, 0.3);
}

.td-form-message.td-error {
	display: block;
	background: rgba(220, 38, 38, 0.1);
	color: var(--td-danger);
	border: 1px solid rgba(220, 38, 38, 0.3);
}

.td-form-submit.is-loading .td-form-label {
	visibility: hidden;
}

.td-form-submit .td-form-loading {
	display: none;
	width: 18px;
	height: 18px;
	border: 3px solid rgba(255, 255, 255, 0.4);
	border-top-color: #fff;
	border-radius: 50%;
	animation: td-spin 0.7s linear infinite;
}

.td-form-submit.is-loading .td-form-loading {
	display: inline-block;
}

@keyframes td-spin {
	to { transform: rotate(360deg); }
}

/* Honeypot */
.td-hp {
	position: absolute !important;
	left: -9999px !important;
	width: 1px;
	height: 1px;
	overflow: hidden;
	opacity: 0;
	margin: 0 !important;
}

/* Map */
.td-map {
	position: relative;
	border-radius: var(--td-radius);
	overflow: hidden;
	border: 1px solid var(--td-line);
	box-shadow: var(--td-shadow);
}

.td-map iframe {
	width: 100%;
	height: 420px;
	border: 0;
	display: block;
}

.td-map-note {
	position: absolute;
	left: 20px;
	bottom: 20px;
	background: #fff;
	border-radius: 12px;
	padding: 12px 18px;
	display: flex;
	align-items: center;
	gap: 10px;
	font-weight: 600;
	font-size: 0.9rem;
	box-shadow: var(--td-shadow);
	color: var(--td-ink);
}

.td-map-note svg {
	color: var(--td-primary);
}

/* Footer */
.td-footer {
	background: var(--td-primary-deep);
	color: rgba(255, 255, 255, 0.78);
	margin-top: 60px;
}

.td-footer-grid {
	display: grid;
	grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
	gap: 44px;
	padding-top: 72px;
	padding-bottom: 48px;
}

.td-footer .td-brand-logo {
	border-radius: 12px;
	box-shadow: 0 8px 18px rgba(245, 158, 11, 0.35);
}

.td-footer .td-brand-text strong {
	color: #fff;
}

.td-footer .td-brand-text small {
	color: rgba(255, 255, 255, 0.6);
}

.td-footer-about p {
	color: rgba(255, 255, 255, 0.7);
	font-size: 0.92rem;
	margin-top: 18px;
}

.td-footer .footer-title {
	color: #fff;
}

.td-footer-links {
	list-style: none;
	margin: 0;
	padding: 0;
}

.td-footer-links li {
	margin-bottom: 10px;
}

.td-footer-links a,
.td-footer-contact a,
.td-footer-contact span {
	color: rgba(255, 255, 255, 0.78);
	font-size: 0.93rem;
}

.td-footer-links a:hover,
.td-footer-contact a:hover {
	color: var(--td-accent);
}

.td-footer-contact {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 14px;
}

.td-footer-contact li {
	display: flex;
	align-items: flex-start;
	gap: 12px;
}

.td-footer-contact svg {
	color: var(--td-accent);
	flex-shrink: 0;
	margin-top: 2px;
}

.td-footer-social {
	display: flex;
	gap: 10px;
	margin-top: 20px;
}

.td-footer-social a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 38px;
	height: 38px;
	border-radius: 10px;
	background: rgba(255, 255, 255, 0.08);
	color: #fff;
	transition: background 0.2s ease, transform 0.2s ease;
}

.td-footer-social a:hover {
	background: var(--td-accent);
	color: #1e1b0a;
	transform: translateY(-3px);
}

.td-footer-bottom {
	border-top: 1px solid rgba(255, 255, 255, 0.12);
	padding: 20px 0;
	font-size: 0.85rem;
}

.td-footer-bottom .td-container {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	flex-wrap: wrap;
}

.td-footer-bottom p {
	margin: 0;
	color: rgba(255, 255, 255, 0.6);
}

.td-footer-credit {
	color: rgba(255, 255, 255, 0.5) !important;
}

/* Back to top */
.td-back-top {
	position: fixed;
	bottom: 26px;
	right: 26px;
	width: 48px;
	height: 48px;
	border-radius: 50%;
	border: none;
	background: var(--td-primary);
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: var(--td-shadow);
	cursor: pointer;
	opacity: 0;
	visibility: hidden;
	transform: translateY(12px);
	transition: all 0.3s ease;
	z-index: 800;
}

.td-back-top.is-visible {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.td-back-top:hover {
	background: var(--td-primary-dark);
}

/* WhatsApp floating button */
.td-whatsapp-btn {
	position: fixed;
	bottom: 84px;
	right: 26px;
	width: 52px;
	height: 52px;
	border-radius: 50%;
	background: #25d366;
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 6px 16px rgba(37, 211, 102, 0.4);
	transition: transform 0.3s ease, background 0.3s ease;
	z-index: 800;
}

.td-whatsapp-btn:hover {
	background: #1ebe57;
	transform: scale(1.08);
}

/* Reveal on scroll */
.td-reveal {
	opacity: 0;
	transform: translateY(28px);
	transition: opacity 0.6s ease, transform 0.6s ease;
}

.td-reveal.is-visible {
	opacity: 1;
	transform: translateY(0);
}

/* Achievements & awards */
.td-awards-grid {
	grid-template-columns: repeat(2, 1fr);
}

.td-award-card {
	background: #fff;
	border: 1px solid var(--td-line);
	border-radius: var(--td-radius);
	padding: 32px 26px;
	text-align: center;
	box-shadow: var(--td-shadow-sm);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.td-award-card:hover {
	transform: translateY(-6px);
	box-shadow: var(--td-shadow);
}

.td-award-icon {
	width: 60px;
	height: 60px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 18px;
	border-radius: 50%;
	background: linear-gradient(135deg, var(--td-accent), var(--td-accent-dark));
	color: #fff;
	box-shadow: 0 12px 26px rgba(217, 119, 6, 0.32);
}

.td-award-thumb {
	display: block;
	width: 100%;
	aspect-ratio: 16 / 9;
	overflow: hidden;
	background: var(--td-bg);
}

.td-award-thumb .td-award-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 0.3s ease;
	cursor: zoom-in;
}

.td-award-card--img {
	padding: 0 0 28px;
	text-align: left;
	overflow: hidden;
}

.td-award-card--img .td-award-thumb {
	margin-bottom: 20px;
}

.td-award-card--img h3 {
	padding: 0 24px;
}

.td-award-card--img p {
	padding: 0 24px;
}

.td-award-card--img:hover .td-award-thumb .td-award-img {
	transform: scale(1.05);
}

.td-award-card h3 {
	font-size: 1.05rem;
	margin-bottom: 0.5em;
}

.td-award-card p {
	margin-bottom: 0;
	font-size: 0.95rem;
}

/* FAQ */
.td-faq-section {
	background: var(--td-bg);
}

.td-faq {
	max-width: 820px;
	margin: 0 auto;
}

.td-faq-item {
	background: #fff;
	border: 1px solid var(--td-line);
	border-radius: var(--td-radius-sm);
	box-shadow: var(--td-shadow-sm);
	margin-bottom: 14px;
	overflow: hidden;
}

.td-faq-item summary {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	list-style: none;
	cursor: pointer;
	padding: 18px 22px;
	font-family: var(--td-font-head);
	font-weight: 600;
	color: var(--td-ink);
}

.td-faq-item summary::-webkit-details-marker { display: none; }

.td-faq-item summary::after {
	content: '+';
	flex: 0 0 auto;
	width: 28px;
	height: 28px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	background: rgba(46, 43, 79, 0.08);
	color: var(--td-primary);
	font-size: 1.1rem;
	font-weight: 700;
	transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease;
}

.td-faq-item[open] summary::after {
	transform: rotate(45deg);
	background: var(--td-primary);
	color: #fff;
}

.td-faq-body {
	padding: 0 22px 20px;
}

.td-faq-body p {
	margin: 0;
	font-size: 0.98rem;
}

/* Gallery */
.td-gallery {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
}

.td-gallery-item {
	position: relative;
	display: block;
	border-radius: var(--td-radius);
	overflow: hidden;
	box-shadow: var(--td-shadow-sm);
	aspect-ratio: 4 / 3;
	background: var(--td-bg);
}

.td-gallery-item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.4s ease;
}

.td-gallery-item:hover img {
	transform: scale(1.05);
}

/* Lightbox */
.td-lightbox {
	position: fixed;
	inset: 0;
	z-index: 1000;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 24px;
	background: rgba(15, 23, 42, 0.92);
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.25s ease, visibility 0.25s ease;
	cursor: zoom-out;
}

.td-lightbox.is-open {
	opacity: 1;
	visibility: visible;
}

.td-lightbox img {
	max-width: 100%;
	max-height: 90vh;
	border-radius: 10px;
	box-shadow: var(--td-shadow-lg);
}

/* Responsive */
@media (max-width: 1024px) {
	.td-grid-4 { grid-template-columns: repeat(2, 1fr); }
	.td-grid-3 { grid-template-columns: repeat(2, 1fr); }
	.td-why-inner,
	.td-contact-grid { grid-template-columns: 1fr; gap: 40px; }
	.td-footer-grid { grid-template-columns: repeat(2, 1fr); }
	.td-with-sidebar { grid-template-columns: 1fr; }
	.td-hero-inner { grid-template-columns: 1fr; gap: 56px; }
	.td-stats { grid-template-columns: repeat(2, 1fr); }
	.td-stat:nth-child(3)::before { display: none; }
	.td-dest-facts { grid-template-columns: 1fr; }
	.td-dest-features { grid-template-columns: 1fr; }
	.td-gallery { grid-template-columns: repeat(2, 1fr); }
	.td-topbar-hours { display: none; }

	/* Tablet & mobile nav (full-screen overlay) */
	.td-nav-toggle { display: inline-flex; }
	.td-mobile-only { display: block; }
	.td-desktop-only { display: none; }

	.td-nav {
		position: fixed;
		inset: 0;
		z-index: 1001;
		display: flex;
		flex-direction: column;
		align-items: center;
		justify-content: center;
		background: #fff;
		padding: 80px 24px 48px;
		overflow-y: auto;
		-webkit-overflow-scrolling: touch;
		transform: translateX(100%);
		transition: transform 0.3s ease;
		visibility: hidden;
	}

	.td-nav.is-open {
		transform: translateX(0);
		visibility: visible;
	}

	.td-nav-close {
		display: inline-flex;
		position: absolute;
		top: 18px;
		right: 18px;
		width: 46px;
		height: 46px;
		align-items: center;
		justify-content: center;
		border-radius: 12px;
		background: rgba(46, 43, 79, 0.06);
		transition: background 0.2s ease, transform 0.2s ease;
	}

	.td-nav-close:hover {
		background: rgba(46, 43, 79, 0.12);
		transform: rotate(90deg);
	}

	.td-nav-close svg {
		width: 22px;
		height: 22px;
	}

	.td-nav .td-menu {
		flex-direction: column;
		align-items: center;
		gap: 4px;
		width: 100%;
		max-width: 380px;
	}

	.td-menu a {
		font-size: 1.15rem;
		text-align: center;
		padding: 12px 16px;
	}

	.td-menu .sub-menu {
		position: static;
		opacity: 1;
		visibility: visible;
		transform: none;
		box-shadow: none;
		border: none;
		padding: 0 0 0 12px;
		width: 100%;
	}

	.td-menu .sub-menu a {
		font-size: 1rem;
	}

	.td-nav-cta {
		width: 100%;
		max-width: 380px;
		margin-top: 32px;
	}

	.td-nav-cta .td-btn {
		width: 100%;
		justify-content: center;
	}
}

@media (max-width: 768px) {
	.td-section { padding: 60px 0; }
	.td-grid-2,
	.td-grid-3,
	.td-grid-4,
	.td-awards-grid { grid-template-columns: 1fr; }
	.td-hero { padding: 64px 0 120px; }
	.td-cta { padding: 36px 28px; text-align: center; }
	.td-cta .td-btn { width: 100%; }
	.td-dest-detail { flex-direction: column; padding: 24px; }
	.td-dest-thumb { flex: none; width: 100%; aspect-ratio: 16 / 9; }
	.td-dest-detail-head { flex-direction: column; }
	.td-contact-form-wrap { padding: 26px; }
	.td-contact-form .td-form-row { grid-template-columns: 1fr; gap: 0; }
	.td-form-submit { width: 100%; }
	.td-footer-grid { grid-template-columns: 1fr; gap: 36px; }
	.td-footer-bottom .td-container { justify-content: center; text-align: center; }
	.td-topbar-social { display: none; }
	.td-topbar-inner { justify-content: center; }
	.td-section-head { margin-bottom: 40px; }
	.td-post-nav { flex-direction: column; align-items: stretch; }
	.td-post-nav a { max-width: 100%; }
}

@media (max-width: 480px) {
	.td-stats { grid-template-columns: 1fr 1fr; }
	.td-stat strong { font-size: 1.8rem; }
	.td-gallery { grid-template-columns: 1fr; }
	.td-art-card-2 { right: auto; left: 0; }
	.td-art-card-1 { max-width: 185px; }
	.td-article-content { padding: 24px; }
	.td-tags { padding: 0 24px 24px; }
	.td-hero-actions .td-btn { width: 100%; }

	.td-hero { padding: 56px 0 112px; }
	.td-hero-visual { min-height: 260px; }
	.td-art-globe { width: 220px; height: 220px; }
	.td-art-card,
	.td-art-chip { padding: 10px 12px; gap: 8px; }
	.td-art-card-icon { width: 34px; height: 34px; }
	.td-art-card strong { font-size: 0.85rem; }
	.td-art-chip strong { font-size: 1.05rem; }

	.td-page-hero { padding: 56px 0 64px; }
	.td-breadcrumbs { font-size: 0.8rem; }

	.td-btn-lg { padding: 14px 24px; font-size: 1rem; }
	.td-section-head h2 { font-size: 1.7rem; }

	.td-map iframe { height: 300px; }
	.td-map-note { left: 12px; bottom: 12px; padding: 10px 14px; font-size: 0.82rem; }
	.td-contact-cards li { padding: 14px; }
	.td-contact-icon { width: 42px; height: 42px; }

	.td-faq-item summary { padding: 16px; font-size: 0.95rem; }
	.td-faq-body { padding: 0 16px 16px; }

	.td-stat { padding: 26px 12px; }
	.td-stat span { font-size: 0.8rem; }

	.td-back-top { width: 44px; height: 44px; right: 16px; bottom: 16px; }
	.td-whatsapp-btn { width: 48px; height: 48px; right: 16px; bottom: 70px; }
	.td-comments { padding: 24px; }
	.search-form { width: 100%; max-width: 100%; }
	.search-form .search-field { min-width: 0; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
	html { scroll-behavior: auto; }
	*,
	*::before,
	*::after {
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: 0.01ms !important;
	}
	.td-reveal { opacity: 1; transform: none; }
}
