/* ==========================================================================
   IRONCRAFT RESIDENTIAL FABRICATION - MAIN STYLESHEET
   Style: Architectural, Industrial-Luxury, Clean, Modern, Trustworthy
   ========================================================================== */

/* --- GOOGLE FONTS IMPORT --- */
@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@500;600;700;800&family=Plus+Jakarta+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,400;1,600&display=swap');

/* --- CSS VARIABLES / DESIGN TOKENS --- */
:root {
  /* Color Palette - Light Mode Default */
  --primary-accent: #c47d1a;
  --primary-accent-hover: #b06e12;
  --primary-accent-light: #fef3c7;
  --primary-accent-rgb: 196, 125, 26;

  --secondary-accent: #1e293b;
  --secondary-accent-light: #334155;

  --color-dark: #0f172a;
  --color-slate-900: #0f172a;
  --color-slate-800: #1e293b;
  --color-slate-700: #334155;
  --color-slate-600: #475569;
  --color-slate-500: #64748b;
  --color-slate-400: #94a3b8;
  --color-slate-300: #cbd5e1;
  --color-slate-200: #e2e8f0;
  --color-slate-100: #f1f5f9;
  --color-slate-50: #f8fafc;
  --color-white: #ffffff;

  --bg-body: #fbfbfd;
  --bg-surface: #ffffff;
  --bg-surface-alt: #f8fafc;
  --bg-surface-elevated: #ffffff;
  --bg-subtle-border: #e2e8f0;

  --text-main: #1e293b;
  --text-muted: #64748b;
  --text-heading: #0f172a;

  --error-color: #dc2626;
  --error-bg: #fef2f2;
  --error-border: #fca5a5;
  --success-color: #16a34a;
  --success-bg: #f0fdf4;
  --success-border: #86efac;

  /* Typography */
  --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-heading: 'Cinzel', 'Plus Jakarta Sans', serif;
  --font-display: 'Plus Jakarta Sans', sans-serif;

  /* Shadows */
  --shadow-sm: 0 1px 2px 0 rgba(15, 23, 42, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(15, 23, 42, 0.08), 0 2px 4px -2px rgba(15, 23, 42, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(15, 23, 42, 0.08), 0 4px 6px -4px rgba(15, 23, 42, 0.04);
  --shadow-xl: 0 20px 25px -5px rgba(15, 23, 42, 0.1), 0 8px 10px -6px rgba(15, 23, 42, 0.05);
  --shadow-header: 0 4px 20px rgba(15, 23, 42, 0.08);

  /* Border Radii */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --radius-full: 9999px;

  /* Layout */
  --header-height: 84px;
  --max-width: 1280px;
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-slow: 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

/* --- RESET & GLOBAL RULES --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  overflow-x: clip;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-body);
  color: var(--text-main);
  line-height: 1.65;
  overflow-x: hidden;
  position: relative;
  min-height: 100vh;
}

body.nav-open {
  overflow: hidden !important;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition-fast);
}

ul, ol {
  list-style: none;
}

button, input, select, textarea {
  font: inherit;
  color: inherit;
}

button {
  background: none;
  border: none;
  cursor: pointer;
}

/* --- ACCESSIBILITY --- */
:focus-visible {
  outline: 2px solid var(--primary-accent);
  outline-offset: 2px;
}

.skip-to-content {
  position: absolute;
  top: -100px;
  left: 1rem;
  background: var(--primary-accent);
  color: #fff;
  padding: 0.5rem 1rem;
  z-index: 99999;
  font-weight: 600;
  border-radius: var(--radius-sm);
  transition: top 0.2s ease;
}

.skip-to-content:focus {
  top: 1rem;
}

/* --- PAGE LOADER --- */
.page-loader {
  position: fixed;
  inset: 0;
  background: #0b1120;
  z-index: 99999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.6s ease;
}

.page-loader.loaded {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader-logo {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.loader-emblem {
  width: 52px;
  height: 52px;
  border: 2px solid var(--primary-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--primary-accent);
  position: relative;
}

.loader-emblem::after {
  content: '';
  position: absolute;
  inset: -6px;
  border: 1px dashed rgba(196, 125, 26, 0.5);
  animation: spinSlow 6s linear infinite;
}

@keyframes spinSlow {
  100% { transform: rotate(360deg); }
}

.loader-brand {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #f8fafc;
}

.loader-brand span {
  display: block;
  font-family: var(--font-body);
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  color: var(--primary-accent);
  text-transform: uppercase;
}

.loader-bar-wrap {
  width: 180px;
  height: 3px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  overflow: hidden;
}

.loader-bar {
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, var(--primary-accent), #f59e0b);
  transform: translateX(-100%);
  animation: loaderProgress 1.4s ease-in-out infinite;
}

@keyframes loaderProgress {
  50% { transform: translateX(0); }
  100% { transform: translateX(100%); }
}

/* --- LAYOUT CONTAINER --- */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.container-narrow {
  max-width: 960px;
}

.container-fluid {
  max-width: 1440px;
}

/* --- SECTION SHARED STYLES --- */
.section {
  padding: 5.5rem 0;
  position: relative;
}

.section-dark {
  background: var(--color-slate-900);
  color: var(--color-slate-100);
}

.section-alt {
  background: var(--bg-surface-alt);
}

.section-header {
  margin-bottom: 3.5rem;
}

.section-header.text-center {
  text-align: center;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--primary-accent);
  margin-bottom: 0.85rem;
 }

.section-eyebrow i {
  font-size: 0.85rem;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.85rem, 3.2vw, 2.75rem);
  font-weight: 700;
  line-height: 1.25;
  color: var(--text-heading);
  letter-spacing: -0.01em;
  margin-bottom: 1rem;
  
   
}

.section-dark .section-title {
  color: #ffffff;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.section-dark .section-subtitle {
  color: var(--color-slate-400);
}

/* --- BUTTONS --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.92rem;
  letter-spacing: 0.02em;
  padding: 0.82rem 1.65rem;
  border-radius: var(--radius-sm);
  transition: all var(--transition-normal);
  white-space: nowrap;
  cursor: pointer;
  border: 1px solid transparent;
}

.btn i {
  font-size: 0.85rem;
  transition: transform var(--transition-fast);
}

.btn:hover i {
  transform: translateX(3px);
}

.btn-primary {
  background: var(--primary-accent);
  color: #ffffff;
  box-shadow: 0 4px 14px rgba(var(--primary-accent-rgb), 0.28);
}

.btn-primary:hover {
  background: var(--primary-accent-hover);
  box-shadow: 0 6px 20px rgba(var(--primary-accent-rgb), 0.38);
  transform: translateY(-2px);
  color: #ffffff;
}

.btn-secondary {
  background: var(--color-slate-800);
  color: #ffffff;
}

.btn-secondary:hover {
  background: var(--color-slate-700);
  transform: translateY(-2px);
  color: #ffffff;
}

.btn-outline {
  border-color: var(--primary-accent);
  color: var(--primary-accent);
  background: transparent;
}

.btn-outline:hover {
  background: var(--primary-accent);
  color: #ffffff;
  transform: translateY(-2px);
}

.btn-outline-light {
  border-color: rgba(255, 255, 255, 0.3);
  color: #ffffff;
  background: transparent;
}

.btn-outline-light:hover {
  border-color: #ffffff;
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
}

.btn-sm {
  padding: 0.55rem 1.1rem;
  font-size: 0.82rem;
}

.btn-lg {
  padding: 1rem 2.2rem;
  font-size: 1rem;
}

.btn-icon-only {
  width: 42px;
  height: 42px;
  padding: 0;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* --- BADGES & TAGS --- */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 0.75rem;
  border-radius: var(--radius-sm);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  background: var(--color-slate-100);
  color: var(--color-slate-700);
  border: 1px solid var(--color-slate-200);
}

.badge-primary {
  background: rgba(var(--primary-accent-rgb), 0.1);
  color: var(--primary-accent);
  border-color: rgba(var(--primary-accent-rgb), 0.25);
}

/* ==========================================================================
   GLOBAL HEADER & NAVIGATION
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--bg-subtle-border);
  transition: all var(--transition-normal);
  height: var(--header-height);
}

.site-header.scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: var(--shadow-header);
  border-bottom-color: rgba(15, 23, 42, 0.08);
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 0.75rem;
  flex-wrap: nowrap;
}

.site-header .brand-logo {
  flex-shrink: 0;
}

.site-header .brand-emblem {
  width: 40px;
  height: 40px;
  font-size: 1.1rem;
}

.site-header .brand-title {
  font-size: 1.05rem;
}

.site-header .brand-subtitle {
  font-size: 0.56rem;
}

/* Brand Logo (Used identically in Header & Footer) */
.brand-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.brand-emblem {
  width: 44px;
  height: 44px;
  background: var(--color-slate-900);
  border: 2px solid var(--primary-accent);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-accent);
  font-size: 1.25rem;
  flex-shrink: 0;
  transition: transform var(--transition-fast);
}

.brand-logo:hover .brand-emblem {
  transform: scale(1.05);
}

.brand-text {
  display: flex;
  flex-direction: column;
}

.brand-title {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--text-heading);
  line-height: 1.1;
}

.brand-subtitle {
  font-family: var(--font-body);
  font-size: 0.62rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--primary-accent);
  line-height: 1.2;
}

/* Desktop Navigation */
.desktop-nav {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  min-width: 0;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.1rem;
}

.nav-link {
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--text-main);
  padding: 0.45rem 0.5rem;
  border-radius: var(--radius-sm);
  position: relative;
  transition: all var(--transition-fast);
  white-space: nowrap;
}

.nav-link:hover {
  color: var(--primary-accent);
  background: rgba(var(--primary-accent-rgb), 0.06);
}

.nav-link.active {
  color: var(--primary-accent);
  font-weight: 700;
}

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0.75rem;
  right: 0.75rem;
  height: 2px;
  background: var(--primary-accent);
  border-radius: 2px;
}

/* Header Action Controls */
.header-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
  white-space: nowrap;
}

.header-actions .btn-sm {
  padding: 0.5rem 0.8rem;
  font-size: 0.75rem;
}

.ctrl-btn {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-main);
  background: var(--color-slate-100);
  border: 1px solid var(--color-slate-200);
  transition: all var(--transition-fast);
  font-size: 0.95rem;
  position: relative;
}

.ctrl-btn:hover {
  color: var(--primary-accent);
  border-color: var(--primary-accent);
  background: #ffffff;
}

.hamburger-btn {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background: var(--color-slate-100);
  border: 1px solid var(--color-slate-200);
  color: var(--text-heading);
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
}

/* ==========================================================================
   RESPONSIVE FULL-SCREEN / FULL-HEIGHT MOBILE NAVIGATION PANEL
   ========================================================================== */
.mobile-nav-panel {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  height: 100dvh;
  background: var(--color-slate-900);
  z-index: 9999;
  visibility: hidden;
  opacity: 0;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s ease, visibility 0.4s;
  display: flex;
  flex-direction: column;
  color: #ffffff;
  overflow: hidden;
}

.mobile-nav-panel.open {
  visibility: visible;
  opacity: 1;
  transform: translateX(0);
}

.mobile-nav-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  flex-shrink: 0;
}

.mobile-close-btn {
  width: 42px;
  height: 42px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  transition: background 0.2s;
}

.mobile-close-btn:hover {
  background: var(--primary-accent);
}

/* Dedicated vertical scroll container for mobile menu */
.mobile-nav-body {
  flex: 1;
  overflow-y: auto;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
  padding: 1.75rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.mobile-nav-link {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--color-slate-300);
  padding: 0.85rem 1rem;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.2s ease;
  border-left: 3px solid transparent;
}

.mobile-nav-link:hover {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.05);
}

.mobile-nav-link.active {
  color: var(--primary-accent);
  background: rgba(196, 125, 26, 0.12);
  border-left-color: var(--primary-accent);
  font-weight: 700;
}

.mobile-nav-footer {
  padding: 1.25rem 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  flex-shrink: 0;
  background: rgba(11, 17, 32, 0.95);
}

.mobile-actions-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.mobile-toggle-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem;
  background: rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-sm);
  color: #ffffff;
  font-size: 0.88rem;
  font-weight: 600;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-toggle-btn:hover {
  background: rgba(255, 255, 255, 0.15);
}

/* ==========================================================================
   PAGE HERO (INNER PAGES)
   ========================================================================== */
.page-hero {
  background-color: var(--color-slate-900);
  background-image: linear-gradient(90deg, rgba(6, 9, 17, 0.9) 0%, rgba(15, 23, 42, 0.72) 55%, rgba(15, 23, 42, 0.52) 100%), var(--page-hero-image, url('../images/hero-tech01.avif'));
  background-position: center;
  background-size: cover;
  color: #ffffff;
  padding: 7rem 0 6rem;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: linear-gradient(180deg, rgba(6, 9, 17, 0.08), rgba(6, 9, 17, 0.24)), radial-gradient(rgba(196, 125, 26, 0.15) 1px, transparent 1px);
  background-size: 32px 32px;
  opacity: 0.85;
  pointer-events: none;
}

.page-about { --page-hero-image: url('../images/work01.avif'); }
.page-contact { --page-hero-image: url('../images/Featured Installation.avif'); }
.page-gallery { --page-hero-image: url('../images/after gate.avif'); }
.page-materials { --page-hero-image: url('../images/hero banner03.jpg'); }
.page-pricing { --page-hero-image: url('../images/hero-banner04.jpg'); }
.page-products { --page-hero-image: url('../images/hero-banner01.jpg'); }
.page-reviews { --page-hero-image: url('../images/Tropical Modern Duplex.jpg'); }
.page-services { --page-hero-image: url('../images/Precision On-Site Rigging.jpg'); }

.page-hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
}

.breadcrumb-nav {
  display: flex;
  align-items: center;
   justify-content: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--color-slate-400);
  margin-bottom: 1.25rem;
}

.breadcrumb-nav a {
  color: var(--color-slate-300);
}

.breadcrumb-nav a:hover {
  color: var(--primary-accent);
}

.breadcrumb-separator {
  font-size: 0.75rem;
  color: var(--color-slate-500);
}

.breadcrumb-current {
  color: var(--primary-accent);
  font-weight: 600;
  
}

.page-hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.25rem, 4vw, 3.4rem);
  font-weight: 700;
  line-height: 1.2;
  color: #ffffff;
  margin-bottom: 1rem;
  text-align: center;
}

.page-hero-intro {
  font-size: 1.15rem;
  line-height: 1.7;
  color: var(--color-slate-300);
  max-width: 680px;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

/* ==========================================================================
   HOME PAGE SPECIFIC SECTIONS (EXACTLY 8 MAJOR SECTIONS)
   ========================================================================== */

/* --- SECTION 1: HERO --- */
.hero-section {
  background: linear-gradient(135deg, #0b1120 0%, #151d30 100%);
  color: #ffffff;
  padding: 5rem 0 6rem;
  position: relative;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-content {
  max-width: 640px;
  align-self: center;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--primary-accent);
  padding: 0.4rem 0.85rem;
  background: rgba(196, 125, 26, 0.12);
  border: 1px solid rgba(196, 125, 26, 0.3);
  border-radius: var(--radius-sm);
  margin-bottom: 1.5rem;
}

.hero-headline {
  font-family: var(--font-heading);
  font-size: clamp(2.4rem, 4.2vw, 3.75rem);
  font-weight: 800;
  line-height: 1.15;
  color: #ffffff;
  letter-spacing: -0.01em;
  margin-bottom: 1.5rem;
}

.hero-headline span {
  color: var(--primary-accent);
  display: block;
}

.hero-description {
  font-size: 1.15rem;
  line-height: 1.75;
  color: var(--color-slate-300);
  margin-bottom: 2.25rem;
}

.hero-cta-group {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.hero-trust-bar {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.trust-item {
  display: flex;
  flex-direction: column;
}

.trust-num {
  font-family: var(--font-heading);
  font-size: 1.85rem;
  font-weight: 800;
  color: #ffffff;
  line-height: 1;
}

.trust-label {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-slate-400);
  margin-top: 0.35rem;
}

.hero-visual-wrapper {
  position: relative;
  align-self: center;
}

.hero-image-card {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.hero-image-card img {
  width: 100%;
  height: 480px;
  object-fit: cover;
}

.hero-image-card video {
  display: block;
  width: 100%;
  height: 480px;
  object-fit: cover;
}

.hero-float-badge {
  position: absolute;
  bottom: 2rem;
  left: -2rem;
  background: rgba(15, 23, 42, 0.92);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(196, 125, 26, 0.4);
  padding: 1rem 1.4rem;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  gap: 1rem;
  box-shadow: var(--shadow-xl);
}

.float-badge-icon {
  width: 44px;
  height: 44px;
  background: var(--primary-accent);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  border-radius: var(--radius-sm);
}

.float-badge-text strong {
  display: block;
  font-size: 0.95rem;
  color: #fff;
}

.float-badge-text span {
  font-size: 0.78rem;
  color: var(--color-slate-300);
}

/* --- SECTION 2: WHAT WE FABRICATE (Horizontal Asymmetric Showcase) --- */
.fabricate-showcase-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}

.fabricate-item-card {
  background: var(--bg-surface);
  border: 1px solid var(--bg-subtle-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all var(--transition-normal);
  display: flex;
  flex-direction: column;
}

.fabricate-item-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
  border-color: rgba(var(--primary-accent-rgb), 0.4);
}

.fabricate-img-box {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.fabricate-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.fabricate-item-card:hover .fabricate-img-box img {
  transform: scale(1.08);
}

.fabricate-category-tag {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: rgba(15, 23, 42, 0.85);
  backdrop-filter: blur(6px);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.3rem 0.65rem;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.fabricate-content {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.fabricate-icon-title {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 0.75rem;
}

.fabricate-icon {
  width: 38px;
  height: 38px;
  background: rgba(var(--primary-accent-rgb), 0.1);
  color: var(--primary-accent);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.05rem;
  flex-shrink: 0;
}

.fabricate-item-title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-heading);
}

.fabricate-text {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 1.25rem;
  flex: 1;
}

.fabricate-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--primary-accent);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.fabricate-link:hover {
  gap: 0.7rem;
}

/* --- SECTION 3: COMPLETED INSTALLATIONS (Editorial Showcase) --- */
.showcase-featured-layout {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 2rem;
}

.featured-main-project {
  background: var(--bg-surface);
  border: 1px solid var(--bg-subtle-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-md);
}

.featured-main-img {
  position: relative;
  height: 380px;
  overflow: hidden;
}

.featured-main-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.featured-main-project:hover .featured-main-img img {
  transform: scale(1.05);
}

.featured-main-body {
  padding: 2rem;
}

.featured-label {
  color: var(--primary-accent);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.5rem;
}

.featured-title {
  font-family: var(--font-heading);
  font-size: 1.65rem;
  font-weight: 700;
  color: var(--text-heading);
  margin-bottom: 0.75rem;
}

.featured-desc {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.65;
  margin-bottom: 1.5rem;
}

.featured-specs-row {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--bg-subtle-border);
}

.spec-item {
  display: flex;
  flex-direction: column;
}

.spec-title {
  font-size: 0.72rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.spec-value {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--text-heading);
}

.showcase-sub-grid {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.sub-project-card {
  display: grid;
  grid-template-columns: 100px 1fr;
  background: var(--bg-surface);
  border: 1px solid var(--bg-subtle-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all var(--transition-normal);
}

.sub-project-card:hover {
  transform: translateX(4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(var(--primary-accent-rgb), 0.4);
}

.sub-project-img {
  height: 180%;
  min-height: 0;
}

.sub-project-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sub-project-body {
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.sub-project-cat {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--primary-accent);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.3rem;
}

.sub-project-title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-heading);
  margin-bottom: 0.4rem;
}

.sub-project-desc {
  font-size: 0.84rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* --- SECTION 4: WHY CHOOSE OUR FABRICATION (Image + Vertical Feature Timeline) --- */
.why-choose-layout {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 4rem;
  align-items: center;
}

.why-visual-column {
  position: relative;
}

.why-feature-image {
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--bg-subtle-border);
  box-shadow: var(--shadow-lg);
}

.why-feature-image img {
  width: 100%;
  height: 645px;
  object-fit: cover;
}

.why-stats-overlay {
  position: absolute;
  top: 2rem;
  right: -1.5rem;
  background: var(--color-slate-900);
  color: #fff;
  padding: 1.5rem;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(196, 125, 26, 0.4);
  box-shadow: var(--shadow-xl);
}

.why-stats-overlay strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--primary-accent);
  line-height: 1;
}

.why-stats-overlay span {
  font-size: 0.8rem;
  color: var(--color-slate-300);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.why-features-timeline {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  position: relative;
}

.why-timeline-item {
  display: flex;
  gap: 1.25rem;
}

.why-step-icon {
  width: 48px;
  height: 48px;
  background: var(--bg-surface);
  border: 2px solid var(--primary-accent);
  color: var(--primary-accent);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  flex-shrink: 0;
}

.why-step-content {
  flex: 1;
}

.why-step-title {
  font-family: var(--font-heading);
  font-size: 1.18rem;
  font-weight: 700;
  color: var(--text-heading);
  margin-bottom: 0.35rem;
}

.why-step-desc {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* --- SECTION 5: MATERIALS & FINISHES (Architectural Comparison Layout) --- */
.materials-comp-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 3.5rem;
}

.material-card {
  background: var(--bg-surface);
  border: 1px solid var(--bg-subtle-border);
  border-radius: var(--radius-md);
  padding: 2.25rem 1.75rem;
  transition: all var(--transition-normal);
  display: flex;
  flex-direction: column;
}

.material-card:hover {
  transform: translateY(-5px);
  border-color: var(--primary-accent);
  box-shadow: var(--shadow-lg);
}

.material-card.highlight {
  border-color: var(--primary-accent);
  background: linear-gradient(180deg, rgba(196, 125, 26, 0.04) 0%, var(--bg-surface) 100%);
  position: relative;
}

.material-badge {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--primary-accent);
  background: rgba(196, 125, 26, 0.12);
  padding: 0.25rem 0.6rem;
  border-radius: var(--radius-sm);
  margin-bottom: 1rem;
  align-self: flex-start;
}

.material-title {
  font-family: var(--font-heading);
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--text-heading);
  margin-bottom: 0.75rem;
}

.material-desc {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  flex: 1;
}

.material-features-list {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  margin-bottom: 1.75rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--bg-subtle-border);
}

.material-features-list li {
  font-size: 0.88rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--text-main);
}

.material-features-list li i {
  color: var(--primary-accent);
  font-size: 0.8rem;
}

/* Material Finishes Strip */
.finishes-strip {
  background: var(--bg-surface);
  border: 1px solid var(--bg-subtle-border);
  border-radius: var(--radius-md);
  padding: 2rem 2.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.finish-tags-group {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  flex-wrap: wrap;
}

.finish-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border-radius: var(--radius-full);
  background: var(--color-slate-100);
  border: 1px solid var(--color-slate-200);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-heading);
}

.finish-swatch {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  display: inline-block;
}

/* --- SECTION 6: FEATURED DESIGNS (Horizontal Gallery / Architectural Slider) --- */
.designs-slider-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}

.design-item-card {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--color-slate-900);
  color: #fff;
  height: 380px;
  box-shadow: var(--shadow-md);
}

.design-item-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s;
  opacity: 0.85;
}

.design-item-card:hover img {
  transform: scale(1.08);
  opacity: 0.65;
}

.design-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(15, 23, 42, 0.95) 0%, rgba(15, 23, 42, 0.2) 60%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.75rem;
  transition: transform 0.3s;
}

.design-tag {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--primary-accent);
  margin-bottom: 0.4rem;
}

.design-title {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.65rem;
}

.design-meta {
  font-size: 0.84rem;
  color: var(--color-slate-300);
  margin-bottom: 1.25rem;
  line-height: 1.5;
}

/* --- SECTION 7: FABRICATION PROCESS + TESTIMONIAL --- */
.process-testimonial-wrapper {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 3.5rem;
  align-items: center;
}

.process-steps-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.75rem;
}

.process-step-box {
  background: var(--bg-surface);
  border: 1px solid var(--bg-subtle-border);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  position: relative;
  transition: all var(--transition-normal);
}

.process-step-box:hover {
  border-color: var(--primary-accent);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.process-step-number {
  font-family: var(--font-heading);
  font-size: 1.85rem;
  font-weight: 800;
  color: #f59e0bd9;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.process-step-name {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-heading);
  margin-bottom: 0.4rem;
}

.process-step-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.55;
}

.featured-testimonial-box {
  background: linear-gradient(135deg, var(--color-slate-900) 0%, #1a2538 100%);
  color: #ffffff;
  border-radius: var(--radius-md);
  padding: 2.75rem 2.25rem;
  border: 1px solid rgba(196, 125, 26, 0.3);
  box-shadow: var(--shadow-xl);
  position: relative;
}

.testimonial-quote-icon {
  font-size: 2.5rem;
  color: var(--primary-accent);
  opacity: 0.6;
  margin-bottom: 1.25rem;
}

.testimonial-stars {
  display: flex;
  gap: 0.3rem;
  color: #f59e0b;
  font-size: 0.95rem;
  margin-bottom: 1.25rem;
}

.testimonial-quote-text {
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--color-slate-200);
  font-style: italic;
  margin-bottom: 2rem;
}

#processAndTestimonial .testimonial-quote-text {
  color: #e2e8f0;
}

#processAndTestimonial .author-info strong {
  color: #ffffff;
}

#processAndTestimonial .author-info span {
  color: #f59e0b;
}

.testimonial-author-row {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.author-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 2px solid var(--primary-accent);
  object-fit: cover;
}

.author-info strong {
  display: block;
  font-size: 1rem;
  color: #ffffff;
}

.author-info span {
  font-size: 0.8rem;
  color: var(--primary-accent);
}

/* --- SECTION 8: FINAL CTA + CONTACT PREVIEW --- */
.final-cta-section {
  background: linear-gradient(135deg, #090d16 0%, #151d2f 100%);
  color: #ffffff;
  padding: 5.5rem 0;
  position: relative;
  overflow: hidden;
}

.final-cta-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 3.5rem;
  align-items: center;
}

.final-cta-content h2 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 800;
  line-height: 1.2;
  color: #ffffff;
  margin-bottom: 1.25rem;
}

.final-cta-content p {
  font-size: 1.1rem;
  color: var(--color-slate-300);
  line-height: 1.75;
  margin-bottom: 2.25rem;
  max-width: 560px;
}

.final-cta-buttons {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.final-contact-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-md);
  padding: 2rem;
}

.final-contact-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-bottom: 1.5rem;
}

.contact-quick-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.quick-icon {
  width: 38px;
  height: 38px;
  border-radius: var(--radius-sm);
  background: rgba(196, 125, 26, 0.15);
  color: var(--primary-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

.quick-info strong {
  display: block;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--color-slate-400);
  margin-bottom: 0.15rem;
}

.quick-info span, .quick-info a {
  font-size: 0.95rem;
  color: #ffffff;
  line-height: 1.4;
}

.map-mini-preview {
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  height: 140px;
}

.map-mini-preview iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* ==========================================================================
   ABOUT PAGE SPECIFIC STYLES (6 SECTIONS)
   ========================================================================== */
.about-story-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

#productIntro .about-story-split > div {
  min-width: 0;
}

#productIntro {
  overflow-x: hidden;
}

#productIntro .about-story-split > div:last-child > div {
  height: 480px;
}

#productIntro .about-story-split video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-story-media > div {
  height: 570px;
}

.about-story-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.about-story-text p {
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.about-values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.value-item-card {
  background: var(--bg-surface);
  border: 1px solid var(--bg-subtle-border);
  border-radius: var(--radius-md);
  padding: 2.25rem 1.75rem;
  position: relative;
  transition: all var(--transition-normal);
  border-top: 3px solid var(--primary-accent);
}

.value-item-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.value-icon {
  width: 50px;
  height: 50px;
  border-radius: var(--radius-sm);
  background: rgba(var(--primary-accent-rgb), 0.1);
  color: var(--primary-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  margin-bottom: 1.25rem;
}

.value-title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-heading);
  margin-bottom: 0.65rem;
}

.value-desc {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.stats-counter-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}

.stat-counter-box {
  background: var(--bg-surface);
  border: 1px solid var(--bg-subtle-border);
  padding: 2.5rem 1.5rem;
  border-radius: var(--radius-md);
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 2.75rem;
  font-weight: 800;
  color: var(--primary-accent);
  line-height: 1;
  margin-bottom: 0.65rem;
}

.stat-label {
  font-size: 0.88rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-heading);
}

.capabilities-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}

.capability-card {
  background: var(--bg-surface);
  border: 1px solid var(--bg-subtle-border);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.capability-img {
  height: 200px;
  overflow: hidden;
}

.capability-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.capability-body {
  padding: 1.5rem;
}

.capability-title {
  font-family: var(--font-heading);
  font-size: 1.18rem;
  font-weight: 700;
  color: var(--text-heading);
  margin-bottom: 0.45rem;
}

.capability-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ==========================================================================
   PRODUCTS PAGE SPECIFIC STYLES (6 SECTIONS)
   ========================================================================== */
.products-asymmetric-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.product-card {
  background: var(--bg-surface);
  border: 1px solid var(--bg-subtle-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all var(--transition-normal);
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
  border-color: rgba(var(--primary-accent-rgb), 0.4);
}

.product-thumb {
  height: 230px;
  position: relative;
  overflow: hidden;
}

.product-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.product-card:hover .product-thumb img {
  transform: scale(1.08);
}

.product-material-pill {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  background: rgba(15, 23, 42, 0.88);
  backdrop-filter: blur(8px);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 600;
  padding: 0.25rem 0.65rem;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.product-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.product-header-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.product-icon {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  background: rgba(var(--primary-accent-rgb), 0.1);
  color: var(--primary-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

.product-title {
  font-family: var(--font-heading);
  font-size: 1.22rem;
  font-weight: 700;
  color: var(--text-heading);
}

.product-summary {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 1.25rem;
  flex: 1;
}

.product-specs-list {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid var(--bg-subtle-border);
}

.product-specs-list li {
  font-size: 0.82rem;
  color: var(--text-main);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.product-specs-list li i {
  color: var(--primary-accent);
  font-size: 0.75rem;
}

/* ==========================================================================
   PRODUCT DETAILS PAGE (6 SECTIONS)
   ========================================================================== */
.product-detail-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
}

.page-product-details #productDetailHero {
  background-color: var(--bg-body);
  background-image: linear-gradient(90deg, var(--bg-body) 0%, rgba(251, 251, 253, 0.9) 43%, rgba(251, 251, 253, 0.62) 100%), url('../images/Steel Gate.jpg');
  background-position: center;
  background-size: cover;
}

.detail-gallery-main {
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--bg-subtle-border);
  box-shadow: var(--shadow-lg);
}

.detail-gallery-main img {
  width: 100%;
  height: 440px;
  object-fit: cover;
}

.detail-specs-table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
}

.detail-specs-table th, .detail-specs-table td {
  padding: 0.85rem 1rem;
  text-align: left;
  border-bottom: 1px solid var(--bg-subtle-border);
  font-size: 0.92rem;
}

.detail-specs-table th {
  color: var(--text-muted);
  font-weight: 600;
  width: 35%;
}

.detail-specs-table td {
  color: var(--text-heading);
  font-weight: 700;
}

/* ==========================================================================
   SERVICES PAGE (6 SECTIONS)
   ========================================================================== */
.services-asymmetric-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.service-card {
  background: var(--bg-surface);
  border: 1px solid var(--bg-subtle-border);
  border-radius: var(--radius-md);
  padding: 2rem;
  transition: all var(--transition-normal);
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-5px);
  border-color: var(--primary-accent);
  box-shadow: var(--shadow-lg);
}

.service-icon-wrap {
  width: 50px;
  height: 50px;
  border-radius: var(--radius-sm);
  background: rgba(var(--primary-accent-rgb), 0.1);
  color: var(--primary-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  margin-bottom: 1.25rem;
}

.service-title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-heading);
  margin-bottom: 0.65rem;
}

.service-desc {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 1.25rem;
  flex: 1;
}

/* Services Journey Timeline */
.journey-steps-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1.25rem;
}

.journey-step-item {
  background: var(--bg-surface);
  border: 1px solid var(--bg-subtle-border);
  border-radius: var(--radius-sm);
  padding: 1.5rem 1rem;
  text-align: center;
  position: relative;
}

.journey-step-num {
  width: 36px;
  height: 36px;
  background: var(--primary-accent);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 0.85rem;
  font-size: 0.85rem;
  font-weight: 700;
}

.journey-step-title {
  font-family: var(--font-heading);
  font-size: 0.98rem;
  font-weight: 700;
  color: var(--text-heading);
  margin-bottom: 0.35rem;
}

.journey-step-desc {
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.4;
}

/* ==========================================================================
   DESIGN GALLERY PAGE (5 SECTIONS)
   ========================================================================== */
.gallery-filters-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.filter-btn {
  padding: 0.55rem 1.2rem;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 600;
  background: var(--bg-surface);
  border: 1px solid var(--bg-subtle-border);
  color: var(--text-main);
  transition: all var(--transition-fast);
  cursor: pointer;
}

.filter-btn:hover {
  border-color: var(--primary-accent);
  color: var(--primary-accent);
}

.filter-btn.active {
  background: var(--primary-accent);
  color: #fff;
  border-color: var(--primary-accent);
}

.gallery-masonry-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  height: 320px;
  background: var(--color-slate-900);
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.gallery-item:hover img {
  transform: scale(1.08);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(15, 23, 42, 0.95) 0%, rgba(15, 23, 42, 0.2) 60%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-overlay-cat {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--primary-accent);
  margin-bottom: 0.25rem;
}

.gallery-overlay-title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.75rem;
}

.gallery-overlay-btn {
  align-self: flex-start;
  padding: 0.4rem 0.85rem;
  font-size: 0.78rem;
  background: var(--primary-accent);
  color: #fff;
  border-radius: var(--radius-sm);
  font-weight: 600;
}

/* Lightbox Modal */
.lightbox-modal {
  position: fixed;
  inset: 0;
  background: rgba(11, 17, 32, 0.96);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.lightbox-modal.active {
  opacity: 1;
  visibility: visible;
}

.lightbox-content-box {
  position: relative;
  max-width: 900px;
  width: 100%;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.lightbox-img-wrap {
  width: 100%;
  max-height: 75vh;
  overflow: hidden;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.lightbox-img-wrap img {
  width: 100%;
  height: 100%;
  max-height: 75vh;
  object-fit: contain;
}

.lightbox-caption {
  color: #ffffff;
  font-family: var(--font-heading);
  font-size: 1.15rem;
  margin-top: 1rem;
  text-align: center;
}

.lightbox-close-btn {
  position: absolute;
  top: -3rem;
  right: 0;
  color: #ffffff;
  font-size: 1.75rem;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  transition: background 0.2s;
}

.lightbox-close-btn:hover {
  background: var(--primary-accent);
}

/* ==========================================================================
   MATERIALS PAGE (5 SECTIONS)
   ========================================================================== */
.swatches-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.swatch-card {
  background: var(--bg-surface);
  border: 1px solid var(--bg-subtle-border);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.swatch-color-circle {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: 2px solid var(--bg-subtle-border);
  margin-bottom: 1rem;
  box-shadow: var(--shadow-sm);
}

.swatch-name {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-heading);
  margin-bottom: 0.25rem;
}

.swatch-type {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* Matrix Table */
.matrix-table-wrap {
  overflow-x: auto;
}

.matrix-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--bg-surface);
  border: 1px solid var(--bg-subtle-border);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.matrix-table th, .matrix-table td {
  padding: 1.15rem 1.25rem;
  text-align: left;
  border-bottom: 1px solid var(--bg-subtle-border);
  font-size: 0.92rem;
}

.matrix-table th {
  background: var(--color-slate-900);
  color: #fff;
  font-family: var(--font-heading);
  letter-spacing: 0.05em;
}

#decisionMatrix .matrix-table td,
#decisionMatrix .matrix-table td strong {
  color: var(--text-main);
}

.matrix-table tr:hover td {
  background: rgba(var(--primary-accent-rgb), 0.03);
}

/* ==========================================================================
   PRICING PAGE (5 SECTIONS)
   ========================================================================== */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.pricing-card {
  background: var(--bg-surface);
  border: 1px solid var(--bg-subtle-border);
  border-radius: var(--radius-md);
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: all var(--transition-normal);
}

.pricing-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
  border-color: var(--primary-accent);
}

.pricing-card.featured {
  border-color: var(--primary-accent);
  background: linear-gradient(180deg, rgba(196, 125, 26, 0.05) 0%, var(--bg-surface) 100%);
  box-shadow: var(--shadow-lg);
}

.pricing-card.featured::before {
  content: 'POPULAR CHOICE';
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary-accent);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 0.3rem 0.85rem;
  border-radius: var(--radius-full);
}

.pricing-header {
  margin-bottom: 1.5rem;
}

.pricing-title {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--text-heading);
  margin-bottom: 0.35rem;
}

.pricing-tagline {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.pricing-price-wrap {
  margin-bottom: 1.75rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--bg-subtle-border);
}

.pricing-indicative {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--primary-accent);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.25rem;
}

.pricing-amount {
  font-family: var(--font-heading);
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--text-heading);
  line-height: 1;
}

.pricing-unit {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 500;
}

.pricing-features-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 2rem;
  flex: 1;
}

.pricing-features-list li {
  font-size: 0.88rem;
  display: flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--text-main);
}

.pricing-features-list li i {
  color: var(--primary-accent);
  font-size: 0.82rem;
}

/* ==========================================================================
   REVIEWS PAGE (5 SECTIONS)
   ========================================================================== */
.reviews-slider-wrap {
  position: relative;
  overflow: hidden;
}

.testimonials-deck {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.testimonial-card {
  background: var(--bg-surface);
  border: 1px solid var(--bg-subtle-border);
  border-radius: var(--radius-md);
  padding: 2.25rem 1.75rem;
  display: flex;
  flex-direction: column;
  transition: all var(--transition-normal);
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(var(--primary-accent-rgb), 0.35);
}

.review-stars-row {
  display: flex;
  gap: 0.25rem;
  color: #f59e0b;
  font-size: 0.9rem;
  margin-bottom: 1.25rem;
}

.review-body-text {
  font-size: 0.95rem;
  color: var(--text-main);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  flex: 1;
  font-style: italic;
}

.review-author-meta {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--bg-subtle-border);
}

.review-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--primary-accent);
}

.review-author-name {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-heading);
}

.review-project-tag {
  font-size: 0.78rem;
  color: var(--primary-accent);
}

/* Review page section 4: visual proof gallery */
.review-proof-section {
  background: var(--color-slate-900);
  color: #f8fafc;
}

.review-proof-section .section-title {
  color: #ffffff;
}

.review-proof-section .section-subtitle {
  color: var(--color-slate-300);
}

.review-proof-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.review-proof-card {
  background: #111827;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: transform var(--transition-normal), border-color var(--transition-normal);
}

.review-proof-card:hover {
  transform: translateY(-6px);
  border-color: var(--primary-accent);
}

.review-proof-image {
  height: 245px;
  position: relative;
  overflow: hidden;
}

.review-proof-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(6, 9, 17, 0.7));
}

.review-proof-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.review-proof-card:hover .review-proof-image img {
  transform: scale(1.05);
}

.review-proof-number {
  position: absolute;
  z-index: 1;
  right: 1rem;
  bottom: 0.85rem;
  color: #ffffff;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
}

.review-proof-body {
  padding: 1.5rem;
}

.review-proof-label {
  display: block;
  color: var(--primary-accent);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.45rem;
}

.review-proof-body h3 {
  color: #ffffff;
  font-family: var(--font-heading);
  font-size: 1.25rem;
  margin-bottom: 0.65rem;
}

.review-proof-body p {
  color: var(--color-slate-300);
  font-size: 0.9rem;
  line-height: 1.65;
}

.review-journey-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 4rem;
  align-items: center;
}

.review-journey-image {
  position: relative;
  min-height: 480px;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.review-journey-image img {
  width: 100%;
  height: 100%;
  min-height: 480px;
  object-fit: cover;
}

.review-journey-image-caption {
  position: absolute;
  right: 1.25rem;
  bottom: 1.25rem;
  left: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.85rem 1rem;
  background: rgba(15, 23, 42, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-sm);
  color: #f8fafc;
  font-size: 0.82rem;
  font-weight: 600;
}

.review-journey-image-caption i {
  color: var(--primary-accent);
  font-size: 1rem;
}

.review-journey-content .section-title {
  max-width: 560px;
}

.review-journey-content .section-subtitle {
  max-width: 600px;
  margin-bottom: 2rem;
}

.review-journey-steps {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.review-journey-step {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--bg-subtle-border);
}

.review-journey-step:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.review-journey-step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  flex-shrink: 0;
  border: 1px solid var(--primary-accent);
  border-radius: var(--radius-sm);
  color: var(--primary-accent);
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 700;
}

.review-journey-step h3 {
  color: var(--text-heading);
  font-family: var(--font-heading);
  font-size: 1.08rem;
  margin-bottom: 0.25rem;
}

.review-journey-step p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.6;
}

/* ==========================================================================
   CONTACT PAGE (6 SECTIONS) & FORMS
   ========================================================================== */
.contact-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
}

.contact-info-cards-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.contact-tile {
  background: var(--bg-surface);
  border: 1px solid var(--bg-subtle-border);
  border-radius: var(--radius-md);
  padding: 1.75rem 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: all var(--transition-fast);
}

.contact-tile:hover {
  border-color: var(--primary-accent);
  box-shadow: var(--shadow-md);
}

.contact-tile-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background: rgba(var(--primary-accent-rgb), 0.1);
  color: var(--primary-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  margin-bottom: 1rem;
}

.contact-tile-title {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-heading);
  margin-bottom: 0.35rem;
}

.contact-tile-text {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* Booking Form Container */
.form-card-container {
  background: var(--bg-surface);
  border: 1px solid var(--bg-subtle-border);
  border-radius: var(--radius-md);
  padding: 3rem;
  box-shadow: var(--shadow-lg);
}

.booking-form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.form-group.full-width {
  grid-column: span 2;
}

.form-label {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-heading);
  margin-bottom: 0.5rem;
}

.form-label .required {
  color: var(--error-color);
  margin-left: 0.25rem;
}

.form-control {
  width: 100%;
  padding: 0.8rem 1rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--bg-subtle-border);
  background: var(--bg-surface);
  color: var(--text-main);
  font-size: 0.95rem;
  transition: all var(--transition-fast);
}

.form-control:focus {
  border-color: var(--primary-accent);
  box-shadow: 0 0 0 3px rgba(var(--primary-accent-rgb), 0.15);
  outline: none;
}

/* Validation error message styling (MANDATORY RED) */
.form-group.has-error .form-control {
  border-color: var(--error-color) !important;
  background-color: var(--error-bg) !important;
}

.error-message {
  color: var(--error-color) !important;
  font-size: 0.82rem;
  font-weight: 600;
  margin-top: 0.35rem;
  display: none;
}

.form-group.has-error .error-message {
  display: block;
}

/* Success notification banner */
.form-success-banner {
  display: none;
  background: var(--success-bg);
  border: 1px solid var(--success-border);
  color: var(--success-color);
  padding: 1.5rem 2rem;
  border-radius: var(--radius-md);
  margin-bottom: 2rem;
  align-items: center;
  gap: 1rem;
}

.form-success-banner.active {
  display: flex;
}

.success-icon {
  font-size: 1.85rem;
  flex-shrink: 0;
}

.success-text strong {
  display: block;
  font-size: 1.05rem;
  margin-bottom: 0.25rem;
}

.success-text p {
  font-size: 0.92rem;
  margin: 0;
}

/* FAQ Accordion */
.faq-accordion-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 850px;
  margin: 0 auto;
}

.faq-item {
  background: var(--bg-surface);
  border: 1px solid var(--bg-subtle-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color var(--transition-fast);
}

.faq-item.open {
  border-color: var(--primary-accent);
}

.faq-trigger {
  width: 100%;
  padding: 1.35rem 1.75rem;
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  background: none;
  cursor: pointer;
}

.faq-question {
  font-family: var(--font-heading);
  font-size: 1.12rem;
  font-weight: 700;
  color: var(--text-heading);
}

.faq-chevron {
  font-size: 0.9rem;
  color: var(--primary-accent);
  transition: transform var(--transition-normal);
  flex-shrink: 0;
}

.faq-item.open .faq-chevron {
  transform: rotate(180deg);
}

.faq-collapse {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-item.open .faq-collapse {
  max-height: 300px;
}

.faq-body {
  padding: 0 1.75rem 1.5rem;
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ==========================================================================
   SPECIAL UTILITY PAGES: 404 & COMING SOON (NO HEADER, NO FOOTER)
   ========================================================================== */
.utility-page-wrapper {
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #090d16;
  background-image: linear-gradient(135deg, rgba(6, 9, 17, 0.84), rgba(9, 13, 22, 0.68)), url('../images/hero-tech01.avif');
  background-position: center;
  background-size: cover;
  color: #ffffff;
  padding: 3rem 1.5rem;
  position: relative;
  overflow: hidden;
}

.utility-page-wrapper::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(196, 125, 26, 0.12) 1px, transparent 1px);
  background-size: 28px 28px;
  opacity: 0.4;
}

.utility-card {
  position: relative;
  z-index: 2;
  max-width: 680px;
  width: 100%;
  background: rgba(15, 23, 42, 0.85);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  padding: 3.5rem 3rem;
  text-align: center;
  box-shadow: 0 30px 60px -15px rgba(0, 0, 0, 0.6);
}

.error-giant-num {
  font-family: var(--font-heading);
  font-size: clamp(5rem, 12vw, 8.5rem);
  font-weight: 800;
  line-height: 1;
  color: transparent;
  background: linear-gradient(135deg, #ffffff 0%, var(--primary-accent) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  margin-bottom: 1rem;
}

.utility-title {
  font-family: var(--font-heading);
  font-size: 1.85rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1rem;
}

.utility-desc {
  font-size: 1.05rem;
  color: var(--color-slate-300);
  line-height: 1.7;
  margin-bottom: 2.25rem;
}

.countdown-timer-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  margin: 2rem 0;
}

.countdown-unit {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-sm);
  padding: 1.1rem 1.4rem;
  min-width: 85px;
}

.countdown-digit {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--primary-accent);
  line-height: 1;
}

.countdown-label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-slate-400);
  margin-top: 0.35rem;
}

/* ==========================================================================
   GLOBAL FOOTER (IDENTICAL LOGO & QUICK LINKS)
   ========================================================================== */
.site-footer {
  background: #090e1a;
  color: var(--color-slate-300);
  padding: 5.5rem 0 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-top-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 3.5rem;
  margin-bottom: 4rem;
}

.footer-brand-col p {
  font-size: 0.92rem;
  line-height: 1.7;
  color: var(--color-slate-400);
  margin: 1.25rem 0 1.75rem;
}

.site-footer .brand-title {
  color: #f8fafc;
}

.footer-social-row {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.social-icon-link {
  width: 38px;
  height: 38px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--color-slate-300);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  transition: all var(--transition-fast);
}

.social-icon-link:hover {
  background: var(--primary-accent);
  color: #fff;
  border-color: var(--primary-accent);
  transform: translateY(-2px);
}

.footer-col-title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 0.65rem;
}

.footer-col-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 32px;
  height: 2px;
  background: var(--primary-accent);
}

.footer-links-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-links-list a {
  font-size: 0.88rem;
  color: var(--color-slate-400);
  transition: color var(--transition-fast), transform var(--transition-fast);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-links-list a:hover {
  color: var(--primary-accent);
  transform: translateX(4px);
}

.footer-contact-items {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  font-size: 0.88rem;
  color: var(--color-slate-400);
  line-height: 1.5;
}

.footer-contact-item i {
  color: var(--primary-accent);
  font-size: 0.95rem;
  margin-top: 0.2rem;
  flex-shrink: 0;
}

.footer-bottom-bar {
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.82rem;
  color: var(--color-slate-500);
}

.footer-cta-strip {
  background: linear-gradient(90deg, rgba(196, 125, 26, 0.15) 0%, rgba(196, 125, 26, 0.05) 100%);
  border: 1px solid rgba(196, 125, 26, 0.3);
  border-radius: var(--radius-md);
  padding: 1.75rem 2rem;
  margin-bottom: 3.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.25rem;
}

.footer-cta-strip h3 {
  font-family: var(--font-heading);
  color: #fff;
  font-size: 1.35rem;
  margin-bottom: 0.25rem;
}

.footer-cta-strip p {
  color: var(--color-slate-300);
  font-size: 0.92rem;
  margin: 0;
}

/* ==========================================================================
   BACK TO TOP BUTTON
   ========================================================================== */
.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 46px;
  height: 46px;
  border-radius: var(--radius-sm);
  background: var(--color-slate-900);
  border: 1px solid var(--primary-accent);
  color: var(--primary-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  cursor: pointer;
  z-index: 990;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: all var(--transition-fast);
  box-shadow: var(--shadow-lg);
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background: var(--primary-accent);
  color: #ffffff;
}

/* ==========================================================================
   RESPONSIVE MEDIA QUERIES
   ========================================================================== */
@media (max-width: 1200px) {
  .hero-grid,
  .why-choose-layout,
  .about-story-split,
  .product-detail-hero,
  .contact-hero-grid,
  .final-cta-grid,
  .review-journey-layout {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .footer-top-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
  }

  .journey-steps-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 992px) {
  .desktop-nav {
    display: none;
  }

  .hamburger-btn {
    display: flex;
  }

  .fabricate-showcase-strip,
  .products-asymmetric-grid,
  .materials-comp-grid,
  .designs-slider-container,
  .gallery-masonry-grid,
  .review-proof-grid,
  .pricing-grid,
  .testimonials-deck,
  .services-asymmetric-list,
  .capabilities-grid,
  .about-values-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .process-testimonial-wrapper {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .contact-info-cards-row {
    grid-template-columns: repeat(2, 1fr);
  }

  .stats-counter-strip {
    grid-template-columns: repeat(2, 1fr);
  }

  .swatches-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  :root {
    --header-height: 74px;
  }

  .section {
    padding: 3.75rem 0;
  }

  .section-header {
    margin-bottom: 2.25rem;
  }

  .fabricate-showcase-strip,
  .products-asymmetric-grid,
  .materials-comp-grid,
  .designs-slider-container,
  .gallery-masonry-grid,
  .pricing-grid,
  .testimonials-deck,
  .services-asymmetric-list,
  .capabilities-grid,
  .about-values-grid,
  .stats-counter-strip,
  .swatches-grid,
  .journey-steps-grid,
  .process-steps-list,
  .contact-info-cards-row,
  .footer-top-grid {
    grid-template-columns: 1fr;
  }

  .sub-project-card {
    grid-template-columns: 1fr;
  }

  .review-proof-grid {
    grid-template-columns: 1fr;
  }

  .review-journey-image,
  .review-journey-image img {
    min-height: 320px;
  }

  .sub-project-img {
    height: 180px;
  }

  .booking-form-grid {
    grid-template-columns: 1fr;
  }

  .form-group.full-width {
    grid-column: span 1;
  }

  .form-card-container {
    padding: 1.75rem 1.25rem;
  }

  .hero-float-badge {
    position: static;
    margin-top: 1rem;
  }

  .hero-trust-bar {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.25rem;
  }

  .finishes-strip {
    padding: 1.5rem;
    flex-direction: column;
    align-items: flex-start;
  }

  .why-stats-overlay {
    position: static;
    margin-top: 1rem;
    display: inline-block;
  }

  .footer-bottom-bar {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 480px) {
  .countdown-timer-row {
    gap: 0.5rem;
  }

  .countdown-unit {
    min-width: 65px;
    padding: 0.75rem 0.5rem;
  }

  .countdown-digit {
    font-size: 1.5rem;
  }

  .utility-card {
    padding: 2.5rem 1.25rem;
  }

  .btn {
    width: 100%;
  }

  .hero-cta-group, .final-cta-buttons {
    flex-direction: column;
    width: 100%;
  }
}

/* ==========================================================================
   NAVIGATION DROPDOWN & USER ACCOUNT BUTTON
   ========================================================================== */
.has-dropdown {
  position: relative;
}

.has-dropdown > .nav-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.has-dropdown > .nav-link i.fa-chevron-down {
  font-size: 0.68rem;
  transition: transform var(--transition-fast);
}

.has-dropdown:hover > .nav-link i.fa-chevron-down,
.has-dropdown:focus-within > .nav-link i.fa-chevron-down {
  transform: rotate(180deg);
}

.nav-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 250px;
  background: var(--bg-surface-elevated);
  border: 1px solid var(--bg-subtle-border);
  border-radius: var(--radius-md);
  padding: 0.75rem 0.5rem;
  box-shadow: var(--shadow-xl);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all var(--transition-fast);
  z-index: 1000;
}

.has-dropdown:hover .nav-dropdown-menu,
.has-dropdown:focus-within .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.65rem 0.85rem;
  border-radius: var(--radius-sm);
  color: var(--text-main);
  font-size: 0.9rem;
  font-weight: 500;
  transition: all var(--transition-fast);
}

.dropdown-item i {
  font-size: 1rem;
  color: var(--primary-accent);
  width: 20px;
  text-align: center;
}

.dropdown-item .dropdown-item-desc {
  display: block;
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 400;
  margin-top: 2px;
}

.dropdown-item:hover, .dropdown-item.active {
  background: rgba(var(--primary-accent-rgb), 0.08);
  color: var(--primary-accent);
}

.user-ctrl-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  background: rgba(var(--primary-accent-rgb), 0.1);
  color: var(--primary-accent);
  font-size: 1rem;
  transition: all var(--transition-fast);
  border: 1px solid rgba(var(--primary-accent-rgb), 0.25);
}

.user-ctrl-btn:hover {
  background: var(--primary-accent);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

/* ==========================================================================
   HOME 2: SECTION 1 - BESPOKE ARCHITECTURAL HERO
   ========================================================================== */
.hero-two-section {
  padding: 5rem 0 6rem;
  background: linear-gradient(135deg, #0b1220 0%, #172136 60%, #0f172a 100%);
  color: #f8fafc;
  position: relative;
  overflow: hidden;
}

.hero-two-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 20%, rgba(var(--primary-accent-rgb), 0.15) 0%, transparent 50%),
              radial-gradient(circle at 20% 80%, rgba(30, 41, 59, 0.4) 0%, transparent 60%);
  pointer-events: none;
}

.hero-two-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(420px, 0.9fr);
  gap: 3.5rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-two-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: rgba(var(--primary-accent-rgb), 0.15);
  border: 1px solid rgba(var(--primary-accent-rgb), 0.35);
  color: #f59e0b;
  padding: 0.4rem 1rem;
  border-radius: var(--radius-full);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}

.hero-two-headline {
  font-family: var(--font-heading);
  font-size: 3.25rem;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: 0.02em;
  color: #ffffff;
  margin-bottom: 1.5rem;
}

.hero-two-headline span {
  background: linear-gradient(90deg, #f59e0b, #fbbf24, #d97706);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: block;
}

.hero-two-desc {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #cbd5e1;
  margin-bottom: 2rem;
  max-width: 620px;
}

.hero-two-tabs-nav {
  display: flex;
  gap: 0.5rem;
  background: rgba(15, 23, 42, 0.6);
  padding: 0.35rem;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.hero-tab-btn {
  padding: 0.55rem 1rem;
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  font-weight: 600;
  color: #94a3b8;
  cursor: pointer;
  transition: all var(--transition-fast);
  background: transparent;
  border: none;
}

.hero-tab-btn:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.05);
}

.hero-tab-btn.active {
  background: var(--primary-accent);
  color: #fff;
  box-shadow: 0 2px 8px rgba(var(--primary-accent-rgb), 0.4);
}

.hero-two-cta-row {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}

.hero-two-card {
  background: rgba(17, 24, 39, 0.85);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
  position: relative;
}

.hero-card-preview-box {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  height: 400px;
  margin-bottom: 1.25rem;
}

.hero-card-preview-box img,
.hero-card-preview-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.hero-two-card:hover .hero-card-preview-box img,
.hero-two-card:hover .hero-card-preview-video {
  transform: scale(1.03);
}

.hero-card-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: rgba(15, 23, 42, 0.85);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(var(--primary-accent-rgb), 0.5);
  color: #f59e0b;
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-full);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
}

.hero-spec-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  background: rgba(15, 23, 42, 0.5);
  border-radius: var(--radius-sm);
  padding: 0.85rem;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.hero-spec-item {
  text-align: center;
}

.hero-spec-label {
  display: block;
  font-size: 0.7rem;
  color: #94a3b8;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.2rem;
}

.hero-spec-val {
  font-size: 0.9rem;
  font-weight: 700;
  color: #f8fafc;
}

/* ==========================================================================
   HOME 2: SECTION 2 - INTERACTIVE ESTIMATOR & CALCULATOR
   ========================================================================== */
.estimator-box {
  background: var(--bg-surface);
  border: 1px solid var(--bg-subtle-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  overflow: hidden;
}

.estimator-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
}

.estimator-controls-side {
  padding: 2.5rem;
}

.estimator-results-side {
  background: linear-gradient(145deg, #0f172a 0%, #1e293b 100%);
  color: #f8fafc;
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-left: 1px solid rgba(255, 255, 255, 0.08);
}

.est-control-item {
  margin-bottom: 1.75rem;
}

.est-control-label {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text-heading);
  margin-bottom: 0.6rem;
}

.est-badge-val {
  background: rgba(var(--primary-accent-rgb), 0.12);
  color: var(--primary-accent);
  padding: 0.2rem 0.6rem;
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  font-weight: 700;
}

.est-range-input {
  width: 100%;
  height: 8px;
  border-radius: 999px;
  background: var(--bg-subtle-border);
  accent-color: var(--primary-accent);
  outline: none;
  cursor: pointer;
}

.est-product-buttons {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.5rem;
}

.est-prod-btn {
  background: var(--bg-surface-alt);
  border: 1px solid var(--bg-subtle-border);
  border-radius: var(--radius-sm);
  padding: 0.75rem 0.5rem;
  text-align: center;
  cursor: pointer;
  transition: all var(--transition-fast);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-main);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
}

.est-prod-btn i {
  font-size: 1.1rem;
  color: var(--primary-accent);
}

.est-prod-btn.active, .est-prod-btn:hover {
  border-color: var(--primary-accent);
  background: rgba(var(--primary-accent-rgb), 0.08);
  color: var(--primary-accent);
}

.est-price-tag {
  font-family: var(--font-heading);
  font-size: 2.75rem;
  font-weight: 800;
  color: #f59e0b;
  line-height: 1.1;
  margin: 0.5rem 0;
}

.est-breakdown-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin: 1.5rem 0 2rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.est-breakdown-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.88rem;
  color: #cbd5e1;
}

.est-breakdown-row strong {
  color: #f8fafc;
}

/* ==========================================================================
   HOME 2: SECTION 3 - BEFORE & AFTER COMPARISON SLIDER
   ========================================================================== */
.ba-section-wrapper {
  max-width: 1200px;
  margin: 0 auto;
}

.ba-slider-container {
  position: relative;
  width: 100%;
  height: 700px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  user-select: none;
  border: 2px solid var(--bg-subtle-border);
}

.ba-image-layer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.ba-image-layer img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}

.ba-image-layer.after-layer {
  clip-path: polygon(50% 0, 100% 0, 100% 100%, 50% 100%);
  transition: none;
}

.ba-tag {
  position: absolute;
  top: 1.5rem;
  padding: 0.4rem 1rem;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  z-index: 5;
}

.ba-tag.before-tag {
  left: 1.5rem;
  background: rgba(15, 23, 42, 0.85);
  color: #e2e8f0;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.ba-tag.after-tag {
  right: 1.5rem;
  background: var(--primary-accent);
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(var(--primary-accent-rgb), 0.4);
}

.ba-slider-handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 4px;
  background: #ffffff;
  cursor: ew-resize;
  z-index: 10;
  transform: translateX(-50%);
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.5);
}

.ba-handle-circle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 46px;
  height: 46px;
  background: #ffffff;
  color: var(--color-slate-900);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
  gap: 4px;
  border: 2px solid var(--primary-accent);
}

/* ==========================================================================
   HOME 2: SECTION 4 - PRECISION ENGINEERING TECH PILLARS
   ========================================================================== */
.tech-pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.tech-pillar-card {
  background: var(--bg-surface);
  border: 1px solid var(--bg-subtle-border);
  border-radius: var(--radius-md);
  padding: 2.25rem 2rem;
  position: relative;
  transition: all var(--transition-normal);
}

.tech-pillar-card:hover {
  transform: translateY(-6px);
  border-color: var(--primary-accent);
  box-shadow: var(--shadow-xl);
}

.tech-pillar-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  background: rgba(var(--primary-accent-rgb), 0.1);
  color: var(--primary-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}

.tech-pillar-title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-heading);
  margin-bottom: 0.75rem;
}

.tech-pillar-desc {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 1.25rem;
}

.tech-metric-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--bg-surface-alt);
  padding: 0.35rem 0.75rem;
  border-radius: var(--radius-full);
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--primary-accent);
  border: 1px solid var(--bg-subtle-border);
}

/* ==========================================================================
   HOME 2: SECTION 5 - VIRTUAL 3D MATERIAL & TEXTURE LAB
   ========================================================================== */
.material-lab-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
}

.swatches-palette-deck {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.swatch-item-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  background: var(--bg-surface);
  border: 2px solid var(--bg-subtle-border);
  border-radius: var(--radius-md);
  padding: 0.75rem 0.5rem;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.swatch-color-disc {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  box-shadow: inset 0 2px 4px rgba(0,0,0,0.3);
  border: 1px solid rgba(255,255,255,0.2);
}

.swatch-name-label {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--text-heading);
  text-align: center;
}

.swatch-item-btn.active {
  border-color: var(--primary-accent);
  background: rgba(var(--primary-accent-rgb), 0.08);
  box-shadow: var(--shadow-md);
}

.lab-preview-card {
  background: var(--bg-surface);
  border: 1px solid var(--bg-subtle-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.lab-preview-img-wrap {
  height: 300px;
  position: relative;
}

.lab-preview-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.lab-preview-body {
  padding: 1.75rem;
}

.lab-spec-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 1rem;
}

.lab-spec-table td {
  padding: 0.6rem 0;
  font-size: 0.88rem;
  border-bottom: 1px solid var(--bg-subtle-border);
}

.lab-spec-table td:first-child {
  color: var(--text-muted);
}

.lab-spec-table td:last-child {
  font-weight: 700;
  text-align: right;
  color: var(--text-heading);
}

/* ==========================================================================
   HOME 2: SECTION 6 - VILLA ARCHITECTURAL ELEVATION MATCHING GUIDE
   ========================================================================== */
.elevation-cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.elevation-arch-card {
  background: var(--bg-surface);
  border: 1px solid var(--bg-subtle-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all var(--transition-normal);
}

.elevation-arch-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
  border-color: var(--primary-accent);
}

.elevation-img-box {
  height: 190px;
  position: relative;
}

.elevation-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.elevation-arch-tag {
  position: absolute;
  bottom: 0.75rem;
  left: 0.75rem;
  background: rgba(15, 23, 42, 0.85);
  color: #f8fafc;
  padding: 0.25rem 0.65rem;
  border-radius: var(--radius-sm);
  font-size: 0.75rem;
  font-weight: 700;
}

.elevation-body {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.elevation-title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-heading);
  margin-bottom: 0.5rem;
}

.elevation-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 1.25rem;
  flex: 1;
}

.elevation-specs-mini {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  font-size: 0.8rem;
  color: var(--text-main);
  padding-top: 1rem;
  border-top: 1px solid var(--bg-subtle-border);
}

.elevation-specs-mini span {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.elevation-specs-mini i {
  color: var(--primary-accent);
  font-size: 0.75rem;
}

/* ==========================================================================
   HOME 2: SECTION 7 - SMART GATE AUTOMATION & PERIMETER SECURITY
   ========================================================================== */
.smart-security-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.smart-security-card {
  background: var(--bg-surface);
  border: 1px solid var(--bg-subtle-border);
  border-radius: var(--radius-md);
  padding: 2.25rem 2rem;
  transition: all var(--transition-normal);
  display: flex;
  flex-direction: column;
}

.smart-security-card:hover {
  transform: translateY(-5px);
  border-color: var(--primary-accent);
  box-shadow: var(--shadow-lg);
}

#smartAutomationSection .smart-security-card h3 {
  color: var(--text-heading);
}

#smartAutomationSection .smart-security-card p {
  color: var(--text-muted) !important;
}

.security-icon-circle {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(var(--primary-accent-rgb), 0.1);
  color: var(--primary-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  margin-bottom: 1.25rem;
}

.security-features-bullets {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-top: 1.25rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--bg-subtle-border);
}

.security-features-bullets li {
  font-size: 0.85rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.security-features-bullets li i {
  color: #10b981;
  font-size: 0.8rem;
}

/* ==========================================================================
   HOME 2: SECTION 8 - RESIDENTIAL SAFETY & CHILD/PET COMPLIANCE
   ========================================================================== */
.safety-standards-layout {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 3.5rem;
  align-items: center;
}

.safety-check-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.safety-check-item {
  background: var(--bg-surface);
  border: 1px solid var(--bg-subtle-border);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  display: flex;
  gap: 1rem;
}

.safety-icon-box {
  width: 42px;
  height: 42px;
  border-radius: var(--radius-sm);
  background: rgba(16, 185, 129, 0.12);
  color: #10b981;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  flex-shrink: 0;
}

.safety-item-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-heading);
  margin-bottom: 0.35rem;
}

.safety-item-text {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.55;
}

.safety-certification-box {
  background: linear-gradient(145deg, #1e293b 0%, #0f172a 100%);
  color: #f8fafc;
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: var(--shadow-xl);
}

.safety-seal-badge {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  border-radius: 50%;
  border: 3px dashed var(--primary-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--primary-accent);
}

/* ==========================================================================
   HOME 2: SECTION 9 - VERIFIED RESIDENT CASE STUDIES
   ========================================================================== */
.case-studies-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.case-study-card {
  background: var(--bg-surface);
  border: 1px solid var(--bg-subtle-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: all var(--transition-normal);
  display: flex;
  flex-direction: column;
}

.case-study-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
  border-color: var(--primary-accent);
}

.case-study-img-wrap {
  height: 210px;
  position: relative;
}

.case-study-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.case-study-pill {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: rgba(15, 23, 42, 0.85);
  backdrop-filter: blur(6px);
  color: #f59e0b;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-full);
}

.case-study-body {
  padding: 1.75rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.case-meta-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.case-owner-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--primary-accent);
}

.case-owner-info strong {
  display: block;
  font-size: 0.95rem;
  color: var(--text-heading);
}

.case-owner-info span {
  font-size: 0.78rem;
  color: var(--text-muted);
}

.case-quote-text {
  font-size: 0.92rem;
  color: var(--text-main);
  line-height: 1.6;
  font-style: italic;
  margin-bottom: 1.25rem;
  flex: 1;
}

.case-stats-strip {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.5rem;
  background: var(--bg-surface-alt);
  padding: 0.75rem;
  border-radius: var(--radius-sm);
  font-size: 0.8rem;
  border: 1px solid var(--bg-subtle-border);
}

/* ==========================================================================
   HOME 2: SECTION 10 - VIP ARCHITECTURAL CONSULTATION & BLUEPRINT SCHEDULER
   ========================================================================== */
.vip-consult-card {
  background: var(--bg-surface);
  border: 1px solid var(--bg-subtle-border);
  border-radius: var(--radius-lg);
  padding: 3.5rem;
  box-shadow: var(--shadow-xl);
}

.vip-channels-selector {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-bottom: 2rem;
}

.vip-channel-option {
  border: 2px solid var(--bg-subtle-border);
  border-radius: var(--radius-md);
  padding: 1.25rem;
  cursor: pointer;
  transition: all var(--transition-fast);
  display: flex;
  align-items: center;
  gap: 1rem;
}

.vip-channel-option.active, .vip-channel-option:hover {
  border-color: var(--primary-accent);
  background: rgba(var(--primary-accent-rgb), 0.05);
}

.vip-channel-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(var(--primary-accent-rgb), 0.1);
  color: var(--primary-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.blueprint-drop-area {
  border: 2px dashed var(--bg-subtle-border);
  border-radius: var(--radius-md);
  padding: 2rem;
  text-align: center;
  cursor: pointer;
  background: var(--bg-surface-alt);
  transition: all var(--transition-fast);
}

.blueprint-drop-area:hover {
  border-color: var(--primary-accent);
  background: rgba(var(--primary-accent-rgb), 0.04);
}

.blueprint-drop-area i {
  font-size: 2.25rem;
  color: var(--primary-accent);
  margin-bottom: 0.75rem;
}

/* ==========================================================================
   AUTHENTICATION PAGES (LOGIN, CREATE ACCOUNT, FORGOT PASSWORD)
   ========================================================================== */
.auth-page-section {
  min-height: calc(100vh - var(--header-height));
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4rem 1.5rem;
  background-color: var(--bg-body);
  background-image: linear-gradient(90deg, rgba(6, 9, 17, 0.8), rgba(15, 23, 42, 0.46)), url('../images/work01.avif');
  background-position: center;
  background-size: cover;
}

.auth-card-container {
  width: 100%;
  max-width: 1000px;
  background: var(--bg-surface);
  border: 1px solid var(--bg-subtle-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  overflow: hidden;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
}

.auth-card-container.auth-narrow {
  max-width: 540px;
  grid-template-columns: 1fr;
}

.auth-brand-pane {
  background: linear-gradient(135deg, #0b1220 0%, #1e293b 100%);
  color: #f8fafc;
  padding: 3.5rem 3rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
}

.auth-brand-pane::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(var(--primary-accent-rgb), 0.2) 0%, transparent 70%);
  pointer-events: none;
}

.auth-brand-header .brand-logo {
  margin-bottom: 2rem;
}

.auth-brand-title {
  font-family: var(--font-heading);
  font-size: 1.85rem;
  font-weight: 700;
  line-height: 1.3;
  color: #ffffff;
  margin-bottom: 1rem;
}

.auth-brand-desc {
  font-size: 0.95rem;
  color: #94a3b8;
  line-height: 1.7;
}

.auth-perks-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 2rem;
}

.auth-perk-item {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  font-size: 0.9rem;
  color: #cbd5e1;
}

.auth-perk-item i {
  color: var(--primary-accent);
  font-size: 1rem;
}

.auth-form-pane {
  padding: 3.5rem 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.auth-form-header {
  margin-bottom: 2rem;
}

.auth-heading {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--text-heading);
  margin-bottom: 0.5rem;
}

.auth-subheading {
  font-size: 0.92rem;
  color: var(--text-muted);
}

.auth-role-tabs {
  display: flex;
  background: var(--bg-surface-alt);
  padding: 0.35rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--bg-subtle-border);
  margin-bottom: 1.75rem;
}

.auth-role-tab {
  flex: 1;
  text-align: center;
  padding: 0.6rem 0.5rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all var(--transition-fast);
  background: transparent;
  border: none;
}

.auth-role-tab.active {
  background: var(--bg-surface);
  color: var(--primary-accent);
  box-shadow: var(--shadow-sm);
}

.password-input-wrap {
  position: relative;
}

.password-toggle-btn {
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
  cursor: pointer;
  padding: 0.25rem;
  font-size: 0.95rem;
  background: none;
  border: none;
}

.password-toggle-btn:hover {
  color: var(--primary-accent);
}

.password-strength-wrap {
  margin-top: 0.5rem;
}

.strength-meter-bar {
  height: 4px;
  background: var(--bg-subtle-border);
  border-radius: 999px;
  overflow: hidden;
  margin-bottom: 0.35rem;
}

.strength-meter-fill {
  height: 100%;
  width: 0%;
  transition: width 0.3s ease, background-color 0.3s ease;
}

.strength-meter-fill.weak { width: 30%; background-color: #ef4444; }
.strength-meter-fill.medium { width: 65%; background-color: #f59e0b; }
.strength-meter-fill.strong { width: 100%; background-color: #10b981; }

.strength-label-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.75rem;
  color: var(--text-muted);
}

.password-rules-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.35rem;
  margin-top: 0.5rem;
  font-size: 0.75rem;
  color: var(--text-muted);
}

.password-rules-list li {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.password-rules-list li.valid {
  color: #10b981;
}

.password-rules-list li.valid i {
  color: #10b981;
}

/* Demo credentials box */
.demo-creds-container {
  background: var(--bg-surface-alt);
  border: 1px dashed var(--bg-subtle-border);
  border-radius: var(--radius-sm);
  padding: 0.85rem 1rem;
  margin-bottom: 1.5rem;
  font-size: 0.82rem;
}

.demo-creds-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.5rem;
  font-weight: 700;
  color: var(--text-heading);
}

.demo-fill-btn {
  background: rgba(var(--primary-accent-rgb), 0.12);
  color: var(--primary-accent);
  border: none;
  padding: 0.25rem 0.65rem;
  border-radius: var(--radius-sm);
  font-size: 0.75rem;
  font-weight: 700;
  cursor: pointer;
}

.demo-fill-btn:hover {
  background: var(--primary-accent);
  color: #fff;
}

/* OTP digit boxes */
.otp-boxes-deck {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  margin: 1.5rem 0;
}

.otp-box-digit {
  width: 50px;
  height: 56px;
  font-size: 1.5rem;
  font-weight: 700;
  text-align: center;
  border: 2px solid var(--bg-subtle-border);
  border-radius: var(--radius-md);
  background: var(--bg-surface);
  color: var(--text-heading);
  transition: all var(--transition-fast);
}

.otp-box-digit:focus {
  border-color: var(--primary-accent);
  box-shadow: 0 0 0 3px rgba(var(--primary-accent-rgb), 0.15);
  outline: none;
}

.social-auth-strip {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem;
  margin-bottom: 1.5rem;
}

.social-login-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.75rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--bg-subtle-border);
  background: var(--bg-surface);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-main);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.social-login-btn:hover {
  border-color: var(--primary-accent);
  background: var(--bg-surface-alt);
}

.auth-divider-line {
  display: flex;
  align-items: center;
  margin: 1.5rem 0;
  color: var(--text-muted);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.auth-divider-line::before, .auth-divider-line::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--bg-subtle-border);
}

.auth-divider-line span {
  padding: 0 1rem;
}

/* ==========================================================================
   RESPONSIVE MEDIA QUERIES FOR HOME 2 & AUTH
   ========================================================================== */
@media (max-width: 1024px) {
  .hero-two-grid,
  .estimator-grid,
  .material-lab-layout,
  .safety-standards-layout,
  .auth-card-container {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .estimator-results-side {
    border-left: none;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
  }

  .elevation-cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .tech-pillars-grid,
  .smart-security-grid,
  .case-studies-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .vip-channels-selector {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .page-hero {
    background-position: 60% center;
  }

  .page-product-details #productDetailHero {
    background-image: linear-gradient(180deg, var(--bg-body) 0%, rgba(251, 251, 253, 0.9) 55%, rgba(251, 251, 253, 0.72) 100%), url('../images/Steel Gate.jpg');
  }

  .about-story-media > div {
    height: 320px;
  }

  #productIntro .about-story-split > div:last-child > div {
    height: 320px;
  }

  .hero-two-headline {
    font-size: 2.4rem;
  }

  .hero-card-preview-box {
    height: 280px;
  }

  .tech-pillars-grid,
  .smart-security-grid,
  .case-studies-grid,
  .safety-check-grid,
  .elevation-cards-grid,
  .est-product-buttons,
  .swatches-palette-deck {
    grid-template-columns: 1fr;
  }

  .estimator-controls-side,
  .estimator-results-side,
  .vip-consult-card,
  .auth-form-pane,
  .auth-brand-pane {
    padding: 2rem 1.5rem;
  }

  .ba-slider-container {
    height: 340px;
  }

  .otp-box-digit {
    width: 42px;
    height: 48px;
    font-size: 1.25rem;
  }
}

/* ==========================================================================\n+   FLUID RESPONSIVE OVERRIDES\n+   Keep shared page structures stable between the main layout breakpoints.\n+   ========================================================================== */
@media (max-width: 1100px) {
  html {
    scroll-padding-top: var(--header-height);
  }

  .site-header {
    position: fixed;
  }

  #mainContent {
    padding-top: var(--header-height);
  }

  .desktop-nav {
    display: none;
  }

  .hamburger-btn {
    display: flex;
  }

  .header-container {
    gap: 0.5rem;
  }

  .site-header .brand-subtitle {
    letter-spacing: 0.14em;
  }

  .hero-two-grid,
  .hero-grid,
  .why-choose-layout,
  .about-story-split,
  .product-detail-hero,
  .contact-hero-grid,
  .final-cta-grid,
  .review-journey-layout,
  .material-lab-layout,
  .safety-standards-layout,
  .estimator-grid,
  .auth-card-container {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero-two-grid {
    gap: 2.5rem;
  }
}

@media (max-width: 768px) {
  :root {
    --header-height: 72px;
  }

  .container {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .section {
    padding: 3rem 0;
  }

  .page-hero {
    min-height: 300px;
    padding: 4rem 0 3.5rem;
  }

  .page-hero-title,
  .hero-title {
    font-size: clamp(1.9rem, 8vw, 2.7rem);
    overflow-wrap: anywhere;
  }

  .page-hero-intro,
  .hero-intro {
    font-size: 0.98rem;
  }

  .header-actions {
    gap: 0.35rem;
  }

  .header-actions .btn-sm,
  .header-actions .user-ctrl-btn {
    display: none;
  }

  .site-header .brand-title {
    font-size: 0.95rem;
  }

  .site-header .brand-subtitle {
    font-size: 0.49rem;
    letter-spacing: 0.1em;
  }

  .site-header .brand-emblem {
    width: 36px;
    height: 36px;
  }

  .btn {
    white-space: normal;
    text-align: center;
  }

  .hero-two-headline {
    font-size: clamp(2rem, 9vw, 2.6rem);
    overflow-wrap: anywhere;
  }

  .hero-two-cta-row,
  .hero-cta-group,
  .final-cta-buttons {
    align-items: stretch;
    flex-direction: column;
    width: 100%;
  }

  .hero-two-cta-row .btn,
  .hero-cta-group .btn,
  .final-cta-buttons .btn {
    width: 100%;
  }

  .hero-two-tabs-nav {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-tab-btn {
    min-width: 0;
    padding-left: 0.5rem;
    padding-right: 0.5rem;
  }

  .booking-form-grid,
  .contact-info-cards-row,
  .footer-top-grid,
  .stats-counter-strip,
  .swatches-grid,
  .pricing-grid,
  .products-asymmetric-grid,
  .services-asymmetric-list,
  .capabilities-grid,
  .about-values-grid,
  .gallery-masonry-grid,
  .designs-slider-container,
  .testimonials-deck,
  .materials-comp-grid,
  .fabricate-showcase-strip,
  .review-proof-grid,
  .tech-pillars-grid,
  .smart-security-grid,
  .case-studies-grid,
  .safety-check-grid,
  .elevation-cards-grid,
  .est-product-buttons,
  .swatches-palette-deck {
    grid-template-columns: minmax(0, 1fr);
  }

  .form-card-container,
  .estimator-controls-side,
  .estimator-results-side,
  .vip-consult-card,
  .auth-form-pane,
  .auth-brand-pane {
    padding: 1.5rem 1rem;
  }

  .form-control,
  select.form-control,
  textarea.form-control {
    max-width: 100%;
  }

  .matrix-table-wrapper,
  .table-responsive {
    max-width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .footer-cta-strip {
    padding: 1.5rem 1rem;
  }

  .back-to-top {
    right: 1rem;
    bottom: 1rem;
  }
}

@media (max-width: 380px) {
  .container {
    padding-left: 0.8rem;
    padding-right: 0.8rem;
  }

  .header-actions .ctrl-btn {
    display: none;
  }

  .site-header .brand-logo {
    gap: 0.5rem;
  }

  .site-header .brand-title {
    font-size: 0.86rem;
  }

  .site-header .brand-subtitle {
    display: none;
  }

  .mobile-nav-header,
  .mobile-nav-footer {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .mobile-nav-body {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .hero-two-tabs-nav {
    grid-template-columns: 1fr;
  }
}