body {
	margin: 0;
	font-family: Arial, sans-serif;
	background: #f5f5f7;
	color: #222;
}

:root {
	--primary: #352C91;
	--secondary: #B5179E;
	--accent: #FFBF00;
	--white: #FFFFFF;
	--bg: #f5f5f7;
}

/* Navbar */
.navbar {
	background: linear-gradient(120deg, var(--primary), var(--secondary));
	padding: 16px 20px;
	color: white;
	font-size: 22px;
	font-weight: bold;
	text-align: center;
	letter-spacing: 0.5px;
}

/* Hero */
.hero {
	text-align: center;
	padding: 50px 20px 30px;
	background: #ffffff;
}

.hero-title {
	font-size: 30px;
	font-weight: 800;
	background: linear-gradient(120deg, var(--primary), var(--secondary));
	-webkit-background-clip: text;
	color: transparent;
}

.hero-subtitle {
	margin-top: 8px;
	font-size: 16px;
	color: #555;
}

/* Icons Grid */
.section-title {
	margin-top: 40px;
	text-align: center;
	font-size: 20px;
	font-weight: 700;
	color: var(--primary);
}

.icon-grid {
	margin-top: 25px;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
	gap: 25px;
	padding: 0 20px 40px;
}

.icon-item {
	background: #fff;
	padding: 20px;
	border-radius: 12px;
	box-shadow: 0px 2px 6px rgba(0,0,0,0.08);
	text-align: center;
	transition: 0.3s;
}

.icon-item:hover {
	transform: translateY(-5px);
	box-shadow: 0px 4px 12px rgba(0,0,0,0.18);
}

.icon-wrapper {
	width: 62px;
	height: 62px;
	margin: 0 auto 10px;
	border-radius: 16px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: linear-gradient(120deg, var(--primary), var(--secondary));
}

.icon-wrapper .material-icons {
	font-size: 34px;
	color: white;
}

.icon-text {
	font-size: 15px;
	font-weight: 600;
	color: #333;
}

/* FOOTER (TripNivas Style) */
footer {
	margin-top: 30px;
	padding: 30px 20px;
	background: #111827;
	color: #9ca3af;
}

.footer-inner {
	max-width: 1080px;
	margin: 0 auto;
	font-size: 12px;
}

.footer-grid {
	display: grid;
	grid-template-columns: minmax(0, 2fr) repeat(2, minmax(0, 1fr));
	gap: 20px;
	margin-bottom: 18px;
}

.footer-logo {
	display: flex;
	align-items: center;
	gap: 10px;
}

.footer-logo-box {
	width: 38px;
	height: 38px;
	border-radius: 10px;
	background: radial-gradient(circle at 0 0, var(--accent), var(--secondary));
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 800;
	font-size: 20px;
	color: white;
}

.footer-links-title {
	color: #e5e7eb;
	font-size: 14px;
	font-weight: 600;
	margin-bottom: 8px;
}

.footer-links a {
	display: block;
	margin-bottom: 6px;
	color: #9ca3af;
}

.footer-links a:hover {
	color: #ffffff;
}

.footer-bottom {
	border-top: 1px solid #1f2937;
	padding-top: 12px;
	display: flex;
	justify-content: space-between;
	font-size: 11px;
	flex-wrap: wrap;
}