/* assets/css/style.css — Ambika International Paints (h-rules: site overrides, load after Bootstrap) */
:root {
	--navy-deep: #061B63;
	--royal-blue: #0A63D8;
	--royal-blue-hover: #084dad;
	--electric-purple: #6A00A8;
	--vibrant-orange: #FF6A00;
	--orange-hover: #e65f00;
	--paint-red: #E71D24;
	--fresh-green: #27AE60;
	--aqua-blue: #16C5E8;
	--soft-white: #F7F9FC;
	--border-gray: #D9E1EA;
	--dark-text: #0B1026;
	--text-muted: #4a5672;
	--shadow-card: 0 4px 24px rgba(6, 27, 99, 0.06);
	--shadow-card-hover: 0 8px 32px rgba(10, 99, 216, 0.12);
	--radius-lg: 14px;
	--radius-md: 12px;
	--navbar-height: 76px;
}

html {
	scroll-padding-top: calc(var(--navbar-height) + 8px);
}

body {
	font-family: "Plus Jakarta Sans", system-ui, -apple-system, sans-serif;
	color: var(--dark-text);
	background-color: #fff;
	font-weight: 500;
	padding-top: var(--navbar-height);
}

h1,
h2,
h3,
h4,
h5,
h6,
.display-6,
.navbar-nav .nav-link {
	font-weight: 700;
	letter-spacing: -0.02em;
}

.navbar-brand img {
	height: 44px;
	width: auto;
	max-width: 200px;
	object-fit: contain;
}

.navbar-main {
	background: #fff !important;
	border-bottom: 1px solid var(--border-gray) !important;
}

.navbar-main .nav-link {
	color: var(--dark-text);
	font-weight: 600;
	font-size: 0.9rem;
	padding: 0.5rem 0.85rem !important;
}

.navbar-main .nav-link:hover {
	color: var(--royal-blue);
}

.navbar-main .navbar-toggler {
	border-color: var(--border-gray);
}

.btn-primary {
	background-color: var(--royal-blue);
	border-color: var(--royal-blue);
	font-weight: 700;
	border-radius: 10px;
	padding: 0.5rem 1.15rem;
}

.btn-primary:hover,
.btn-primary:focus {
	background-color: var(--royal-blue-hover);
	border-color: var(--royal-blue-hover);
}

.btn-accent {
	background-color: var(--vibrant-orange);
	border-color: var(--vibrant-orange);
	color: #fff;
	font-weight: 700;
	border-radius: 10px;
	padding: 0.5rem 1.25rem;
}

.btn-accent:hover,
.btn-accent:focus {
	background-color: var(--orange-hover);
	border-color: var(--orange-hover);
	color: #fff;
}

.btn-outline-hero {
	color: #fff;
	border: 1px solid rgba(255, 255, 255, 0.45);
	background: rgba(255, 255, 255, 0.06);
	font-weight: 700;
	border-radius: 10px;
	padding: 0.5rem 1.25rem;
}

.btn-outline-hero:hover {
	background: rgba(255, 255, 255, 0.14);
	border-color: rgba(255, 255, 255, 0.65);
	color: #fff;
}

.text-primary-corp {
	color: var(--navy-deep) !important;
}

.bg-soft {
	background-color: var(--soft-white);
}

.bg-section {
	background-color: var(--soft-white);
}

.section-spacing {
	padding-block: clamp(3.25rem, 6vw, 5rem);
}

.section-title {
	font-weight: 800;
	color: var(--navy-deep);
	letter-spacing: -0.03em;
}

.section-lead {
	color: var(--text-muted);
	max-width: 640px;
	font-weight: 500;
}

.text-body-corp {
	color: var(--text-muted);
	font-weight: 500;
}

.card-premium {
	background: #fff;
	border: 1px solid var(--border-gray) !important;
	border-radius: var(--radius-lg) !important;
	box-shadow: var(--shadow-card);
	transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.card-premium:hover {
	border-color: rgba(10, 99, 216, 0.45) !important;
	box-shadow: var(--shadow-card-hover);
	transform: translateY(-2px);
}

.card-category .card-img-top {
	object-fit: cover;
	height: 200px;
	border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.card-category-image-wrap {
	background: var(--soft-white);
	border-bottom: 1px solid var(--border-gray);
	border-radius: var(--radius-lg) var(--radius-lg) 0 0;
	overflow: hidden;
}

.card-category .card-img-top.card-img-contain {
	height: 220px;
	object-fit: contain;
	padding: 1rem;
	background: var(--soft-white);
}

.card-category .card-img-top.card-img-cover {
	height: 220px;
	object-fit: cover;
	width: 100%;
	display: block;
}

.card-product .card-img-top {
	object-fit: cover;
	height: 180px;
	border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.industry-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 48px;
	height: 48px;
	border-radius: 10px;
	background-color: var(--royal-blue);
	color: #fff;
	font-size: 0.8rem;
	font-weight: 800;
	line-height: 1;
	letter-spacing: 0.02em;
}

.footer-logo {
	height: 48px;
	width: auto;
	max-width: 220px;
	object-fit: contain;
}

.navbar-main.fixed-top {
	z-index: 1030;
	box-shadow: 0 1px 0 rgba(6, 27, 99, 0.06), 0 8px 24px rgba(6, 27, 99, 0.06);
}

@media (max-width: 991.98px) {
	:root {
		--navbar-height: 72px;
	}
}

/* Hero — full viewport, video only */
.hero-section {
	position: relative;
	overflow: hidden;
	isolation: isolate;
	min-height: 100vh;
	min-height: 100dvh;
	margin-top: calc(-1 * var(--navbar-height));
	padding-top: var(--navbar-height);
	width: 100%;
	background: var(--navy-deep);
}

.hero-section .hero-video-bg {
	position: absolute;
	inset: 0;
	overflow: hidden;
	width: 100%;
	height: 100%;
}

.hero-section .hero-video {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	min-width: 100%;
	min-height: 100%;
	object-fit: cover;
	object-position: center;
}

@media (max-width: 991.98px) {
	.hero-section {
		min-height: 0;
		height: auto;
		margin-top: 0;
		padding-top: 0;
		background: #fff;
		overflow: visible;
	}

	.hero-section .hero-video-bg {
		position: relative;
		inset: auto;
		width: 100%;
		height: auto;
		overflow: visible;
	}

	.hero-section .hero-video {
		position: relative;
		inset: auto;
		display: block;
		width: 100%;
		height: auto;
		min-width: 0;
		min-height: 0;
		object-fit: initial;
	}
}

@media (prefers-reduced-motion: reduce) {
	.hero-section .hero-video {
		display: none;
	}

	.hero-section {
		background: linear-gradient(135deg, #061B63 0%, #6A00A8 100%);
	}
}

/* About intro (content moved from hero) */
.about-intro .section-lead {
	max-width: 42rem;
}

.about-stat-value {
	color: var(--navy-deep);
	font-weight: 800;
}

.about-stat-label {
	color: var(--text-muted);
	font-size: 0.8rem;
	font-weight: 600;
}

.hero-media-frame {
	position: relative;
	z-index: 2;
	border-radius: var(--radius-lg);
	overflow: hidden;
	border: 1px solid rgba(255, 255, 255, 0.18);
	box-shadow: 0 24px 60px rgba(0, 0, 0, 0.25);
	aspect-ratio: 3314 / 2101;
	width: 100%;
	background: rgba(255, 255, 255, 0.06);
}

.hero-media-frame img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	display: block;
}

/* Premium dark band */
.section-premium-dark {
	background: var(--navy-deep);
	color: rgba(255, 255, 255, 0.88);
	position: relative;
	overflow: hidden;
}

.section-premium-dark::before {
	content: "";
	position: absolute;
	top: -40%;
	right: -15%;
	width: 55%;
	height: 120%;
	background: radial-gradient(ellipse at center, rgba(10, 99, 216, 0.18) 0%, transparent 65%);
	pointer-events: none;
}

.section-premium-dark .section-title {
	color: #fff;
}

.section-premium-dark .section-lead {
	color: rgba(255, 255, 255, 0.72);
}

.section-premium-dark .container {
	position: relative;
	z-index: 1;
}

.brand-tile {
	border: 1px solid var(--border-gray) !important;
	border-radius: var(--radius-md) !important;
	transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.brand-tile:hover {
	border-color: rgba(10, 99, 216, 0.35) !important;
	box-shadow: var(--shadow-card-hover);
}

.brand-tile img {
	max-height: 48px;
	width: auto;
}

.brands-logos-wrap {
	max-width: 100%;
}

.brands-section .brand-tile {
	min-height: 7rem;
	padding: 1.25rem 1rem !important;
}

.brands-section .brand-tile img {
	max-height: 5.5rem;
	max-width: 100%;
	width: auto;
	height: auto;
	object-fit: contain;
}

@media (min-width: 768px) {
	.brands-section .brand-tile {
		min-height: 8.5rem;
		padding: 1.75rem 1.25rem !important;
	}

	.brands-section .brand-tile img {
		max-height: 6.5rem;
	}
}

@media (min-width: 992px) {
	.brands-section .brand-tile {
		min-height: 10rem;
		padding: 2rem 1.5rem !important;
	}

	.brands-section .brand-tile img {
		max-height: 7.5rem;
	}
}

blockquote.card-premium p,
.testimonial-card .testimonial-quote {
	color: var(--dark-text);
	font-weight: 500;
}

/* Testimonials */
.testimonial-card {
	position: relative;
	padding-top: 1.5rem !important;
}

.testimonial-card::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 4px;
	background: linear-gradient(90deg, var(--royal-blue), var(--aqua-blue));
	opacity: 0.85;
	border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.testimonial-card:hover {
	transform: translateY(-3px);
}

.testimonial-card .testimonial-quote-icon {
	position: absolute;
	top: 1rem;
	right: 1rem;
	color: rgba(6, 27, 99, 0.12);
	pointer-events: none;
}

.testimonial-card .testimonial-quote-icon i {
	font-size: 3.5rem;
	line-height: 1;
}

.testimonial-card .testimonial-quote {
	font-size: 1.05rem;
	line-height: 1.65;
	position: relative;
	z-index: 1;
	margin-bottom: 1.25rem !important;
}

.testimonial-meta {
	display: flex;
	align-items: flex-start;
	gap: 0.85rem;
	padding-top: 1rem;
	border-top: 1px solid var(--border-gray);
}

.testimonial-meta-icon {
	flex-shrink: 0;
	width: 44px;
	height: 44px;
	border-radius: 10px;
	background: rgba(10, 99, 216, 0.1);
	color: var(--royal-blue);
	display: grid;
	place-items: center;
}

.testimonial-meta-icon i {
	font-size: 22px;
	line-height: 1;
}

.testimonial-meta cite {
	font-style: normal;
	font-weight: 800;
	color: var(--navy-deep);
	display: block;
	font-size: 0.95rem;
	letter-spacing: -0.02em;
}

.testimonial-meta .testimonial-label {
	font-size: 0.8rem;
	color: var(--text-muted);
	font-weight: 600;
	margin-top: 0.15rem;
}

.testimonial-rating {
	display: flex;
	gap: 2px;
	margin-bottom: 0.75rem;
	color: var(--vibrant-orange);
	font-size: 1rem;
	letter-spacing: 1px;
}

.testimonial-rating span {
	line-height: 1;
}

/* FAQ accordion */
.accordion-premium .accordion-item {
	border: 1px solid var(--border-gray) !important;
	border-radius: var(--radius-md) !important;
	overflow: hidden;
}

.accordion-premium .accordion-item+.accordion-item {
	margin-top: 0.5rem;
}

.accordion-premium .accordion-button {
	font-weight: 700;
	color: var(--navy-deep);
	background: #fff;
	box-shadow: none !important;
}

.accordion-premium .accordion-button:not(.collapsed) {
	background: var(--soft-white);
	color: var(--royal-blue);
}

.accordion-premium .accordion-button::after {
	filter: brightness(0) saturate(100%) invert(12%) sepia(40%) saturate(4000%) hue-rotate(220deg);
}

.accordion-premium .accordion-body {
	background: #fff;
	color: var(--text-muted);
	border-top: 1px solid var(--border-gray);
}

.form-control,
.form-select {
	border-color: var(--border-gray);
	border-radius: 10px;
	font-weight: 500;
}

.form-control:focus {
	border-color: var(--royal-blue);
	box-shadow: 0 0 0 0.2rem rgba(10, 99, 216, 0.15);
}

.site-footer {
	background: var(--navy-deep);
	border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.site-footer .border-footer {
	border-color: rgba(255, 255, 255, 0.12) !important;
}

.footer-muted {
	color: rgba(255, 255, 255, 0.68);
}

.footer-link {
	color: rgba(255, 255, 255, 0.75);
	text-decoration: none;
	font-weight: 500;
}

.footer-link:hover {
	color: var(--aqua-blue);
}

.link-corp {
	color: var(--dark-text);
	font-weight: 600;
}

.link-corp:hover {
	color: var(--royal-blue);
}

.form-label {
	color: var(--navy-deep);
	font-weight: 600;
}

.section-premium-dark .accent-line {
	opacity: 0.9;
}

.why-feature-icon {
	width: 52px;
	height: 52px;
	border-radius: 12px;
	background: rgba(10, 99, 216, 0.1);
	color: var(--royal-blue);
	display: grid;
	place-items: center;
	margin-bottom: 1rem;
}

.why-feature-icon i {
	font-size: 1.35rem;
	line-height: 1;
}

.accent-line {
	width: 48px;
	height: 4px;
	border-radius: 4px;
	background: linear-gradient(90deg, var(--paint-red), var(--vibrant-orange), var(--aqua-blue));
}

/* Section borders — no inline style on HTML (h-rules) */
.section-border-t-gray {
	border-top: 1px solid var(--border-gray) !important;
}

.section-border-tb-gray {
	border-top: 1px solid var(--border-gray) !important;
	border-bottom: 1px solid var(--border-gray) !important;
}

.section-border-tb-light-on-dark {
	border-top: 1px solid rgba(255, 255, 255, 0.12) !important;
	border-bottom: 1px solid rgba(255, 255, 255, 0.12) !important;
}

/* Products catalog */
.navbar-main .nav-link.active {
	color: var(--royal-blue);
}

.btn-outline-primary {
	color: var(--royal-blue);
	border-color: var(--royal-blue);
	font-weight: 600;
	border-radius: 10px;
}

.btn-outline-primary:hover,
.btn-outline-primary:focus,
.btn-outline-primary.active {
	background-color: var(--royal-blue);
	border-color: var(--royal-blue);
	color: #fff;
}

.category-card-link {
	color: inherit;
}

.category-card-link:hover {
	color: inherit;
}

.category-card-link:focus-visible .card-premium {
	outline: 2px solid var(--royal-blue);
	outline-offset: 2px;
}

.products-page .breadcrumb-item a {
	color: var(--royal-blue);
	text-decoration: none;
	font-weight: 600;
}

.products-page .breadcrumb-item a:hover {
	text-decoration: underline;
}

.products-page .breadcrumb-item.active {
	color: var(--text-muted);
}

.card-product.card-premium {
	display: flex;
	flex-direction: column;
}

.card-product-image-wrap {
	background: var(--soft-white);
	border-bottom: 1px solid var(--border-gray);
	border-radius: var(--radius-lg) var(--radius-lg) 0 0;
	overflow: hidden;
}

.card-product .card-img-top.card-img-contain {
	height: 220px;
	object-fit: contain;
	padding: 1.25rem;
	background: var(--soft-white);
}

.card-product .product-card-body {
	display: flex;
	flex-direction: column;
	flex: 1 1 auto;
	gap: 0.75rem;
	padding: 1.25rem;
}

.product-card-category {
	display: inline-block;
	align-self: flex-start;
	padding: 0.25rem 0.65rem;
	font-size: 0.72rem;
	font-weight: 700;
	line-height: 1.3;
	letter-spacing: 0.02em;
	text-transform: uppercase;
	color: var(--royal-blue);
	background: rgba(10, 99, 216, 0.08);
	border-radius: 999px;
}

.product-card-title {
	margin: 0;
	font-size: 1rem;
	font-weight: 700;
	line-height: 1.4;
	color: var(--navy-deep);
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	overflow: hidden;
	min-height: calc(1.4rem * 2);
}

.product-card-actions {
	margin-top: auto;
	padding-top: 1rem;
	border-top: 1px solid var(--border-gray);
}

.product-card-enquire-btn {
	font-weight: 700;
	border-radius: 10px;
	padding: 0.55rem 1rem;
}

.product-filters {
	align-items: center;
}

.product-filter-pill {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0.5rem 1rem;
	font-size: 0.875rem;
	font-weight: 600;
	line-height: 1.25;
	color: var(--royal-blue);
	background-color: #fff;
	border: 1px solid var(--royal-blue);
	border-radius: 999px;
	text-decoration: none;
	white-space: nowrap;
	transition: background-color 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}

.product-filter-pill:hover,
.product-filter-pill:focus-visible {
	color: #fff;
	background-color: var(--royal-blue);
	border-color: var(--royal-blue);
	text-decoration: none;
}

.product-filter-pill.is-active {
	color: #fff;
	background-color: var(--royal-blue);
	border-color: var(--royal-blue);
}

.product-filter-pill:focus-visible {
	outline: 2px solid var(--royal-blue);
	outline-offset: 2px;
}

.about-logo-full {
	border-color: var(--border-gray) !important;
	max-height: min(560px, 85vh);
	width: auto;
	max-width: 100%;
	object-fit: contain;
}
