:root {
	--chub-dark:   #2E2200;
	--chub-dark-2: #3D3005;
	--chub-gold:   #DEAB1A;
	--chub-gold-light: #F2C94C;
	--chub-cream:  #FFFDF7;
	--chub-white:  #FFFFFF;
}

body { font-family: 'Poppins', 'Hind Siliguri', sans-serif; }

.chub-container { max-width: 1180px; margin: 0 auto; padding: 0 20px; }

/* HEADER */
.chub-header {
	position: sticky;
	top: 0;
	z-index: 999;
	background: var(--chub-dark);
	box-shadow: 0 2px 12px rgba(0,0,0,.15);
}
.chub-header__inner { display: flex; align-items: center; justify-content: space-between; height: 84px; }
.chub-logo img { height: 62px; width: 62px; border-radius: 50%; object-fit: cover; }
.chub-logo__text { color: var(--chub-white); font-weight: 700; font-size: 18px; }
.chub-nav ul { display: flex; align-items: center; gap: 26px; list-style: none; margin: 0; padding: 0; }
.chub-nav a { color: var(--chub-cream); font-weight: 500; font-size: 14.5px; text-decoration: none; white-space: nowrap; }
.chub-nav a:hover { color: var(--chub-gold); }
.chub-nav__cta { background: var(--chub-gold); color: var(--chub-dark) !important; padding: 8px 18px; border-radius: 50px; font-weight: 600 !important; }
.chub-nav__cta:hover { background: var(--chub-gold-light); }

.chub-menu-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 8px; }
.chub-menu-toggle span { width: 26px; height: 3px; background: var(--chub-gold); border-radius: 3px; }

@media (max-width: 780px) {
	.chub-menu-toggle { display: flex; }
	.chub-nav {
		position: fixed;
		top: 84px; left: 0; right: 0;
		background: var(--chub-dark);
		max-height: 0;
		overflow: hidden;
		transition: max-height .35s ease;
	}
	.chub-nav.is-open { max-height: 400px; }
	.chub-nav ul { flex-direction: column; align-items: flex-start; padding: 10px 20px 24px; gap: 4px; }
	.chub-nav ul li { width: 100%; }
	.chub-nav a { display: block; padding: 12px 0; width: 100%; }
	.chub-nav__cta { display: inline-block; margin-top: 6px; }
}

/* FOOTER */
.chub-footer { background: var(--chub-dark-2); color: rgba(255,255,255,.85); padding: 60px 0 0; margin-top: 0; }
.chub-footer__inner { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; padding-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,.1); }
.chub-footer__logo { width: 72px; height: 72px; border-radius: 50%; margin-bottom: 14px; }
.chub-footer__brand p { color: rgba(255,255,255,.6); font-size: 14px; }
.chub-footer h4 { color: var(--chub-gold); font-size: 15px; margin-bottom: 16px; }
.chub-footer__col ul { list-style: none; margin: 0; padding: 0; }
.chub-footer__col ul li { margin-bottom: 10px; font-size: 14.5px; }
.chub-footer__col a { color: inherit; text-decoration: none; }
.chub-footer__col a:hover { color: var(--chub-gold); }
.chub-footer__social { display: flex; gap: 12px; }
.chub-footer__social a { width: 40px; height: 40px; display: flex; align-items: center; justify-content: center; background: rgba(255,255,255,.08); border-radius: 50%; color: var(--chub-white); }
.chub-footer__social a:hover { background: var(--chub-gold); color: var(--chub-dark); }
.chub-footer__bottom { text-align: center; padding: 22px 0; font-size: 13px; color: rgba(255,255,255,.5); }

@media (max-width: 900px) {
	.chub-footer__inner { grid-template-columns: 1fr; text-align: center; }
	.chub-footer__social { justify-content: center; }
	.chub-footer__logo { margin-left: auto; margin-right: auto; }
}

/* WHATSAPP FLOAT */
.chub-whatsapp-float {
	position: fixed;
	bottom: 24px; right: 24px;
	width: 56px; height: 56px;
	background: #25D366;
	border-radius: 50%;
	display: flex; align-items: center; justify-content: center;
	color: #fff;
	box-shadow: 0 8px 24px rgba(0,0,0,.25);
	z-index: 998;
}
