/* style.css — Root site styles */

/* ============================= */
/* GLOBAL */
/* ============================= */
*,
*::before,
*::after {
	box-sizing: border-box;
}

body {
	font-family: "Hind Siliguri", sans-serif;
	margin: 0;
	padding: 0;
	color: #333;
}

.container-inner {
	max-width: 1100px;
	margin: 0 auto;
}

button {
	font-family: inherit;
	cursor: pointer;
	border: none;
}

a {
	text-decoration: none;
}

/* ============================= */
/* HERO SECTION */
/* ============================= */
.hero-container {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	padding: 32px 5%;
	background: linear-gradient(135deg, #ffffff 60%, #f0f6ff 100%);
	gap: 24px;
}

.hero-content {
	flex: 1;
	min-width: 300px;
	text-align: left;
	min-height: 360px;
}

.hero-slider {
	flex: 1;
	min-width: 300px;
	max-width: 480px;
	width: 100%;
	aspect-ratio: 4 / 3;
	margin: 0 auto;
	position: relative;
	overflow: hidden;
	border-radius: 16px;
	box-shadow: 0 12px 40px rgba(24, 95, 165, 0.15);
	contain: layout;
}

.slider-wrapper {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
}

.slide {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	opacity: 0;
	transition: opacity 0.8s ease-in-out;
	border-radius: 16px;
	will-change: opacity;
}

.slide.active {
	opacity: 1;
	z-index: 1;
}

.offer-badge {
	display: inline-block;
	background: #fdf2f2;
	color: #d93025;
	padding: 6px 16px;
	border-radius: 50px;
	font-weight: bold;
	font-size: 0.95rem;
	margin-bottom: 14px;
	min-height: 2em;
}

.main-title {
	font-size: 2.2rem;
	line-height: 1.3;
	color: #1a1a2e;
	margin-bottom: 12px;
	min-height: calc(2.2rem * 1.3 * 2);
}

.highlight {
	color: #185fa5;
}

.sub-title {
	font-size: 1.05rem;
	color: #555;
	margin-bottom: 18px;
	line-height: 1.7;
	min-height: calc(1.05rem * 1.7 * 3);
}

.delivery-text {
	font-size: 1.2rem;
	color: #333;
	margin-bottom: 14px;
}

/* ── Order Button ── */
.order-btn {
	display: inline-block;
	background: #185fa5;
	color: white;
	padding: 16px 32px;
	border-radius: 8px;
	font-size: 1.15rem;
	font-weight: bold;
	transition:
		transform 0.2s,
		box-shadow 0.2s;
	box-shadow: 0 4px 15px rgba(24, 95, 165, 0.3);
	text-decoration: none;
}

.order-btn:hover {
	transform: translateY(-3px);
	box-shadow: 0 8px 24px rgba(24, 95, 165, 0.35);
}

.pulse-btn {
	animation: pulse 2s infinite;
}

/* ============================= */
/* FEATURES / BRAND HIGHLIGHTS */
/* ============================= */
.features-section {
	padding: 64px 5%;
	background-color: #f5f7fb;
	text-align: center;
}

.section-title h2 {
	font-size: 2rem;
	color: #1a1a2e;
	margin-bottom: 8px;
}

.highlight-text {
	font-size: 1.3rem;
	font-weight: bold;
	color: #185fa5;
	margin-bottom: 8px;
}

.desc {
	max-width: 800px;
	margin: 0 auto 36px;
	color: #666;
	font-size: 1.05rem;
	line-height: 1.7;
}

/* ── Brand Highlights Cards ── */
.brand-highlights {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	gap: 20px;
	margin-top: 40px;
}

.highlight-card {
	background: #fff;
	border-radius: 14px;
	padding: 28px 20px;
	box-shadow: 0 4px 18px rgba(0, 0, 0, 0.06);
	text-align: center;
	transition:
		transform 0.25s ease,
		box-shadow 0.25s ease;
	border-top: 4px solid #185fa5;
}

.highlight-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 12px 32px rgba(24, 95, 165, 0.12);
}

.highlight-icon {
	font-size: 2.5rem;
	margin-bottom: 12px;
}

.highlight-card h3 {
	font-size: 1.15rem;
	color: #1a1a2e;
	margin: 0 0 8px;
}

.highlight-card p {
	font-size: 0.95rem;
	color: #666;
	margin: 0;
	line-height: 1.6;
}

/* ============================= */
/* PRODUCTS SHOWCASE */
/* ============================= */
.products-section {
	padding: 64px 5%;
	background-color: #fff;
	text-align: center;
}

.product-showcase-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
	gap: 24px;
	margin-top: 40px;
}

.showcase-card {
	background: #fff;
	border-radius: 16px;
	overflow: hidden;
	box-shadow: 0 4px 18px rgba(0, 0, 0, 0.06);
	transition:
		transform 0.25s ease,
		box-shadow 0.25s ease;
	border: 1px solid #eef2f7;
	display: flex;
	flex-direction: column;
	text-decoration: none;
	color: inherit;
}

.showcase-card:hover {
	transform: translateY(-6px);
	box-shadow: 0 16px 40px rgba(24, 95, 165, 0.15);
	border-color: #185fa5;
}

.showcase-img-wrapper {
	width: 100%;
	aspect-ratio: 4 / 3;
	overflow: hidden;
	background: #f8fafc;
}

.showcase-img-wrapper img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.4s ease;
}

.showcase-card:hover .showcase-img-wrapper img {
	transform: scale(1.05);
}

.showcase-body {
	padding: 20px;
	text-align: left;
	flex: 1;
	display: flex;
	flex-direction: column;
}

.showcase-badge {
	display: inline-block;
	background: #eef4fb;
	color: #185fa5;
	padding: 4px 12px;
	border-radius: 20px;
	font-size: 0.8rem;
	font-weight: 700;
	margin-bottom: 10px;
	width: fit-content;
}

.badge-glow {
	background: #fef3c7;
	color: #92400e;
}

.badge-complete {
	background: #f0fdf4;
	color: #065f46;
}

.badge-personal {
	background: #fdf2f8;
	color: #9d174d;
}

.badge-oral {
	background: #f3e8ff;
	color: #6d28d9;
}

.showcase-body h3 {
	font-size: 1.1rem;
	color: #1a1a2e;
	margin: 0 0 8px;
}

.showcase-body p {
	font-size: 0.9rem;
	color: #666;
	margin: 0 0 12px;
	line-height: 1.5;
	flex: 1;
}

.showcase-price {
	margin-bottom: 12px;
	display: flex;
	align-items: center;
	gap: 8px;
}

.showcase-price .price-old {
	font-size: 0.95rem;
	color: #999;
}

.showcase-price .price-old del {
	color: #e53e3e;
}

.showcase-price .price-new {
	font-size: 1.3rem;
	font-weight: 800;
	color: #185fa5;
}

.showcase-cta {
	color: #185fa5;
	font-weight: 700;
	font-size: 0.95rem;
	display: inline-flex;
	align-items: center;
	gap: 4px;
	transition: gap 0.2s;
}

.showcase-card:hover .showcase-cta {
	gap: 8px;
}

/* ============================= */
/* WHY SECTION */
/* ============================= */
.why-section {
	padding: 64px 5%;
	background-color: #f5f7fb;
	text-align: center;
}

.benefits-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 12px;
	margin-bottom: 16px;
}

.benefits-grid.large-grid {
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	gap: 14px;
	margin-top: 32px;
}

.benefit-item {
	background: #eef4fb;
	padding: 14px 16px;
	border-radius: 10px;
	font-weight: 600;
	color: #185fa5;
	font-size: 0.97rem;
	display: flex;
	align-items: center;
	gap: 8px;
	justify-content: center;
}

del {
	color: #e53e3e;
}

/* ============================= */
/* SOCIAL PROOF SECTION */
/* ============================= */
.social-proof-section {
	padding: 56px 5%;
	background: linear-gradient(135deg, #185fa5 0%, #1a3a5c 100%);
	color: white;
	text-align: center;
}

.social-proof-content {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 32px;
	margin-bottom: 36px;
}

.social-stat {
	text-align: center;
	min-width: 140px;
}

.stat-number {
	display: block;
	font-size: 2.2rem;
	font-weight: 800;
	margin-bottom: 4px;
}

.stat-label {
	font-size: 0.95rem;
	opacity: 0.85;
}

.social-cta p {
	font-size: 1.1rem;
	margin-bottom: 18px;
	opacity: 0.95;
}

.fb-btn {
	background: #1877f2;
	box-shadow: 0 4px 15px rgba(24, 119, 242, 0.4);
	display: inline-flex;
	align-items: center;
	gap: 10px;
}

.fb-btn:hover {
	background: #166fe5;
	box-shadow: 0 8px 24px rgba(24, 119, 242, 0.5);
}

.fb-btn i {
	font-size: 1.3rem;
}

/* ============================= */
/* FLOATING CONTACT */
/* ============================= */
.floating-contact {
	position: fixed;
	bottom: 30px;
	right: 30px;
	z-index: 9999;
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	gap: 14px;
	will-change: transform;
	min-width: 60px;
	min-height: 60px;
}

.contact-trigger {
	width: 60px;
	height: 60px;
	border-radius: 50%;
	background: #a886cd;
	color: white;
	border: none;
	font-size: 24px;
	cursor: pointer;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
	display: flex;
	align-items: center;
	justify-content: center;
	transition:
		transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275),
		background 0.3s;
}

.contact-trigger .close-icon {
	display: none;
}

.contact-options {
	display: flex;
	flex-direction: column;
	gap: 10px;
	opacity: 0;
	visibility: hidden;
	transform: translateY(20px);
	transition: all 0.3s ease;
}

.option {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 10px 20px;
	border-radius: 30px;
	color: white;
	text-decoration: none;
	font-weight: 600;
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.12);
}

.whatsapp {
	background: #25d366;
}

.phone {
	background: #03e78b;
	color: #1a1a2e;
}

.floating-contact.active .contact-options {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.floating-contact.active .contact-trigger {
	background: #555;
	transform: rotate(90deg);
}

.floating-contact.active .main-icon {
	display: none;
}

.floating-contact.active .close-icon {
	display: block;
}

/* ============================= */
/* FOOTER */
/* ============================= */
.main-footer {
	padding: 40px 5% 24px;
	background-color: #1a1a1a;
	color: #fff;
	text-align: left;
	border-top: 1px solid #333;
}

.footer-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	gap: 32px;
	margin-bottom: 28px;
}

.footer-col h4 {
	font-size: 1.1rem;
	color: #fff;
	margin: 0 0 14px;
}

.footer-col p {
	font-size: 0.9rem;
	color: #a0a0a0;
	line-height: 1.6;
	margin: 0;
}

.footer-col ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

.footer-col ul li {
	margin-bottom: 8px;
}

.footer-col ul li a {
	color: #a0a0a0;
	text-decoration: none;
	font-size: 0.9rem;
	transition: color 0.3s;
	display: inline-flex;
	align-items: center;
	gap: 6px;
}

.footer-col ul li a:hover {
	color: #185fa5;
	text-decoration: underline;
}

.footer-bottom {
	border-top: 1px solid #333;
	padding-top: 20px;
	text-align: center;
}

.footer-bottom p {
	font-size: 0.9rem;
	color: #a0a0a0;
	margin: 0;
}

.footer-bottom strong {
	color: #fff;
}

/* ============================= */
/* ANIMATIONS */
/* ============================= */
@keyframes pulse {
	0% {
		transform: scale(1);
		box-shadow: 0 0 0 0 rgba(24, 95, 165, 0.4);
	}
	70% {
		transform: scale(1.04);
		box-shadow: 0 0 0 14px rgba(24, 95, 165, 0);
	}
	100% {
		transform: scale(1);
		box-shadow: 0 0 0 0 rgba(24, 95, 165, 0);
	}
}

/* ============================= */
/* RESPONSIVE */
/* ============================= */
@media (max-width: 768px) {
	.hero-container {
		flex-direction: column;
		text-align: center;
		padding-top: 20px;
		padding-bottom: 20px;
	}

	.hero-content {
		text-align: center;
		min-height: unset;
	}

	.hero-slider {
		max-width: 100%;
	}

	.main-title {
		font-size: 1.7rem;
		min-height: unset;
	}

	.sub-title {
		min-height: unset;
	}

	.section-title h2 {
		font-size: 1.6rem;
	}

	.brand-highlights {
		grid-template-columns: 1fr 1fr;
	}

	.product-showcase-grid {
		grid-template-columns: 1fr;
	}

	.features-section,
	.products-section,
	.why-section,
	.social-proof-section {
		padding-top: 28px;
		padding-bottom: 28px;
	}

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

@media (max-width: 600px) {
	.brand-highlights {
		grid-template-columns: 1fr;
	}

	.benefits-grid.large-grid {
		grid-template-columns: 1fr 1fr;
	}

	.social-proof-content {
		gap: 20px;
	}

	.stat-number {
		font-size: 1.8rem;
	}
}

@media (max-width: 480px) {
	.main-title {
		font-size: 1.5rem;
	}

	.order-btn {
		padding: 14px 24px;
		font-size: 1.05rem;
	}

	.benefits-grid.large-grid {
		grid-template-columns: 1fr;
	}

	.footer-bottom p {
		font-size: 0.82rem;
		line-height: 1.5;
	}
}