/*
Theme Name: WC Service
Author: Webs
Description: Custom redesign theme for WC Service / Trestar - interactive hero, WooCommerce-ready.
Version: 1.0.0
Text Domain: wcservice
*/

/* ==========================================================================
   DESIGN SYSTEM & VARIABLES
   ========================================================================== */
:root {
	/* Brand Colors */
	--color-navy: #0A2540;
	--color-navy-deep: #071A2E;
	--color-navy-light: #0F3354;
	--color-teal: #16A6D9;
	--color-teal-bright: #2DBCEC;
	--color-teal-deep: #0E7FA8;
	--color-accent-blue: #0E7FA8;
	
	/* Neutral Palette */
	--color-ink: #0C1722;
	--color-muted: #5B6B7C;
	--color-light-bg: #F8FAFC;
	--color-cream: #EEF3F8;
	--color-white: #ffffff;
	
	/* Layout & Spacing */
	--container-max-w: 1240px;
	--border-radius-lg: 24px;
	--border-radius-md: 16px;
	--border-radius-sm: 8px;
	
	/* Easing & Transitions */
	--ease-premium: cubic-bezier(0.22, 1, 0.36, 1);
	--transition-smooth: all 0.4s var(--ease-premium);
	--transition-fast: all 0.2s ease;
	
	/* Shadows */
	--shadow-soft: 0 10px 30px rgba(10, 37, 64, 0.05);
	--shadow-medium: 0 20px 45px rgba(10, 37, 64, 0.1);
	--shadow-premium: 0 30px 70px rgba(7, 26, 46, 0.15);
	--shadow-glow: 0 15px 35px rgba(22, 166, 217, 0.25);
}

/* ==========================================================================
   RESET & CORE BASE STYLES
   ========================================================================== */
*, *::before, *::after {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

html {
	scroll-behavior: smooth;
	font-size: 16px;
	-webkit-text-size-adjust: 100%;
}

body {
	font-family: 'Assistant', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
	color: var(--color-ink);
	background-color: var(--color-white);
	line-height: 1.65;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
	font-family: 'Heebo', sans-serif;
	font-weight: 800;
	color: var(--color-navy);
	line-height: 1.25;
}

a {
	color: inherit;
	text-decoration: none;
	transition: var(--transition-fast);
}

img {
	max-width: 100%;
	display: block;
	height: auto;
}

ul {
	list-style: none;
}

input, button, select, textarea {
	font-family: inherit;
	font-size: inherit;
	border: none;
	outline: none;
}

.container {
	width: 100%;
	max-width: var(--container-max-w);
	margin: 0 auto;
	padding: 0 24px;
}

/* ==========================================================================
   REUSABLE UI COMPONENTS
   ========================================================================== */

/* Glassmorphism Classes */
.card-glass {
	background: rgba(255, 255, 255, 0.02);
	border: 1px solid rgba(255, 255, 255, 0.08);
	backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20px);
	box-shadow: var(--shadow-premium);
}

/* Buttons */
.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 12px;
	padding: 14px 28px;
	border-radius: 50px;
	font-family: 'Heebo', sans-serif;
	font-weight: 700;
	font-size: 1.05rem;
	cursor: pointer;
	transition: var(--transition-smooth);
	white-space: nowrap;
	position: relative;
	overflow: hidden;
}

.btn-primary {
	background: var(--color-teal);
	color: var(--color-white);
	box-shadow: var(--shadow-glow);
}

.btn-primary:hover {
	background: var(--color-teal-bright);
	transform: translateY(-4px);
	box-shadow: 0 20px 40px rgba(22, 166, 217, 0.35);
}

.btn-primary::after {
	content: '';
	position: absolute;
	top: -50%;
	left: -60%;
	width: 30%;
	height: 200%;
	background: rgba(255, 255, 255, 0.13);
	transform: rotate(35deg);
	transition: 0.8s var(--ease-premium);
}

.btn-primary:hover::after {
	left: 130%;
}

.btn-secondary {
	background: rgba(255, 255, 255, 0.08);
	color: var(--color-white);
	border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-secondary:hover {
	background: rgba(255, 255, 255, 0.15);
	border-color: var(--color-white);
	transform: translateY(-4px);
}

.btn-outline {
	background: transparent;
	color: var(--color-navy);
	border: 2px solid var(--color-navy);
}

.btn-outline:hover {
	background: var(--color-navy);
	color: var(--color-white);
	transform: translateY(-4px);
}

.btn-large {
	padding: 16px 36px;
	font-size: 1.15rem;
}

/* Eyebrows & Titles */
.section-eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	font-family: 'Heebo', sans-serif;
	font-weight: 700;
	font-size: 0.85rem;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--color-teal);
	margin-bottom: 16px;
}

.section-title {
	font-size: clamp(2rem, 3.5vw, 2.7rem);
	line-height: 1.18;
	margin-bottom: 20px;
}

.section-desc {
	font-size: clamp(1rem, 1.2vw, 1.15rem);
	color: var(--color-muted);
	margin-bottom: 40px;
}

.text-center {
	text-align: center;
}

.max-w-600 {
	max-width: 600px;
	margin-left: auto;
	margin-right: auto;
}

/* ==========================================================================
   HEADER SECTION
   ========================================================================== */
.site-header {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 1000;
	transition: var(--transition-smooth);
}

/* On all inner pages (not homepage), header is solid from the start */
body:not(.home) .site-header {
	background: var(--color-navy-deep, #040e1a);
	border-bottom: 1px solid rgba(194, 205, 226, 0.08);
}

/* Header Scroll Class */
.site-header.scrolled {
	background: rgba(7, 26, 46, 0.85);
	backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20px);
	border-bottom: 1px solid rgba(194, 205, 226, 0.1);
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.site-header.scrolled .top-bar {
	height: 0;
	overflow: hidden;
	opacity: 0;
	transform: translateY(-100%);
}

.site-header.scrolled .main-navbar {
	padding: 10px 0;
}

/* Top Bar */
.top-bar {
	background: var(--color-navy-deep);
	border-bottom: 1px solid rgba(194, 205, 226, 0.08);
	height: 44px;
	opacity: 1;
	transform: translateY(0);
	transition: transform 0.4s var(--ease-premium), opacity 0.3s ease, height 0.4s var(--ease-premium);
}

.top-bar-container {
	display: flex;
	justify-content: space-between;
	align-items: center;
	height: 100%;
}

.color-picker-trigger {
	background: transparent;
	display: inline-flex;
	align-items: center;
	gap: 10px;
	color: var(--color-teal-bright);
	font-weight: 700;
	font-size: 0.9rem;
	cursor: pointer;
}

.color-picker-trigger img {
	width: 24px;
	height: 24px;
	transition: transform 0.6s var(--ease-premium);
}

.color-picker-trigger:hover img {
	transform: rotate(180deg);
}

.top-bar-left {
	display: flex;
	align-items: center;
	gap: 30px;
}

.secondary-nav ul {
	display: flex;
	gap: 20px;
}

.secondary-nav a {
	color: var(--color-cream);
	font-size: 0.85rem;
	font-weight: 500;
}

.secondary-nav a:hover,
.secondary-nav a.active {
	color: var(--color-teal-bright);
}

.top-socials {
	display: flex;
	gap: 12px;
	color: var(--color-cream);
}

.top-socials a {
	width: 20px;
	height: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.top-socials a:hover {
	color: var(--color-teal-bright);
}

/* Main Navbar */
.main-navbar {
	padding: 20px 0;
	transition: var(--transition-smooth);
}

.navbar-container {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 20px;
}

.site-logo img {
	max-height: 52px;
	transition: var(--transition-smooth);
}

.main-nav .nav-menu {
	display: flex;
	align-items: center;
	gap: 18px;
}

.main-nav a {
	color: var(--color-white);
	font-family: 'Heebo', sans-serif;
	font-weight: 600;
	font-size: 0.92rem;
	position: relative;
	padding: 8px 0;
	white-space: nowrap;
}

@media (max-width: 1280px) {
	.main-nav .nav-menu {
		gap: 12px;
	}
	.main-nav a {
		font-size: 0.88rem;
	}
}

/* Nav Hover Line */
.main-nav a::after {
	content: '';
	position: absolute;
	bottom: 0;
	right: 0;
	width: 0;
	height: 2px;
	background: var(--color-teal-bright);
	transition: var(--transition-fast);
}

.main-nav a:hover::after {
	width: 100%;
}

.main-nav .has-dropdown {
	position: relative;
}

.main-nav .has-dropdown > a {
	display: inline-flex;
	align-items: center;
	gap: 4px;
}

.nav-arrow {
	width: 16px;
	height: 16px;
	transition: transform 0.3s ease;
}

.main-nav .has-dropdown:hover .nav-arrow {
	transform: rotate(180deg);
}

/* Dropdown Menu */
.dropdown-menu {
	position: absolute;
	top: 100%;
	right: 0;
	background: rgba(7, 26, 46, 0.95);
	backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20px);
	border: 1px solid rgba(194, 205, 226, 0.1);
	border-radius: 12px;
	min-width: 220px;
	padding: 12px;
	opacity: 0;
	visibility: hidden;
	transform: translateY(15px);
	transition: var(--transition-smooth);
	box-shadow: var(--shadow-premium);
}

.main-nav .has-dropdown:hover .dropdown-menu {
	opacity: 1;
	visibility: visible;
	transform: translateY(5px);
}

.dropdown-menu li {
	margin-bottom: 4px;
}

.dropdown-menu li:last-child {
	margin-bottom: 0;
}

.dropdown-menu a {
	color: var(--color-cream);
	font-size: 0.95rem;
	font-weight: 500;
	display: block;
	padding: 10px 14px;
	border-radius: 6px;
	transition: var(--transition-fast);
}

.dropdown-menu a::after {
	display: none;
}

.dropdown-menu a:hover {
	background: rgba(22, 166, 217, 0.15);
	color: var(--color-white);
	transform: translateX(-4px);
}

/* Contact phone widget in nav */
.nav-phone-widget .phone-box {
	display: flex;
	align-items: center;
	gap: 12px;
	background: rgba(255, 255, 255, 0.05);
	border: 1px solid rgba(255, 255, 255, 0.1);
	padding: 10px 18px;
	border-radius: 50px;
	color: var(--color-white);
	min-width: fit-content;
	flex-shrink: 0;
	white-space: nowrap;
}

.nav-phone-widget .phone-box:hover {
	background: var(--color-teal);
	border-color: var(--color-teal);
}

.phone-icon-wrap {
	width: 34px;
	height: 34px;
	border-radius: 50%;
	background: rgba(22, 166, 217, 0.15);
	color: var(--color-teal-bright);
	display: flex;
	align-items: center;
	justify-content: center;
	transition: var(--transition-fast);
}

.nav-phone-widget .phone-box:hover .phone-icon-wrap {
	background: rgba(255, 255, 255, 0.2);
	color: var(--color-white);
}

.phone-svg {
	width: 18px;
	height: 18px;
}

.phone-info {
	display: flex;
	flex-direction: column;
	line-height: 1.2;
	white-space: nowrap;
}

.phone-label {
	font-size: 0.75rem;
	color: var(--color-cream);
	font-weight: 500;
}

.phone-number {
	font-family: 'Heebo', sans-serif;
	font-weight: 800;
	font-size: 1.05rem;
}

.mobile-menu-toggle {
	display: none;
}

/* Header Text Theme Overrides (light text default since hero is dark) */
.site-header .main-navbar a {
	color: var(--color-white);
}

/* Scrolled Header Overrides (If Scrolled on Light Section, header changes theme) */
.site-header.scrolled-light {
	background: rgba(255, 255, 255, 0.95);
	backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20px);
	border-bottom: 1px solid rgba(10, 37, 64, 0.05);
	box-shadow: 0 10px 30px rgba(10, 37, 64, 0.05);
}

.site-header.scrolled-light .main-navbar a {
	color: var(--color-navy);
}

.site-header.scrolled-light .dropdown-menu {
	background: rgba(255, 255, 255, 0.98);
	border: 1px solid rgba(10, 37, 64, 0.08);
}

.site-header.scrolled-light .dropdown-menu a {
	color: var(--color-muted);
}

.site-header.scrolled-light .dropdown-menu a:hover {
	background: rgba(22, 166, 217, 0.08);
	color: var(--color-teal-deep);
}

.site-header.scrolled-light .phone-box {
	border-color: rgba(10, 37, 64, 0.15);
	color: var(--color-navy);
}

/* ==========================================================================
   IMMERSIVE SCROLL-DRIVEN HERO
   ========================================================================== */
.hero-scroll-container {
	position: relative;
	height: 400vh;
	background: var(--color-navy-deep);
}

.hero-pinned {
	position: sticky;
	top: 0;
	height: 100vh;
	width: 100%;
	overflow: hidden;
	display: flex;
	align-items: center;
	z-index: 2;
}

/* Background Image */
.hero-bg {
	position: absolute;
	inset: 0;
	z-index: 1;
	overflow: hidden;
}

.hero-bg-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	transform: scale(1);
	transition: transform 0.1s linear;
	will-change: transform;
}

/* Dark Vignette */
.hero-vignette {
	position: absolute;
	inset: 0;
	z-index: 2;
	background: 
		linear-gradient(to bottom, rgba(7,26,46,0.7) 0%, rgba(7,26,46,0.3) 30%, rgba(7,26,46,0.2) 50%, rgba(7,26,46,0.5) 80%, rgba(7,26,46,0.9) 100%),
		linear-gradient(to right, rgba(7,26,46,0.6) 0%, transparent 50%, transparent 100%);
	pointer-events: none;
}

/* Ambient Glow */
.hero-ambient-glow {
	position: absolute;
	top: -20%;
	right: -10%;
	width: 600px;
	height: 600px;
	background: radial-gradient(circle, rgba(22,166,217,0.12) 0%, transparent 70%);
	border-radius: 50%;
	z-index: 2;
	pointer-events: none;
	animation: floatOrb 20s infinite alternate ease-in-out;
}

@keyframes floatOrb {
	0% { transform: translate(0, 0) scale(1); }
	100% { transform: translate(60px, 40px) scale(1.15); }
}

/* Scroll Progress Indicator */
.hero-scroll-progress {
	position: absolute;
	left: 40px;
	top: 50%;
	transform: translateY(-50%);
	z-index: 20;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 16px;
}

.progress-track {
	width: 3px;
	height: 120px;
	background: rgba(255,255,255,0.15);
	border-radius: 3px;
	overflow: hidden;
	position: relative;
}

.progress-fill {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 0%;
	background: var(--color-teal-bright);
	border-radius: 3px;
	transition: height 0.3s ease;
}

.progress-dots {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.progress-dot {
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background: rgba(255,255,255,0.2);
	border: 2px solid rgba(255,255,255,0.3);
	transition: all 0.4s var(--ease-premium);
	cursor: pointer;
}

.progress-dot.active {
	background: var(--color-teal-bright);
	border-color: var(--color-teal-bright);
	box-shadow: 0 0 12px rgba(45,188,236,0.5);
	transform: scale(1.3);
}

/* Hero Slides */
.hero-slide {
	position: absolute;
	inset: 0;
	z-index: 10;
	display: flex;
	align-items: center;
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.8s var(--ease-premium);
}

.hero-slide.active {
	opacity: 1;
	pointer-events: auto;
}

.slide-content {
	max-width: 650px;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	padding-right: 60px;
}

.hero-eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 8px 18px;
	background: rgba(22, 166, 217, 0.08);
	border: 1px solid rgba(22, 166, 217, 0.3);
	border-radius: 50px;
	font-family: 'Heebo', sans-serif;
	font-weight: 700;
	font-size: 0.9rem;
	color: var(--color-teal-bright);
	margin-bottom: 24px;
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
}

.pulse-dot {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background-color: var(--color-teal-bright);
	box-shadow: 0 0 0 4px rgba(45, 188, 236, 0.25);
	animation: pulse 1.8s infinite;
}

@keyframes pulse {
	0% { box-shadow: 0 0 0 0px rgba(45, 188, 236, 0.7); }
	100% { box-shadow: 0 0 0 8px rgba(45, 188, 236, 0); }
}

.hero-title {
	font-family: 'Heebo', sans-serif;
	font-weight: 900;
	font-size: clamp(2.3rem, 4.5vw, 3.8rem);
	line-height: 1.15;
	color: var(--color-white) !important;
}

.hero-title-sub {
	font-size: clamp(2rem, 4vw, 3.2rem);
}

.hero-title .highlight {
	background: linear-gradient(135deg, var(--color-teal-bright), var(--color-teal-deep));
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	display: inline-block;
}

.hero-lead {
	font-size: clamp(1.05rem, 1.4vw, 1.25rem);
	color: var(--color-cream);
	margin-top: 24px;
	margin-bottom: 36px;
	max-width: 580px;
	font-weight: 400;
}

.hero-actions {
	display: flex;
	gap: 16px;
	margin-bottom: 44px;
	flex-wrap: wrap;
}

.btn-arrow {
	width: 18px;
	height: 18px;
	transition: transform 0.3s var(--ease-premium);
}

.btn-primary:hover .btn-arrow {
	transform: translateX(-5px);
}

.hero-trust-list {
	display: flex;
	flex-wrap: wrap;
	gap: 20px 28px;
}

.trust-item {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 0.98rem;
	font-weight: 600;
	color: var(--color-cream);
}

.check-icon {
	width: 18px;
	height: 18px;
	color: var(--color-teal-bright);
}

/* Scroll Down Hint */
.hero-scroll-hint {
	position: absolute;
	bottom: 40px;
	left: 50%;
	transform: translateX(-50%);
	z-index: 20;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 8px;
	color: rgba(255,255,255,0.5);
	font-size: 0.82rem;
	font-weight: 600;
	transition: opacity 0.5s ease;
}

.scroll-arrow-anim {
	animation: scrollBounce 2s infinite;
}

@keyframes scrollBounce {
	0%, 100% { transform: translateY(0); }
	50% { transform: translateY(8px); }
}

.hero-trigger {
	width: 1px;
	height: 1px;
	pointer-events: none;
}

/* ==========================================================================
   STATS SECTION
   ========================================================================== */
.stats-section {
	background-color: var(--color-navy-deep);
	border-top: 1px solid rgba(194, 205, 226, 0.1);
	position: relative;
	z-index: 10;
}

.stats-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
}

.stat-card {
	padding: 48px 24px;
	text-align: center;
	border-left: 1px solid rgba(194, 205, 226, 0.1);
	display: flex;
	flex-direction: column;
	align-items: center;
	transition: var(--transition-smooth);
}

.stat-card:last-child {
	border-left: none;
}

.stat-card:hover {
	background: rgba(255, 255, 255, 0.02);
}

.stat-icon-wrap {
	width: 50px;
	height: 50px;
	border-radius: 50%;
	background: rgba(22, 166, 217, 0.1);
	color: var(--color-teal-bright);
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 16px;
	transition: var(--transition-smooth);
}

.stat-card:hover .stat-icon-wrap {
	background: var(--color-teal);
	color: var(--color-white);
	transform: scale(1.1);
}

.stat-svg {
	width: 24px;
	height: 24px;
}

.stat-num-container {
	display: flex;
	align-items: baseline;
	justify-content: center;
	font-family: 'Outfit', sans-serif;
	font-weight: 900;
	font-size: clamp(1.6rem, 3.8vw, 3.2rem);
	line-height: 1;
	color: var(--color-teal-bright);
	margin-bottom: 8px;
	direction: ltr; /* Keeping numbers left-to-right */
}

.stat-suffix {
	color: var(--color-white);
	margin-left: 2px;
}

.stat-label {
	font-size: 0.95rem;
	font-weight: 600;
	color: var(--color-cream);
}

/* ==========================================================================
   ABOUT SECTION
   ========================================================================== */
.about-section {
	padding: 110px 0;
	background-color: var(--color-white);
}

.about-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 60px;
	align-items: center;
}

.about-content {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
}

.section-desc.text-muted {
	color: var(--color-muted);
	font-size: 1rem;
	margin-top: -20px;
}

.about-actions {
	display: flex;
	gap: 16px;
}

.about-media {
	position: relative;
}

.media-container {
	position: relative;
	border-radius: var(--border-radius-lg);
	overflow: hidden;
	aspect-ratio: 4/3;
	box-shadow: var(--shadow-premium);
	z-index: 2;
}

.about-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.6s var(--ease-premium);
}

.media-container:hover .about-img {
	transform: scale(1.05);
}

.media-badge {
	position: absolute;
	top: 20px;
	right: 20px;
	background: rgba(7, 26, 46, 0.85);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	border: 1px solid rgba(255, 255, 255, 0.15);
	padding: 8px 18px;
	border-radius: 50px;
	color: var(--color-white);
	font-weight: 700;
	font-size: 0.85rem;
	z-index: 10;
}

.image-accent-glow {
	position: absolute;
	bottom: -30px;
	left: -30px;
	width: 250px;
	height: 250px;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(22, 166, 217, 0.15) 0%, transparent 70%);
	z-index: 1;
	pointer-events: none;
}

/* ==========================================================================
   INTERACTIVE COLOR PALETTE CUSTOMIZER
   ========================================================================== */
.customizer-section {
	padding: 100px 0;
	background-color: var(--color-cream);
}

.customizer-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 48px;
	align-items: stretch;
	margin-top: 50px;
}

/* Left panel tabs & options */
.color-picker-panel {
	border-radius: var(--border-radius-lg);
	padding: 30px;
	display: flex;
	flex-direction: column;
	background: rgba(255, 255, 255, 0.65);
	border: 1px solid rgba(10, 37, 64, 0.05);
	box-shadow: var(--shadow-medium);
}

.panel-tabs {
	display: flex;
	border-bottom: 2px solid rgba(10, 37, 64, 0.08);
	margin-bottom: 24px;
	gap: 20px;
}

.tab-btn {
	background: transparent;
	font-family: 'Heebo', sans-serif;
	font-weight: 700;
	font-size: 1.1rem;
	color: var(--color-muted);
	padding-bottom: 12px;
	cursor: pointer;
	position: relative;
	transition: var(--transition-fast);
}

.tab-btn:hover,
.tab-btn.active {
	color: var(--color-navy);
}

.tab-btn.active::after {
	content: '';
	position: absolute;
	bottom: -2px;
	right: 0;
	width: 100%;
	height: 2px;
	background: var(--color-teal);
}

.color-grid {
	display: none;
	grid-template-columns: repeat(auto-fill, minmax(110px, 1fr));
	gap: 16px;
}

.color-grid.active {
	display: grid;
}

.color-item {
	background: var(--color-white);
	border: 1px solid rgba(10, 37, 64, 0.08);
	border-radius: var(--border-radius-md);
	padding: 14px;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 10px;
	cursor: pointer;
	transition: var(--transition-smooth);
}

.color-item:hover {
	transform: translateY(-4px);
	box-shadow: var(--shadow-soft);
	border-color: rgba(22, 166, 217, 0.3);
}

.color-item.active {
	border-color: var(--color-teal);
	box-shadow: 0 8px 20px rgba(22, 166, 217, 0.15);
	background: rgba(22, 166, 217, 0.03);
}

.color-preview {
	width: 44px;
	height: 44px;
	border-radius: 50%;
	background-color: var(--bg-preview);
	border: 1px solid rgba(0,0,0,0.15);
	box-shadow: inset 0 2px 4px rgba(0,0,0,0.08);
}

.color-name {
	font-size: 0.88rem;
	font-weight: 700;
	color: var(--color-navy);
	text-align: center;
}

/* Right panel: Visual Display Mockup */
.mockup-display {
	border-radius: var(--border-radius-lg);
	background: rgba(255, 255, 255, 0.85);
	border: 1px solid rgba(10, 37, 64, 0.05);
	box-shadow: var(--shadow-premium);
	padding: 30px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

.mockup-title-bar {
	display: flex;
	justify-content: space-between;
	align-items: center;
	border-bottom: 1px solid rgba(10, 37, 64, 0.08);
	padding-bottom: 16px;
	margin-bottom: 24px;
}

.mockup-title-bar span {
	font-size: 0.9rem;
	font-weight: 600;
	color: var(--color-muted);
}

.status-indicator {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 6px 14px;
	background: rgba(10, 37, 64, 0.04);
	border-radius: 50px;
	font-size: 0.9rem;
}

.active-color-dot {
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background-color: var(--color-teal);
	transition: background-color 0.3s ease;
}

.cubicle-preview-frame {
	flex: 1;
	display: flex;
	justify-content: center;
	align-items: center;
	min-height: 280px;
	position: relative;
}

/* Product Image Preview */
.product-preview-img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	border-radius: var(--border-radius-md);
	transition: opacity 0.5s var(--ease-premium), transform 0.5s var(--ease-premium);
}

.product-preview-img.fade-out {
	opacity: 0;
	transform: scale(0.95);
}

.mockup-note {
	font-size: 0.8rem;
	color: var(--color-muted);
	margin-top: 24px;
	text-align: center;
}

/* ==========================================================================
   PROMO BANNERS SECTION
   ========================================================================== */
.promos-section {
	padding: 110px 0;
	background-color: var(--color-white);
}

.promo-grid {
	display: grid;
	grid-template-columns: repeat(6, 1fr);
	gap: 24px;
	grid-auto-rows: 240px;
	margin-top: 50px;
}

.promo-card {
	border-radius: var(--border-radius-lg);
	overflow: hidden;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	padding: 32px;
	color: var(--color-white);
	position: relative;
	z-index: 1;
	isolation: isolate;
	transition: var(--transition-smooth);
}

.promo-card::before {
	content: '';
	position: absolute;
	inset: 0;
	background-image: var(--bg-url);
	background-size: cover;
	background-position: center;
	z-index: -2;
	transition: transform 0.6s var(--ease-premium);
}

.promo-card:hover::before {
	transform: scale(1.06);
}

.card-overlay-bg {
	position: absolute;
	inset: 0;
	background: linear-gradient(to top, rgba(7, 26, 46, 0.9) 0%, rgba(7, 26, 46, 0.3) 50%, transparent 100%);
	z-index: -1;
	transition: var(--transition-smooth);
}

.promo-card:hover .card-overlay-bg {
	background: linear-gradient(to top, rgba(7, 26, 46, 0.95) 0%, rgba(7, 26, 46, 0.45) 60%, rgba(22, 166, 217, 0.1) 100%);
}

.promo-card:hover {
	transform: translateY(-8px);
	box-shadow: var(--shadow-premium);
}

/* Card sizing grid spans */
.promo-card.card-tall {
	grid-row: span 2;
	grid-column: span 3;
}

.promo-card.card-wide {
	grid-column: span 3;
}

.promo-card:not(.card-tall):not(.card-wide) {
	grid-column: span 3;
}

.card-tag-badge {
	align-self: flex-start;
	font-family: 'Outfit', sans-serif;
	font-weight: 700;
	font-size: 0.72rem;
	letter-spacing: 0.1em;
	color: var(--color-teal-bright);
	text-transform: uppercase;
	margin-bottom: 12px;
}

.promo-title {
	font-size: clamp(1.2rem, 1.8vw, 1.6rem);
	color: var(--color-white) !important;
	font-weight: 700;
	margin-bottom: 8px;
}

.promo-text {
	font-size: 0.95rem;
	color: var(--color-cream);
	margin-bottom: 20px;
	line-height: 1.5;
}

.promo-link {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-family: 'Heebo', sans-serif;
	font-weight: 700;
	font-size: 0.95rem;
	color: var(--color-white);
}

.link-arrow {
	width: 16px;
	height: 16px;
	transition: transform 0.3s var(--ease-premium);
}

.promo-card:hover .link-arrow {
	transform: translateX(-5px); /* Slide left in RTL */
}

/* ==========================================================================
   CATEGORIES SECTION
   ========================================================================== */
.categories-section {
	padding: 110px 0;
	background-color: var(--color-light-bg);
}

.categories-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 30px;
	margin-top: 50px;
}

.category-card {
	background: var(--color-white);
	border: 1px solid rgba(10, 37, 64, 0.06);
	border-radius: var(--border-radius-lg);
	overflow: hidden;
	box-shadow: var(--shadow-soft);
	transition: var(--transition-smooth);
	display: flex;
	flex-direction: column;
}

.category-card:hover {
	transform: translateY(-10px);
	box-shadow: var(--shadow-premium);
	border-color: rgba(22, 166, 217, 0.2);
}

.cat-image-wrap {
	aspect-ratio: 4/3;
	overflow: hidden;
	position: relative;
	background: var(--color-cream);
}

.cat-image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.6s var(--ease-premium);
}

.category-card:hover .cat-image {
	transform: scale(1.07);
}

.cat-badge {
	position: absolute;
	top: 16px;
	left: 16px; /* Position left in RTL */
	background: rgba(7, 26, 46, 0.82);
	backdrop-filter: blur(8px);
	-webkit-backdrop-filter: blur(8px);
	color: var(--color-white);
	padding: 6px 14px;
	border-radius: 50px;
	font-family: 'Heebo', sans-serif;
	font-weight: 700;
	font-size: 0.72rem;
	letter-spacing: 0.05em;
	z-index: 2;
}

.card-hover-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(rgba(22, 166, 217, 0.15), transparent);
	opacity: 0;
	transition: opacity 0.4s ease;
	z-index: 1;
}

.category-card:hover .card-hover-overlay {
	opacity: 1;
}

.cat-content {
	padding: 28px;
	flex: 1;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

.cat-title {
	font-size: 1.35rem;
	font-weight: 700;
	color: var(--color-navy);
	margin-bottom: 12px;
}

.cat-text {
	font-size: 0.95rem;
	color: var(--color-muted);
	line-height: 1.5;
	margin-bottom: 24px;
}

.cat-link-btn {
	align-self: flex-start;
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-family: 'Heebo', sans-serif;
	font-weight: 700;
	font-size: 0.95rem;
	color: var(--color-teal-deep);
}

.arrow-svg {
	width: 16px;
	height: 16px;
	transition: transform 0.3s var(--ease-premium);
}

.category-card:hover .arrow-svg {
	transform: translateX(-5px);
}

.category-card:hover .cat-link-btn {
	color: var(--color-teal-bright);
}

/* ==========================================================================
   CATEGORY UNIVERSE — grouped tile grid (full catalog breadth)
   ========================================================================== */
.cat-group {
	margin-top: 56px;
}

.cat-group:first-of-type {
	margin-top: 50px;
}

.cat-group-head {
	display: flex;
	align-items: baseline;
	gap: 16px;
	margin-bottom: 24px;
	padding-bottom: 16px;
	border-bottom: 1px solid rgba(10, 37, 64, 0.08);
}

.cat-group-eyebrow {
	flex-shrink: 0;
	font-family: 'Heebo', sans-serif;
	font-weight: 700;
	font-size: 0.72rem;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--color-teal-deep);
	background: rgba(22, 166, 217, 0.1);
	padding: 6px 14px;
	border-radius: 50px;
}

.cat-group-title {
	font-size: 1.35rem;
	font-weight: 700;
	color: var(--color-navy);
	margin: 0;
	line-height: 1.3;
}

.cat-tiles {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(218px, 1fr));
	gap: 20px;
}

.cat-tile {
	position: relative;
	display: block;
	aspect-ratio: 4 / 3;
	border-radius: var(--border-radius-md);
	overflow: hidden;
	box-shadow: var(--shadow-soft);
	border: 1px solid rgba(10, 37, 64, 0.06);
	background: var(--color-cream);
	transition: transform 0.4s var(--ease-premium), box-shadow 0.4s var(--ease-premium);
}

.cat-tile:hover,
.cat-tile:focus-visible {
	transform: translateY(-6px);
	box-shadow: var(--shadow-premium);
	outline: none;
}

.cat-tile:focus-visible {
	outline: 3px solid var(--color-teal-bright);
	outline-offset: 2px;
}

.cat-tile-media {
	position: absolute;
	inset: 0;
}

.cat-tile-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.6s var(--ease-premium);
}

.cat-tile:hover .cat-tile-img {
	transform: scale(1.08);
}

.cat-tile-overlay {
	position: absolute;
	inset: 0;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	gap: 4px;
	padding: 18px 20px;
	background: linear-gradient(to top, rgba(7, 26, 46, 0.92) 0%, rgba(7, 26, 46, 0.55) 38%, rgba(7, 26, 46, 0.05) 70%, transparent 100%);
	z-index: 1;
}

.cat-tile-name {
	font-family: 'Heebo', sans-serif;
	font-weight: 700;
	font-size: 1.05rem;
	line-height: 1.25;
	color: var(--color-white);
}

.cat-tile-cta {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-family: 'Heebo', sans-serif;
	font-weight: 700;
	font-size: 0.82rem;
	color: var(--color-teal-bright);
	opacity: 0;
	transform: translateY(6px);
	transition: opacity 0.35s var(--ease-premium), transform 0.35s var(--ease-premium);
}

.cat-tile:hover .cat-tile-cta,
.cat-tile:focus-visible .cat-tile-cta {
	opacity: 1;
	transform: translateY(0);
}

.tile-arrow {
	width: 14px;
	height: 14px;
	transition: transform 0.3s var(--ease-premium);
}

.cat-tile:hover .tile-arrow {
	transform: translateX(-4px);
}

/* Filter bar */
.cat-filters {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 10px;
	margin: 44px 0 38px;
}

.cat-filter-btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-family: 'Heebo', sans-serif;
	font-weight: 700;
	font-size: 0.9rem;
	color: var(--color-navy);
	background: var(--color-white);
	border: 1px solid rgba(10, 37, 64, 0.12);
	border-radius: 50px;
	padding: 10px 20px;
	cursor: pointer;
	transition: var(--transition-fast);
}

.cat-filter-btn:hover {
	border-color: rgba(22, 166, 217, 0.5);
	color: var(--color-teal-deep);
}

.cat-filter-btn.is-active {
	background: var(--color-teal);
	border-color: var(--color-teal);
	color: var(--color-white);
	box-shadow: var(--shadow-glow);
}

.cat-filter-btn:focus-visible {
	outline: 3px solid var(--color-teal-bright);
	outline-offset: 2px;
}

.cat-filter-count {
	font-size: 0.78em;
	font-weight: 700;
	padding: 1px 9px;
	border-radius: 50px;
	background: rgba(10, 37, 64, 0.08);
	color: var(--color-muted);
}

.cat-filter-btn.is-active .cat-filter-count {
	background: rgba(255, 255, 255, 0.25);
	color: var(--color-white);
}

.cat-tile.is-hidden {
	display: none;
}

@keyframes catfade {
	from { opacity: 0; transform: translateY(10px) scale(0.98); }
	to { opacity: 1; transform: none; }
}

.cat-tile.catfade {
	animation: catfade 0.4s var(--ease-premium) both;
}

@media (prefers-reduced-motion: reduce) {
	.cat-tile.catfade {
		animation: none;
	}
}

@media (hover: none) {
	.cat-tile-cta {
		opacity: 1;
		transform: none;
	}
}

@media (prefers-reduced-motion: reduce) {
	.cat-tile,
	.cat-tile-img,
	.cat-tile-cta,
	.tile-arrow {
		transition: none;
	}
}

@media (max-width: 600px) {
	.cat-tiles {
		grid-template-columns: repeat(2, 1fr);
		gap: 12px;
	}
	.cat-group-head {
		flex-direction: column;
		gap: 8px;
		align-items: flex-start;
	}
	.cat-tile-name {
		font-size: 0.92rem;
	}
}

/* ==========================================================================
   REPAIR BANNER STRIP
   ========================================================================== */
.repair-banner-section {
	position: relative;
	padding: 80px 0;
	background: radial-gradient(circle at 85% 20%, rgba(22, 166, 217, 0.22) 0%, transparent 60%),
	            linear-gradient(135deg, var(--color-navy-deep), var(--color-navy-light));
	color: var(--color-white);
	overflow: hidden;
}

.repair-banner-section .glow-orb-repair {
	position: absolute;
	right: 10%;
	top: -50px;
	width: 250px;
	height: 250px;
	background-color: var(--color-teal-bright);
	filter: blur(100px);
	opacity: 0.25;
}

.repair-grid-overlay {
	position: absolute;
	inset: 0;
	background-image: 
		linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
		linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
	background-size: 50px 50px;
	mask-image: radial-gradient(circle at 80% 50%, black 20%, transparent 80%);
	-webkit-mask-image: radial-gradient(circle at 80% 50%, black 20%, transparent 80%);
	pointer-events: none;
}

.repair-container {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 40px;
	position: relative;
	z-index: 2;
}

.repair-content {
	max-width: 760px;
}

.repair-eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 6px 14px;
	background: rgba(22, 166, 217, 0.1);
	border: 1px solid rgba(22, 166, 217, 0.2);
	border-radius: 50px;
	font-size: 0.85rem;
	font-weight: 700;
	color: var(--color-teal-bright);
	margin-bottom: 16px;
}

.repair-title {
	font-size: clamp(1.6rem, 2.8vw, 2.3rem);
	color: var(--color-white) !important;
	margin-bottom: 12px;
}

.repair-text {
	font-size: clamp(1rem, 1.2vw, 1.15rem);
	color: var(--color-cream);
}

.repair-banner-section .btn {
	flex-shrink: 0;
}

/* ==========================================================================
   WHY US SECTION
   ========================================================================== */
/* ==========================================================================
   WHY US SECTION
   ========================================================================== */
.why-us-section {
	padding: 120px 0;
	background: radial-gradient(circle at 50% 0%, rgba(22, 166, 217, 0.06) 0%, transparent 65%),
	            #f5f8fc;
	position: relative;
	overflow: hidden;
}

.why-us-section::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 1px;
	background: linear-gradient(90deg, transparent, rgba(22, 166, 217, 0.15), transparent);
}

.why-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 30px;
	margin-top: 60px;
}

.why-card {
	padding: 48px 36px;
	border-radius: 24px;
	background: var(--color-white);
	border: 1px solid rgba(22, 166, 217, 0.08);
	box-shadow: 0 10px 40px rgba(10, 37, 64, 0.02);
	transition: all 0.5s var(--ease-premium);
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	position: relative;
	overflow: hidden;
}

/* Elegant top highlight that colors on hover */
.why-card::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 4px;
	background: linear-gradient(90deg, var(--color-teal-bright), var(--color-teal));
	opacity: 0;
	transition: opacity 0.4s var(--ease-premium);
}

.why-card:hover::after {
	opacity: 1;
}

.why-card:hover {
	transform: translateY(-8px);
	border-color: rgba(22, 166, 217, 0.35);
	box-shadow: 0 30px 60px -15px rgba(10, 37, 64, 0.1),
	            0 0 0 1px rgba(22, 166, 217, 0.03);
}

.why-icon-wrap {
	width: 58px;
	height: 58px;
	border-radius: 18px;
	background: rgba(22, 166, 217, 0.06);
	color: var(--color-teal);
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 28px;
	transition: all 0.4s var(--ease-premium);
	border: 1px solid rgba(22, 166, 217, 0.12);
}

.why-card:hover .why-icon-wrap {
	background: linear-gradient(135deg, var(--color-teal-bright) 0%, var(--color-teal) 100%);
	color: var(--color-white);
	transform: translateY(-2px);
	box-shadow: 0 8px 20px rgba(22, 166, 217, 0.25);
	border-color: transparent;
}

.why-icon {
	width: 24px;
	height: 24px;
	transition: transform 0.4s var(--ease-premium);
}

/* Custom Micro-animations for Header Icons on Card Hover */
.why-card:hover:nth-child(1) .why-icon {
	transform: rotate(144deg);
}

.why-card:hover:nth-child(2) .why-icon {
	transform: scale(1.1);
}

.why-card:hover:nth-child(3) .why-icon {
	transform: translateY(-2px) scale(1.05);
}

.why-card:hover:nth-child(4) .why-icon {
	transform: scale(1.15);
}

.why-title {
	font-size: 1.35rem;
	font-weight: 800;
	color: var(--color-navy);
	margin-bottom: 12px;
	letter-spacing: -0.01em;
	transition: color 0.3s ease;
	line-height: 1.35;
}

.why-card:hover .why-title {
	color: var(--color-teal-deep);
}

.why-text {
	font-size: 0.94rem;
	color: var(--color-muted);
	line-height: 1.65;
}

/* ==========================================================================
   FINAL CTA & CONTACT FORM REDESIGN
   ========================================================================== */
.final-cta-section {
	padding: 120px 0;
	background-color: var(--color-white);
}

.final-card-wrapper {
	border-radius: 36px;
	background: radial-gradient(circle at 50% -30%, rgba(22, 166, 217, 0.22) 0%, transparent 65%),
	            linear-gradient(150deg, var(--color-navy-deep), var(--color-navy-light));
	box-shadow: var(--shadow-premium);
	color: var(--color-white);
	padding: 72px;
	position: relative;
	overflow: hidden;
}

.orb-final {
	position: absolute;
	top: -50px;
	left: 50%;
	transform: translateX(-50%);
	width: 350px;
	height: 350px;
	background: var(--color-teal);
	filter: blur(100px);
	opacity: 0.15;
	pointer-events: none;
}

.final-card-grid {
	display: grid;
	grid-template-columns: 1.05fr 0.95fr;
	gap: 60px;
	align-items: center;
	position: relative;
	z-index: 2;
}

.final-cta-info {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
}

.final-eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-size: 0.85rem;
	font-weight: 700;
	color: var(--color-teal-bright);
	margin-bottom: 16px;
	padding: 6px 14px;
	background: rgba(22, 166, 217, 0.1);
	border: 1px solid rgba(22, 166, 217, 0.2);
	border-radius: 50px;
}

.final-title {
	font-size: clamp(2rem, 3.8vw, 2.7rem);
	color: var(--color-white) !important;
	margin-bottom: 16px;
	line-height: 1.2;
}

.final-text {
	font-size: 1.1rem;
	color: var(--color-cream);
	margin-bottom: 36px;
	line-height: 1.6;
}

.final-actions-btn {
	display: flex;
	gap: 16px;
	margin-bottom: 36px;
}

.final-phone-link-wrap {
	display: flex;
}

.final-phone-anchor {
	display: inline-flex;
	align-items: center;
	gap: 14px;
	font-family: 'Heebo', sans-serif;
	font-weight: 800;
	font-size: 1.6rem;
	color: var(--color-white);
}

.phone-ring-animation {
	width: 44px;
	height: 44px;
	border-radius: 50%;
	background: rgba(45, 188, 236, 0.15);
	color: var(--color-teal-bright);
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	animation: phoneRingCircle 2s infinite ease-in-out;
}

@keyframes phoneRingCircle {
	0% { box-shadow: 0 0 0 0px rgba(45, 188, 236, 0.4), 0 0 0 0px rgba(45, 188, 236, 0.2); }
	100% { box-shadow: 0 0 0 8px rgba(45, 188, 236, 0), 0 0 0 16px rgba(45, 188, 236, 0); }
}

.final-phone-svg {
	width: 22px;
	height: 22px;
	animation: phoneShake 2s infinite ease-in-out;
}

@keyframes phoneShake {
	0%, 80%, 100% { transform: rotate(0deg); }
	5% { transform: rotate(-10deg); }
	10% { transform: rotate(10deg); }
	15% { transform: rotate(-10deg); }
	20% { transform: rotate(10deg); }
}

.phone-label-text {
	font-size: 0.85rem;
	color: var(--color-cream);
	font-weight: 500;
	text-transform: uppercase;
	display: none; /* Can hidden on desktop, fallback label */
}

/* Glassmorphic input form panel */
.glass-form-card {
	background: rgba(255, 255, 255, 0.06);
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: var(--border-radius-lg);
	backdrop-filter: blur(30px);
	-webkit-backdrop-filter: blur(30px);
	padding: 40px;
	box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
}

.glass-form-card h3 {
	font-size: 1.5rem;
	color: var(--color-white) !important;
	font-weight: 700;
	margin-bottom: 8px;
}

.glass-form-card p {
	font-size: 0.95rem;
	color: var(--color-cream);
	margin-bottom: 28px;
}

.lead-generation-form {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.input-icon-wrapper {
	position: relative;
	width: 100%;
}

.input-svg {
	position: absolute;
	top: 50%;
	right: 18px; /* Position right for RTL text inputs */
	transform: translateY(-50%);
	width: 18px;
	height: 18px;
	color: rgba(255, 255, 255, 0.5);
	pointer-events: none;
	transition: var(--transition-fast);
}

.lead-generation-form input {
	width: 100%;
	background: rgba(255, 255, 255, 0.07);
	border: 1px solid rgba(255, 255, 255, 0.15);
	padding: 14px 48px 14px 18px; /* Extra padding right for icon */
	border-radius: 12px;
	color: var(--color-white);
	font-size: 1rem;
	transition: var(--transition-fast);
}

.lead-generation-form input::placeholder {
	color: rgba(255, 255, 255, 0.6);
}

.lead-generation-form input:focus {
	background: rgba(255, 255, 255, 0.12);
	border-color: var(--color-teal-bright);
	box-shadow: 0 0 0 4px rgba(45, 188, 236, 0.15);
}

.lead-generation-form input:focus + .input-svg {
	color: var(--color-teal-bright);
}

.submit-btn {
	width: 100%;
	padding: 16px;
	font-size: 1.1rem;
	margin-top: 10px;
}

.submit-btn:hover .btn-arrow {
	transform: translateX(-5px);
}

.form-feedback-message {
	font-size: 0.95rem;
	font-weight: 600;
	margin-top: 16px;
	text-align: center;
	opacity: 0;
	transition: opacity 0.3s ease;
}

.form-feedback-message.success {
	color: #34D399; /* Green success */
	opacity: 1;
}

.form-feedback-message.error {
	color: #F87171; /* Red error */
	opacity: 1;
}

.sr-only {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	border: 0;
}

/* ==========================================================================
   FOOTER AREA & CREDITS
   ========================================================================== */
.site-footer {
	background-color: var(--color-navy-deep);
	color: var(--color-cream);
	padding-top: 80px;
	border-top: 1px solid rgba(194, 205, 226, 0.08);
}

.footer-grid {
	display: grid;
	grid-template-columns: 1.2fr 0.9fr 0.9fr 1fr;
	gap: 40px;
	padding-bottom: 60px;
}

.footer-col h3 {
	font-size: 1.15rem;
	color: var(--color-white);
	margin-bottom: 24px;
	position: relative;
	padding-bottom: 10px;
}

.footer-col h3::after {
	content: '';
	position: absolute;
	bottom: 0;
	right: 0;
	width: 35px;
	height: 2px;
	background-color: var(--color-teal);
}

/* Brand Column */
.brand-col .footer-logo-link {
	display: inline-block;
	margin-bottom: 20px;
}

.footer-logo {
	max-height: 48px;
}

.footer-brand-desc {
	font-size: 0.95rem;
	color: var(--color-muted);
	margin-bottom: 24px;
	line-height: 1.6;
}

.footer-socials {
	display: flex;
	gap: 12px;
}

.social-circle {
	width: 38px;
	height: 38px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.05);
	color: var(--color-cream);
	display: flex;
	align-items: center;
	justify-content: center;
	transition: var(--transition-fast);
	border: 1px solid rgba(255, 255, 255, 0.05);
}

.social-circle:hover {
	background: var(--color-teal);
	color: var(--color-white);
	border-color: var(--color-teal);
	transform: translateY(-3px);
}

/* Nav Column */
.nav-col ul,
.cat-col ul {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.nav-col a,
.cat-col a {
	font-size: 0.95rem;
	color: var(--color-cream);
}

.nav-col a:hover,
.cat-col a:hover {
	color: var(--color-teal-bright);
	transform: translateX(-4px);
	display: inline-block;
}

.accent-link {
	color: var(--color-teal-bright) !important;
	font-weight: 700;
}

/* Contact Column */
.contact-list {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.contact-list li a {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	font-size: 0.95rem;
	color: var(--color-cream);
}

.contact-list li a:hover {
	color: var(--color-teal-bright);
}

.contact-svg {
	width: 18px;
	height: 18px;
	color: var(--color-teal);
	flex-shrink: 0;
}

.waze-btn {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	background: #2D2D2D;
	border: 1px solid rgba(255,255,255,0.08);
	padding: 10px 18px;
	border-radius: 50px;
	margin-top: 8px;
	font-weight: 700;
	font-size: 0.9rem;
	color: var(--color-white) !important;
	box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.waze-btn:hover {
	background: #444;
	transform: translateY(-2px);
}

.waze-svg-logo {
	width: 16px;
	height: 16px;
}

/* Bottom Bar */
.footer-col + .bottom-bar,
.site-footer .bottom-bar {
	border-top: 1px solid rgba(194, 205, 226, 0.05);
	padding: 24px 0;
	background-color: var(--color-navy-deep);
}

.bottom-bar-container {
	display: flex;
	justify-content: space-between;
	align-items: center;
	font-size: 0.88rem;
	color: var(--color-muted);
}

.copyright-text {
	font-weight: 500;
}

.credit-links {
	display: flex;
	gap: 10px;
	align-items: center;
}

.credit-links a:hover {
	color: var(--color-cream);
}

/* ==========================================================================
   MOBILE BOTTOM STICKY NAVIGATION TOOLBAR
   ========================================================================== */
.sticky-contact-toolbar {
	display: none;
	position: fixed;
	bottom: 0;
	left: 0;
	width: 100%;
	background: rgba(7, 26, 46, 0.9);
	backdrop-filter: blur(15px);
	-webkit-backdrop-filter: blur(15px);
	border-top: 1px solid rgba(194, 205, 226, 0.12);
	box-shadow: 0 -8px 25px rgba(0,0,0,0.25);
	z-index: 999;
}

.toolbar-item {
	flex: 1;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding: 12px 6px;
	color: var(--color-cream);
	font-size: 0.75rem;
	font-weight: 600;
	gap: 5px;
	border-left: 1px solid rgba(194, 205, 226, 0.08);
}

.toolbar-item:last-child {
	border-left: none;
}

.toolbar-item svg {
	width: 20px;
	height: 20px;
	color: var(--color-teal-bright);
}

.toolbar-item:hover {
	background: rgba(22, 166, 217, 0.1);
	color: var(--color-white);
}

/* ==========================================================================
   COLOR PICKER OVERLAY POPUP MODAL (TOP-BAR LINK)
   ========================================================================== */
.manifa-overlay {
	position: fixed;
	inset: 0;
	background: rgba(7, 22, 38, 0.8);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	z-index: 2000;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 20px;
	opacity: 0;
	visibility: hidden;
	transition: var(--transition-smooth);
}

.manifa-overlay.open {
	opacity: 1;
	visibility: visible;
}

.manifa-modal {
	width: 100%;
	max-width: 580px;
	border-radius: var(--border-radius-lg);
	background: rgba(255, 255, 255, 0.95);
	border: 1px solid rgba(194, 205, 226, 0.2);
	padding: 36px;
	position: relative;
	box-shadow: var(--shadow-premium);
	display: flex;
	flex-direction: column;
	max-height: 90vh;
	transform: scale(0.9);
	transition: var(--transition-smooth);
}

.manifa-overlay.open .manifa-modal {
	transform: scale(1);
}

.manifa-close-btn {
	position: absolute;
	top: 20px;
	left: 20px; /* Position top left in RTL */
	width: 36px;
	height: 36px;
	border-radius: 50%;
	background: rgba(10, 37, 64, 0.05);
	color: var(--color-navy);
	font-size: 1.5rem;
	font-weight: 300;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: var(--transition-fast);
}

.manifa-close-btn:hover {
	background: #E5E7EB;
	transform: rotate(90deg);
}

.manifa-modal h3 {
	font-size: 1.6rem;
	font-weight: 800;
	margin-bottom: 8px;
}

.manifa-modal p {
	font-size: 0.95rem;
	color: var(--color-muted);
	margin-bottom: 24px;
}

.manifa-scroll-container {
	overflow-y: auto;
	flex: 1;
	padding-left: 10px; /* Accounts for scrollbar overlay */
}

/* Styling custom scrollbars */
.manifa-scroll-container::-webkit-scrollbar {
	width: 6px;
}
.manifa-scroll-container::-webkit-scrollbar-track {
	background: transparent;
}
.manifa-scroll-container::-webkit-scrollbar-thumb {
	background: #D1D5DB;
	border-radius: 10px;
}

.manifa-section-title {
	font-family: 'Heebo', sans-serif;
	font-weight: 700;
	font-size: 1rem;
	color: var(--color-navy);
	margin-top: 20px;
	margin-bottom: 12px;
	border-bottom: 1.5px dashed rgba(10, 37, 64, 0.08);
	padding-bottom: 6px;
}

.manifa-list {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 12px;
}

.manifa-list li {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 10px;
	background: var(--color-white);
	border: 1px solid rgba(10, 37, 64, 0.06);
	border-radius: 8px;
	font-size: 0.95rem;
	font-weight: 600;
	color: var(--color-navy);
}

.manifa-color-circle {
	width: 20px;
	height: 20px;
	border-radius: 50%;
	border: 1px solid rgba(0,0,0,0.1);
	box-shadow: inset 0 1px 2px rgba(0,0,0,0.1);
}

.manifa-footer {
	margin-top: 28px;
	padding-top: 16px;
	border-top: 1px solid rgba(10, 37, 64, 0.08);
	display: flex;
	justify-content: flex-end;
}

/* ==========================================================================
   SCROLL REVEAL ANIMATIONS (SAFE INTRINSIC VISIBILITY)
   ========================================================================== */
.reveal-ready .reveal-el {
	opacity: 0;
	transform: translateY(28px);
	transition: opacity 0.8s var(--ease-premium), transform 0.8s var(--ease-premium);
	will-change: transform, opacity;
}

.reveal-ready .reveal-el.is-in {
	opacity: 1;
	transform: none;
}

/* Delay modifiers */
.reveal-ready .reveal-el:nth-child(2) { transition-delay: 0.1s; }
.reveal-ready .reveal-el:nth-child(3) { transition-delay: 0.2s; }
.reveal-ready .reveal-el:nth-child(4) { transition-delay: 0.3s; }

/* Disable transitions for users with preferences */
@media (prefers-reduced-motion: reduce) {
	* {
		animation: none !important;
		transition: none !important;
	}
	.reveal-ready .reveal-el {
		opacity: 1 !important;
		transform: none !important;
	}
	.card-3d-wrapper {
		transform: none !important;
	}
	.experience-badge-3d {
		transform: none !important;
	}
}

/* ==========================================================================
   RESPONSIVE DESIGN (MEDIA QUERIES)
   ========================================================================== */

@media (max-width: 1024px) {
	/* Nav Menu Collapse */
	.mobile-menu-toggle {
		display: flex;
		flex-direction: column;
		justify-content: space-between;
		width: 26px;
		height: 18px;
		background: transparent;
		cursor: pointer;
	}
	
	.mobile-menu-toggle .bar {
		width: 100%;
		height: 2px;
		background-color: var(--color-white);
		border-radius: 2px;
		transition: var(--transition-fast);
	}
	
	.site-header.scrolled-light .mobile-menu-toggle .bar {
		background-color: var(--color-navy);
	}
	
	/* Navbar Menu list Drawer styling */
	.main-nav {
		position: fixed;
		top: 0;
		right: -100%; /* Drawer hidden off-screen to the right in RTL */
		width: 300px;
		height: 100vh;
		background: rgba(7, 26, 46, 0.95);
		backdrop-filter: blur(25px);
		-webkit-backdrop-filter: blur(25px);
		border-left: 1px solid rgba(194, 205, 226, 0.1);
		padding: 100px 36px 40px;
		display: flex;
		flex-direction: column;
		z-index: 998;
		transition: right 0.5s var(--ease-premium);
		box-shadow: -10px 0 35px rgba(0,0,0,0.3);
	}
	
	.main-nav.open {
		right: 0;
	}
	
	.main-nav .nav-menu {
		flex-direction: column;
		align-items: flex-start;
		gap: 20px;
		width: 100%;
	}
	
	.main-nav .nav-menu li {
		width: 100%;
	}
	
	.main-nav a,
	body .site-header .main-nav a,
	body.black-view-page .site-header .main-nav a,
	body.contact-page .site-header .main-nav a {
		font-size: 1.15rem;
		display: block;
		padding: 6px 0;
		width: 100%;
		color: rgba(255, 255, 255, 0.85) !important;
	}
	.main-nav a:hover,
	body .site-header .main-nav a:hover,
	body.black-view-page .site-header .main-nav a:hover,
	body.contact-page .site-header .main-nav a:hover {
		color: #ffffff !important;
	}
	.main-nav a.active,
	body.black-view-page .site-header .main-nav a.active,
	body.contact-page .site-header .main-nav a.active {
		color: var(--color-teal-bright, #16a6d9) !important;
		font-weight: 700 !important;
	}
	.main-nav .dropdown-menu a,
	body .site-header .main-nav .dropdown-menu a,
	body.black-view-page .site-header .main-nav .dropdown-menu a,
	body.contact-page .site-header .main-nav .dropdown-menu a {
		color: rgba(255, 255, 255, 0.65) !important;
		font-size: 1rem !important;
	}
	.main-nav .dropdown-menu a:hover,
	body .site-header .main-nav .dropdown-menu a:hover,
	body.black-view-page .site-header .main-nav .dropdown-menu a:hover,
	body.contact-page .site-header .main-nav .dropdown-menu a:hover {
		color: #ffffff !important;
		background: transparent !important;
	}
	
	.dropdown-menu,
	.site-header.scrolled-light .main-nav .dropdown-menu {
		position: relative;
		top: 0;
		right: 0;
		transform: none !important;
		opacity: 1 !important;
		visibility: visible !important;
		background: rgba(4, 15, 28, 0.95) !important;
		border: none !important;
		border-radius: 10px !important;
		box-shadow: none !important;
		padding: 0 20px !important;
		max-height: 0;
		overflow: hidden;
		transition: max-height 0.4s var(--ease-premium);
	}
	
	.main-nav .has-dropdown.active .dropdown-menu {
		max-height: 600px;
	}
	
	.main-nav .has-dropdown.active .nav-arrow {
		transform: rotate(180deg);
	}
	
	.nav-phone-widget {
		display: none; /* Hidden on tablet nav header, accessed via top bar or footer */
	}
	
	/* Hero Responsive */
	.hero-scroll-container {
		height: 300vh;
	}
	
	.slide-content {
		padding-right: 0;
		max-width: 100%;
		align-items: center;
		text-align: center;
	}
	
	.hero-actions {
		justify-content: center;
	}
	
	.hero-trust-list {
		justify-content: center;
	}
	
	.hero-scroll-progress {
		left: 16px;
	}
	
	/* Stats & Layout Cards */
	.stats-grid {
		grid-template-columns: repeat(2, 1fr);
	}
	
	.stat-card {
		border-left: none;
		border-bottom: 1px solid rgba(194, 205, 226, 0.1);
	}
	
	.stat-card:nth-child(even) {
		border-right: 1px solid rgba(194, 205, 226, 0.1);
	}
	
	.stat-card:nth-child(3),
	.stat-card:nth-child(4) {
		border-bottom: none;
	}
	
	.about-grid {
		grid-template-columns: 1fr;
		gap: 40px;
	}
	
	.customizer-grid {
		grid-template-columns: 1fr;
	}
	
	.promo-grid {
		grid-template-columns: repeat(2, 1fr);
		grid-auto-rows: auto;
	}
	
	.promo-card,
	.promo-card.card-tall,
	.promo-card.card-wide {
		grid-column: span 1 !important;
		grid-row: auto !important;
		aspect-ratio: 4/3;
	}
	
	.categories-grid {
		grid-template-columns: repeat(2, 1fr);
	}
	
	.why-grid {
		grid-template-columns: repeat(2, 1fr);
	}
	
	.final-card-grid {
		grid-template-columns: 1fr;
		gap: 50px;
	}
	
	.final-card-wrapper {
		padding: 48px;
	}
	
	.footer-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 48px;
	}
}

@media (max-width: 768px) {
	.hero-scroll-container {
		height: 280vh;
	}
	
	.hero-scroll-progress {
		display: none;
	}
	
	.hero-scroll-hint {
		bottom: 80px;
	}
	
	.top-bar {
		display: none; /* Hide top bar on mobile screens */
	}
	
	.site-header {
		background: rgba(7, 26, 46, 0.95);
		backdrop-filter: blur(15px);
		-webkit-backdrop-filter: blur(15px);
		border-bottom: 1px solid rgba(194, 205, 226, 0.08);
	}
	
	.site-header .main-navbar {
		padding: 14px 0;
	}
	
	/* Show bottom contact toolbar on mobile */
	.sticky-contact-toolbar {
		display: flex;
	}
	
	body {
		padding-bottom: 64px; /* Space for toolbar */
	}
	
	.stats-grid {
		grid-template-columns: 1fr;
	}
	
	.stat-card {
		border: none !important;
		border-bottom: 1px solid rgba(194, 205, 226, 0.1) !important;
		padding: 32px 16px;
	}
	
	.stat-card:last-child {
		border-bottom: none !important;
	}
	
	.promo-grid {
		grid-template-columns: 1fr;
	}
	
	.promo-card {
		aspect-ratio: 4/3;
	}
	
	.categories-grid {
		grid-template-columns: 1fr;
	}
	
	.why-grid {
		grid-template-columns: 1fr;
	}
	
	.repair-container {
		flex-direction: column;
		align-items: flex-start;
	}
	
	.repair-banner-section {
		text-align: right;
	}
	
	.lead-generation-form input {
		padding: 12px 42px 12px 14px;
	}
	
	.glass-form-card {
		padding: 24px;
	}
	
	.bottom-bar-container {
		flex-direction: column;
		gap: 12px;
		text-align: center;
	}
	
	.credit-links {
		justify-content: center;
	}
}

@media (max-width: 480px) {
	.footer-grid {
		grid-template-columns: 1fr;
	}
	
	.hero-actions .btn {
		width: 100%;
	}
	
	.slide-content {
		padding: 0 8px;
	}
	
	.manifa-list {
		grid-template-columns: 1fr;
	}
	
	.panel-tabs {
		gap: 10px;
	}
	
	.tab-btn {
		font-size: 0.95rem;
	}
}

/* Optimize Header for Medium Screens to Prevent Wrapping and Overlaps */
@media (min-width: 1025px) and (max-width: 1300px) {
	.navbar-container {
		gap: 12px;
	}
	.site-logo img {
		max-height: 44px;
	}
	.main-nav .nav-menu {
		gap: 12px;
	}
	.main-nav a {
		font-size: 0.84rem;
	}
	.nav-phone-widget .phone-box {
		padding: 8px 12px;
		gap: 8px;
	}
	.phone-icon-wrap {
		width: 30px;
		height: 30px;
	}
	.phone-svg {
		width: 15px;
		height: 15px;
	}
	.phone-label {
		font-size: 0.7rem;
	}
	.phone-number {
		font-size: 0.9rem;
	}
}

/* ==========================================================================
   ABOUT PAGE STYLES
   ========================================================================== */

/* About Hero Section */
.about-hero-section {
	position: relative;
	padding: 120px 0 80px;
	background: #F8FAFC;
	border-bottom: 1px solid rgba(10, 37, 64, 0.06);
	overflow: hidden;
	text-align: center;
}

.about-hero-section::before {
	content: '';
	position: absolute;
	inset: 0;
	background-image: radial-gradient(rgba(10, 37, 64, 0.04) 1px, transparent 1px);
	background-size: 24px 24px;
	pointer-events: none;
	opacity: 0.8;
	z-index: 1;
}

.about-hero-glow {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 500px;
	height: 500px;
	background: radial-gradient(circle, rgba(22, 166, 217, 0.08) 0%, transparent 70%);
	pointer-events: none;
	z-index: 2;
	filter: blur(40px);
}

.about-hero-section .container {
	position: relative;
	z-index: 3;
}

/* Breadcrumbs */
.about-breadcrumbs {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 20px;
	list-style: none;
	padding: 0;
	font-size: 0.9rem;
}

.about-breadcrumbs ul {
	display: flex;
	align-items: center;
	gap: 10px;
	list-style: none;
	padding: 0;
	margin: 0;
}

.about-breadcrumbs a {
	color: rgba(10, 37, 64, 0.6);
	text-decoration: none;
	font-weight: 500;
	transition: color 0.3s ease;
}

.about-breadcrumbs a:hover {
	color: var(--color-teal);
}

.about-breadcrumbs li.active {
	color: var(--color-teal);
	font-weight: 700;
}

.about-breadcrumbs li.separator {
	color: rgba(10, 37, 64, 0.25);
}

/* Title & Subtitle */
.about-hero-title {
	font-family: 'Heebo', sans-serif;
	font-size: clamp(2.3rem, 4.5vw, 3.5rem);
	font-weight: 900;
	color: var(--color-navy);
	margin-bottom: 16px;
	letter-spacing: -0.02em;
	line-height: 1.2;
}

.about-hero-lead {
	font-size: clamp(1rem, 1.6vw, 1.25rem);
	color: var(--color-muted);
	max-width: 700px;
	margin: 0 auto;
	line-height: 1.6;
}

/* About Story Section */
.about-story-section {
	padding: 120px 0;
	background: var(--color-white);
}

.about-story-grid {
	display: grid;
	grid-template-columns: 1.2fr 1fr;
	gap: 70px;
	align-items: center;
}

.about-story-content {
	text-align: right;
}

.story-eyebrow {
	display: inline-block;
	font-family: 'Outfit', sans-serif;
	font-size: 0.9rem;
	font-weight: 700;
	color: var(--color-teal);
	text-transform: uppercase;
	letter-spacing: 0.05em;
	margin-bottom: 14px;
}

.story-title {
	font-family: 'Heebo', sans-serif;
	font-size: clamp(1.8rem, 3vw, 2.5rem);
	font-weight: 800;
	color: var(--color-navy);
	margin-bottom: 24px;
	line-height: 1.3;
}

.story-text-accent {
	font-size: 1.15rem;
	font-weight: 600;
	color: var(--color-navy-light);
	line-height: 1.65;
	margin-bottom: 22px;
}

.story-text-desc {
	font-size: 1rem;
	color: var(--color-muted);
	line-height: 1.7;
	margin-bottom: 20px;
}

.story-text-desc.text-muted {
	color: rgba(10, 37, 64, 0.65);
}

.story-cta-actions {
	display: flex;
	gap: 16px;
	margin-top: 36px;
}

/* Story Media Column */
.about-story-media {
	display: flex;
	justify-content: center;
	position: relative;
}

.about-media-wrapper {
	position: relative;
	border-radius: 24px;
	overflow: hidden;
	box-shadow: 0 20px 50px rgba(10, 37, 64, 0.08), 
	            0 1px 3px rgba(10, 37, 64, 0.02);
	border: 1px solid rgba(10, 37, 64, 0.05);
	background: var(--color-white);
	transition: transform 0.5s var(--ease-premium);
	z-index: 2;
}

.about-story-img {
	width: 100%;
	height: auto;
	display: block;
	transition: transform 0.6s var(--ease-premium);
}

.about-media-wrapper:hover {
	transform: translateY(-5px);
}

.about-media-wrapper:hover .about-story-img {
	transform: scale(1.04);
}

.about-media-badge {
	position: absolute;
	top: 20px;
	right: 20px;
	background: var(--color-teal);
	color: var(--color-white);
	padding: 6px 14px;
	border-radius: 50px;
	font-size: 0.8rem;
	font-weight: 700;
	letter-spacing: 0.05em;
	z-index: 10;
	box-shadow: 0 6px 15px rgba(22, 166, 217, 0.3);
}

.about-media-accent {
	position: absolute;
	inset: 0;
	border: 1px solid rgba(255, 255, 255, 0.15);
	border-radius: inherit;
	pointer-events: none;
	z-index: 3;
}

/* Backglow element for the image wrapper */
.about-story-media::before {
	content: '';
	position: absolute;
	width: 80%;
	height: 80%;
	top: 10%;
	left: 10%;
	background: radial-gradient(circle, rgba(22, 166, 217, 0.08) 0%, transparent 70%);
	pointer-events: none;
	z-index: 1;
}

/* About Values Section */
.about-values-section {
	padding: 120px 0;
	background: radial-gradient(circle at 50% 0%, rgba(22, 166, 217, 0.04) 0%, transparent 70%),
	            #f5f8fc;
	border-top: 1px solid rgba(10, 37, 64, 0.04);
	position: relative;
	overflow: hidden;
}

.values-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 28px;
	margin-top: 55px;
}

.value-card {
	padding: 44px 32px;
	border-radius: 24px;
	background: var(--color-white);
	border: 1px solid rgba(10, 37, 64, 0.05);
	box-shadow: 0 10px 30px -10px rgba(10, 37, 64, 0.04), 
	            0 1px 3px rgba(10, 37, 64, 0.01);
	transition: all 0.5s var(--ease-premium);
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	position: relative;
	overflow: hidden;
	text-align: right;
}

.value-card::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 4px;
	background: linear-gradient(90deg, var(--color-teal-bright), var(--color-teal));
	opacity: 0;
	transition: opacity 0.4s ease;
}

.value-card:hover::after {
	opacity: 1;
}

.value-card:hover {
	transform: translateY(-10px);
	border-color: rgba(22, 166, 217, 0.25);
	box-shadow: 0 25px 50px -12px rgba(10, 37, 64, 0.12),
	            0 0 0 1px rgba(22, 166, 217, 0.05);
}

.value-icon-box {
	width: 60px;
	height: 60px;
	border-radius: 18px;
	background: linear-gradient(135deg, rgba(22, 166, 217, 0.08) 0%, rgba(22, 166, 217, 0.02) 100%);
	color: var(--color-teal);
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 28px;
	transition: all 0.4s var(--ease-premium);
	border: 1px solid rgba(22, 166, 217, 0.1);
}

.value-card:hover .value-icon-box {
	background: linear-gradient(135deg, var(--color-teal-bright) 0%, var(--color-teal) 100%);
	color: var(--color-white);
	transform: scale(1.1) rotate(5deg);
	box-shadow: 0 10px 20px -5px rgba(22, 166, 217, 0.4);
	border-color: transparent;
}

.value-icon {
	width: 26px;
	height: 26px;
	transition: transform 0.3s ease;
}

.value-title {
	font-family: 'Heebo', sans-serif;
	font-size: 1.3rem;
	font-weight: 700;
	color: var(--color-navy);
	margin-bottom: 12px;
	letter-spacing: -0.01em;
	transition: color 0.3s ease;
}

.value-card:hover .value-title {
	color: var(--color-teal-deep);
}

.value-text {
	font-size: 0.95rem;
	color: var(--color-muted);
	line-height: 1.6;
}

/* ==========================================================================
   RESPONSIVE DESIGN ADDITIONS FOR ABOUT PAGE
   ========================================================================== */
@media (max-width: 1024px) {
	.about-story-grid {
		grid-template-columns: 1fr;
		gap: 50px;
	}
	
	.about-story-content {
		order: 1; /* Keep text first in stacked layout */
	}
	
	.about-story-media {
		order: 2;
	}
	
	.values-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 24px;
	}
}

@media (max-width: 768px) {
	.about-hero-section {
		padding: 100px 0 70px;
	}
	
	.about-story-section {
		padding: 80px 0;
	}
	
	.about-values-section {
		padding: 80px 0;
	}
	
	.values-grid {
		grid-template-columns: 1fr;
		gap: 20px;
	}
	
	.story-cta-actions {
		flex-direction: column;
		gap: 12px;
	}
	
	.story-cta-actions .btn {
		width: 100%;
		text-align: center;
		justify-content: center;
	}
}



/* ==========================================================================
   HPL PRODUCTS PAGE STYLING
   ========================================================================== */

/* 1. Hero Section */
.hpl-hero-section {
	position: relative;
	padding: 140px 0 100px;
	background: linear-gradient(135deg, var(--color-navy-deep) 0%, var(--color-navy) 100%);
	color: var(--color-white);
	overflow: hidden;
}

.hpl-hero-glow {
	position: absolute;
	top: -10%;
	left: 50%;
	transform: translateX(-50%);
	width: 800px;
	height: 350px;
	background: radial-gradient(circle, rgba(22, 166, 217, 0.15) 0%, rgba(22, 166, 217, 0) 70%);
	pointer-events: none;
	filter: blur(50px);
}

.hpl-breadcrumbs {
	margin-bottom: 24px;
}

.hpl-breadcrumbs ul {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	background: rgba(255, 255, 255, 0.05);
	padding: 8px 20px;
	border-radius: 50px;
	border: 1px solid rgba(255, 255, 255, 0.1);
	font-size: 0.88rem;
}

.hpl-breadcrumbs a {
	color: rgba(255, 255, 255, 0.7);
	transition: var(--transition-fast);
}

.hpl-breadcrumbs a:hover {
	color: var(--color-teal-bright);
}

.hpl-breadcrumbs .separator {
	color: rgba(255, 255, 255, 0.3);
}

.hpl-breadcrumbs .active {
	color: var(--color-white);
	font-weight: 600;
}

.hpl-hero-eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	color: var(--color-teal-bright);
	font-family: 'Heebo', sans-serif;
	font-weight: 700;
	font-size: 0.9rem;
	letter-spacing: 0.05em;
	margin-bottom: 16px;
}

.hpl-hero-title {
	font-size: clamp(1.8rem, 4vw, 3.5rem);
	font-weight: 900;
	color: var(--color-white);
	margin-bottom: 24px;
	letter-spacing: -0.02em;
}

.hpl-hero-lead {
	font-size: 1.25rem;
	max-width: 800px;
	margin: 0 auto;
	color: rgba(255, 255, 255, 0.85);
	line-height: 1.8;
}

/* 2. Grid & Cards */
.hpl-grid-section {
	padding: 100px 0;
	background-color: var(--color-light-bg);
}

.hpl-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 30px;
	margin-top: 50px;
}

.hpl-card-wrapper {
	perspective: 1000px;
}

.hpl-card {
	display: flex;
	flex-direction: column;
	background: var(--color-white);
	border-radius: var(--border-radius-lg);
	overflow: hidden;
	box-shadow: var(--shadow-soft);
	height: 100%;
	transition: var(--transition-smooth);
	border: 1px solid rgba(10, 37, 64, 0.05);
}

.hpl-card:hover {
	transform: translateY(-12px);
	box-shadow: var(--shadow-premium);
	border-color: rgba(22, 166, 217, 0.2);
}

.hpl-card-image-wrap {
	position: relative;
	height: 250px;
	overflow: hidden;
}

.hpl-card-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: var(--transition-smooth);
}

.hpl-card:hover .hpl-card-img {
	transform: scale(1.1);
}

.hpl-card-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(to bottom, rgba(10, 37, 64, 0) 40%, rgba(10, 37, 64, 0.6) 100%);
	pointer-events: none;
}

.hpl-card-content {
	padding: 24px;
	display: flex;
	flex-direction: column;
	flex-grow: 1;
}

.hpl-card-badge {
	align-self: flex-start;
	background: rgba(22, 166, 217, 0.1);
	color: var(--color-teal-deep);
	font-size: 0.78rem;
	font-weight: 700;
	padding: 4px 12px;
	border-radius: 50px;
	margin-bottom: 14px;
}

.hpl-card-title {
	font-size: 1.45rem;
	font-weight: 800;
	margin-bottom: 12px;
	color: var(--color-navy);
}

.hpl-card-desc {
	font-size: 0.95rem;
	color: var(--color-muted);
	line-height: 1.6;
	margin-bottom: 24px;
	flex-grow: 1;
}

.hpl-card-action {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-top: auto;
	font-family: 'Heebo', sans-serif;
	font-weight: 700;
	font-size: 0.95rem;
	color: var(--color-teal-deep);
	transition: var(--transition-fast);
}

.hpl-card:hover .hpl-card-action {
	color: var(--color-teal-bright);
}

.action-arrow {
	width: 18px;
	height: 18px;
	transform: rotate(180deg); /* RTL adjustment for arrow pointing left */
	transition: transform 0.3s ease;
}

.hpl-card:hover .action-arrow {
	transform: rotate(180deg) translateX(5px);
}

/* 3. Palette Section */
.hpl-palette-section {
	position: relative;
	padding: 100px 0;
	background: var(--color-navy-deep);
	overflow: hidden;
}

.orb-palette {
	top: 40%;
	right: -10%;
	width: 600px;
	height: 600px;
	background: radial-gradient(circle, rgba(22, 166, 217, 0.08) 0%, rgba(22, 166, 217, 0) 70%);
	pointer-events: none;
}

.palette-grid {
	display: grid;
	grid-template-columns: 1.2fr 0.8fr;
	gap: 60px;
	align-items: center;
}

.palette-desc {
	font-size: 1.1rem;
	color: rgba(255, 255, 255, 0.75);
	margin-bottom: 30px;
}

.palette-category-wrap {
	margin-bottom: 30px;
}

.palette-sub-title {
	font-family: 'Heebo', sans-serif;
	font-size: 1.15rem;
	font-weight: 700;
	color: var(--color-teal-bright);
	margin-bottom: 16px;
	border-right: 3px solid var(--color-teal);
	padding-right: 12px;
}

.swatches-grid {
	display: flex;
	flex-wrap: wrap;
	gap: 15px;
}

.swatch-item {
	display: flex;
	align-items: center;
	gap: 10px;
	background: rgba(255, 255, 255, 0.05);
	border: 1px solid rgba(255, 255, 255, 0.1);
	padding: 8px 14px;
	border-radius: 50px;
	color: var(--color-white);
	font-size: 0.88rem;
	transition: var(--transition-fast);
	cursor: default;
}

.swatch-item:hover {
	background: rgba(255, 255, 255, 0.12);
	border-color: var(--color-teal-bright);
	transform: translateY(-2px);
}

.swatch-color {
	width: 18px;
	height: 18px;
	border-radius: 50%;
	border: 1px solid rgba(255, 255, 255, 0.2);
}

.palette-media-wrapper {
	position: relative;
	border-radius: var(--border-radius-lg);
	overflow: hidden;
	padding: 10px;
}

.palette-media-img {
	width: 100%;
	height: auto;
	border-radius: var(--border-radius-md);
}

.palette-media-accent {
	position: absolute;
	inset: 0;
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: var(--border-radius-lg);
	pointer-events: none;
}

.palette-media-badge {
	position: absolute;
	bottom: 30px;
	left: 30px;
	right: 30px;
	background: rgba(7, 26, 46, 0.85);
	backdrop-filter: blur(15px);
	-webkit-backdrop-filter: blur(15px);
	border: 1px solid rgba(255, 255, 255, 0.1);
	padding: 20px;
	border-radius: var(--border-radius-md);
	color: var(--color-white);
}

.palette-media-badge h4 {
	color: var(--color-teal-bright);
	font-size: 1.1rem;
	margin-bottom: 6px;
}

.palette-media-badge p {
	font-size: 0.88rem;
	color: rgba(255, 255, 255, 0.8);
}

/* 4. Specs Section */
.hpl-specs-section {
	padding: 100px 0;
	background: var(--color-white);
}

.specs-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 40px;
	margin-top: 50px;
}

.spec-card {
	background: var(--color-light-bg);
	border: 1px solid rgba(10, 37, 64, 0.04);
	padding: 36px;
	border-radius: var(--border-radius-lg);
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 16px;
	transition: var(--transition-smooth);
}

.spec-card:hover {
	transform: translateY(-6px);
	box-shadow: var(--shadow-medium);
	border-color: rgba(22, 166, 217, 0.15);
	background: var(--color-white);
}

.spec-icon-wrap {
	width: 54px;
	height: 54px;
	border-radius: var(--border-radius-md);
	background: rgba(22, 166, 217, 0.08);
	color: var(--color-teal);
	display: flex;
	align-items: center;
	justify-content: center;
	transition: var(--transition-fast);
}

.spec-card:hover .spec-icon-wrap {
	background: var(--color-teal);
	color: var(--color-white);
}

.spec-icon {
	width: 26px;
	height: 26px;
}

.spec-card h3 {
	font-size: 1.35rem;
	font-weight: 800;
	color: var(--color-navy);
}

.spec-card p {
	font-size: 0.98rem;
	color: var(--color-muted);
	line-height: 1.65;
}

/* 5. Responsive Design */
@media (max-width: 1200px) {
	.hpl-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 24px;
	}
}

@media (max-width: 991px) {
	.palette-grid {
		grid-template-columns: 1fr;
		gap: 40px;
	}
	
	.hpl-hero-title {
		font-size: 2.8rem;
	}
}

@media (max-width: 768px) {
	.hpl-grid {
		grid-template-columns: 1fr;
	}
	
	.specs-grid {
		grid-template-columns: 1fr;
		gap: 24px;
	}
	
	.hpl-hero-section {
		padding: 120px 0 80px;
	}
	
	.hpl-hero-title {
		font-size: 2.2rem;
	}
	
	.spec-card {
		padding: 24px;
	}
}


/* ==========================================================================
   BLACK VIEW COLLECTION PAGE STYLES
   ========================================================================== */
.black-view-page {
	background-color: #0c0c0e;
	color: #e5e5e7;
}

/* 1. Hero Section */
.black-view-hero {
	position: relative;
	padding: 180px 0 100px;
	background: radial-gradient(circle at center bottom, #222226 0%, #0c0c0e 80%);
	overflow: hidden;
}

.bv-hero-glow {
	position: absolute;
	top: 10%;
	left: 50%;
	transform: translate(-50%, -10%);
	width: 600px;
	height: 600px;
	background: radial-gradient(circle, rgba(255, 255, 255, 0.03) 0%, transparent 65%);
	pointer-events: none;
}

.bv-breadcrumbs ul {
	display: inline-flex;
	gap: 8px;
	margin-bottom: 24px;
	font-size: 0.9rem;
	color: var(--color-cream);
	list-style: none;
	padding: 0;
}

.bv-breadcrumbs a {
	color: #a0a0a5;
	transition: var(--transition-fast);
}

.bv-breadcrumbs a:hover {
	color: #ffffff;
}

.bv-breadcrumbs .separator {
	opacity: 0.5;
}

.bv-breadcrumbs .active {
	color: #ffffff;
	font-weight: 600;
}

.bv-eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 8px 18px;
	background: rgba(255, 255, 255, 0.03);
	border: 1px solid rgba(255, 255, 255, 0.15);
	border-radius: 50px;
	font-family: 'Heebo', sans-serif;
	font-weight: 700;
	font-size: 0.9rem;
	color: #ffffff;
	margin-bottom: 24px;
	backdrop-filter: blur(10px);
	margin-left: auto;
	margin-right: auto;
}

.bv-eyebrow .pulse-dot {
	background-color: #ffffff;
	box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.2);
}

.bv-hero-content {
	display: flex;
	flex-direction: column;
	align-items: center;
}

.bv-hero-title {
	font-family: 'Heebo', sans-serif;
	font-size: clamp(2.5rem, 5vw, 4rem);
	font-weight: 900;
	color: #ffffff !important;
	margin-bottom: 20px;
	letter-spacing: -1px;
	line-height: 1.15;
}

.bv-hero-lead {
	font-size: clamp(1.1rem, 1.5vw, 1.35rem);
	color: #a0a0a5;
	max-width: 700px;
	margin: 0 auto 40px;
	line-height: 1.6;
	text-align: center;
}

.bv-hero-actions {
	display: flex;
	justify-content: center;
	gap: 20px;
	flex-wrap: wrap;
}

/* 2. Feature Cards Section */
.bv-features-section {
	padding: 80px 0;
	background-color: #0c0c0e;
	border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.features-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
	gap: 30px;
}

.feature-badge-card {
	display: flex;
	gap: 20px;
	background: #16161a;
	border: 1px solid rgba(255, 255, 255, 0.06);
	padding: 30px;
	border-radius: var(--border-radius-md);
	transition: var(--transition-smooth);
}

.feature-badge-card:hover {
	transform: translateY(-5px);
	border-color: rgba(255, 255, 255, 0.2);
	background: #1c1c22;
}

.badge-icon {
	width: 54px;
	height: 54px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.04);
	color: #d4af37; /* Luxury gold icon accent */
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	border: 1px solid rgba(255, 255, 255, 0.08);
}

.badge-icon svg {
	width: 26px;
	height: 26px;
}

.badge-text h3 {
	font-family: 'Heebo', sans-serif;
	font-size: 1.2rem;
	color: #ffffff;
	margin-bottom: 10px;
	font-weight: 700;
}

.badge-text p {
	font-size: 0.95rem;
	color: #a0a0a5;
	line-height: 1.6;
}

/* 3. Product Showcase & Filters */
.bv-showcase-section {
	padding: 100px 0;
	background-color: #0c0c0e;
}

.filter-tabs-container {
	display: flex;
	justify-content: center;
	margin-bottom: 50px;
}

.filter-tabs {
	display: inline-flex;
	background: rgba(255, 255, 255, 0.03);
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 50px;
	padding: 6px;
	flex-wrap: wrap;
	gap: 6px;
}

.filter-btn {
	background: transparent;
	color: #a0a0a5;
	padding: 12px 28px;
	border-radius: 50px;
	font-family: 'Heebo', sans-serif;
	font-weight: 600;
	font-size: 0.95rem;
	cursor: pointer;
	transition: var(--transition-fast);
}

.filter-btn:hover {
	color: #ffffff;
	background: rgba(255, 255, 255, 0.05);
}

.filter-btn.active {
	background: #ffffff;
	color: #0c0c0e;
	box-shadow: 0 10px 20px rgba(255, 255, 255, 0.1);
}

.bv-products-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
	gap: 30px;
}

.bv-product-card {
	background: #16161a;
	border: 1px solid rgba(255, 255, 255, 0.05);
	border-radius: var(--border-radius-md);
	overflow: hidden;
	display: flex;
	flex-direction: column;
	transition: var(--transition-smooth);
}

.bv-product-card.hidden {
	display: none !important;
}

.bv-product-card:hover {
	transform: translateY(-8px);
	border-color: rgba(255, 255, 255, 0.2);
	box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
}

.product-image-wrapper {
	position: relative;
	aspect-ratio: 1.1;
	background-color: #ffffff; /* White background to hide white borders of image file */
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 24px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.04);
	border-radius: var(--border-radius-md) var(--border-radius-md) 0 0;
}

.product-img {
	max-width: 90%;
	max-height: 90%;
	object-fit: contain;
	mix-blend-mode: multiply; /* Blends white image bg with wrapper white bg */
	transition: var(--transition-smooth);
}

.bv-product-card:hover .product-img {
	transform: scale(1.06);
}

.product-tag {
	position: absolute;
	top: 15px;
	right: 15px;
	background: rgba(12, 12, 14, 0.85);
	color: #ffffff;
	border: 1px solid rgba(255, 255, 255, 0.25);
	padding: 4px 12px;
	border-radius: 50px;
	font-size: 0.8rem;
	font-weight: 700;
	backdrop-filter: blur(5px);
	z-index: 2;
}

.product-overlay {
	position: absolute;
	inset: 0;
	background: rgba(12, 12, 14, 0.75);
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	transition: var(--transition-fast);
	z-index: 1;
}

.product-image-wrapper:hover .product-overlay {
	opacity: 1;
}

.product-info {
	padding: 24px;
	display: flex;
	flex-direction: column;
	flex-grow: 1;
}

.product-info h3 {
	font-family: 'Heebo', sans-serif;
	font-size: 1.2rem;
	color: #ffffff;
	margin-bottom: 12px;
	line-height: 1.4;
	font-weight: 700;
}

.product-short-desc {
	font-size: 0.95rem;
	color: #a0a0a5;
	margin-bottom: 24px;
	flex-grow: 1;
	line-height: 1.6;
}

.product-card-footer {
	margin-top: auto;
}

.btn-card-action {
	width: 100%;
	font-size: 0.95rem;
	padding: 12px 20px;
}

/* 4. Consultation Banner */
.bv-consultation-section {
	position: relative;
	padding: 100px 0;
	background: radial-gradient(circle at center top, #222226 0%, #0c0c0e 80%);
	border-top: 1px solid rgba(255, 255, 255, 0.04);
	overflow: hidden;
}

.mb-40 {
	margin-bottom: 40px;
}

.justify-center {
	justify-content: center;
}

.bv-form-wrapper {
	max-width: 650px;
	margin: 0 auto;
	padding: 40px;
	border-radius: var(--border-radius-lg);
	background: #16161a;
	border: 1px solid rgba(255, 255, 255, 0.08);
	box-shadow: var(--shadow-premium);
}

.bv-form-container .footer-lead-form input {
	background: rgba(255, 255, 255, 0.03);
	border: 1px solid rgba(255, 255, 255, 0.1);
	color: #ffffff;
}

.bv-form-container .footer-lead-form input::placeholder {
	color: #a0a0a5;
	opacity: 0.6;
}

.bv-form-container .footer-lead-form input:focus {
	border-color: #ffffff;
	background: rgba(255, 255, 255, 0.06);
}

/* 5. Quick View Modal */
.bv-modal-overlay {
	position: fixed;
	inset: 0;
	background-color: rgba(12, 12, 14, 0.85);
	backdrop-filter: blur(15px);
	-webkit-backdrop-filter: blur(15px);
	z-index: 2000;
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	visibility: hidden;
	transition: var(--transition-smooth);
	padding: 24px;
}

.bv-modal-overlay.open {
	opacity: 1;
	visibility: visible;
}

.bv-modal-content {
	width: 100%;
	max-width: 900px;
	border-radius: var(--border-radius-lg);
	background: #121214;
	border: 1px solid rgba(255, 255, 255, 0.1);
	overflow: hidden;
	position: relative;
	transform: scale(0.92);
	transition: var(--transition-smooth);
	box-shadow: 0 40px 80px rgba(0, 0, 0, 0.5);
}

.bv-modal-overlay.open .bv-modal-content {
	transform: scale(1);
}

.bv-modal-close {
	position: absolute;
	top: 15px;
	right: 15px;
	font-size: 2.2rem;
	color: #ffffff;
	background: transparent;
	border: none;
	cursor: pointer;
	z-index: 10;
	line-height: 1;
	transition: var(--transition-fast);
}

.bv-modal-close:hover {
	color: var(--color-teal-bright);
	transform: scale(1.1);
}

.bv-modal-body {
	padding: 50px 40px;
}

.bv-modal-grid {
	display: grid;
	grid-template-columns: 1.1fr 1.3fr;
	gap: 40px;
}

.bv-modal-image-col {
	background: #ffffff; /* White background to hide white borders of image file */
	border: 1px solid rgba(255, 255, 255, 0.06);
	border-radius: var(--border-radius-md);
	display: flex;
	align-items: center;
	justify-content: center;
	aspect-ratio: 1.1;
	padding: 30px;
}

.modal-large-img {
	max-width: 95%;
	max-height: 95%;
	object-fit: contain;
	mix-blend-mode: multiply;
}

.bv-modal-info-col {
	display: flex;
	flex-direction: column;
	justify-content: center;
	text-align: right;
}

.modal-product-tag {
	font-size: 0.85rem;
	font-weight: 700;
	color: #a0a0a5;
	opacity: 0.6;
	text-transform: uppercase;
	margin-bottom: 12px;
	display: inline-block;
}

.modal-product-title {
	font-family: 'Heebo', sans-serif;
	font-size: clamp(1.4rem, 2.3vw, 1.85rem);
	font-weight: 800;
	color: #ffffff;
	margin-bottom: 16px;
	line-height: 1.35;
}

.modal-product-desc {
	font-size: 1rem;
	color: #a0a0a5;
	line-height: 1.62;
	margin-bottom: 24px;
}

.modal-specs-wrapper h3 {
	font-family: 'Heebo', sans-serif;
	font-size: 1.1rem;
	color: #ffffff;
	margin-bottom: 12px;
	font-weight: 700;
}

.modal-specs-list {
	list-style: none;
	padding: 0;
	margin-bottom: 30px;
}

.modal-specs-list li {
	position: relative;
	padding-right: 18px;
	font-size: 0.95rem;
	color: #a0a0a5;
	margin-bottom: 8px;
}

.modal-specs-list li::before {
	content: '';
	position: absolute;
	top: 8px;
	right: 0;
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background-color: #ffffff;
}

.modal-actions .btn {
	width: 100%;
}

.whatsapp-svg-icon {
	width: 20px;
	height: 20px;
	margin-left: 8px;
	vertical-align: middle;
}

.black-view-page .color-picker-trigger {
	color: var(--color-teal-bright);
}

/* 6. Header/Footer Light Specific Tweaks & Rebranding to Matte Black & Gold */

/* Top bar background reset to light */
.black-view-page .top-bar {
	background: #f8fafc;
	border-bottom: 1px solid rgba(10, 37, 64, 0.06);
}

.black-view-page .secondary-nav a {
	color: var(--color-muted);
}

.black-view-page .secondary-nav a:hover,
.black-view-page .secondary-nav a.active {
	color: #111111;
}

.black-view-page .top-socials {
	color: var(--color-muted);
}

.black-view-page .top-socials a:hover {
	color: #111111;
}

.black-view-page .color-picker-trigger {
	color: var(--color-teal-deep);
}

/* Header style reset to solid white, overrides navy scrolled state */
.black-view-page .site-header {
	background: rgba(255, 255, 255, 0.92);
	border-bottom: 1px solid rgba(10, 37, 64, 0.08);
}

.black-view-page .site-header.scrolled {
	background: rgba(255, 255, 255, 0.96);
	border-bottom: 1px solid rgba(10, 37, 64, 0.1);
}

.black-view-page .site-header.scrolled-light {
	background: rgba(255, 255, 255, 0.96);
}

.black-view-page .site-header.scrolled-light .main-navbar a,
.black-view-page .site-header .main-navbar a {
	color: #0c1722;
}

/* Navbar active item & hover underline */
.black-view-page .main-nav a.active {
	color: #111111 !important;
	font-weight: 700;
}

.black-view-page .main-nav a::after {
	background: #111111;
}

.black-view-page .dropdown-menu {
	background: rgba(255, 255, 255, 0.98);
	border: 1px solid rgba(10, 37, 64, 0.1);
}

.black-view-page .dropdown-menu a {
	color: var(--color-muted);
}

.black-view-page .dropdown-menu a:hover {
	background: rgba(10, 37, 64, 0.05);
	color: #111111;
}

/* Phone widget reset to light styling */
.black-view-page .phone-icon-wrap {
	background: rgba(10, 37, 64, 0.05);
	color: #0c1722;
}

.black-view-page .nav-phone-widget .phone-box {
	border-color: rgba(10, 37, 64, 0.15);
	color: #0c1722;
}

.black-view-page .nav-phone-widget .phone-box:hover {
	background: #111111;
	border-color: #111111;
	color: #ffffff;
}

.black-view-page .nav-phone-widget .phone-box:hover .phone-icon-wrap {
	background: rgba(255, 255, 255, 0.15);
	color: #ffffff;
}

.black-view-page .phone-label {
	color: var(--color-muted);
}

.black-view-page .phone-number {
	color: #0c1722;
}

.black-view-page .nav-phone-widget .phone-box:hover .phone-number {
	color: #ffffff;
}

.black-view-page .nav-phone-widget .phone-box:hover .phone-label {
	color: rgba(255, 255, 255, 0.8);
}

/* Page core white background override */
.black-view-page {
	background-color: #ffffff;
	color: var(--color-muted);
}

.black-view-page h1,
.black-view-page h2,
.black-view-page h3,
.black-view-page h4 {
	color: var(--color-navy);
}

.black-view-page .section-title {
	color: var(--color-navy) !important;
}

/* Hero section full-bleed immersive style with lifestyle image background */
.black-view-page .black-view-hero {
	position: relative;
	background-image: url('images/black-view-hero.webp');
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	padding: 220px 0 160px;
	border-bottom: 1px solid rgba(10, 37, 64, 0.1);
	overflow: hidden;
}

/* Dark visual overlay to ensure high contrast for text */
.black-view-page .black-view-hero::before {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(to bottom, rgba(12, 12, 14, 0.75) 0%, rgba(12, 12, 14, 0.45) 50%, rgba(12, 12, 14, 0.8) 100%);
	z-index: 1;
	pointer-events: none;
}

.black-view-page .black-view-hero .container {
	position: relative;
	z-index: 2;
}

.black-view-page .bv-hero-lead {
	color: #e5e5e7 !important;
	text-shadow: 0 1px 4px rgba(0, 0, 0, 0.4);
}

.black-view-page .bv-eyebrow {
	background: rgba(255, 255, 255, 0.08) !important;
	border: 1px solid rgba(255, 255, 255, 0.25) !important;
	color: #ffffff !important;
	backdrop-filter: blur(5px);
}

.black-view-page .bv-eyebrow .pulse-dot {
	background-color: #ffffff !important;
	box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.3) !important;
}

.black-view-page .bv-hero-title {
	color: #ffffff !important;
	text-shadow: 0 2px 12px rgba(0, 0, 0, 0.4);
}

/* Breadcrumbs contrast in dark hero */
.black-view-page .black-view-hero .bv-breadcrumbs a {
	color: rgba(255, 255, 255, 0.7) !important;
}

.black-view-page .black-view-hero .bv-breadcrumbs a:hover {
	color: #ffffff !important;
}

.black-view-page .black-view-hero .bv-breadcrumbs .active {
	color: #ffffff !important;
}

.black-view-page .black-view-hero .bv-breadcrumbs .separator {
	color: rgba(255, 255, 255, 0.4) !important;
}

/* Action buttons specifically styled for the dark visual hero backdrop */
.black-view-page .black-view-hero .btn-primary {
	background: #ffffff !important;
	color: #111111 !important;
	box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25) !important;
}

.black-view-page .black-view-hero .btn-primary:hover {
	background: #f1f5f9 !important;
	color: #111111 !important;
	box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4) !important;
	transform: translateY(-4px);
}

.black-view-page .black-view-hero .btn-secondary {
	background: rgba(255, 255, 255, 0.04) !important;
	color: #ffffff !important;
	border: 1px solid rgba(255, 255, 255, 0.3) !important;
}

.black-view-page .black-view-hero .btn-secondary:hover {
	background: rgba(255, 255, 255, 0.15) !important;
	border-color: #ffffff !important;
	color: #ffffff !important;
	transform: translateY(-4px);
}

/* Highlight features banner section */
.black-view-page .bv-features-section {
	background-color: #ffffff;
	border-bottom: 1px solid rgba(10, 37, 64, 0.05);
	padding: 60px 0;
}

.black-view-page .feature-badge-card {
	background: #f8fafc;
	border: 1px solid rgba(10, 37, 64, 0.05);
}

.black-view-page .feature-badge-card:hover {
	background: #ffffff;
	border-color: #111111;
}

.black-view-page .badge-icon {
	color: #111111;
	border-color: rgba(10, 37, 64, 0.1);
	background: rgba(10, 37, 64, 0.03);
}

.black-view-page .badge-text h3 {
	color: var(--color-navy);
}

.black-view-page .badge-text p {
	color: var(--color-muted);
}

/* Showcase grid and category filters */
.black-view-page .bv-showcase-section {
	background-color: #ffffff;
	padding: 80px 0;
}

.black-view-page .filter-tabs {
	background: #f8fafc;
	border: 1px solid rgba(10, 37, 64, 0.06);
}

.black-view-page .filter-btn {
	color: var(--color-muted);
}

.black-view-page .filter-btn:hover {
	color: #111111;
	background: rgba(10, 37, 64, 0.03);
}

.black-view-page .filter-btn.active {
	background: #111111;
	color: #ffffff;
	box-shadow: 0 8px 20px rgba(17, 17, 17, 0.2);
}

.black-view-page .section-desc {
	color: var(--color-muted);
}

/* Product grid cards (white luxury style) */
.black-view-page .bv-product-card {
	background: #ffffff;
	border: 1px solid #e2e8f0;
	box-shadow: 0 4px 20px rgba(10, 37, 64, 0.02);
}

.black-view-page .bv-product-card:hover {
	border-color: #111111;
	box-shadow: 0 15px 35px rgba(10, 37, 64, 0.08);
}

.black-view-page .product-image-wrapper {
	background-color: #ffffff;
	border-bottom: 1px solid #f1f5f9;
}

.black-view-page .product-tag {
	background: #111111;
	color: #ffffff;
	border: none;
}

.black-view-page .product-short-desc {
	color: var(--color-muted);
}

.black-view-page .product-info h3 {
	color: var(--color-navy);
}

/* Buttons specifically for the white/black luxury theme */
.black-view-page .btn-primary {
	background: #111111;
	color: #ffffff;
	box-shadow: 0 4px 15px rgba(17, 17, 17, 0.15);
}

.black-view-page .btn-primary:hover {
	background: #2d2d30;
	color: #ffffff;
	box-shadow: 0 8px 25px rgba(17, 17, 17, 0.25);
}

.black-view-page .btn-secondary {
	background: #ffffff;
	color: #111111;
	border: 1px solid #111111;
}

.black-view-page .btn-secondary:hover {
	background: #f8fafc;
	border-color: #111111;
	color: #111111;
}

/* Footer re-theme to solid light styling */
.black-view-page .site-footer {
	background: #f8fafc;
	border-top: 1px solid rgba(10, 37, 64, 0.08);
	color: var(--color-navy);
}

.black-view-page .site-footer .bottom-bar {
	background: #f1f5f9;
	border-top: 1px solid rgba(10, 37, 64, 0.05);
	color: var(--color-muted);
}

.black-view-page .site-footer h3 {
	color: var(--color-navy);
	border-right: 3px solid #111111;
}

.black-view-page .site-footer a:hover {
	color: var(--color-teal);
}

.black-view-page .social-circle {
	background: rgba(10, 37, 64, 0.05);
	color: var(--color-navy);
}

.black-view-page .social-circle:hover {
	background: #111111;
	color: #ffffff;
}

.black-view-page .contact-list a:hover {
	color: var(--color-teal);
}

/* Consultation form input focus states & layout fixes */
.black-view-page .bv-form-wrapper {
	background: #ffffff;
	border: 1px solid rgba(10, 37, 64, 0.08);
	box-shadow: var(--shadow-premium);
}

.black-view-page .footer-lead-form {
	display: flex;
	flex-direction: column;
	gap: 20px;
	width: 100%;
}

.black-view-page .footer-lead-form .form-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 20px;
	width: 100%;
}

@media (max-width: 768px) {
	.black-view-page .footer-lead-form .form-row {
		grid-template-columns: 1fr;
		gap: 20px;
	}
}

.black-view-page .footer-lead-form .form-group {
	width: 100%;
}

.black-view-page .footer-lead-form .input-icon-wrapper {
	position: relative;
	width: 100%;
}

.black-view-page .footer-lead-form .input-svg {
	position: absolute;
	top: 50%;
	right: 18px;
	transform: translateY(-50%);
	width: 18px;
	height: 18px;
	color: rgba(10, 37, 64, 0.4);
	pointer-events: none;
	transition: var(--transition-fast);
	z-index: 2;
}

.black-view-page .bv-form-container .footer-lead-form input {
	width: 100% !important;
	background: #ffffff !important;
	border: 1px solid rgba(10, 37, 64, 0.15) !important;
	padding: 14px 48px 14px 18px !important;
	border-radius: 12px !important;
	color: var(--color-navy) !important;
	font-size: 1rem !important;
	transition: var(--transition-fast) !important;
	box-sizing: border-box !important;
}

.black-view-page .bv-form-container .footer-lead-form input:focus {
	border-color: #111111 !important;
	box-shadow: 0 0 0 3px rgba(17, 17, 17, 0.08) !important;
}

.black-view-page .bv-form-container .footer-lead-form input:focus + .input-svg {
	color: #111111 !important;
}

.black-view-page .bv-form-container .footer-lead-form input::placeholder {
	color: var(--color-muted) !important;
	opacity: 0.6 !important;
}

/* Overrides for consultation section background and text color to be visible on white */
.black-view-page .bv-consultation-section {
	background: radial-gradient(circle at center top, #f8fafc 0%, #ffffff 100%) !important;
	border-top: 1px solid rgba(10, 37, 64, 0.06) !important;
	padding: 80px 0;
	position: relative;
	overflow: hidden;
}

.black-view-page .bv-consultation-section .section-title {
	color: var(--color-navy) !important;
}

.black-view-page .bv-consultation-section .section-desc {
	color: var(--color-muted) !important;
}

/* Overrides for footer text and link visibility in light theme */
.black-view-page .site-footer p,
.black-view-page .site-footer span,
.black-view-page .site-footer li {
	color: var(--color-muted) !important;
}

.black-view-page .site-footer a {
	color: var(--color-navy) !important;
}

.black-view-page .site-footer a:hover {
	color: var(--color-teal) !important;
}

.black-view-page .site-footer .bottom-bar p,
.black-view-page .site-footer .bottom-bar a {
	color: var(--color-muted) !important;
}

.black-view-page .site-footer .bottom-bar a:hover {
	color: var(--color-teal) !important;
}

.black-view-page .site-footer .contact-list svg {
	color: var(--color-teal) !important;
}

.black-view-page .site-footer .waze-btn {
	background: var(--color-teal) !important;
	border-color: var(--color-teal) !important;
}

.black-view-page .site-footer .waze-btn span {
	color: #ffffff !important;
}

.black-view-page .site-footer .waze-btn:hover {
	background: var(--color-teal-bright) !important;
	border-color: var(--color-teal-bright) !important;
}


/* Modal details and layout fixes to prevent clipping */
.black-view-page .bv-modal-overlay {
	background-color: rgba(12, 12, 14, 0.4);
}

.black-view-page .bv-modal-content {
	background: #ffffff;
	border: 1px solid rgba(10, 37, 64, 0.1);
	box-shadow: 0 30px 70px rgba(10, 37, 64, 0.15);
	max-width: 950px !important;
	width: 95% !important;
}

.black-view-page .bv-modal-grid {
	grid-template-columns: 1fr 1.4fr !important;
	gap: 30px !important;
}

.black-view-page .bv-modal-image-col {
	background: #ffffff;
	border: 1px solid rgba(10, 37, 64, 0.05);
	min-width: 0 !important;
	aspect-ratio: 1.05 !important;
}

.black-view-page .bv-modal-info-col {
	min-width: 0 !important;
}

.black-view-page .modal-product-tag {
	color: var(--color-teal-deep);
}

.black-view-page .modal-product-title {
	color: var(--color-navy);
	font-size: clamp(1.3rem, 2vw, 1.7rem) !important;
	word-wrap: break-word;
	word-break: break-word;
}

.black-view-page .modal-product-desc {
	color: var(--color-muted);
}

.black-view-page .modal-specs-wrapper h3 {
	color: var(--color-navy);
}

.black-view-page .modal-specs-list li {
	color: var(--color-muted);
}

.black-view-page .modal-specs-list li::before {
	background-color: #111111;
}

.black-view-page .bv-modal-close {
	color: var(--color-navy);
}

.black-view-page .bv-modal-close:hover {
	color: var(--color-teal-deep);
}

.black-view-page .bv-modal-info-col .btn {
	white-space: normal !important;
	text-align: center;
	padding: 12px 20px !important;
	font-size: 0.95rem !important;
}

/* Mobile sticky toolbar */
.black-view-page .sticky-contact-toolbar {
	background: rgba(255, 255, 255, 0.98);
	border-top: 1px solid rgba(10, 37, 64, 0.08);
}

.black-view-page .sticky-contact-toolbar .toolbar-item {
	color: var(--color-muted);
}

.black-view-page .sticky-contact-toolbar .toolbar-item:hover {
	color: #111111;
}

/* 7. Responsiveness */
@media (max-width: 1024px) {
	.bv-products-grid {
		grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
	}
	.black-view-page .bv-hero-showcase {
		aspect-ratio: 2/1;
		margin-top: 35px;
	}
}

@media (max-width: 768px) {
	.bv-modal-grid {
		grid-template-columns: 1fr;
		gap: 30px;
	}
	.bv-modal-body {
		padding: 30px 20px;
	}
	.bv-modal-close {
		top: 10px;
		right: 10px;
	}
	.bv-modal-image-col {
		padding: 15px;
	}
	.bv-hero-content {
		padding-top: 40px;
	}
	.bv-form-wrapper {
		padding: 24px;
	}
	.black-view-page .bv-hero-showcase {
		aspect-ratio: 1.8/1;
		margin-top: 25px;
	}
}

/* ==========================================================================
   NEW REDESIGNED PAGES STYLES (REPAIR, CONTACT, STANDARDS, BLOG)
   ========================================================================== */

/* 1. New Page Heroes */
.repair-hero-section,
.contact-hero-section,
.standards-hero-section,
.blog-hero-section,
.statement-hero-section {
	position: relative;
	padding: 140px 0 90px;
	background: #F8FAFC;
	border-bottom: 1px solid rgba(10, 37, 64, 0.06);
	overflow: hidden;
	text-align: center;
}

.repair-hero-section::before,
.contact-hero-section::before,
.standards-hero-section::before,
.blog-hero-section::before,
.statement-hero-section::before {
	content: '';
	position: absolute;
	inset: 0;
	background-image: radial-gradient(rgba(10, 37, 64, 0.04) 1px, transparent 1px);
	background-size: 24px 24px;
	pointer-events: none;
	opacity: 0.8;
	z-index: 1;
}

.repair-hero-glow,
.contact-hero-glow,
.standards-hero-glow,
.blog-hero-glow,
.statement-hero-glow {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 500px;
	height: 500px;
	background: radial-gradient(circle, rgba(22, 166, 217, 0.08) 0%, transparent 70%);
	pointer-events: none;
	z-index: 2;
	filter: blur(40px);
}

.repair-hero-section .container,
.contact-hero-section .container,
.standards-hero-section .container,
.blog-hero-section .container,
.statement-hero-section .container {
	position: relative;
	z-index: 3;
}

.repair-hero-title,
.contact-hero-title,
.standards-hero-title,
.blog-hero-title,
.statement-hero-title {
	font-family: 'Heebo', sans-serif;
	font-size: clamp(2.3rem, 4.5vw, 3.5rem);
	font-weight: 900;
	color: var(--color-navy);
	margin-bottom: 16px;
	letter-spacing: -0.02em;
	line-height: 1.2;
}

.repair-hero-lead,
.contact-hero-lead,
.standards-hero-lead,
.blog-hero-lead,
.statement-hero-lead {
	font-size: clamp(1rem, 1.6vw, 1.25rem);
	color: var(--color-muted);
	max-width: 700px;
	margin: 0 auto;
	line-height: 1.6;
}

/* 2. Before/After Comparison Slider (Repair Page) */
.repair-comparison-section {
	padding: 80px 0;
	background: var(--color-white);
}

.comparison-slider-wrapper {
	max-width: 900px;
	margin: 40px auto 0;
	border-radius: var(--border-radius-lg);
	overflow: hidden;
	box-shadow: var(--shadow-premium);
}

.before-after-container {
	position: relative;
	width: 100%;
	height: 500px;
	overflow: hidden;
	user-select: none;
}

.image-side {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	overflow: hidden;
}

.comparison-img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.side-before {
	z-index: 1;
}

.side-after {
	z-index: 2;
	width: 100%;
	clip-path: polygon(0 0, 50% 0, 50% 100%, 0 100%);
}

.comparison-label {
	position: absolute;
	bottom: 24px;
	padding: 8px 16px;
	background: rgba(10, 37, 64, 0.85);
	color: var(--color-white);
	font-family: 'Heebo', sans-serif;
	font-weight: 700;
	font-size: 0.85rem;
	border-radius: var(--border-radius-sm);
	z-index: 3;
	backdrop-filter: blur(5px);
}

.label-before {
	left: 24px;
}

.label-after {
	right: 24px;
}

.slider-handle {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 50%;
	width: 4px;
	background: var(--color-white);
	z-index: 4;
	cursor: ew-resize;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	transform: translateX(-50%);
}

.handle-line {
	width: 2px;
	height: 50%;
	background: rgba(255, 255, 255, 0.5);
}

.handle-button {
	width: 48px;
	height: 48px;
	border-radius: 50%;
	background: var(--color-teal);
	color: var(--color-white);
	border: 3px solid var(--color-white);
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: var(--shadow-medium);
	transition: transform 0.2s ease;
}

.handle-button svg {
	width: 16px;
	height: 16px;
	fill: currentColor;
}

.handle-button svg:first-child {
	margin-left: -2px;
}

.handle-button svg:last-child {
	margin-right: -2px;
}

.slider-handle:hover .handle-button {
	transform: scale(1.1);
}

/* 3. Repair Services Grid & Timeline */
.repair-services-section {
	padding: 80px 0;
	background: var(--color-light-bg);
}

.repair-services-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 32px;
	margin-top: 48px;
}

.repair-workflow-section {
	padding: 80px 0;
	background: var(--color-white);
}

.workflow-timeline-wrapper {
	margin-top: 60px;
}

/* 4. Contact Page Custom Styles */
.contact-details-section {
	padding: 80px 0;
	background: var(--color-white);
}

.contact-page-grid {
	display: grid;
	grid-template-columns: 1.2fr 1fr;
	gap: 60px;
	align-items: start;
}

.contact-form-wrapper {
	padding: 40px;
	border-radius: var(--border-radius-lg);
}

/* Contact Page Form styling for light theme readability */
.contact-page .contact-form-wrapper {
	background: #ffffff;
	border: 1px solid rgba(10, 37, 64, 0.08);
	box-shadow: var(--shadow-premium);
}

.contact-page .glass-form-card {
	background: transparent !important;
	border: none !important;
	box-shadow: none !important;
	padding: 0 !important;
	backdrop-filter: none !important;
	-webkit-backdrop-filter: none !important;
}

.contact-page .glass-form-card h3 {
	color: var(--color-navy) !important;
}

.contact-page .glass-form-card p {
	color: var(--color-muted) !important;
}

.contact-page .lead-generation-form input {
	background: #ffffff !important;
	border: 1px solid rgba(10, 37, 64, 0.15) !important;
	color: var(--color-navy) !important;
}

.contact-page .lead-generation-form input::placeholder {
	color: var(--color-muted) !important;
	opacity: 0.6 !important;
}

.contact-page .lead-generation-form input:focus {
	border-color: var(--color-teal) !important;
	box-shadow: 0 0 0 3px rgba(22, 166, 217, 0.15) !important;
	background: #ffffff !important;
}

.contact-page .lead-generation-form .input-svg {
	color: rgba(10, 37, 64, 0.4) !important;
}

.contact-page .lead-generation-form input:focus + .input-svg {
	color: var(--color-teal) !important;
}

.contact-page .lead-generation-form .submit-btn {
	background: var(--color-teal) !important;
	color: #ffffff !important;
	box-shadow: var(--shadow-glow) !important;
}

.contact-page .lead-generation-form .submit-btn:hover {
	background: var(--color-teal-bright) !important;
	box-shadow: 0 20px 40px rgba(22, 166, 217, 0.35) !important;
}

.text-area-wrapper textarea {
	width: 100%;
	padding: 16px 20px;
	border-radius: var(--border-radius-md);
	border: 1px solid rgba(10, 37, 64, 0.1);
	background: rgba(255, 255, 255, 0.7);
	color: var(--color-navy);
	font-family: inherit;
	resize: vertical;
	transition: var(--transition-fast);
}

.text-area-wrapper textarea:focus {
	border-color: var(--color-teal);
	background: var(--color-white);
	box-shadow: 0 0 0 3px rgba(22, 166, 217, 0.15);
}

.info-cards-stack {
	display: flex;
	flex-direction: column;
	gap: 24px;
}

.info-card {
	display: flex;
	gap: 24px;
	padding: 24px;
	border-radius: var(--border-radius-md);
	align-items: center;
	text-align: right;
}

.info-icon {
	width: 54px;
	height: 54px;
	border-radius: 50%;
	background: rgba(22, 166, 217, 0.1);
	color: var(--color-teal);
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.info-icon svg {
	width: 24px;
	height: 24px;
}

.info-texts h4 {
	font-size: 1.15rem;
	font-weight: 700;
	color: var(--color-navy);
	margin-bottom: 6px;
}

.info-texts p {
	font-size: 0.9rem;
	color: var(--color-muted);
	margin-bottom: 4px;
}

.info-link {
	font-family: 'Outfit', sans-serif;
	font-size: 1.1rem;
	font-weight: 700;
	color: var(--color-teal);
	transition: var(--transition-fast);
}

.info-link:hover {
	color: var(--color-teal-bright);
}

/* 5. FAQ Accordion Styles */
.faq-accordion-section {
	padding: 80px 0;
	background: var(--color-light-bg);
}

.faq-accordion-wrapper {
	max-width: 800px;
	margin: 48px auto 0;
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.faq-item {
	border-radius: var(--border-radius-md);
	overflow: hidden;
	transition: var(--transition-smooth);
}

.faq-trigger {
	width: 100%;
	padding: 24px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	background: transparent;
	color: var(--color-navy);
	font-family: 'Heebo', sans-serif;
	font-weight: 700;
	font-size: 1.1rem;
	text-align: right;
	cursor: pointer;
	transition: var(--transition-fast);
}

.faq-trigger:hover {
	color: var(--color-teal);
}

.faq-icon {
	color: var(--color-teal);
	transition: transform 0.4s var(--ease-premium);
	flex-shrink: 0;
	margin-right: 12px;
}

.faq-icon svg {
	display: block;
}

.faq-content {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.4s var(--ease-premium), padding 0.4s var(--ease-premium);
	padding: 0 24px;
	font-size: 0.95rem;
	color: var(--color-muted);
	line-height: 1.7;
}

.faq-item.active .faq-content {
	max-height: 250px;
	padding-bottom: 24px;
}

.faq-item.active .faq-icon {
	transform: rotate(45deg);
}

/* 6. Accessibility Standards CAD Blueprint Styles */
.standards-blueprint-section {
	padding: 80px 0;
	background: var(--color-white);
}

.blueprint-interactive-container {
	display: grid;
	grid-template-columns: 1.5fr 1fr;
	gap: 40px;
	margin-top: 48px;
	padding: 32px;
	border-radius: var(--border-radius-lg);
	align-items: center;
}

.blueprint-canvas {
	position: relative;
	background: #0d2847;
	border: 2px solid rgba(255, 255, 255, 0.1);
	border-radius: var(--border-radius-md);
	height: 400px;
	overflow: hidden;
	box-shadow: inset 0 0 40px rgba(0, 0, 0, 0.5);
}

.blueprint-grid {
	position: absolute;
	inset: 0;
	background-size: 20px 20px;
	background-image: linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
	                  linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
	pointer-events: none;
}

.blueprint-cad-frame {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 260px;
	height: 260px;
	border: 2px solid rgba(255, 255, 255, 0.3);
}

.blueprint-wall {
	position: absolute;
	background: rgba(255, 255, 255, 0.2);
}

.wall-outer-top { top: 0; left: 0; right: 0; height: 12px; }
.wall-outer-right { top: 0; right: 0; bottom: 0; width: 12px; }
.wall-outer-bottom { bottom: 0; left: 0; right: 0; height: 12px; }
.wall-outer-left { top: 0; left: 0; bottom: 0; width: 12px; }

.blueprint-toilet {
	position: absolute;
	bottom: 20px;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	flex-direction: column;
	align-items: center;
	z-index: 2;
}

.toilet-tank {
	width: 50px;
	height: 18px;
	border: 2px solid var(--color-teal);
	background: rgba(22, 166, 217, 0.2);
}

.toilet-bowl {
	width: 34px;
	height: 48px;
	border: 2px solid var(--color-teal);
	border-radius: 0 0 16px 16px;
	background: rgba(22, 166, 217, 0.1);
	margin-top: -2px;
}

.blueprint-grab-bar {
	position: absolute;
	background: #E86B27;
	border: 1px solid var(--color-white);
	z-index: 3;
}

.gb-foldable {
	bottom: 30px;
	left: calc(50% - 40px);
	width: 6px;
	height: 60px;
	border-radius: 3px;
}

.gb-l-shape {
	bottom: 30px;
	left: calc(50% + 34px);
	width: 6px;
	height: 70px;
	border-radius: 3px;
}

.blueprint-turning-circle {
	position: absolute;
	top: calc(50% - 65px);
	left: calc(50% - 65px);
	width: 130px;
	height: 130px;
	border: 1px dashed rgba(255, 255, 255, 0.25);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 1;
}

.radius-text {
	font-size: 0.65rem;
	color: rgba(255, 255, 255, 0.5);
	font-family: 'Heebo', sans-serif;
	text-align: center;
}

.blueprint-dim {
	position: absolute;
	font-size: 0.6rem;
	color: #82C247;
	font-family: 'Outfit', sans-serif;
	font-weight: 600;
}

.dim-h-total {
	right: -75px;
	top: 50%;
	transform: rotate(90deg) translateY(-50%);
}

.dim-w-total {
	bottom: -30px;
	left: 50%;
	transform: translateX(-50%);
}

.dim-toilet-space {
	bottom: 50px;
	left: calc(50% - 85px);
}

.blueprint-legend {
	text-align: right;
}

.blueprint-legend h3 {
	font-size: 1.3rem;
	color: var(--color-navy);
	margin-bottom: 16px;
}

.legend-list {
	display: flex;
	flex-direction: column;
	gap: 12px;
	padding: 0;
}

.legend-list li {
	font-size: 0.95rem;
	color: var(--color-muted);
	display: flex;
	align-items: center;
	gap: 12px;
}

.legend-color-dot {
	width: 12px;
	height: 12px;
	border-radius: 50%;
	flex-shrink: 0;
}

.standards-rules-section {
	padding: 80px 0;
	background: var(--color-light-bg);
}

.standards-rules-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 32px;
	margin-top: 48px;
}

.standards-download-section {
	padding: 80px 0;
	background: var(--color-white);
}

.download-card {
	max-width: 700px;
	margin: 0 auto;
	padding: 48px;
	border-radius: var(--border-radius-lg);
}

.download-icon {
	color: var(--color-teal);
	margin-bottom: 20px;
}

.download-card h3 {
	font-size: 1.7rem;
	margin-bottom: 12px;
}

/* 7. Blog Editorial & Grid Styles */
.blog-grid-section {
	padding: 80px 0;
	background: var(--color-white);
}

.featured-blog-card {
	display: grid;
	grid-template-columns: 1.2fr 1fr;
	gap: 48px;
	border-radius: var(--border-radius-lg);
	overflow: hidden;
	margin-bottom: 60px;
	align-items: center;
}

.featured-img-wrap {
	height: 400px;
	overflow: hidden;
}

.featured-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: var(--transition-smooth);
}

.featured-blog-card:hover .featured-img {
	transform: scale(1.05);
}

.featured-content {
	padding: 40px;
	text-align: right;
}

.blog-tag {
	display: inline-block;
	padding: 6px 12px;
	background: rgba(22, 166, 217, 0.1);
	color: var(--color-teal);
	font-family: 'Heebo', sans-serif;
	font-weight: 700;
	font-size: 0.8rem;
	border-radius: var(--border-radius-sm);
	margin-bottom: 16px;
}

.featured-title {
	font-size: 1.8rem;
	font-weight: 800;
	margin-bottom: 16px;
	line-height: 1.3;
}

.featured-title a:hover {
	color: var(--color-teal);
}

.featured-excerpt {
	font-size: 0.95rem;
	color: var(--color-muted);
	margin-bottom: 24px;
	line-height: 1.6;
}

.featured-meta, .card-meta {
	display: flex;
	gap: 12px;
	font-size: 0.85rem;
	color: var(--color-muted);
	font-family: 'Outfit', sans-serif;
}

.meta-separator {
	opacity: 0.5;
}

.blog-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 32px;
}

.blog-card {
	border-radius: var(--border-radius-md);
	overflow: hidden;
	display: flex;
	flex-direction: column;
	height: 100%;
}

.card-img-wrap {
	height: 220px;
	overflow: hidden;
}

.card-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: var(--transition-smooth);
}

.blog-card:hover .card-img {
	transform: scale(1.05);
}

.card-content {
	padding: 24px;
	text-align: right;
	display: flex;
	flex-direction: column;
	flex-grow: 1;
}

.card-title {
	font-size: 1.25rem;
	font-weight: 700;
	margin-bottom: 12px;
	line-height: 1.4;
}

.card-title a:hover {
	color: var(--color-teal);
}

.card-text {
	font-size: 0.9rem;
	color: var(--color-muted);
	margin-bottom: 20px;
	line-height: 1.6;
	flex-grow: 1;
}

.blog-newsletter-section {
	padding: 80px 0;
	background: var(--color-light-bg);
}

.newsletter-card {
	max-width: 800px;
	margin: 0 auto;
	padding: 60px 40px;
	border-radius: var(--border-radius-lg);
	position: relative;
	overflow: hidden;
}

.newsletter-glow {
	position: absolute;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 300px;
	height: 300px;
	background: radial-gradient(circle, rgba(22, 166, 217, 0.05) 0%, transparent 70%);
	filter: blur(20px);
	pointer-events: none;
}

.newsletter-card h3 {
	font-size: 1.8rem;
	margin-bottom: 12px;
}

/* 8. Extra Media Queries for new components */
@media (max-width: 1024px) {
	.contact-page-grid,
	.blueprint-interactive-container,
	.featured-blog-card {
		grid-template-columns: 1fr;
		gap: 40px;
	}
	.featured-img-wrap {
		height: 300px;
	}
}

@media (max-width: 768px) {
	.comparison-slider-wrapper {
		margin-top: 30px;
	}
	.before-after-container {
		height: 350px;
	}
	.blueprint-canvas {
		height: 300px;
	}
	.blueprint-cad-frame {
		width: 200px;
		height: 200px;
	}
	.blueprint-turning-circle {
		width: 100px;
		height: 100px;
		top: calc(50% - 50px);
		left: calc(50% - 50px);
	}
	.gb-foldable {
		height: 40px;
		left: calc(50% - 30px);
	}
	.gb-l-shape {
		height: 50px;
		left: calc(50% + 24px);
	}
	.dim-h-total {
		right: -60px;
	}
	.featured-content {
		padding: 24px;
	}
	.newsletter-card {
		padding: 40px 24px;
	}
	.newsletter-form {
		flex-direction: column;
	}
}

/* ==========================================================================
   9. HYGIENE PRODUCTS & ACCESSORIES CATEGORY PAGE
   ========================================================================== */
.hygiene-page {
	background-color: #f8fafc;
	color: #334155;
}

.hygiene-hero {
	background: linear-gradient(135deg, #0A2540 0%, #050F1C 100%);
	padding: 180px 0 60px 0;
	position: relative;
	overflow: hidden;
	color: #fff;
	text-align: center;
}

.hygiene-hero::before {
	content: '';
	position: absolute;
	top: -50%;
	left: -50%;
	width: 200%;
	height: 200%;
	background: radial-gradient(circle, rgba(22, 166, 217, 0.08) 0%, transparent 60%);
	pointer-events: none;
}

.hygiene-hero-title {
	font-size: 2.8rem;
	font-weight: 800;
	margin-top: 15px;
	margin-bottom: 15px;
	background: linear-gradient(90deg, #fff 0%, #a5f3fc 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

.hygiene-breadcrumbs {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	list-style: none;
	padding: 0;
	margin: 0 auto;
	font-size: 0.9rem;
	opacity: 0.8;
}

.hygiene-breadcrumbs a {
	color: #fff;
	text-decoration: none;
	transition: var(--transition-smooth);
}

.hygiene-breadcrumbs a:hover {
	color: #2DBCEC;
}

.hygiene-breadcrumbs .active {
	color: #2DBCEC;
}

.hygiene-container {
	padding: 60px 0 80px 0;
}

.hygiene-layout-grid {
	display: grid;
	grid-template-columns: 300px 1fr;
	gap: 40px;
	align-items: start;
}

/* Sidebar Styling */
.category-sidebar-wrap {
	position: sticky;
	top: 110px;
	background: #fff;
	border-radius: var(--border-radius-md);
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
	border: 1px solid rgba(0, 0, 0, 0.04);
	padding: 24px;
}

.category-sidebar-title {
	font-size: 1.15rem;
	font-weight: 700;
	color: #0A2540;
	margin-bottom: 20px;
	padding-bottom: 12px;
	border-bottom: 2px solid #f1f5f9;
}

.category-nav-menu {
	display: flex;
	flex-direction: column;
	gap: 6px;
}

.category-nav-link {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 12px 16px;
	border-radius: 8px;
	color: #475569;
	font-weight: 500;
	font-size: 0.95rem;
	transition: var(--transition-smooth);
	cursor: pointer;
	text-decoration: none;
	background: transparent;
	border: none;
	width: 100%;
	text-align: right;
	font-family: inherit;
}

.category-nav-link:hover {
	background: #f8fafc;
	color: #0A2540;
}

.category-nav-link.active {
	background: #e0f2fe;
	color: #0284c7;
	font-weight: 600;
}

.category-nav-link .product-count {
	font-size: 0.8rem;
	background: #f1f5f9;
	color: #64748b;
	padding: 2px 8px;
	border-radius: 999px;
	font-weight: 600;
	margin-right: auto;
	margin-left: 0;
}

.category-nav-link.active .product-count {
	background: #bae6fd;
	color: #0369a1;
}

/* Main Content Styling */
.category-main-content {
	display: flex;
	flex-direction: column;
	gap: 30px;
}

.category-intro-card {
	background: #fff;
	border-radius: var(--border-radius-md);
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
	border: 1px solid rgba(0, 0, 0, 0.04);
	padding: 32px;
}

.category-intro-title {
	font-size: 1.8rem;
	font-weight: 800;
	color: #0A2540;
	margin-bottom: 12px;
}

.category-intro-desc {
	font-size: 1rem;
	color: #64748b;
	line-height: 1.7;
	margin: 0;
}

/* Search bar styling */
.product-search-container {
	display: flex;
	gap: 16px;
	background: #fff;
	border-radius: var(--border-radius-md);
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
	border: 1px solid rgba(0, 0, 0, 0.04);
	padding: 16px 24px;
	align-items: center;
}

.search-input-wrapper {
	position: relative;
	flex-grow: 1;
}

.search-input-wrapper svg {
	position: absolute;
	right: 16px;
	top: 50%;
	transform: translateY(-50%);
	width: 20px;
	height: 20px;
	color: #94a3b8;
	pointer-events: none;
}

.product-search-input {
	width: 100%;
	padding: 12px 48px 12px 16px;
	border: 1px solid #cbd5e1;
	border-radius: 8px;
	font-size: 0.95rem;
	color: #0A2540;
	transition: var(--transition-smooth);
	font-family: inherit;
	text-align: right;
}

.product-search-input:focus {
	outline: none;
	border-color: #0284c7;
	box-shadow: 0 0 0 3px rgba(2, 132, 199, 0.15);
}

.search-results-counter {
	font-size: 0.9rem;
	color: #64748b;
	font-weight: 500;
}

/* Products Grid */
.hygiene-products-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
	gap: 24px;
}

.hygiene-product-card {
	background: #fff;
	border-radius: var(--border-radius-md);
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.01);
	border: 1px solid rgba(0, 0, 0, 0.04);
	overflow: hidden;
	transition: var(--transition-smooth);
	display: flex;
	flex-direction: column;
	height: 100%;
}

.hygiene-product-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
	border-color: rgba(22, 166, 217, 0.25);
}

.product-img-wrapper {
	position: relative;
	padding-top: 100%;
	background: #fff;
	overflow: hidden;
	border-bottom: 1px solid #f1f5f9;
}

.product-img-wrapper img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: contain;
	padding: 20px;
	transition: var(--transition-smooth);
}

.hygiene-product-card:hover .product-img-wrapper img {
	transform: scale(1.05);
}

.product-card-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(10, 37, 64, 0.45);
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	transition: var(--transition-smooth);
	z-index: 2;
}

.product-img-wrapper:hover .product-card-overlay {
	opacity: 1;
}

.product-card-overlay .btn-quickview {
	background: #fff;
	color: #0A2540;
	border: none;
	padding: 10px 20px;
	border-radius: 30px;
	font-weight: 600;
	font-size: 0.85rem;
	cursor: pointer;
	box-shadow: 0 5px 15px rgba(0,0,0,0.15);
	transition: var(--transition-smooth);
	font-family: inherit;
}

.product-card-overlay .btn-quickview:hover {
	background: #16A6D9;
	color: #fff;
	transform: scale(1.05);
}

.product-card-info {
	padding: 20px;
	display: flex;
	flex-direction: column;
	flex-grow: 1;
	justify-content: space-between;
}

.product-card-category {
	font-size: 0.8rem;
	color: #64748b;
	margin-bottom: 8px;
	font-weight: 600;
}

.product-card-title {
	font-size: 0.95rem;
	font-weight: 700;
	color: #0A2540;
	line-height: 1.4;
	margin: 0 0 16px 0;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
	height: 2.6rem;
}

.product-card-action {
	border-top: 1px solid #f1f5f9;
	padding-top: 16px;
}

.product-card-link {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 6px;
	width: 100%;
	padding: 10px;
	background: #f1f5f9;
	color: #475569;
	border-radius: 8px;
	text-decoration: none;
	font-weight: 600;
	font-size: 0.9rem;
	transition: var(--transition-smooth);
}

.hygiene-product-card:hover .product-card-link {
	background: #0284c7;
	color: #fff;
}

.product-card-link svg {
	width: 16px;
	height: 16px;
	transition: var(--transition-smooth);
}

.hygiene-product-card:hover .product-card-link svg {
	transform: translateX(-4px);
}

/* Quick View Modal styling */
.quickview-modal {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 2000;
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	pointer-events: none;
	transition: var(--transition-smooth);
}

.quickview-modal.open {
	opacity: 1;
	pointer-events: auto;
}

.quickview-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(10, 21, 35, 0.7);
	backdrop-filter: blur(8px);
}

.quickview-container {
	position: relative;
	background: #fff;
	width: 90%;
	max-width: 900px;
	max-height: 90vh;
	border-radius: var(--border-radius-lg);
	box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
	overflow-y: auto;
	z-index: 5;
	transform: scale(0.95);
	transition: var(--transition-smooth);
	padding: 40px;
}

.quickview-modal.open .quickview-container {
	transform: scale(1);
}

.quickview-close-btn {
	position: absolute;
	top: 20px;
	left: 20px;
	width: 36px;
	height: 36px;
	background: #f1f5f9;
	border: none;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #64748b;
	cursor: pointer;
	transition: var(--transition-smooth);
}

.quickview-close-btn:hover {
	background: #e2e8f0;
	color: #0A2540;
	transform: rotate(90deg);
}

.quickview-grid {
	display: grid;
	grid-template-columns: 1.2fr 1fr;
	gap: 40px;
	align-items: start;
}

.quickview-gallery {
	background: #f8fafc;
	border-radius: var(--border-radius-md);
	border: 1px solid #e2e8f0;
	padding: 30px;
	display: flex;
	align-items: center;
	justify-content: center;
	aspect-ratio: 1;
}

.quickview-gallery img {
	max-width: 100%;
	max-height: 100%;
	object-fit: contain;
}

.quickview-details {
	display: flex;
	flex-direction: column;
	gap: 20px;
	text-align: right;
}

.quickview-tag {
	display: inline-block;
	align-self: flex-start;
	background: #bae6fd;
	color: #0369a1;
	padding: 4px 12px;
	border-radius: 30px;
	font-size: 0.85rem;
	font-weight: 700;
	margin-left: auto;
	margin-right: 0;
}

.quickview-title {
	font-size: 1.8rem;
	font-weight: 800;
	color: #0A2540;
	line-height: 1.3;
	margin: 0;
}

.quickview-description {
	font-size: 0.95rem;
	color: #475569;
	line-height: 1.6;
	margin: 0;
}

.quickview-cta-box {
	background: #f8fafc;
	border-radius: 12px;
	border: 1px solid #e2e8f0;
	padding: 24px;
	margin-top: 10px;
}

.quickview-cta-box h4 {
	font-size: 1.05rem;
	font-weight: 700;
	color: #0A2540;
	margin: 0 0 8px 0;
}

.quickview-cta-box p {
	font-size: 0.85rem;
	color: #64748b;
	margin: 0 0 16px 0;
	line-height: 1.5;
}

.quickview-cta-actions {
	display: grid;
	grid-template-columns: 1fr;
	gap: 12px;
}

/* Empty State search */
.no-results-state {
	text-align: center;
	padding: 60px 20px;
	background: #fff;
	border-radius: var(--border-radius-md);
	border: 1px solid rgba(0,0,0,0.05);
	grid-column: 1 / -1;
}

.no-results-state svg {
	width: 64px;
	height: 64px;
	color: #cbd5e1;
	margin-bottom: 16px;
}

.no-results-state h3 {
	font-size: 1.3rem;
	color: #0A2540;
	margin: 0 0 8px 0;
}

.no-results-state p {
	font-size: 0.95rem;
	color: #64748b;
	margin: 0;
}

/* Responsive Media Queries */
@media (max-width: 1024px) {
	.hygiene-layout-grid {
		grid-template-columns: 1fr;
		gap: 30px;
	}
	
	.category-sidebar-wrap {
		position: static;
		padding: 16px;
	}
	
	.category-sidebar-title {
		display: none; /* Hide in mobile since sidebar scrolls horizontally */
	}
	
	.category-nav-menu {
		flex-direction: row;
		overflow-x: auto;
		padding-bottom: 8px;
		gap: 10px;
		scroll-snap-type: x mandatory;
		-webkit-overflow-scrolling: touch;
	}
	
	.category-nav-link {
		white-space: nowrap;
		scroll-snap-align: start;
		padding: 8px 16px;
	}
	
	.quickview-grid {
		grid-template-columns: 1fr;
		gap: 30px;
	}
	
	.quickview-container {
		padding: 24px;
		max-height: 95vh;
	}
}

@media (max-width: 768px) {
	.hygiene-hero {
		padding: 120px 0 40px 0;
	}
	
	.hygiene-hero-title {
		font-size: 2rem;
	}
	
	.product-search-container {
		flex-direction: column;
		align-items: stretch;
		gap: 12px;
	}
}

/* ==========================================================================
   MOBILE ENHANCEMENTS — 600px and below
   ========================================================================== */

@media (max-width: 600px) {

	/* --- Hero --- */
	.hero-scroll-container { height: 220vh; }
	.slide-content { padding: 0 4px; }

	/* --- Stats --- */
	.stat-card { padding: 28px 12px; }

	/* --- Homepage About section --- */
	.about-section { padding: 70px 0; }
	.about-grid { gap: 30px; }

	/* --- About page --- */
	.about-story-section { padding: 60px 0; }
	.about-story-grid { gap: 30px; }
	.about-values-section { padding: 60px 0; }
	.value-card { padding: 28px 20px; }

	/* --- HPL hero --- */
	.hpl-hero-section { padding: 100px 0 60px; }
	.hpl-hero-lead { font-size: 1rem; }
	.hpl-grid { gap: 16px; }

	/* --- Promo cards --- */
	.promo-card { aspect-ratio: 16/9; }

	/* --- Black View hero (massive padding on mobile) --- */
	.black-view-page .black-view-hero,
	.black-view-hero { padding: 120px 0 70px; }

	/* --- Black View features & products grids --- */
	.features-grid { grid-template-columns: 1fr; }
	.bv-products-grid { grid-template-columns: 1fr; }
	.filter-btn { padding: 10px 16px; font-size: 0.85rem; }

	/* --- Category hero --- */
	.hygiene-hero { padding: 120px 0 40px; }
	.hygiene-hero-title { font-size: clamp(1.6rem, 5vw, 2rem); }

	/* --- Shared page heroes (contact, repair, blog, statement) --- */
	.repair-hero-section,
	.contact-hero-section,
	.blog-hero-section,
	.statement-hero-section { padding: 100px 0 50px; }

	.contact-hero-title,
	.repair-hero-title,
	.blog-hero-title,
	.statement-hero-title { font-size: clamp(1.6rem, 5.5vw, 2.5rem); }

	/* --- Contact page --- */
	.contact-details-section { padding: 40px 0; }
	.info-card { padding: 20px; }

	/* --- Final CTA cards --- */
	.final-card-wrapper { padding: 28px 20px; }
	.final-card-grid { gap: 30px; }

	/* --- Footer --- */
	.footer-grid { gap: 32px; }
	.footer-col { padding: 0; }

	/* --- Nav drawer — must not exceed viewport --- */
	.main-nav { width: min(300px, 90vw); }

	/* --- Dropdown menu height — must not exceed viewport --- */
	.main-nav .has-dropdown.active .dropdown-menu { max-height: calc(100vh - 220px); overflow-y: auto; }

	/* --- Single product (PDP) --- */
	.pdp-gallery { position: static; }
	.pdp-thumb { width: 60px; height: 60px; }
	.pdp-thumbs { gap: 8px; }
	.pdp-img-frame { padding: 14px; }

	/* --- Quick view modal --- */
	.quickview-container { padding: 20px; width: 96%; }
	.quickview-title { font-size: 1.4rem; }

	/* --- Categories grid --- */
	.categories-grid { gap: 12px; }

	/* --- Why grid (repair/services) --- */
	.why-grid { gap: 12px; }
}

/* --- Extra small phones (under 400px) --- */
@media (max-width: 400px) {
	.main-nav { width: 88vw; }
	.bv-hero-title { font-size: clamp(1.8rem, 8vw, 2.5rem); }
	.hero-actions .btn { width: 100%; }
	.toolbar-item span { font-size: 0.75rem; }
}

/* ==========================================================================
   CONTACT PAGE — mobile grid & form
   ========================================================================== */

.contact-page-grid {
	display: grid;
	grid-template-columns: 1.2fr 1fr;
	gap: 60px;
	align-items: start;
}

@media (max-width: 1024px) {
	.contact-page-grid {
		grid-template-columns: 1fr;
		gap: 36px;
	}
	.contact-details-section { padding: 56px 0; }
}

@media (max-width: 600px) {
	.contact-page-grid { gap: 24px; }
	.contact-details-section { padding: 36px 0; }
	.info-cards-stack { gap: 14px; }
	.info-card { flex-direction: row; align-items: flex-start; gap: 14px; padding: 18px; }
	.info-icon { flex-shrink: 0; width: 40px; height: 40px; }
	.glass-form-card { padding: 24px 20px; }
	.glass-form-card h3 { font-size: 1.2rem; }
	.lead-generation-form .form-group { margin-bottom: 14px; }
	.faq-accordion-section { padding: 48px 0; }
	.faq-trigger { font-size: 0.95rem; padding: 16px 18px; }
}

/* ==========================================================================
   PREVENT HORIZONTAL SCROLL GLOBALLY
   ========================================================================== */

html, body { overflow-x: hidden; max-width: 100%; }
.main-content { overflow-x: hidden; }

/* ==========================================================================
   COLOR CUSTOMIZER — mobile custom picker (dots + names, one-screen layout)
   ========================================================================== */

.mob-cpick { display: none; }

@media (max-width: 768px) {

	/* Hide desktop tabs + grid */
	.panel-tabs { display: none !important; }
	.color-grid  { display: none !important; }

	/* Compact the whole section so controls + image fit on screen */
	.customizer-section { padding: 0 0 24px; }
	.customizer-head    { display: none; }
	.customizer-grid    { gap: 0; }
	.color-picker-panel { padding: 16px 16px 12px; border-radius: 16px 16px 0 0; border-bottom: 0; box-shadow: none; position: relative; z-index: 10; }
	.mockup-display     { border-radius: 0 0 16px 16px; padding: 0 16px 16px; }
	.mockup-title-bar   { padding: 10px 0; }
	.mockup-note        { font-size: 11px; margin-top: 6px; }
	.cubicle-preview-frame { min-height: 0; overflow: hidden; }
	.cubicle-preview-frame img,
	.product-preview-img {
		max-height: 360px;
		width: 100%;
		object-fit: contain;
		transform: scale(1.25);
		margin: 20px auto;
	}

	/* Show the mobile picker */
	.mob-cpick { display: flex; flex-direction: column; gap: 10px; }

	/* Type: two pill buttons */
	.mob-type-row { display: flex; border-radius: 10px; overflow: hidden; border: 1px solid rgba(10,37,64,.14); }
	.mob-type-btn {
		flex: 1; padding: 11px 8px; border: 0; background: #fff;
		color: #5B6B7C; font-family: 'Heebo','Assistant',sans-serif;
		font-size: 14px; font-weight: 700; cursor: pointer; transition: background .15s,color .15s;
	}
	.mob-type-btn + .mob-type-btn { border-right: 1px solid rgba(10,37,64,.14); }
	.mob-type-btn.active { background: #0A2540; color: #fff; }

	/* Custom color dropdown */
	.mob-cdrop { position: relative; }
	.mob-cdrop-trigger {
		width: 100%; display: flex; align-items: center; gap: 10px;
		padding: 12px 14px; background: #fff; border: 1px solid rgba(10,37,64,.14);
		border-radius: 10px; cursor: pointer; text-align: right;
		font-family: 'Heebo','Assistant',sans-serif;
	}
	.mob-cdot {
		width: 22px; height: 22px; border-radius: 50%; flex-shrink: 0;
		border: 1.5px solid rgba(0,0,0,.1); display: inline-block;
	}
	.mob-cdrop-label { flex: 1; font-size: 15px; font-weight: 700; color: #0A2540; }
	.mob-cdrop-arrow { color: #5B6B7C; flex-shrink: 0; transition: transform .2s; }
	.mob-cdrop.open .mob-cdrop-arrow { transform: rotate(180deg); }

	/* Dropdown list */
	.mob-cdrop-list {
		display: none; position: absolute; top: calc(100% + 4px); left: 0; right: 0;
		background: #fff; border: 1px solid rgba(10,37,64,.12); border-radius: 12px;
		z-index: 200; max-height: 220px; overflow-y: auto;
		box-shadow: 0 10px 28px rgba(10,37,64,.14);
		list-style: none; padding: 4px 0; margin: 0;
	}
	.mob-cdrop.open .mob-cdrop-list { display: block; }
	.mob-copt {
		display: flex; align-items: center; gap: 10px;
		padding: 10px 14px; cursor: pointer; transition: background .12s;
	}
	.mob-copt:hover { background: #f1f5f9; }
	.mob-copt.active { background: #e8f6fb; }
	.mob-copt-name { font-size: 14px; font-weight: 600; color: #0A2540; flex: 1; text-align: right; }
}

/* ==========================================================================
   PRODUCT CATEGORY PAGE — hide legacy sidebar styles (chips used instead)
   ========================================================================== */

.hygiene-layout-grid { display: block; }
.category-sidebar-wrap { display: none; }
.category-main-content { display: block; }
.category-intro-card { display: none; }

/* ==========================================================================
   DESKTOP FLOATING CONTACT BUTTONS (BOTTOM LEFT)
   ========================================================================== */
.desktop-floating-contact {
	position: fixed;
	bottom: 30px;
	left: 30px;
	display: flex;
	flex-direction: column;
	gap: 14px;
	z-index: 9999;
}

.floating-btn {
	position: relative;
	width: 56px;
	height: 56px;
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
	transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.3s ease, background-color 0.3s ease;
	color: #ffffff;
}

.floating-wa {
	background-color: #25D366;
}

.floating-wa:hover {
	background-color: #128C7E;
	transform: scale(1.1);
	box-shadow: 0 12px 30px rgba(37, 211, 102, 0.4);
}

.floating-phone {
	background-color: var(--color-teal, #16a6d9);
}

.floating-phone:hover {
	background-color: var(--color-teal-deep, #0f85b0);
	transform: scale(1.1);
	box-shadow: 0 12px 30px rgba(22, 166, 217, 0.4);
}

.floating-waze {
	background-color: #33ccff;
}

.floating-waze:hover {
	background-color: #1aa3d4;
	transform: scale(1.1);
	box-shadow: 0 12px 30px rgba(51, 204, 255, 0.4);
}

.floating-svg {
	width: 26px;
	height: 26px;
	display: block;
}

.floating-img-icon {
	width: 32px;
	height: 32px;
	object-fit: contain;
	display: block;
}

/* Tooltip Styling */
.floating-tooltip {
	position: absolute;
	left: 70px;
	background: rgba(7, 26, 46, 0.95);
	backdrop-filter: blur(10px);
	border: 1px solid rgba(255, 255, 255, 0.08);
	color: #ffffff;
	padding: 8px 16px;
	border-radius: 30px;
	font-size: 0.85rem;
	font-weight: 700;
	white-space: nowrap;
	opacity: 0;
	visibility: hidden;
	transform: translateX(-10px);
	transition: opacity 0.3s ease, transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), visibility 0.3s;
	pointer-events: none;
	box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.floating-tooltip::after {
	content: "";
	position: absolute;
	right: 100%;
	top: 50%;
	transform: translateY(-50%);
	border: 6px solid transparent;
	border-right-color: rgba(7, 26, 46, 0.95);
}

.floating-btn:hover .floating-tooltip {
	opacity: 1;
	visibility: visible;
	transform: translateX(0);
}

/* Hide on mobile/tablets since they have the bottom toolbar */
@media (max-width: 992px) {
	.desktop-floating-contact {
		display: none !important;
	}
}
