* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto,
		sans-serif;
	line-height: 1.6;
	color: #f9fafb;
	background-color: #0f172a;
	overflow-x: hidden;
}

/* Typography */
.nw-heading-xl {
	font-size: clamp(2.5rem, 5vw, 4rem);
	font-weight: 600;
	line-height: 1.2;
	margin-bottom: 1rem;
}

.nw-heading-lg {
	font-size: clamp(2rem, 4vw, 3rem);
	font-weight: 600;
	line-height: 1.3;
	margin-bottom: 1rem;
}

.nw-heading-md {
	font-size: clamp(1.5rem, 3vw, 2rem);
	font-weight: 600;
	line-height: 1.4;
	margin-bottom: 0.75rem;
}

.nw-heading-sm {
	font-size: clamp(1.25rem, 2.5vw, 1.5rem);
	font-weight: 600;
	line-height: 1.4;
	margin-bottom: 0.5rem;
}

.nw-text-lg {
	font-size: 1.125rem;
	line-height: 1.7;
}

.nw-text-base {
	font-size: 1rem;
	line-height: 1.6;
}

.nw-text-sm {
	font-size: 0.875rem;
	line-height: 1.5;
}

/* Container */
.nw-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 1rem;
}

/* Header */
.nw-header {
	background-color: #0f172a;
	border-bottom: 1px solid #1e293b;
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 1000;
	backdrop-filter: blur(10px);
	transition: all 0.3s ease;
}

.nw-header.scrolled {
	background-color: rgba(15, 23, 42, 0.95);
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.nw-header-content {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 1rem 0;
	min-height: 70px;
}

.nw-logo {
	font-size: 1.75rem;
	font-weight: 700;
	color: #facc15;
	text-decoration: none;
	transition: color 0.3s ease;
}

.nw-logo:hover {
	color: #38bdf8;
	text-shadow: 0 0 20px rgba(56, 189, 248, 0.5);
}

.nw-nav {
	display: flex;
	align-items: center;
	gap: 2rem;
}

.nw-nav-links {
	display: flex;
	list-style: none;

	align-items: center;
}

.nw-nav-link {
	color: #f9fafb;
	text-decoration: none;
	font-weight: 500;
	padding: 0.5rem 1rem;
	border-radius: 0.5rem;
	transition: all 0.3s ease;
	position: relative;
}

.nw-nav-link:hover,
.nw-nav-link.active {
	color: #facc15;
	background-color: rgba(250, 204, 21, 0.1);
}

.nw-nav-link::after {
	content: '';
	position: absolute;
	bottom: -2px;
	left: 50%;
	width: 0;
	height: 2px;
	background: linear-gradient(90deg, #facc15, #38bdf8);
	transform: translateX(-50%);
	transition: width 0.3s ease;
}

.nw-nav-link:hover::after,
.nw-nav-link.active::after {
	width: 80%;
}

.nw-header-email {
	color: #38bdf8;
	text-decoration: none;
	font-weight: 500;
	padding: 0.5rem 1rem;
	border: 1px solid #38bdf8;
	border-radius: 0.5rem;
	transition: all 0.3s ease;
}

.nw-header-email:hover {
	background-color: rgba(56, 189, 248, 0.1);
	box-shadow: 0 0 20px rgba(56, 189, 248, 0.3);
}

.nw-mobile-toggle {
	display: none;
	flex-direction: column;
	cursor: pointer;
	padding: 0.5rem;
	background: transparent;
	border: none;
	z-index: 1001;
}

.nw-mobile-toggle span {
	width: 25px;
	height: 3px;
	background-color: #facc15;
	margin: 3px 0;
	transition: 0.3s;
	border-radius: 2px;
}

.nw-mobile-toggle.active span:nth-child(1) {
	transform: rotate(-45deg) translate(-7px, 7px);
}

.nw-mobile-toggle.active span:nth-child(2) {
	opacity: 0;
}

.nw-mobile-toggle.active span:nth-child(3) {
	transform: rotate(45deg) translate(-5px, -6px);
}

/* Mobile Navigation */
.nw-mobile-nav {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: rgba(15, 23, 42, 0.98);
	backdrop-filter: blur(10px);
	z-index: 999;
	flex-direction: column;
	height: 100vh;
	justify-content: center;
	align-items: center;
	gap: 2rem;
	opacity: 0;
	visibility: hidden;
	transition: all 0.3s ease;
}

.nw-mobile-nav.active {
	display: flex;
	opacity: 1;
	visibility: visible;
}

.nw-mobile-nav .nw-nav-link {
	font-size: 1.5rem;
	padding: 1rem 2rem;
}

/* Hero Section */
.nw-hero {
	min-height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
	overflow: hidden;
}

.nw-hero::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: url('assets/nw-hero.webp') center/cover;
	opacity: 0.3;
	background-attachment: fixed;
}

@keyframes nw-stars {
	0% {
		transform: translateY(0px);
	}
	100% {
		transform: translateY(-20px);
	}
}

.nw-hero-content {
	text-align: center;
	z-index: 2;
	max-width: 800px;
	padding: 2rem;
}

.nw-hero h1 {
	background: linear-gradient(135deg, #facc15 0%, #38bdf8 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	margin-bottom: 1.5rem;
	animation: nw-fade-in-up 1s ease-out;
}

.nw-hero-subtitle {
	font-size: 1.25rem;
	color: #94a3b8;
	margin-bottom: 2.5rem;
	animation: nw-fade-in-up 1s ease-out 0.2s both;
}

.nw-hero-buttons {
	display: flex;
	gap: 1rem;
	justify-content: center;
	flex-wrap: wrap;
	animation: nw-fade-in-up 1s ease-out 0.4s both;
}

/* Buttons */
.nw-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0.75rem 1.5rem;
	font-weight: 600;
	gap: 5px;
	text-decoration: none;
	border-radius: 0.75rem;
	transition: all 0.3s ease;
	cursor: pointer;
	border: none;
	font-size: 1rem;
	min-width: 140px;
	position: relative;
	overflow: hidden;
}

.nw-btn::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(
		90deg,
		transparent,
		rgba(255, 255, 255, 0.2),
		transparent
	);
	transition: left 0.5s;
}

.nw-btn:hover::before {
	left: 100%;
}

.nw-btn-primary {
	background: linear-gradient(135deg, #facc15 0%, #f59e0b 100%);
	color: #0f172a;
	box-shadow: 0 4px 15px rgba(250, 204, 21, 0.3);
}

.nw-btn-primary:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 25px rgba(250, 204, 21, 0.4);
}

.nw-btn-secondary {
	background: linear-gradient(135deg, #38bdf8 0%, #0ea5e9 100%);
	color: #f9fafb;
	box-shadow: 0 4px 15px rgba(56, 189, 248, 0.3);
}

.nw-btn-secondary:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 25px rgba(56, 189, 248, 0.4);
}

.nw-btn-outline {
	background: transparent;
	color: #f9fafb;
	border: 2px solid #38bdf8;
}

.nw-btn-outline:hover {
	background: rgba(56, 189, 248, 0.1);
	transform: translateY(-2px);
	box-shadow: 0 8px 25px rgba(56, 189, 248, 0.2);
}

/* Sections */
.nw-section {
	padding: 5rem 0;
	position: relative;
}

.nw-section-header {
	text-align: center;
	margin-bottom: 3rem;
}

.nw-section-title {
	color: #facc15;
	margin-bottom: 0.5rem;
}

.nw-section-subtitle {
	color: #94a3b8;
	max-width: 600px;
	margin: 0 auto;
}

/* Cards */
.nw-card {
	background: #1e293b;
	border-radius: 1rem;
	padding: 2rem;
	border: 1px solid #334155;
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
}

.nw-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 3px;
	background: linear-gradient(90deg, #facc15, #38bdf8);
	transform: scaleX(0);
	transform-origin: left;
	transition: transform 0.3s ease;
}

.nw-card:hover::before {
	transform: scaleX(1);
}

.nw-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
	border-color: #38bdf8;
}

.nw-card-icon {
	width: 60px;
	height: 60px;
	background: linear-gradient(135deg, #facc15, #38bdf8);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 1.5rem;
	font-size: 1.5rem;
	color: #0f172a;
}

.nw-card-title {
	color: #f9fafb;
	margin-bottom: 1rem;
}

.nw-card-text {
	color: #94a3b8;
	margin-bottom: 1.5rem;
}

/* Grid Layouts */
.nw-grid {
	display: grid;
	gap: 2rem;
}

.nw-grid-1 {
	grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
}

.nw-grid-2 {
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.nw-grid-3 {
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.nw-grid-4 {
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

/* Route Cards */
.nw-route-card {
	background: #1e293b;
	border-radius: 1rem;
	overflow: hidden;
	border: 1px solid #334155;
	transition: all 0.3s ease;
	position: relative;
}

.nw-route-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
	border-color: #facc15;
}

.nw-route-image {
	height: 200px;
	background: linear-gradient(135deg, #374151, #1f2937);
	position: relative;
	overflow: hidden;
}

.nw-route-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.nw-route-image::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	height: 50%;
	background: linear-gradient(transparent, rgba(15, 23, 42, 0.8));
}

.nw-route-content {
	padding: 1.5rem;
}

.nw-route-badge {
	position: absolute;
	top: 1rem;
	right: 1rem;
	background: linear-gradient(135deg, #facc15, #f59e0b);
	color: #0f172a;
	padding: 0.25rem 0.75rem;
	border-radius: 1rem;
	font-size: 0.75rem;
	font-weight: 600;
}

/* Tips Section */
.nw-tips-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 2rem;
	margin-top: 3rem;
}

.nw-tip-card {
	background: #1e293b;
	border-radius: 1rem;
	padding: 2rem;
	border-left: 4px solid #38bdf8;
	transition: all 0.3s ease;

	display: flex;
	flex-direction: column;
	height: 100%;
}

.nw-heading-link {
	display: flex;
	flex-direction: column;
	flex-grow: 1;
	margin-top: 2rem;
}

.nw-heading-link a {
	margin-top: auto !important;
}

.nw-tip-card:hover {
	transform: translateX(5px);
	box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
	border-left-color: #facc15;
}

.nw-tip-icon {
	width: 50px;
	height: 50px;
	background: rgba(56, 189, 248, 0.2);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 1rem;
	color: #38bdf8;
	font-size: 1.25rem;
}

/* Culture Section */
.nw-culture-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
	gap: 3rem;
	margin-top: 3rem;
}

.nw-culture-item {
	display: flex;
	flex-direction: column;
	gap: 2rem;
	background: #1e293b;
	border-radius: 1rem;
	padding: 2rem;
	border: 1px solid #334155;
	transition: all 0.3s ease;
}

.nw-culture-item:hover {
	transform: scale(1.02);
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
	border-color: #f87171;
}

.nw-culture-image {
	width: 100%;
	height: 120px;
	background: linear-gradient(135deg, #f87171, #ef4444);
	border-radius: 1rem;
	flex-shrink: 0;
	position: relative;
	overflow: hidden;
	display: flex;
	justify-content: center;
	align-items: center;
}

.nw-culture-content h3 {
	color: #f87171;
	margin-bottom: 0.75rem;
}

.nw-culture-content p {
	color: #94a3b8;
	line-height: 1.6;
}

/* Testimonials */
.nw-testimonials {
	padding: 5rem 0;
	background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
}

.nw-testimonial-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 2rem;
	margin-top: 3rem;
}

.nw-testimonial {
	background: rgba(30, 41, 59, 0.5);
	border-radius: 1rem;
	padding: 2rem;
	border: 1px solid #334155;
	position: relative;
	backdrop-filter: blur(10px);
	display: flex;
	flex-direction: column;
	height: 100%;
}

.nw-testimonial::before {
	content: '"';
	position: absolute;
	top: -10px;
	left: 20px;
	font-size: 4rem;
	color: #facc15;
	font-family: serif;
}

.nw-testimonial-text {
	color: #e2e8f0;
	font-style: italic;
	line-height: 1.7;
	margin-bottom: 1.5rem;
}

.nw-testimonial-author {
	display: flex;
	align-items: center;
	flex-direction: column;
	flex-grow: 1;
	gap: 1rem;
	text-align: center;
}

.nw-testimonial-avatar {
	width: 80px;
	height: 80px;
	background: linear-gradient(135deg, #38bdf8, #0ea5e9);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #f9fafb;
	font-weight: 600;
	margin-top: auto;
}

.nw-testimonial-avatar img {
	width: 100%;
	border-radius: 50%;
	height: 100%;
	object-fit: cover;
}

.nw-testimonial-info h4 {
	color: #f9fafb;
	font-size: 1rem;
	margin-bottom: 0.25rem;
}

.nw-testimonial-info span {
	color: #94a3b8;
	font-size: 0.875rem;
}

/* Contact Form */
.nw-contact-section {
	padding: 5rem 0;
	background: #1e293b;
}

.nw-contact-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 4rem;
	align-items: start;
}

.nw-form {
	background: #0f172a;
	border-radius: 1rem;
	padding: 2rem;
	border: 1px solid #334155;
}

.nw-form-group {
	margin-bottom: 1.5rem;
}

.nw-form-label {
	display: block;
	color: #f9fafb;
	font-weight: 500;
	margin-bottom: 0.5rem;
}

.nw-form-input,
.nw-form-textarea {
	width: 100%;
	padding: 0.75rem 1rem;
	background: #1e293b;
	color: #f9fafb;
	border: 1px solid #334155;
	border-radius: 0.5rem;
	font-size: 1rem;
	transition: all 0.3s ease;
}

.nw-form-input:focus,
.nw-form-textarea:focus {
	outline: none;
	border-color: #38bdf8;
	box-shadow: 0 0 0 3px rgba(56, 189, 248, 0.1);
}

.nw-form-textarea {
	resize: vertical;
	min-height: 120px;
}

.nw-form-error {
	color: #f87171;
	font-size: 0.875rem;
	margin-top: 0.25rem;
	display: none;
}

.nw-form-error.show {
	display: block;
}

/* Map Section */
.nw-map {
	height: 100%;
	min-height: 400px;
	filter: grayscale(1) contrast(1.2) brightness(0.8);

	border-radius: 1rem;
	overflow: hidden;
}

@media (max-width: 768px) {
	.nw-map {
		height: 400px;
		/* min-width: auto; */
	}
}

.iti {
	width: 100% !important;
}
.iti input[type='tel'] {
	width: 100% !important;
}

.nw-contact-map {
	position: relative;
	height: 100%;
	min-height: 400px;

	/* flex: 1; */

	/* margin-top: 2rem; */
	/* border-radius: 10px; */
	/* overflow: hidden; */
}

.nw-map-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;

	height: 100%;
	border-radius: 1rem;

	background-color: rgba(0, 0, 0, 0.1);
	z-index: 1;
	cursor: pointer;
}

/* Footer */
.nw-footer {
	background: #0f172a;
	border-top: 1px solid #1e293b;
	padding: 3rem 0 1rem;
}

.nw-footer-grid {
	display: grid;
	grid-template-columns: 2fr 1fr 1fr 1fr;
	gap: 3rem;
	margin-bottom: 2rem;
}

.nw-footer-logo {
	font-size: 1.5rem;
	font-weight: 700;
	color: #facc15;
	margin-bottom: 1rem;
}

.nw-footer-desc {
	color: #94a3b8;
	line-height: 1.6;
	margin-bottom: 1.5rem;
}

.nw-footer-title {
	color: #f9fafb;
	font-weight: 600;
	margin-bottom: 1rem;
}

.nw-footer-links {
	list-style: none;
}

.nw-footer-links li {
	margin-bottom: 0.5rem;
}

.nw-footer-links a {
	color: #94a3b8;
	text-decoration: none;
	transition: color 0.3s ease;
}

.nw-footer-links a:hover {
	color: #38bdf8;
}

.nw-footer-contact {
	color: #94a3b8;
	line-height: 1.8;
}

.nw-footer-contact strong {
	color: #f9fafb;
}

.nw-footer-bottom {
	text-align: center;
	padding-top: 2rem;
	border-top: 1px solid #1e293b;
	color: #64748b;
}

/* Cookie Popup */
.nw-cookie-popup {
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	background: rgba(15, 23, 42, 0.95);
	backdrop-filter: blur(10px);
	border-top: 1px solid #1e293b;
	padding: 1.5rem;
	z-index: 2000;
	transform: translateY(100%);
	transition: transform 0.3s ease;
}

.nw-cookie-popup.show {
	transform: translateY(0);
}

.nw-cookie-content {
	max-width: 1200px;
	margin: 0 auto;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 2rem;
	flex-wrap: wrap;
}

.nw-cookie-text {
	color: #e2e8f0;
	flex: 1;
	min-width: 300px;
}

.nw-cookie-actions {
	display: flex;
	gap: 1rem;
	align-items: center;
	flex-wrap: wrap;
}

.nw-cookie-link {
	color: #38bdf8;
	text-decoration: none;
	font-size: 0.875rem;
}

.nw-cookie-link:hover {
	text-decoration: underline;
}

/* Animations */
@keyframes nw-fade-in-up {
	from {
		opacity: 0;
		transform: translateY(30px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes nw-fade-in {
	from {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}

@keyframes nw-slide-in-left {
	from {
		opacity: 0;
		transform: translateX(-30px);
	}
	to {
		opacity: 1;
		transform: translateX(0);
	}
}

@keyframes nw-slide-in-right {
	from {
		opacity: 0;
		transform: translateX(30px);
	}
	to {
		opacity: 1;
		transform: translateX(0);
	}
}

@keyframes nw-glow {
	0%,
	100% {
		box-shadow: 0 0 20px rgba(250, 204, 21, 0.3);
	}
	50% {
		box-shadow: 0 0 30px rgba(250, 204, 21, 0.6);
	}
}

/* Utility Classes */
.nw-fade-in {
	animation: nw-fade-in 0.6s ease-out;
}

.nw-fade-in-up {
	animation: nw-fade-in-up 0.6s ease-out;
}

.nw-slide-in-left {
	animation: nw-slide-in-left 0.6s ease-out;
}

.nw-slide-in-right {
	animation: nw-slide-in-right 0.6s ease-out;
}

.nw-text-center {
	text-align: center;
}

.nw-text-left {
	text-align: left;
}

.nw-text-right {
	text-align: right;
}

.nw-mb-2 {
	margin-bottom: 0.5rem;
}

.nw-mb-4 {
	margin-bottom: 1rem;
}

.nw-mb-8 {
	margin-bottom: 2rem;
}

.nw-mt-8 {
	margin-top: 2rem;
}

.nw-pt-20 {
	padding-top: 5rem;
}

/* Routes Page Specific Styles */
.nw-routes-hero {
	background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
	padding: 8rem 0 5rem;
	margin-top: 70px;
}

.nw-category-tabs {
	display: flex;
	justify-content: center;
	gap: 1rem;
	margin: 3rem 0;
	flex-wrap: wrap;
}

.nw-tab-btn {
	padding: 0.75rem 1.5rem;
	background: transparent;
	color: #94a3b8;
	border: 1px solid #334155;
	border-radius: 0.5rem;
	cursor: pointer;
	transition: all 0.3s ease;
	font-weight: 500;
}

.nw-tab-btn.active,
.nw-tab-btn:hover {
	background: #38bdf8;
	color: #f9fafb;
	border-color: #38bdf8;
	transform: translateY(-2px);
}

.nw-routes-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
	gap: 2rem;
	margin-top: 3rem;
}

.nw-route-detail {
	background: #1e293b;
	border-radius: 1rem;
	overflow: hidden;
	border: 1px solid #334155;
	transition: all 0.3s ease;
}

.nw-route-detail:hover {
	transform: translateY(-5px);
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
	border-color: #facc15;
}

.nw-route-header {
	height: 250px;
	background: linear-gradient(135deg, #facc15 0%, #38bdf8 100%);
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #0f172a;
	font-size: 3rem;
}

.nw-route-header img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.nw-route-body {
	padding: 2rem;
}

.nw-route-meta {
	display: flex;
	gap: 1rem;
	margin-bottom: 1rem;
	flex-wrap: wrap;
}

.nw-route-tag {
	background: rgba(56, 189, 248, 0.2);
	color: #38bdf8;
	padding: 0.25rem 0.75rem;
	border-radius: 1rem;
	font-size: 0.75rem;
	font-weight: 600;
}

.nw-route-difficulty {
	background: rgba(250, 204, 21, 0.2);
	color: #facc15;
	padding: 0.25rem 0.75rem;
	border-radius: 1rem;
	font-size: 0.75rem;
	font-weight: 600;
}

.nw-route-duration {
	background: rgba(248, 113, 113, 0.2);
	color: #f87171;
	padding: 0.25rem 0.75rem;
	border-radius: 1rem;
	font-size: 0.75rem;
	font-weight: 600;
}

/* Culture Page Specific Styles */
.nw-culture-hero {
	background: linear-gradient(135deg, #f87171 0%, #ef4444 100%);
	padding: 8rem 0 5rem;
	margin-top: 70px;
	color: #f9fafb;
}

.nw-traditions-section {
	padding: 5rem 0;
}

.nw-tradition-card {
	background: #1e293b;
	border-radius: 1rem;
	overflow: hidden;
	border: 1px solid #334155;
	transition: all 0.3s ease;
}

.nw-tradition-card:hover {
	transform: scale(1.02);
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
	border-color: #f87171;
}

.nw-tradition-image {
	height: 200px;
	background: linear-gradient(135deg, #f87171, #ef4444);
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #f9fafb;
	font-size: 2rem;
}

.nw-tradition-content {
	padding: 2rem;
}

.nw-cuisine-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 2rem;
	margin-top: 3rem;
}

/* About Page Specific Styles */
.nw-about-hero {
	background: linear-gradient(135deg, #38bdf8 0%, #0ea5e9 100%);
	padding: 8rem 0 5rem;
	margin-top: 70px;
	color: #f9fafb;
}

.nw-team-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 2rem;
	margin-top: 3rem;
}

.nw-team-member {
	background: #1e293b;
	border-radius: 1rem;
	padding: 2rem;
	text-align: center;
	border: 1px solid #334155;
	transition: all 0.3s ease;
}

.nw-team-member:hover {
	transform: translateY(-10px);
	box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
	border-color: #38bdf8;
}

.nw-team-avatar {
	width: 120px;
	height: 120px;
	background: linear-gradient(135deg, #38bdf8, #0ea5e9);
	border-radius: 50%;
	margin: 0 auto 1.5rem;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #f9fafb;
	font-size: 2rem;
	font-weight: 600;
}

.nw-team-avatar img {
	width: 100%;
	height: 100%;
	border-radius: 50%;
	object-fit: cover;
}

.nw-team-name {
	color: #f9fafb;
	margin-bottom: 0.5rem;
}

.nw-team-role {
	color: #38bdf8;
	font-weight: 500;
	margin-bottom: 1rem;
}

.nw-team-bio {
	color: #94a3b8;
	line-height: 1.6;
}

.nw-contact-info-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 2rem;
	margin-bottom: 3rem;
}

.nw-contact-info-card {
	background: #1e293b;
	border-radius: 1rem;
	padding: 2rem;
	text-align: center;
	border: 1px solid #334155;
	transition: all 0.3s ease;
}

.nw-contact-info-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
	border-color: #facc15;
}

.nw-contact-icon {
	width: 80px;
	height: 80px;
	background: linear-gradient(135deg, #facc15, #f59e0b);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 1.5rem;
	font-size: 2rem;
	color: #0f172a;
}

.nw-contact-info-card h3 {
	color: #f9fafb;
	margin-bottom: 1rem;
	font-size: 1.25rem;
}

.nw-contact-info-card p {
	color: #94a3b8;
	margin-bottom: 1.5rem;
	line-height: 1.6;
}

/* Map Wrapper */
.nw-map-wrapper {
	background: #0f172a;
	border-radius: 1rem;
	padding: 2rem;
	border: 1px solid #334155;
	display: flex;
	flex-direction: column;
	gap: 2rem;
	height: 100%;
}

.nw-map-info {
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.nw-map-info-item {
	display: flex;
	align-items: center;
	gap: 1rem;
	color: #94a3b8;
	font-size: 0.875rem;
}

.nw-map-info-item i {
	color: #38bdf8;
	width: 20px;
	text-align: center;
}

/* FAQ Section */
.nw-faq-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1rem;
	margin-top: 3rem;
}

.nw-faq-item {
	background: #1e293b;
	border-radius: 1rem;
	border: 1px solid #334155;
	overflow: hidden;
	transition: all 0.3s ease;
}

.nw-faq-item:hover {
	border-color: #38bdf8;
}

.nw-faq-question {
	padding: 1.5rem 2rem;
	cursor: pointer;
	display: flex;
	justify-content: space-between;
	align-items: center;
	transition: all 0.3s ease;
}

.nw-faq-question:hover {
	background: rgba(56, 189, 248, 0.05);
}

.nw-faq-question h3 {
	color: #f9fafb;
	font-size: 1.125rem;
	font-weight: 500;
	margin: 0;
}

.nw-faq-question i {
	color: #38bdf8;
	font-size: 1rem;
	transition: transform 0.3s ease;
}

.nw-faq-item.active .nw-faq-question i {
	transform: rotate(45deg);
}

.nw-faq-answer {
	padding: 0 2rem;
	max-height: 0;
	overflow: hidden;
	transition: all 0.3s ease;
}

.nw-faq-item.active .nw-faq-answer {
	padding: 0 2rem 1.5rem;
	max-height: 200px;
}

.nw-faq-answer p {
	color: #94a3b8;
	line-height: 1.6;
	margin: 0;
}

/* Responsive Design */
@media (max-width: 910px) {
	.nw-nav {
		display: none;
	}

	.nw-mobile-toggle {
		display: flex;
	}
}

@media (max-width: 768px) {
	.nw-header-content {
		padding: 0.75rem 0;
	}

	.nw-hero-buttons {
		flex-direction: column;
		align-items: center;
	}
	.nw-grid-1,
	.nw-grid-2,
	.nw-grid-3,
	.nw-grid-4 {
		grid-template-columns: 1fr;
	}

	.nw-contact-grid {
		grid-template-columns: 1fr;
		gap: 2rem;
	}

	.nw-footer-grid {
		grid-template-columns: 1fr;
		gap: 2rem;
		text-align: center;
	}

	.nw-cookie-content {
		flex-direction: column;
		text-align: center;
		flex-wrap: nowrap;
	}

	.nw-cookie-actions {
		flex-direction: column;
	}

	.nw-category-tabs {
		justify-content: flex-start;
		overflow-x: auto;
		padding: 0 1rem;
	}

	.nw-culture-item {
		flex-direction: column;
		text-align: center;
	}

	.nw-card-icon {
		margin: 0 auto 1.5rem;
	}
}

@media (max-width: 480px) {
	.nw-container {
		padding: 0 0.75rem;
	}

	.nw-section-title {
		font-size: 1.5rem;
	}

	.nw-section {
		padding: 3rem 0;
	}

	.nw-card {
		padding: 1.5rem;
	}

	.nw-header-email {
		display: none;
	}

	.nw-hero-content {
		padding: 1rem;
	}

	.nw-culture-grid,
	.nw-testimonial-grid,
	.nw-routes-grid,
	.nw-tips-grid,
	.nw-cuisine-grid {
		grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	}

	.nw-route-body h4 {
		font-size: 1.1rem;
		word-wrap: break-word;
	}

	.nw-btn {
		padding: 0.625rem 1.25rem;
		font-size: 0.875rem;
		min-width: 120px;
	}
}

.nw-policy-hero {
	background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
	padding: 8rem 0 5rem;
	margin-top: 70px;
	text-align: center;
}

.nw-policy-hero h1 {
	color: #facc15;
	margin-bottom: 1rem;
	font-size: clamp(2rem, 4vw, 3rem);
	font-weight: 600;
}

.nw-policy-hero-subtitle {
	color: #94a3b8;
	font-size: 1.125rem;
	max-width: 600px;
	margin: 0 auto 2rem;
}

.nw-policy-updated {
	background: rgba(56, 189, 248, 0.1);
	color: #38bdf8;
	padding: 0.5rem 1rem;
	border-radius: 0.5rem;
	font-size: 0.875rem;
	font-weight: 500;
	display: inline-block;
}

.nw-policy-content {
	max-width: 900px;
	margin: 0 auto;
	padding: 5rem 0;
}

.nw-policy-intro {
	background: #1e293b;
	border-radius: 1rem;
	padding: 2rem;
	margin-bottom: 3rem;
	border-left: 4px solid #facc15;
	position: relative;
	overflow: hidden;
}

.nw-policy-intro::before {
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	width: 100px;
	height: 100px;
	background: radial-gradient(
		circle,
		rgba(250, 204, 21, 0.1) 0%,
		transparent 70%
	);
	border-radius: 50%;
	transform: translate(50%, -50%);
}

.nw-policy-intro p {
	color: #e2e8f0;
	font-size: 1.125rem;
	line-height: 1.7;
	margin: 0;
}

.nw-policy-section {
	background: #1e293b;
	border-radius: 1rem;
	padding: 2.5rem;
	margin-bottom: 2rem;
	border: 1px solid #334155;
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
}

.nw-policy-section::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 3px;
	background: linear-gradient(90deg, #facc15, #38bdf8);
	transform: scaleX(0);
	transform-origin: left;
	transition: transform 0.3s ease;
}

.nw-policy-section:hover::before {
	transform: scaleX(1);
}

.nw-policy-section:hover {
	transform: translateY(-2px);
	box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
	border-color: #38bdf8;
}

.nw-policy-section h2 {
	color: #facc15;
	font-size: 1.5rem;
	font-weight: 600;
	margin-bottom: 1.5rem;
	display: flex;
	align-items: center;
	gap: 0.75rem;
}

.nw-policy-section h2::before {
	content: counter(section-counter);
	counter-increment: section-counter;
	background: linear-gradient(135deg, #38bdf8, #0ea5e9);
	color: #f9fafb;
	width: 32px;
	height: 32px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 0.875rem;
	font-weight: 600;
	flex-shrink: 0;
}

.nw-policy-content {
	counter-reset: section-counter;
}

.nw-policy-section h3 {
	color: #38bdf8;
	font-size: 1.125rem;
	font-weight: 500;
	margin: 1.5rem 0 1rem;
}

.nw-policy-section p {
	color: #e2e8f0;
	line-height: 1.7;
	margin-bottom: 1rem;
}

.nw-policy-section p:last-child {
	margin-bottom: 0;
}

.nw-policy-list {
	list-style: none;
	padding: 0;
	margin: 1rem 0;
}

.nw-policy-list li {
	color: #e2e8f0;
	padding: 0.5rem 0 0.5rem 2rem;
	position: relative;
	line-height: 1.6;
}

.nw-policy-list li::before {
	content: '•';
	color: #facc15;
	font-weight: bold;
	position: absolute;
	left: 0.5rem;
	top: 0.5rem;
	font-size: 1.2rem;
}

.nw-policy-list li strong {
	color: #f9fafb;
}

.nw-policy-table {
	width: 100%;
	border-collapse: collapse;
	margin: 1.5rem 0;
	background: #0f172a;
	border-radius: 0.5rem;
	overflow-x: auto;
	border: 1px solid #334155;
}

.nw-policy-table th,
.nw-policy-table td {
	padding: 1rem;
	text-align: left;
	border-bottom: 1px solid #334155;
}

.nw-policy-table th {
	background: #1e293b;
	color: #facc15;
	font-weight: 600;
	font-size: 0.875rem;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.nw-policy-table td {
	color: #e2e8f0;
	vertical-align: top;
}

.nw-policy-table tr:last-child th,
.nw-policy-table tr:last-child td {
	border-bottom: none;
}

.nw-policy-table tr:hover {
	background: rgba(56, 189, 248, 0.05);
}

.nw-policy-contact {
	background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
	border-radius: 1rem;
	padding: 2.5rem;
	margin-top: 3rem;
	border: 1px solid #38bdf8;
	position: relative;
	overflow: hidden;
}

.nw-policy-contact::before {
	content: '';
	position: absolute;
	top: -50%;
	right: -50%;
	width: 200px;
	height: 200px;
	background: radial-gradient(
		circle,
		rgba(56, 189, 248, 0.1) 0%,
		transparent 70%
	);
	border-radius: 50%;
}

.nw-policy-contact h2 {
	color: #38bdf8;
	font-size: 1.5rem;
	font-weight: 600;
	margin-bottom: 1.5rem;
	display: flex;
	align-items: center;
	gap: 0.75rem;
}

.nw-policy-contact h2::before {
	content: '📞';
	font-size: 1.25rem;
}

.nw-policy-contact p {
	color: #e2e8f0;
	line-height: 1.7;
	margin-bottom: 1.5rem;
}

.nw-policy-contact-info {
	background: rgba(15, 23, 42, 0.8);
	border-radius: 0.75rem;
	padding: 2rem;
	border: 1px solid #334155;
}

.nw-policy-contact-info h3 {
	color: #facc15;
	font-size: 1.125rem;
	font-weight: 600;
	margin-bottom: 1rem;
}

.nw-policy-contact-info p {
	color: #e2e8f0;
	margin-bottom: 0.5rem;
	display: flex;
	align-items: center;
	gap: 0.75rem;
}

.nw-policy-contact-info p:last-child {
	margin-bottom: 0;
}

.nw-policy-contact-info strong {
	color: #f9fafb;
	min-width: 80px;
	display: inline-block;
}

.nw-policy-contact-info a {
	color: #38bdf8;
	text-decoration: none;
	transition: color 0.3s ease;
}

.nw-policy-contact-info a:hover {
	color: #facc15;
	text-decoration: underline;
}

.nw-policy-back-btn {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	background: linear-gradient(135deg, #38bdf8, #0ea5e9);
	color: #f9fafb;
	padding: 0.75rem 1.5rem;
	border-radius: 0.75rem;
	text-decoration: none;
	font-weight: 500;
	transition: all 0.3s ease;
	margin-top: 3rem;
	box-shadow: 0 4px 15px rgba(56, 189, 248, 0.3);
}

.nw-policy-back-btn:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 25px rgba(56, 189, 248, 0.4);
	background: linear-gradient(135deg, #0ea5e9, #0284c7);
}

.nw-policy-back-btn i {
	font-size: 0.875rem;
}

/* Responsive adjustments for policy pages */
@media (max-width: 768px) {
	.nw-policy-hero {
		padding: 6rem 0 4rem;
	}

	.nw-policy-content {
		padding: 3rem 0;
	}

	.nw-policy-section,
	.nw-policy-intro,
	.nw-policy-contact,
	.nw-policy-contact-info {
		padding: 1.5rem;
	}

	.nw-policy-section h2 {
		font-size: 1.25rem;
		flex-direction: column;
		align-items: flex-start;
		gap: 0.5rem;
	}

	.nw-policy-table {
		font-size: 0.875rem;
	}

	.nw-policy-table th,
	.nw-policy-table td {
		padding: 0.75rem 0.5rem;
	}
}

@media (max-width: 480px) {
	.nw-policy-section h2::before {
		width: 24px;
		height: 24px;
		font-size: 0.75rem;
	}

	.nw-policy-hero h1 {
		font-size: 1.5rem;
	}

	.nw-policy-contact-info p {
		flex-direction: column;
		align-items: flex-start;
		gap: 0.25rem;
	}

	.nw-policy-contact-info strong {
		min-width: auto;
	}
}
