/**
 * T2India Main CSS
 * Version: 1.0.0
 * Date: December 14 2025
 */

*	{
		margin: 0;
		padding: 0;
		box-sizing: border-box;
	}
:root {
	--primary-orange: #f97316;
	--primary-green: #10b981;
	--primary-purple: #8b5cf6;
	--primary-blue: #3b82f6;
	--secondary-teal: #14b8a6;
	--bg-gradient: linear-gradient(135deg, #f8f4ff 0%, #e8deff 100%);
	--text-dark: #1f2937;
	--text-light: #6b7280;
	--white: #ffffff;
	--shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
	--shadow-md: 0 4px 16px rgba(0,0,0,0.12);
	--shadow-lg: 0 8px 32px rgba(0,0,0,0.16);
}

body {
	font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
	line-height: 1.6;
	color: var(--text-dark);
	background: var(--bg-gradient);
	min-height: 100vh;
}

/* Header & Navigation */
.header {
	background: var(--white);
	padding: 1rem 0;
	box-shadow: var(--shadow-md);
	position: sticky;
	top: 0;
	z-index: 1000;
}

.nav-container {
	max-width: 1400px;
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 0 2rem;
	flex-wrap: wrap;
	gap: 1rem;
}

.logo {
	display: flex;
	align-items: center;
	gap: 0.75rem;
}

.logo-img {
	height: 50px;
	width: auto;
}

.logo-text {
	font-size: 2rem;
	font-weight: 800;
	letter-spacing: -0.5px;
}

.logo-text .t2 {
	color: var(--primary-green);
}

.logo-text .india {
	color: var(--primary-orange);
}

.logo-text .reg {
	font-size: 0.8rem;
	color: var(--primary-blue);
	vertical-align: super;
}

.logo-tagline {
	font-size: 0.75rem;
	color: var(--text-light);
	margin-top: -0.25rem;
}

.nav-buttons {
	display: flex;
	gap: 0.75rem;
	flex-wrap: wrap;
}

.nav-btn {
	padding: 0.625rem 1.5rem;
	border: none;
	border-radius: 8px;
	font-weight: 600;
	font-size: 0.95rem;
	cursor: pointer;
	transition: all 0.3s ease;
	text-decoration: none;
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
}

.nav-btn.primary {
	background: var(--primary-blue);
	color: var(--white);
}

.nav-btn.secondary {
	background: var(--primary-purple);
	color: var(--white);
}

.nav-btn.accent {
	background: var(--primary-orange);
	color: var(--white);
}

.nav-btn:hover {
	transform: translateY(-2px);
	box-shadow: var(--shadow-md);
}

/* Hero Section */
.hero-section {
	text-align: center;
	padding: 3rem 2rem;
	max-width: 1400px;
	margin: 0 auto;
}

.airplane-icon {
	font-size: 4rem;
	margin-bottom: 1.5rem;
	animation: float 3s ease-in-out infinite;
}

@keyframes float {
	0%, 100% { transform: translateY(0px); }
	50% { transform: translateY(-15px); }
}

.hero-logo {
	font-size: 3.5rem;
	font-weight: 800;
	margin-bottom: 0.5rem;
	letter-spacing: -1px;
}

.hero-logo .t2 {
	color: var(--primary-green);
}

.hero-logo .india {
	color: var(--primary-orange);
}

.hero-logo .reg {
	color: var(--primary-blue);
	font-size: 1.5rem;
}

.hero-tagline {
	font-size: 1.25rem;
	color: var(--text-light);
	margin-bottom: 1rem;
	font-weight: 500;
}

.hero-title {
	font-size: 2rem;
	font-weight: 700;
	color: var(--text-dark);
	margin-bottom: 2.5rem;
	line-height: 1.3;
}

/* Search Container */
.search-container {
	position: relative;
	max-width: 900px;
	margin: 0 auto 3rem;
}

.search-wrapper {
	position: relative;
	background: var(--white);
	border-radius: 50px;
	box-shadow: var(--shadow-lg);
	padding: 0.5rem;
}

.search-bar {
	width: 100%;
	padding: 1.25rem 1.75rem;
	padding-right: 180px;
	border: 3px solid var(--primary-purple);
	border-radius: 50px;
	font-size: 1.1rem;
	outline: none;
	transition: all 0.3s ease;
	background: var(--white);
}

.search-bar:focus {
	border-color: var(--primary-orange);
	box-shadow: 0 0 0 4px rgba(249, 115, 22, 0.1);
}

.search-bar::placeholder {
	color: var(--text-light);
}

.search-actions {
	position: absolute;
	right: 12px;
	top: 50%;
	transform: translateY(-50%);
	display: flex;
	gap: 0.5rem;
}

.search-btn {
	background: var(--primary-orange);
	color: var(--white);
	border: none;
	padding: 0.875rem 1.75rem;
	border-radius: 40px;
	cursor: pointer;
	font-weight: 700;
	font-size: 1rem;
	transition: all 0.3s ease;
	display: flex;
	align-items: center;
	gap: 0.5rem;
}

.search-btn:hover {
	background: #ea580c;
	transform: scale(1.05);
}

.search-suggestions {
	margin-top: 1rem;
	font-size: 0.9rem;
	color: var(--text-light);
}

.search-suggestions span {
	display: inline-block;
	background: var(--white);
	padding: 0.4rem 1rem;
	border-radius: 20px;
	margin: 0.25rem;
	cursor: pointer;
	transition: all 0.2s ease;
}

.search-suggestions span:hover {
	background: var(--primary-purple);
	color: var(--white);
	transform: translateY(-2px);
}

/* Theme Categories */
.theme-categories {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 1rem;
	margin-bottom: 4rem;
	padding: 0 1rem;
}

.theme-btn {
	padding: 0.875rem 1.75rem;
	border: none;
	border-radius: 30px;
	font-weight: 700;
	font-size: 1rem;
	cursor: pointer;
	transition: all 0.3s ease;
	display: flex;
	align-items: center;
	gap: 0.75rem;
	color: var(--white);
	box-shadow: var(--shadow-sm);
}

.theme-btn:nth-child(1) { background: linear-gradient(135deg, #f97316, #ea580c); }
.theme-btn:nth-child(2) { background: linear-gradient(135deg, #8b5cf6, #7c3aed); }
.theme-btn:nth-child(3) { background: linear-gradient(135deg, #10b981, #059669); }
.theme-btn:nth-child(4) { background: linear-gradient(135deg, #f59e0b, #d97706); }
.theme-btn:nth-child(5) { background: linear-gradient(135deg, #3b82f6, #2563eb); }
.theme-btn:nth-child(6) { background: linear-gradient(135deg, #ec4899, #db2777); }
.theme-btn:nth-child(7) { background: linear-gradient(135deg, #14b8a6, #0d9488); }
.theme-btn:nth-child(8) { background: linear-gradient(135deg, #f43f5e, #e11d48); }
.theme-btn:nth-child(9) { background: linear-gradient(135deg, #a855f7, #9333ea); }

.theme-btn:hover {
	transform: translateY(-4px);
	box-shadow: var(--shadow-lg);
}

/* Photo Collage Section */
.photo-collage-section {
	max-width: 1400px;
	margin: 0 auto 4rem;
	padding: 0 2rem;
}

.section-header {
	text-align: center;
	margin-bottom: 3rem;
}

.section-title {
	font-size: 2.5rem;
	font-weight: 800;
	color: var(--primary-purple);
	margin-bottom: 0.75rem;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 1rem;
}

.section-subtitle {
	font-size: 1.15rem;
	color: var(--text-light);
	font-weight: 500;
}

.photo-collage {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 1.5rem;
	margin-bottom: 3rem;
}

.photo-item {
	position: relative;
	border-radius: 20px;
	overflow: hidden;
	box-shadow: var(--shadow-md);
	transition: all 0.3s ease;
	cursor: pointer;
	height: 350px;
}

.photo-item:hover {
	transform: translateY(-8px);
	box-shadow: var(--shadow-lg);
}

.photo-item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.3s ease;
}

.photo-item:hover img {
	transform: scale(1.1);
}

.photo-overlay {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	background: linear-gradient(to top, rgba(0,0,0,0.85), transparent);
	padding: 2rem 1.5rem 1.5rem;
	color: var(--white);
	transform: translateY(0);
	transition: all 0.3s ease;
}

.photo-item:hover .photo-overlay {
	padding-bottom: 2rem;
}

.photo-overlay h3 {
	font-size: 1.5rem;
	font-weight: 700;
	margin-bottom: 0.5rem;
}

.photo-overlay p {
	font-size: 0.95rem;
	opacity: 0.9;
}

/* Itineraries Section */
.itineraries-section {
	max-width: 1400px;
	margin: 0 auto;
	padding: 0 2rem 4rem;
}

.category-toggle {
	display: flex;
	justify-content: center;
	gap: 1rem;
	margin-bottom: 2rem;
}

.toggle-btn {
	padding: 0.75rem 2rem;
	border: 2px solid var(--primary-purple);
	background: var(--white);
	color: var(--primary-purple);
	border-radius: 30px;
	font-weight: 700;
	font-size: 1rem;
	cursor: pointer;
	transition: all 0.3s ease;
}

.toggle-btn.active {
	background: var(--primary-purple);
	color: var(--white);
}

.toggle-btn:hover {
	transform: translateY(-2px);
	box-shadow: var(--shadow-sm);
}

.tours-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
	gap: 2rem;
	margin-bottom: 3rem;
}

.tour-card {
	background: var(--white);
	border-radius: 20px;
	overflow: hidden;
	box-shadow: var(--shadow-md);
	transition: all 0.3s ease;
	cursor: pointer;
}

.tour-card:hover {
	transform: translateY(-10px);
	box-shadow: var(--shadow-lg);
}

.tour-header {
	height: 140px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--white);
	font-size: 3.5rem;
	position: relative;
	overflow: hidden;
}

.tour-card:nth-child(4n+1) .tour-header { background: linear-gradient(135deg, #3b82f6, #2563eb); }
.tour-card:nth-child(4n+2) .tour-header { background: linear-gradient(135deg, #10b981, #059669); }
.tour-card:nth-child(4n+3) .tour-header { background: linear-gradient(135deg, #8b5cf6, #7c3aed); }
.tour-card:nth-child(4n+4) .tour-header { background: linear-gradient(135deg, #f59e0b, #d97706); }

.tour-content {
	padding: 1.75rem;
}

.tour-title {
	font-size: 1.4rem;
	font-weight: 700;
	color: var(--text-dark);
	margin-bottom: 1rem;
	line-height: 1.3;
}

.tour-meta {
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
	margin-bottom: 1.25rem;
}

.meta-item {
	display: flex;
	align-items: center;
	gap: 0.4rem;
	color: var(--text-light);
	font-size: 0.95rem;
}

.meta-item i {
	color: var(--primary-purple);
}

.tour-route {
	font-size: 0.9rem;
	color: var(--text-light);
	margin-bottom: 1rem;
	padding: 0.75rem;
	background: #f9fafb;
	border-radius: 10px;
}

.tour-rating {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	margin-bottom: 1rem;
	font-size: 0.9rem;
}

.stars {
	color: #fbbf24;
}

.tour-price {
	font-size: 2rem;
	font-weight: 800;
	color: var(--primary-orange);
	margin-bottom: 1.25rem;
}

.price-category {
	display: inline-block;
	padding: 0.25rem 0.75rem;
	background: var(--primary-green);
	color: var(--white);
	border-radius: 20px;
	font-size: 0.75rem;
	font-weight: 700;
	margin-left: 0.5rem;
}

.price-category.luxury {
	background: #f59e0b;
}

.view-details-btn {
	width: 100%;
	background: var(--primary-orange);
	color: var(--white);
	border: none;
	padding: 1rem;
	border-radius: 12px;
	font-weight: 700;
	font-size: 1rem;
	cursor: pointer;
	transition: all 0.3s ease;
}

.view-details-btn:hover {
	background: #ea580c;
	transform: translateY(-2px);
}

/* Artisan Spotlight */
.artisan-section {
	max-width: 1400px;
	margin: 0 auto 4rem;
	padding: 0 2rem;
}

.artisan-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 2rem;
}

.artisan-card {
	background: var(--white);
	border-radius: 20px;
	padding: 2rem;
	box-shadow: var(--shadow-md);
	transition: all 0.3s ease;
	text-align: center;
}

.artisan-card:hover {
	transform: translateY(-8px);
	box-shadow: var(--shadow-lg);
}

.artisan-icon {
	font-size: 3.5rem;
	margin-bottom: 1.5rem;
}

.artisan-card:nth-child(1) .artisan-icon { color: var(--primary-orange); }
.artisan-card:nth-child(2) .artisan-icon { color: var(--primary-purple); }
.artisan-card:nth-child(3) .artisan-icon { color: var(--primary-green); }
.artisan-card:nth-child(4) .artisan-icon { color: var(--primary-blue); }

.artisan-card h3 {
	font-size: 1.3rem;
	font-weight: 700;
	margin-bottom: 0.75rem;
	color: var(--text-dark);
}

.artisan-card p {
	color: var(--text-light);
	margin-bottom: 1.25rem;
	line-height: 1.6;
}

.artisan-price {
	font-size: 1.1rem;
	font-weight: 700;
	color: var(--primary-orange);
	margin-bottom: 1rem;
}

.artisan-btn {
	padding: 0.75rem 1.5rem;
	background: var(--primary-purple);
	color: var(--white);
	border: none;
	border-radius: 25px;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s ease;
}

.artisan-btn:hover {
	background: #7c3aed;
	transform: translateY(-2px);
}

/* Features Section */
.features-section {
	max-width: 1200px;
	margin: 4rem auto;
	padding: 0 2rem;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 2.5rem;
}

.feature-card {
	background: var(--white);
	padding: 2.5rem;
	border-radius: 20px;
	box-shadow: var(--shadow-md);
	transition: all 0.3s ease;
	text-align: center;
}

.feature-card:hover {
	transform: translateY(-5px);
	box-shadow: var(--shadow-lg);
}

.feature-icon {
	font-size: 3rem;
	margin-bottom: 1.5rem;
}

.feature-card:nth-child(1) .feature-icon { color: var(--primary-blue); }
.feature-card:nth-child(2) .feature-icon { color: var(--primary-purple); }
.feature-card:nth-child(3) .feature-icon { color: var(--primary-orange); }

.feature-card h3 {
	font-size: 1.5rem;
	font-weight: 700;
	margin-bottom: 1rem;
	color: var(--text-dark);
}

.feature-card p {
	color: var(--text-light);
	line-height: 1.7;
}

/* Footer */
.footer {
	background: linear-gradient(135deg, #1f2937, #111827);
	color: var(--white);
	padding: 3rem 2rem 1.5rem;
	margin-top: 4rem;
}

.footer-content {
	max-width: 1400px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 2rem;
	margin-bottom: 2rem;
}

.footer-section h4 {
	font-size: 1.2rem;
	font-weight: 700;
	margin-bottom: 1rem;
	color: var(--primary-orange);
}

.footer-section ul {
	list-style: none;
}

.footer-section ul li {
	margin-bottom: 0.75rem;
}

.footer-section a {
	color: rgba(255,255,255,0.8);
	text-decoration: none;
	transition: color 0.3s ease;
}

.footer-section a:hover {
	color: var(--primary-orange);
}

.footer-bottom {
	text-align: center;
	padding-top: 2rem;
	border-top: 1px solid rgba(255,255,255,0.1);
	color: rgba(255,255,255,0.6);
}

/* Responsive Design */
@media (max-width: 768px) {
	.nav-container {
		flex-direction: column;
		text-align: center;
	}

	.hero-logo {
		font-size: 2.5rem;
	}

	.hero-title {
		font-size: 1.5rem;
	}

	.search-bar {
		padding-right: 60px;
		font-size: 1rem;
	}

	.search-actions {
		flex-direction: column;
	}

	.theme-categories {
		gap: 0.75rem;
	}

	.theme-btn {
		font-size: 0.9rem;
		padding: 0.75rem 1.25rem;
	}

	.section-title {
		font-size: 2rem;
		flex-direction: column;
	}

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

	.photo-collage {
		grid-template-columns: 1fr;
	}
}

/* Loading Animation */
.loading {
	display: inline-block;
	width: 20px;
	height: 20px;
	border: 3px solid rgba(255,255,255,.3);
	border-radius: 50%;
	border-top-color: var(--white);
	animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
	to { transform: rotate(360deg); }
}

/* Sticky Artisan Finder */
.sticky-artisan-finder {
	position: fixed;
	bottom: 2rem;
	right: 2rem;
	background: var(--primary-purple);
	color: var(--white);
	padding: 1rem 1.5rem;
	border-radius: 50px;
	box-shadow: var(--shadow-lg);
	cursor: pointer;
	transition: all 0.3s ease;
	z-index: 999;
	display: flex;
	align-items: center;
	gap: 0.75rem;
	font-weight: 700;
}

.sticky-artisan-finder:hover {
	transform: scale(1.05);
	background: #7c3aed;
}

/* Trust Indicators */
.trust-indicators {
	max-width: 1400px;
	margin: 3rem auto;
	padding: 2rem;
	background: var(--white);
	border-radius: 20px;
	box-shadow: var(--shadow-md);
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 2rem;
	text-align: center;
}

.trust-item {
	padding: 1rem;
}

.trust-number {
	font-size: 2.5rem;
	font-weight: 800;
	color: var(--primary-orange);
	margin-bottom: 0.5rem;
}

.trust-label {
	color: var(--text-light);
	font-weight: 600;
}
