/**
 * Tour & Travel Profesional - Theme Custom CSS
 *
 * Color Scheme:
 * Primary:   #1e40af (Blue)
 * Secondary: #059669 (Green)
 * Dark:      #0f172a
 * Gray:      #64748b
 * Light:     #f8fafc
 *
 * @package Tour Design
 */

/* ==========================================================================
   CSS Variables
   ========================================================================== */
:root {
	--tc-primary: #1e40af;
	--tc-primary-dark: #1e3a8a;
	--tc-primary-light: #3b82f6;
	--tc-secondary: #059669;
	--tc-secondary-dark: #047857;
	--tc-accent: #f59e0b;
	--tc-dark: #0f172a;
	--tc-gray-900: #1e293b;
	--tc-gray-700: #334155;
	--tc-gray-600: #475569;
	--tc-gray-500: #64748b;
	--tc-gray-400: #94a3b8;
	--tc-gray-300: #cbd5e1;
	--tc-gray-200: #e2e8f0;
	--tc-gray-100: #f1f5f9;
	--tc-gray-50: #f8fafc;
	--tc-white: #ffffff;
	--tc-danger: #dc2626;
	--tc-whatsapp: #25d366;
	--tc-font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
	--tc-radius: 8px;
	--tc-radius-lg: 12px;
	--tc-radius-xl: 16px;
	--tc-shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
	--tc-shadow: 0 1px 3px rgba(0,0,0,0.1), 0 1px 2px rgba(0,0,0,0.06);
	--tc-shadow-md: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -2px rgba(0,0,0,0.1);
	--tc-shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -4px rgba(0,0,0,0.1);
	--tc-shadow-xl: 0 20px 25px -5px rgba(0,0,0,0.1), 0 8px 10px -6px rgba(0,0,0,0.1);
	--tc-container: 1140px;
}

/* ==========================================================================
   Base / Typography
   ========================================================================== */
body {
	font-family: var(--tc-font);
	color: var(--tc-gray-700);
	line-height: 1.7;
	-webkit-font-smoothing: antialiased;
}

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

a {
	transition: color 0.2s ease, background-color 0.2s ease;
}

/* ==========================================================================
   Utility: Container
   ========================================================================== */
.tc-container {
	max-width: var(--tc-container);
	margin: 0 auto;
	padding: 0 24px;
}

/* ==========================================================================
   Buttons
   ========================================================================== */
.tc-btn-primary,
.tc-btn-primary:visited {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 14px 28px;
	background: var(--tc-primary);
	color: var(--tc-white) !important;
	border-radius: var(--tc-radius);
	font-weight: 600;
	font-size: 16px;
	text-decoration: none !important;
	border: none;
	cursor: pointer;
	transition: all 0.2s ease;
}

.tc-btn-primary:hover {
	background: var(--tc-primary-dark);
	color: var(--tc-white) !important;
	text-decoration: none !important;
	transform: translateY(-1px);
	box-shadow: var(--tc-shadow-md);
}

.tc-btn-wa,
.tc-btn-wa:visited {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 14px 28px;
	background: var(--tc-whatsapp);
	color: var(--tc-white) !important;
	border-radius: var(--tc-radius);
	font-weight: 600;
	font-size: 16px;
	text-decoration: none !important;
	border: none;
	cursor: pointer;
	transition: all 0.2s ease;
}

.tc-btn-wa:hover {
	background: #20bd5a;
	color: var(--tc-white) !important;
	text-decoration: none !important;
	transform: translateY(-1px);
	box-shadow: var(--tc-shadow-md);
}

.tc-btn-outline,
.tc-btn-outline:visited {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 13px 28px;
	background: transparent;
	color: var(--tc-white) !important;
	border: 2px solid rgba(255,255,255,0.5);
	border-radius: var(--tc-radius);
	font-weight: 600;
	font-size: 16px;
	text-decoration: none !important;
	cursor: pointer;
	transition: all 0.2s ease;
}

.tc-btn-outline:hover {
	background: rgba(255,255,255,0.1);
	border-color: var(--tc-white);
	color: var(--tc-white) !important;
	text-decoration: none !important;
}

.tc-btn-outline-dark,
.tc-btn-outline-dark:visited {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 13px 28px;
	background: transparent;
	color: var(--tc-primary) !important;
	border: 2px solid var(--tc-primary);
	border-radius: var(--tc-radius);
	font-weight: 600;
	font-size: 16px;
	text-decoration: none !important;
	cursor: pointer;
	transition: all 0.2s ease;
}

.tc-btn-outline-dark:hover {
	background: var(--tc-primary);
	color: var(--tc-white) !important;
	text-decoration: none !important;
}

/* ==========================================================================
   Section Headings
   ========================================================================== */
.tc-section-header {
	text-align: center;
	margin-bottom: 48px;
}

.tc-section-header .tc-label {
	display: inline-block;
	padding: 6px 16px;
	background: rgba(30, 64, 175, 0.08);
	color: var(--tc-primary);
	border-radius: 50px;
	font-size: 14px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	margin-bottom: 16px;
}

.tc-section-header h2 {
	font-size: 36px;
	font-weight: 800;
	margin: 0 0 16px;
	color: var(--tc-dark);
}

.tc-section-header p {
	font-size: 18px;
	color: var(--tc-gray-500);
	max-width: 640px;
	margin: 0 auto;
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.tc-hero {
	position: relative;
	background: linear-gradient(135deg, var(--tc-primary-dark) 0%, var(--tc-primary) 50%, var(--tc-primary-light) 100%);
	padding: 100px 0 80px;
	overflow: hidden;
	color: var(--tc-white);
}

.tc-hero::before {
	content: '';
	position: absolute;
	top: -50%;
	right: -20%;
	width: 600px;
	height: 600px;
	background: rgba(255,255,255,0.03);
	border-radius: 50%;
}

.tc-hero::after {
	content: '';
	position: absolute;
	bottom: -30%;
	left: -10%;
	width: 400px;
	height: 400px;
	background: rgba(255,255,255,0.05);
	border-radius: 50%;
}

.tc-hero .tc-container {
	position: relative;
	z-index: 1;
}

.tc-hero-content {
	max-width: 680px;
}

.tc-hero-badge {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 8px 16px;
	background: rgba(255,255,255,0.15);
	border-radius: 50px;
	font-size: 14px;
	font-weight: 500;
	margin-bottom: 24px;
	backdrop-filter: blur(4px);
}

.tc-hero-badge svg {
	width: 16px;
	height: 16px;
}

.tc-hero h1 {
	font-size: 48px;
	font-weight: 800;
	color: var(--tc-white);
	margin: 0 0 20px;
	line-height: 1.15;
}

.tc-hero h1 span {
	color: var(--tc-accent);
}

.tc-hero-desc {
	font-size: 20px;
	color: rgba(255,255,255,0.85);
	margin: 0 0 32px;
	line-height: 1.6;
}

.tc-hero-buttons {
	display: flex;
	gap: 16px;
	flex-wrap: wrap;
	margin-bottom: 40px;
}

.tc-hero-trust {
	display: flex;
	gap: 32px;
	flex-wrap: wrap;
}

.tc-hero-trust-item {
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 14px;
	color: rgba(255,255,255,0.8);
}

.tc-hero-trust-item .trust-icon {
	width: 40px;
	height: 40px;
	background: rgba(255,255,255,0.15);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
}

.tc-hero-trust-item .trust-icon svg {
	width: 20px;
	height: 20px;
}

.tc-hero-trust-item strong {
	display: block;
	color: var(--tc-white);
	font-size: 16px;
}

/* ==========================================================================
   TOUR PACKAGES SECTION
   ========================================================================== */
.tc-section-tours {
	padding: 80px 0;
	background: var(--tc-gray-50);
}

/* ==========================================================================
   KEUNGGULAN SECTION
   ========================================================================== */
.tc-section-features {
	padding: 80px 0;
	background: var(--tc-white);
}

.tc-features-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 24px;
}

.tc-feature-card {
	background: var(--tc-white);
	border: 1px solid var(--tc-gray-200);
	border-radius: var(--tc-radius-lg);
	padding: 32px 24px;
	text-align: center;
	transition: all 0.3s ease;
}

.tc-feature-card:hover {
	border-color: var(--tc-primary);
	box-shadow: var(--tc-shadow-lg);
	transform: translateY(-4px);
}

.tc-feature-icon {
	width: 64px;
	height: 64px;
	margin: 0 auto 20px;
	background: rgba(30, 64, 175, 0.08);
	border-radius: var(--tc-radius-lg);
	display: flex;
	align-items: center;
	justify-content: center;
}

.tc-feature-icon svg {
	width: 28px;
	height: 28px;
	color: var(--tc-primary);
}

.tc-feature-card h3 {
	font-size: 18px;
	font-weight: 700;
	margin: 0 0 8px;
}

.tc-feature-card p {
	font-size: 14px;
	color: var(--tc-gray-500);
	margin: 0;
	line-height: 1.6;
}

/* ==========================================================================
   PROSES KERJA SECTION
   ========================================================================== */
.tc-section-process {
	padding: 80px 0;
	background: var(--tc-gray-50);
}

.tc-process-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 24px;
	position: relative;
}

.tc-process-grid::before {
	content: '';
	position: absolute;
	top: 40px;
	left: 12.5%;
	right: 12.5%;
	height: 2px;
	background: var(--tc-gray-300);
	z-index: 0;
}

.tc-process-step {
	text-align: center;
	position: relative;
	z-index: 1;
}

.tc-process-number {
	width: 80px;
	height: 80px;
	margin: 0 auto 20px;
	background: var(--tc-primary);
	color: var(--tc-white);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 28px;
	font-weight: 800;
	box-shadow: 0 4px 12px rgba(30, 64, 175, 0.3);
}

.tc-process-step h3 {
	font-size: 18px;
	font-weight: 700;
	margin: 0 0 8px;
}

.tc-process-step p {
	font-size: 14px;
	color: var(--tc-gray-500);
	margin: 0;
}

/* ==========================================================================
   TESTIMONIAL SECTION
   ========================================================================== */
.tc-section-testimonials {
	padding: 80px 0;
	background: var(--tc-white);
}

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

.tc-testimonial-card {
	background: var(--tc-white);
	border: 1px solid var(--tc-gray-200);
	border-radius: var(--tc-radius-lg);
	padding: 32px;
	transition: box-shadow 0.3s ease;
}

.tc-testimonial-card:hover {
	box-shadow: var(--tc-shadow-lg);
}

.tc-testimonial-stars {
	color: var(--tc-accent);
	font-size: 18px;
	margin-bottom: 16px;
	letter-spacing: 2px;
}

.tc-testimonial-card blockquote {
	font-size: 15px;
	color: var(--tc-gray-600);
	line-height: 1.7;
	margin: 0 0 20px;
	font-style: italic;
}

.tc-testimonial-author {
	display: flex;
	align-items: center;
	gap: 12px;
}

.tc-testimonial-avatar {
	width: 44px;
	height: 44px;
	border-radius: 50%;
	background: var(--tc-primary);
	color: var(--tc-white);
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 700;
	font-size: 16px;
}

.tc-testimonial-author strong {
	display: block;
	font-size: 15px;
	color: var(--tc-dark);
}

.tc-testimonial-author span {
	font-size: 13px;
	color: var(--tc-gray-400);
}

/* ==========================================================================
   CTA BOTTOM SECTION
   ========================================================================== */
.tc-section-cta {
	padding: 80px 0;
	background: linear-gradient(135deg, var(--tc-primary-dark) 0%, var(--tc-primary) 100%);
	color: var(--tc-white);
	text-align: center;
}

.tc-section-cta h2 {
	font-size: 36px;
	font-weight: 800;
	color: var(--tc-white);
	margin: 0 0 16px;
}

.tc-section-cta p {
	font-size: 18px;
	color: rgba(255,255,255,0.85);
	margin: 0 0 32px;
	max-width: 560px;
	margin-left: auto;
	margin-right: auto;
}

.tc-cta-buttons {
	display: flex;
	justify-content: center;
	gap: 16px;
	flex-wrap: wrap;
}

/* ==========================================================================
   FOOTER CUSTOM
   ========================================================================== */
.tc-footer {
	background: var(--tc-dark);
	color: var(--tc-gray-400);
	padding: 60px 0 0;
}

.tc-footer-grid {
	display: grid;
	grid-template-columns: 1.5fr 1fr 1fr 1fr;
	gap: 40px;
	padding-bottom: 40px;
	border-bottom: 1px solid rgba(255,255,255,0.1);
}

.tc-footer h4 {
	color: var(--tc-white);
	font-size: 16px;
	font-weight: 700;
	margin: 0 0 20px;
}

.tc-footer p {
	font-size: 14px;
	line-height: 1.7;
	margin: 0 0 12px;
}

.tc-footer a {
	color: var(--tc-gray-400);
	text-decoration: none;
	font-size: 14px;
	transition: color 0.2s;
}

.tc-footer a:hover {
	color: var(--tc-white);
}

.tc-footer-links {
	list-style: none;
	padding: 0;
	margin: 0;
}

.tc-footer-links li {
	margin-bottom: 10px;
}

.tc-footer-contact-item {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	margin-bottom: 12px;
	font-size: 14px;
}

.tc-footer-contact-item svg {
	width: 18px;
	height: 18px;
	flex-shrink: 0;
	margin-top: 2px;
	color: var(--tc-primary-light);
}

.tc-footer-bottom {
	padding: 20px 0;
	text-align: center;
	font-size: 13px;
	color: var(--tc-gray-500);
}

/* ==========================================================================
   SINGLE TOUR - Enhanced 2-Column Layout
   ========================================================================== */

/* Hero Duration Badge */
.tc-hero-duration {
	position: absolute;
	bottom: 16px;
	left: 16px;
	background: rgba(0, 0, 0, 0.7);
	color: #fff;
	padding: 6px 14px;
	border-radius: 8px;
	font-size: 14px;
	font-weight: 700;
	backdrop-filter: blur(4px);
	z-index: 1;
}

.tc-single-enhanced {
	padding: 40px 0 80px;
}

.tc-single-layout {
	display: grid;
	grid-template-columns: 1fr 360px;
	gap: 40px;
	align-items: start;
}

.tc-single-main {
	min-width: 0;
}

.tc-single-sidebar {
	position: sticky;
	top: 32px;
}

.tc-sidebar-card {
	background: var(--tc-white);
	border: 1px solid var(--tc-gray-200);
	border-radius: var(--tc-radius-lg);
	padding: 28px;
	margin-bottom: 24px;
	box-shadow: var(--tc-shadow-sm);
}

.tc-sidebar-card h3 {
	font-size: 16px;
	font-weight: 700;
	margin: 0 0 16px;
	padding-bottom: 12px;
	border-bottom: 2px solid var(--tc-gray-100);
}

.tc-sidebar-price {
	text-align: center;
	padding: 24px;
	background: linear-gradient(135deg, var(--tc-primary-dark), var(--tc-primary));
	border-radius: var(--tc-radius-lg);
	color: var(--tc-white);
	margin-bottom: 24px;
}

.tc-sidebar-price .price-label {
	font-size: 14px;
	opacity: 0.85;
	display: block;
	margin-bottom: 4px;
}

.tc-sidebar-price .price-value {
	font-size: 32px;
	font-weight: 800;
	display: block;
}

.tc-sidebar-buttons {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.tc-sidebar-buttons .tc-btn-wa,
.tc-sidebar-buttons .tc-btn-primary {
	justify-content: center;
	width: 100%;
	padding: 14px 20px;
}

.tc-sidebar-info-list {
	list-style: none;
	padding: 0;
	margin: 0;
}

.tc-sidebar-info-list li {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 10px 0;
	border-bottom: 1px solid var(--tc-gray-100);
	font-size: 14px;
	color: var(--tc-gray-600);
}

.tc-sidebar-info-list li:last-child {
	border-bottom: none;
}

.tc-sidebar-info-list svg {
	width: 18px;
	height: 18px;
	color: var(--tc-secondary);
	flex-shrink: 0;
}

.tc-trust-badges {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 12px;
}

.tc-trust-badge {
	display: flex;
	align-items: center;
	gap: 8px;
	padding: 10px;
	background: var(--tc-gray-50);
	border-radius: var(--tc-radius);
	font-size: 12px;
	font-weight: 600;
	color: var(--tc-gray-700);
}

.tc-trust-badge svg {
	width: 18px;
	height: 18px;
	color: var(--tc-secondary);
	flex-shrink: 0;
}

/* Single Tour - Hero Banner */
.tc-single-hero-banner {
	position: relative;
	height: 360px;
	background-size: cover;
	background-position: center;
	border-radius: var(--tc-radius-xl);
	overflow: hidden;
	margin-bottom: 32px;
}

.tc-single-hero-banner::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	height: 50%;
	background: linear-gradient(to top, rgba(0,0,0,0.5), transparent);
}

.tc-single-hero-banner img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

/* Single Tour - Destination Badge */
.tc-single-category {
	display: inline-block;
	padding: 6px 14px;
	background: rgba(30, 64, 175, 0.08);
	color: var(--tc-primary);
	border-radius: 50px;
	font-size: 13px;
	font-weight: 600;
	margin-bottom: 12px;
}

.tc-single-category a {
	color: inherit;
	text-decoration: none;
}

/* Single Tour - Title */
.tc-single-enhanced h1 {
	font-size: 32px;
	font-weight: 800;
	margin: 0 0 16px;
	line-height: 1.25;
}

/* Single Tour - Rating */
.tc-single-rating {
	display: flex;
	align-items: center;
	gap: 8px;
	margin-bottom: 16px;
}

.tc-single-rating .tc-stars {
	display: inline-flex;
	align-items: center;
	gap: 1px;
	color: #f59e0b;
}

.tc-single-rating .tc-rating-value {
	font-size: 16px;
	font-weight: 700;
	color: var(--tc-gray-800);
}

.tc-single-rating .tc-rating-count {
	font-size: 14px;
	color: var(--tc-gray-500);
}

.tc-single-enhanced .tc-single-excerpt {
	font-size: 18px;
	color: var(--tc-gray-500);
	margin: 0 0 32px;
	line-height: 1.6;
}

/* Single Tour - Body Content */
.tc-single-enhanced .tc-single-body {
	margin-bottom: 40px;
}

.tc-single-enhanced .tc-single-body h2 {
	font-size: 24px;
	margin: 32px 0 16px;
}

.tc-single-enhanced .tc-single-body h3 {
	font-size: 20px;
	margin: 24px 0 12px;
}

.tc-single-enhanced .tc-single-body ul,
.tc-single-enhanced .tc-single-body ol {
	padding-left: 24px;
	margin-bottom: 20px;
}

.tc-single-enhanced .tc-single-body li {
	margin-bottom: 8px;
	line-height: 1.7;
}

.tc-single-enhanced .tc-single-body p {
	margin-bottom: 16px;
	line-height: 1.7;
}

/* Quick Info Bar */
.tc-quick-info-bar {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 16px;
	padding: 20px;
	background: var(--tc-gray-50);
	border: 1px solid var(--tc-gray-200);
	border-radius: var(--tc-radius-lg);
	margin-bottom: 32px;
}

.tc-qi-item {
	display: flex;
	align-items: flex-start;
	gap: 10px;
}

.tc-qi-item svg {
	color: var(--tc-primary);
	flex-shrink: 0;
	margin-top: 2px;
}

.tc-qi-label {
	display: block;
	font-size: 12px;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	color: var(--tc-gray-400);
	font-weight: 600;
	margin-bottom: 1px;
}

.tc-qi-item strong {
	font-size: 14px;
	color: var(--tc-dark);
}

/* Sidebar Price Unit */
.tc-sidebar-price .price-unit {
	font-size: 14px;
	opacity: 0.75;
	display: block;
	margin-top: 2px;
}

/* Single Tour - Share Buttons */
.tc-share-buttons {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 20px 0;
	border-top: 1px solid var(--tc-gray-200);
	margin-top: 32px;
}

.tc-share-buttons span {
	font-size: 14px;
	font-weight: 600;
	color: var(--tc-gray-600);
}

.tc-share-btn {
	width: 36px;
	height: 36px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--tc-white);
	text-decoration: none;
	transition: transform 0.2s;
}

.tc-share-btn:hover {
	transform: scale(1.1);
	color: var(--tc-white);
}

.tc-share-btn.facebook { background: #1877f2; }
.tc-share-btn.twitter { background: #0f1419; }
.tc-share-btn.whatsapp { background: var(--tc-whatsapp); }

.tc-share-btn svg {
	width: 16px;
	height: 16px;
}

/* ==========================================================================
   ARCHIVE TOUR
   ========================================================================== */
.tc-archive-header {
	background: linear-gradient(135deg, var(--tc-primary-dark) 0%, var(--tc-primary) 100%);
	padding: 60px 0;
	color: var(--tc-white);
	text-align: center;
	margin-bottom: 48px;
}

.tc-archive-header h1 {
	font-size: 36px;
	font-weight: 800;
	color: var(--tc-white);
	margin: 0 0 12px;
}

.tc-archive-header p {
	font-size: 18px;
	color: rgba(255,255,255,0.85);
	margin: 0;
	max-width: 560px;
	margin-left: auto;
	margin-right: auto;
}

.tc-category-tabs {
	display: flex;
	justify-content: center;
	gap: 8px;
	flex-wrap: wrap;
	margin-bottom: 40px;
}

.tc-category-tab,
.tc-category-tab:visited {
	display: inline-block;
	padding: 10px 20px;
	background: var(--tc-white);
	border: 1px solid var(--tc-gray-200);
	border-radius: 50px;
	font-size: 14px;
	font-weight: 600;
	color: var(--tc-gray-600) !important;
	text-decoration: none !important;
	transition: all 0.2s ease;
}

.tc-category-tab:hover,
.tc-category-tab.active {
	background: var(--tc-primary);
	color: var(--tc-white) !important;
	border-color: var(--tc-primary);
	text-decoration: none !important;
}

.tc-archive-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
	padding: 0 24px 80px;
	max-width: var(--tc-container);
	margin: 0 auto;
}

.tc-archive-empty {
	text-align: center;
	padding: 80px 24px;
	color: var(--tc-gray-500);
}

.tc-archive-empty h2 {
	font-size: 24px;
	color: var(--tc-gray-600);
	margin-bottom: 12px;
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 1024px) {
	.tc-hero h1 {
		font-size: 36px;
	}

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

	.tc-process-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 32px;
	}

	.tc-process-grid::before {
		display: none;
	}

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

	.tc-single-layout {
		grid-template-columns: 1fr 320px;
		gap: 32px;
	}

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

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

@media (max-width: 768px) {
	.tc-hero {
		padding: 60px 0 50px;
	}

	.tc-hero h1 {
		font-size: 28px;
	}

	.tc-hero-desc {
		font-size: 16px;
	}

	.tc-hero-buttons {
		flex-direction: column;
	}

	.tc-hero-buttons a {
		text-align: center;
		justify-content: center;
	}

	.tc-hero-trust {
		flex-direction: column;
		gap: 16px;
	}

	.tc-section-header h2 {
		font-size: 28px;
	}

	.tc-section-tours,
	.tc-section-features,
	.tc-section-process,
	.tc-section-testimonials,
	.tc-section-cta {
		padding: 60px 0;
	}

	.tc-features-grid {
		grid-template-columns: 1fr;
	}

	.tc-process-grid {
		grid-template-columns: 1fr;
	}

	.tc-testimonials-grid {
		grid-template-columns: 1fr;
	}

	.tc-single-layout {
		grid-template-columns: 1fr;
	}

	.tc-single-sidebar {
		position: static;
	}

	.tc-single-hero-banner {
		height: 240px;
		border-radius: var(--tc-radius);
	}

	.tc-single-enhanced h1 {
		font-size: 24px;
	}

	.tc-footer-grid {
		grid-template-columns: 1fr;
		gap: 32px;
	}

	.tc-archive-header {
		padding: 40px 0;
	}

	.tc-archive-header h1 {
		font-size: 28px;
	}

	.tc-archive-grid {
		grid-template-columns: 1fr;
	}

	.tc-section-cta h2 {
		font-size: 28px;
	}

	.tc-cta-buttons {
		flex-direction: column;
		align-items: center;
	}

	.tc-trust-badges {
		grid-template-columns: 1fr;
	}
}
