@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

:root {
  --navy: #142850;
  --navy-light: #1a3a66;
  --blue: #3b6d9c;
  --blue-light: #7fb3d3;
  --white: #ffffff;
  --off-white: #f8f9fa;
  --gray-100: #f1f3f4;
  --gray-200: #e8eaed;
  --gray-300: #dadce0;
  --gray-500: #9aa0a6;
  --gray-700: #5f6368;
  --accent: #3b6d9c;
  --accent-dark: #142850;
  --success: #34a853;
  /* Legacy aliases for compatibility */
  --charcoal: #142850;
  --charcoal-light: #1a3a66;
  --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
  --shadow-md: 0 4px 6px rgba(0,0,0,0.07);
  --shadow-lg: 0 10px 25px rgba(0,0,0,0.1);
  --transition: all 0.3s ease;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: var(--charcoal);
  line-height: 1.6;
  background: var(--white);
}

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

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.85rem, 4.5vw, 2.75rem); color: var(--navy); }
h3 { font-size: clamp(1.3rem, 3vw, 1.6rem); }

p { margin-bottom: 1rem; }

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

a:hover { color: var(--accent-dark); }

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 4px;
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid transparent;
  text-decoration: none;
}

.btn-primary {
  background: var(--navy);
  color: var(--white) !important;
  border-color: var(--navy);
}

.btn-primary:hover {
  background: var(--navy-light);
  color: var(--white) !important;
}

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

.btn-outline:hover {
  background: var(--charcoal);
  color: var(--white);
}

.btn-white {
  background: var(--white);
  color: var(--charcoal);
  border-color: var(--white);
}

.btn-white:hover {
  background: var(--off-white);
}

.btn-accent {
  background: var(--accent);
  color: var(--white);
  border-color: var(--accent);
}

.btn-accent:hover {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
  color: var(--white);
}

header {
  position: sticky;
  top: 0;
  background: var(--white);
  border-bottom: 1px solid var(--gray-200);
  z-index: 1000;
}

.header-top {
  background: var(--charcoal);
  color: var(--white);
  padding: 8px 0;
  font-size: 0.875rem;
}

.header-top .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.header-top a {
  color: var(--white);
}

.header-top a:hover {
  opacity: 0.8;
}

.header-main {
  padding: 15px 0;
}

.header-main .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.logo {
  text-decoration: none;
  display: flex;
  align-items: center;
}

.logo img {
  height: 110px;
  width: auto;
}

.nav-desktop {
  display: none;
}

.nav-desktop ul {
  display: flex;
  list-style: none;
  gap: 30px;
  align-items: center;
}

.nav-desktop a {
  color: var(--charcoal);
  font-weight: 500;
  font-size: 0.95rem;
}

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

.nav-item {
  position: relative;
}

.nav-item.has-dropdown > a::after {
  content: '';
  display: inline-block;
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid currentColor;
  margin-left: 6px;
  vertical-align: middle;
}

.dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--white);
  min-width: 260px;
  box-shadow: var(--shadow-lg);
  border-radius: 4px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: var(--transition);
  padding: 10px 0;
}

.nav-item:hover .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown a {
  display: block;
  padding: 10px 20px;
  color: var(--charcoal);
  font-weight: 400;
}

.dropdown a:hover {
  background: var(--off-white);
  color: var(--accent);
}

.mobile-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 5px;
}

.mobile-toggle span {
  width: 25px;
  height: 3px;
  background: var(--charcoal);
  transition: var(--transition);
}

.mobile-nav {
  position: fixed;
  top: 0;
  right: -100%;
  width: 300px;
  height: 100vh;
  background: var(--navy);
  background-image: url('../images/mobile-nav-glass-bg.png');
  background-size: cover;
  background-position: center;
  box-shadow: -8px 0 30px rgba(0,0,0,0.3);
  transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1001;
  overflow-y: auto;
  padding: 24px 20px;
}

.mobile-nav::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(20, 40, 80, 0.82);
  z-index: 0;
  pointer-events: none;
}

.mobile-nav > * {
  position: relative;
  z-index: 1;
}

.mobile-nav.active {
  right: 0;
}

.mobile-nav-close {
  position: absolute;
  top: 14px;
  right: 16px;
  font-size: 1.8rem;
  cursor: pointer;
  line-height: 1;
  color: rgba(255,255,255,0.7);
  transition: color 0.2s ease;
}

.mobile-nav-close:hover {
  color: #fff;
}

.mobile-nav ul {
  list-style: none;
  margin-top: 40px;
}

.mobile-nav li {
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.mobile-nav a {
  display: block;
  padding: 13px 0;
  color: rgba(255,255,255,0.9);
  font-weight: 500;
  font-size: 0.95rem;
  transition: color 0.2s ease, padding-left 0.2s ease;
}

.mobile-nav a:hover {
  color: #d4a84b;
  padding-left: 6px;
}

.mobile-nav .mobile-dropdown-toggle {
  position: relative;
}

.mobile-nav .mobile-dropdown-toggle::after {
  content: '\25BE';
  position: absolute;
  right: 4px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
  transition: transform 0.3s ease;
}

.mobile-nav .mobile-dropdown-toggle.active-toggle::after {
  transform: translateY(-50%) rotate(180deg);
}

.mobile-nav .mobile-dropdown {
  padding-left: 0;
  display: none;
  background: rgba(255,255,255,0.06);
  border-radius: 8px;
  margin-bottom: 4px;
  overflow: hidden;
}

.mobile-nav .mobile-dropdown.active {
  display: block;
}

.mobile-nav .mobile-dropdown li {
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.mobile-nav .mobile-dropdown li:last-child {
  border-bottom: none;
}

.mobile-nav .mobile-dropdown a {
  font-weight: 600;
  font-size: 0.88rem;
  padding: 11px 16px;
  color: rgba(255,255,255,0.85);
}

.mobile-nav .mobile-dropdown a:hover {
  color: #d4a84b;
  background: rgba(255,255,255,0.04);
  padding-left: 22px;
}

.mobile-nav .mobile-dropdown .mobile-dropdown-sep {
  margin-top: 8px;
  padding-top: 10px;
  border-top: 1px solid rgba(255,255,255,0.15);
}

.mobile-nav .mobile-dropdown .mobile-featured-link {
  color: #d4a84b;
  font-weight: 700;
  font-size: 0.92rem;
  letter-spacing: 0.01em;
}

.mobile-nav > ul > li:last-child {
  border-bottom: none;
  margin-top: 12px;
}

.mobile-nav > ul > li:last-child > a {
  display: inline-block;
  background: #d4a84b;
  color: var(--navy);
  font-weight: 700;
  padding: 12px 28px;
  border-radius: 6px;
  text-align: center;
  width: 100%;
  font-size: 0.9rem;
  transition: background 0.2s ease, transform 0.2s ease;
}

.mobile-nav > ul > li:last-child > a:hover {
  background: #e0b85e;
  padding-left: 28px;
  transform: scale(1.02);
}

.mobile-nav-social {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.mobile-nav-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.7);
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.mobile-nav-social a:hover {
  background: #d4a84b;
  color: var(--navy);
  transform: scale(1.1);
}

.mobile-nav-social svg {
  width: 20px;
  height: 20px;
}

.mobile-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  z-index: 1000;
}

.mobile-overlay.active {
  opacity: 1;
  visibility: visible;
}

@media (min-width: 992px) {
  .nav-desktop { display: block; }
  .mobile-toggle { display: none; }
}

.hero {
  color: var(--white);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
  min-height: 500px;
  display: flex;
  align-items: center;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: kenburns 20s ease-in-out infinite alternate;
}

@keyframes kenburns {
  0% {
    transform: scale(1) translate(0, 0);
  }
  100% {
    transform: scale(1.15) translate(-2%, -2%);
  }
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(20, 40, 80, 0.85) 0%, rgba(26, 58, 102, 0.8) 100%);
  z-index: 1;
}

.hero-pattern::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
  opacity: 0.07;
  background-image:
    linear-gradient(30deg, rgba(255,255,255,0.1) 12%, transparent 12.5%, transparent 87%, rgba(255,255,255,0.1) 87.5%),
    linear-gradient(150deg, rgba(255,255,255,0.1) 12%, transparent 12.5%, transparent 87%, rgba(255,255,255,0.1) 87.5%),
    linear-gradient(30deg, rgba(255,255,255,0.1) 12%, transparent 12.5%, transparent 87%, rgba(255,255,255,0.1) 87.5%),
    linear-gradient(150deg, rgba(255,255,255,0.1) 12%, transparent 12.5%, transparent 87%, rgba(255,255,255,0.1) 87.5%),
    linear-gradient(60deg, rgba(127,179,211,0.15) 25%, transparent 25.5%, transparent 75%, rgba(127,179,211,0.15) 75%),
    linear-gradient(60deg, rgba(127,179,211,0.15) 25%, transparent 25.5%, transparent 75%, rgba(127,179,211,0.15) 75%);
  background-size: 80px 140px;
  background-position: 0 0, 0 0, 40px 70px, 40px 70px, 0 0, 40px 70px;
}

.hero-pattern::before {
  background:
    linear-gradient(135deg, #0d1f3c 0%, #142850 30%, #1a3a66 60%, #1f4a7a 100%);
  z-index: 1;
}

.hero-gradient::before {
  background:
    radial-gradient(ellipse at 20% 50%, rgba(59,109,156,0.4) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(127,179,211,0.2) 0%, transparent 50%),
    radial-gradient(ellipse at 60% 80%, rgba(31,74,122,0.3) 0%, transparent 50%),
    linear-gradient(160deg, #0a1628 0%, #142850 25%, #1a3a66 50%, #243b5e 75%, #142850 100%);
  z-index: 1;
}

.hero-gradient::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  z-index: 0;
  background:
    radial-gradient(circle at 30% 40%, rgba(59,109,156,0.15) 0%, transparent 40%),
    radial-gradient(circle at 70% 60%, rgba(127,179,211,0.1) 0%, transparent 35%);
  animation: heroShimmer 15s ease-in-out infinite alternate;
}

@keyframes heroShimmer {
  0% { transform: translate(0, 0) rotate(0deg); }
  100% { transform: translate(2%, 1%) rotate(1deg); }
}

.hero .container {
  position: relative;
  z-index: 2;
}

.hero-content {
  max-width: 700px;
}

.hero h1 {
  margin-bottom: 20px;
}

.hero p {
  font-size: 1.25rem;
  opacity: 0.9;
  margin-bottom: 30px;
}

.hero-buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.breadcrumb {
  padding: 15px 0;
  background: var(--off-white);
  font-size: 0.875rem;
}

.breadcrumb a {
  color: var(--gray-700);
}

.breadcrumb span {
  color: var(--gray-500);
  margin: 0 8px;
}

.section {
  padding: 80px 0;
}

.section-alt {
  background: var(--off-white);
}

.section-charcoal {
  background: #2a2d32;
  color: #ffffff;
}
.section-charcoal .section-header h2 {
  color: #ffffff;
}
.section-charcoal .section-header p {
  color: rgba(255,255,255,0.7);
}
.section-charcoal .balustrade-style-card {
  background: #35383d;
  border-radius: 12px;
}
.section-charcoal .balustrade-style-card h3 {
  color: #ffffff;
}
.section-charcoal .benefit-card {
  background: #35383d;
  border: 1px solid rgba(255,255,255,0.08);
}
.section-charcoal .benefit-card h3,
.section-charcoal .benefit-card p {
  color: #ffffff;
}
.section-charcoal .benefit-icon {
  color: #7fb3d3;
}

.section-dark {
  background: var(--charcoal);
  color: var(--white);
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 50px;
}

.section-header h2 {
  margin-bottom: 12px;
  position: relative;
  display: inline-block;
}

.section-header h2::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: var(--blue);
  margin: 16px auto 0;
  border-radius: 2px;
}

.section-header p {
  color: var(--gray-700);
  font-size: 1.1rem;
  margin-top: 8px;
}

.section-dark .section-header p {
  color: var(--gray-300);
}

.section-dark .section-header h2,
.section-dark h2 {
  color: white;
}

.section-dark .section-header h2::after {
  background: var(--blue-light);
}

.product-features {
  display: flex;
  flex-direction: column;
  gap: 60px;
  margin-bottom: 60px;
}

.product-feature {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 0;
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0,0,0,0.08);
  text-decoration: none;
  color: var(--charcoal);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.product-feature:hover {
  box-shadow: 0 12px 40px rgba(0,0,0,0.14);
  transform: translateY(-4px);
  color: var(--charcoal);
}

.product-feature-reverse {
  grid-template-columns: 1fr 1.2fr;
}

.product-feature-reverse .product-feature-img {
  order: 2;
}

.product-feature-reverse .product-feature-body {
  order: 1;
}

.product-feature-img {
  position: relative;
  overflow: hidden;
  min-height: 380px;
}

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

.product-feature:hover .product-feature-img img {
  transform: scale(1.04);
}

.product-feature-body {
  padding: 48px 44px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.product-feature-tag {
  display: inline-block;
  background: var(--navy);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 5px 14px;
  border-radius: 3px;
  margin-bottom: 16px;
  width: fit-content;
}

.product-feature-body h3 {
  font-size: 1.6rem;
  margin-bottom: 14px;
  line-height: 1.3;
}

.product-feature-body p {
  color: var(--gray-700);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 20px;
}

.product-feature-link {
  font-weight: 600;
  color: var(--accent);
  font-size: 0.95rem;
  transition: color 0.3s ease;
}

.product-feature:hover .product-feature-link {
  color: var(--navy);
}

@media (max-width: 768px) {
  .product-feature,
  .product-feature-reverse {
    grid-template-columns: 1fr;
  }
  .product-feature-reverse .product-feature-img {
    order: 0;
  }
  .product-feature-reverse .product-feature-body {
    order: 0;
  }
  .product-feature-img {
    min-height: 280px;
  }
  .product-feature-body {
    padding: 30px 24px;
  }
  .product-feature-body h3 {
    font-size: 1.35rem;
  }
}

.product-secondary-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.product-secondary-card {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  text-decoration: none;
  color: var(--white);
  display: block;
  aspect-ratio: 4/3;
}

.product-secondary-card:hover {
  color: var(--white);
}

.product-secondary-img {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
}

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

.product-secondary-card:hover .product-secondary-img img {
  transform: scale(1.05);
}

.product-secondary-overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(to top, rgba(30,32,36,0.88) 0%, rgba(30,32,36,0.3) 50%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px;
  transition: background 0.3s ease;
}

.product-secondary-card:hover .product-secondary-overlay {
  background: linear-gradient(to top, rgba(30,32,36,0.92) 0%, rgba(30,32,36,0.4) 60%, transparent 100%);
}

.product-secondary-overlay h3 {
  font-size: 1.25rem;
  margin-bottom: 6px;
  color: var(--white);
}

.product-secondary-overlay p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.8);
  margin-bottom: 10px;
  line-height: 1.4;
}

.product-secondary-overlay .product-feature-link {
  color: var(--blue-light);
  font-size: 0.85rem;
}

@media (max-width: 768px) {
  .product-secondary-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .product-secondary-card {
    aspect-ratio: 16/9;
  }
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

@media (max-width: 900px) {
  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

.benefit-card {
  background: var(--white);
  padding: 24px;
  border-radius: 8px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
  transition: var(--transition);
}

.benefit-card:hover,
.benefit-card:focus-visible {
  box-shadow: var(--shadow-md);
}

.benefit-icon {
  width: 50px;
  height: 50px;
  background: var(--charcoal);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  margin-bottom: 20px;
  font-size: 1.5rem;
}

.benefit-card h3 {
  margin-bottom: 8px;
  font-size: 1rem;
}

.benefit-card p {
  color: var(--gray-700);
  font-size: 0.88rem;
  line-height: 1.5;
  margin-bottom: 0;
}

.trust-bar {
  background: var(--off-white);
  padding: 40px 0;
  border-top: 1px solid var(--gray-200);
  border-bottom: 1px solid var(--gray-200);
}

.trust-items {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  color: var(--charcoal);
}

.trust-item svg {
  color: var(--success);
}

.process-timeline {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 20px;
  counter-reset: step;
}

.process-step {
  text-align: center;
  position: relative;
}

.process-step::before {
  counter-increment: step;
  content: counter(step);
  width: 50px;
  height: 50px;
  background: var(--charcoal);
  color: var(--white);
  border-radius: 50%;
  display: none;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
  font-weight: 700;
  font-size: 1.25rem;
}

.section-dark .process-step::before {
  background: var(--white);
  color: var(--charcoal);
}

.process-step h4 {
  font-size: 1rem;
  margin-bottom: 8px;
}

.process-step p {
  font-size: 0.875rem;
  color: var(--gray-700);
  margin-bottom: 0;
}

.section-dark .process-step p {
  color: var(--gray-300);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

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

.gallery-item {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  background: #f0f2f5;
  display: flex;
  flex-direction: column;
}

.gallery-item img {
  width: 100%;
  height: 300px;
  object-fit: contain;
  background: #f0f2f5;
  transition: var(--transition);
}

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

.gallery-caption {
  background: rgba(20, 40, 80, 0.85);
  color: var(--white);
  padding: 12px 16px;
  font-size: 0.9rem;
  text-align: center;
}

.tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 30px;
  border-bottom: 2px solid var(--gray-200);
  padding-bottom: 10px;
}

.tab-btn {
  padding: 12px 24px;
  background: transparent;
  border: none;
  font-size: 1rem;
  font-weight: 600;
  color: var(--gray-700);
  cursor: pointer;
  transition: var(--transition);
  border-radius: 4px;
}

.tab-btn:hover {
  color: var(--charcoal);
  background: var(--gray-100);
}

.tab-btn.active {
  background: var(--charcoal);
  color: var(--white);
}

.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border: 1px solid var(--gray-200);
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  padding: 20px;
  background: var(--white);
  border: none;
  text-align: left;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
  transition: var(--transition);
}

.faq-question:hover {
  background: var(--off-white);
}

.faq-question::after {
  content: '+';
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--gray-500);
  transition: var(--transition);
}

.faq-item.active .faq-question::after {
  content: '−';
}

.faq-answer {
  padding: 0 20px;
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
  padding: 0 20px 20px;
  max-height: 500px;
}

.faq-answer p {
  color: var(--gray-700);
  margin-bottom: 0;
}

.quote-form-section {
  background: var(--charcoal);
  color: var(--white);
  padding: 80px 0;
}

.quote-form-wrapper {
  display: grid;
  grid-template-columns: 1fr;
  gap: 50px;
}

@media (min-width: 992px) {
  .quote-form-wrapper {
    grid-template-columns: 1fr 1.5fr;
  }
}

.quote-form-info h2 {
  margin-bottom: 20px;
}

.quote-form-info p {
  opacity: 0.9;
}

.quote-contact-item {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}

.quote-contact-item svg {
  flex-shrink: 0;
}

.quote-form {
  background: var(--white);
  padding: 40px;
  border-radius: 8px;
  color: var(--charcoal);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  width: 100%;
  max-width: 100%;
}

@media (min-width: 768px) {
  .form-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

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

.form-group label {
  font-weight: 500;
  font-size: 0.9rem;
}

.form-group input,
.form-group textarea,
.form-group select {
  padding: 12px 16px;
  border: 1px solid var(--gray-300);
  border-radius: 4px;
  font-size: 1rem;
  font-family: inherit;
  transition: var(--transition);
  width: 100%;
  box-sizing: border-box;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(0,102,204,0.1);
}

.form-group textarea {
  min-height: 120px;
  resize: vertical;
}

.form-message {
  padding: 20px 24px;
  border-radius: 8px;
  margin-top: 20px;
  display: none;
  font-size: 1.05rem;
  font-weight: 600;
  text-align: center;
  line-height: 1.5;
  animation: formMessagePop 0.4s ease;
}

@keyframes formMessagePop {
  0% { opacity: 0; transform: scale(0.95); }
  100% { opacity: 1; transform: scale(1); }
}

.form-message.success {
  background: #142850;
  color: #ffffff;
  display: block;
  border: none;
  box-shadow: 0 4px 20px rgba(20,40,80,0.3);
}

.form-message.error {
  background: #f8d7da;
  color: #721c24;
  display: block;
  border: 1px solid #f5c6cb;
}

.case-study-teaser {
  background: var(--white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  display: grid;
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .case-study-teaser {
    grid-template-columns: 1fr 1fr;
  }
}

.case-study-image {
  min-height: 300px;
  background: var(--gray-200);
}

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

.case-study-content {
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.case-study-label {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--accent);
  margin-bottom: 10px;
}

.case-study-content h3 {
  margin-bottom: 15px;
}

.case-study-content p {
  color: var(--gray-700);
}

.tech-specs {
  background: var(--off-white);
  padding: 30px;
  border-radius: 8px;
  margin-top: 30px;
}

.tech-specs h3 {
  margin-bottom: 20px;
}

.tech-specs ul {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 15px;
}

.tech-specs li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.95rem;
}

.tech-specs li::before {
  content: '✓';
  color: var(--success);
  font-weight: bold;
  flex-shrink: 0;
}

footer {
  background: var(--charcoal);
  color: var(--white);
  padding: 60px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-col {
  min-width: 0;
  overflow: hidden;
}

.footer-col h4 {
  margin-bottom: 20px;
  font-size: 1rem;
  color: var(--white);
}

.footer-col p {
  color: var(--white);
  font-size: 0.95rem;
  line-height: 1.6;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

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

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

.footer-col a {
  color: var(--white);
  font-size: 0.95rem;
}

.footer-col a:hover {
  color: var(--blue-light);
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 15px;
  color: var(--white);
  font-size: 0.95rem;
  word-wrap: break-word;
  overflow-wrap: break-word;
  min-width: 0;
}

.footer-contact-item span {
  word-wrap: break-word;
  overflow-wrap: break-word;
  min-width: 0;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  font-size: 0.875rem;
  color: var(--white);
}

.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  padding: 20px;
}

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

.modal {
  background: var(--white);
  border-radius: 8px;
  max-width: 600px;
  width: 90%;
  margin: 0 auto;
  max-height: 90vh;
  overflow-y: auto;
  transform: translateY(20px);
  transition: var(--transition);
}

.modal-overlay.active .modal {
  transform: translateY(0);
}

.modal-header {
  padding: 20px 30px;
  border-bottom: 1px solid var(--gray-200);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.modal-close {
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--gray-500);
  transition: var(--transition);
  background: none;
  border: none;
}

.modal-close:hover {
  color: var(--charcoal);
}

.modal-body {
  padding: 30px;
}

.applications-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

@media (max-width: 768px) {
  .applications-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .applications-grid {
    grid-template-columns: 1fr;
  }
}

.application-item {
  background: var(--white);
  padding: 25px;
  border-radius: 8px;
  text-align: center;
  border: 1px solid var(--gray-200);
  transition: var(--transition);
}

.application-item:hover {
  border-color: var(--accent);
  box-shadow: var(--shadow-sm);
}

.brochure-download {
  background: var(--navy);
  padding: 40px 0;
  text-align: center;
}

.brochure-download .container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.brochure-download p {
  color: var(--white);
  font-size: 1.1rem;
  margin: 0;
  font-weight: 500;
}

.brochure-download .btn-download {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  color: var(--navy);
  padding: 12px 28px;
  border-radius: 4px;
  font-weight: 600;
  text-decoration: none;
  transition: var(--transition);
}

.brochure-download .btn-download:hover {
  background: var(--off-white);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.brochure-download .btn-download svg {
  width: 18px;
  height: 18px;
}

.application-item h4 {
  font-size: 1rem;
  margin-bottom: 8px;
}

.application-item p {
  font-size: 0.875rem;
  color: var(--gray-700);
  margin-bottom: 0;
}

.lead-times-box {
  background: var(--white);
  padding: 30px;
  border-radius: 8px;
  border-left: 4px solid var(--accent);
}

.lead-times-box h3 {
  margin-bottom: 15px;
}

.lead-times-box ul {
  list-style: none;
}

.lead-times-box li {
  padding: 8px 0;
  border-bottom: 1px solid var(--gray-200);
  display: flex;
  justify-content: space-between;
}

.lead-times-box li:last-child {
  border-bottom: none;
}

.cta-banner {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
  color: var(--white);
  padding: 60px 0;
  text-align: center;
}

.cta-banner h2 {
  margin-bottom: 15px;
}

.cta-banner p {
  opacity: 0.9;
  margin-bottom: 30px;
  font-size: 1.1rem;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

.specs-table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0 30px;
  font-size: 0.9rem;
}

.specs-table th {
  background: var(--navy);
  color: var(--white);
  padding: 12px 16px;
  text-align: left;
  font-weight: 600;
}

.specs-table td {
  padding: 10px 16px;
  border-bottom: 1px solid #e0e0e0;
}

.specs-table tr:nth-child(even) {
  background: var(--off-white);
}

.specs-table tr:hover {
  background: rgba(59, 109, 156, 0.08);
}

.product-range {
  margin-bottom: 40px;
}

.product-range h3 {
  color: var(--navy);
  margin-bottom: 10px;
  font-size: 1.3rem;
}

.product-range p {
  color: #555;
  margin-bottom: 15px;
  line-height: 1.6;
}

.footer-social {
  display: flex;
  justify-content: center;
  gap: 20px;
  padding: 20px 0;
  border-top: 1px solid rgba(255,255,255,0.15);
  margin-top: 30px;
}

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  color: var(--white);
  transition: var(--transition);
}

.footer-social a:hover {
  background: var(--accent);
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .container {
    padding: 0 24px;
  }
  .section { padding: 50px 0; }
  .hero { padding: 50px 0; }
  .quote-form { padding: 25px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px 20px; }
  .specs-table {
    font-size: 0.8rem;
  }
  .specs-table th, .specs-table td {
    padding: 8px 10px;
  }
  .section-header {
    margin-bottom: 32px;
  }
  .section-header h2 {
    margin-bottom: 16px;
  }
  .section-header p {
    font-size: 0.95rem;
  }
  h2 {
    margin-bottom: 16px;
  }
  h3 {
    margin-bottom: 12px;
  }
  .product-feature-body ul,
  .product-feature-body ol,
  .product-range ul,
  .product-range ol,
  .switchable-product-text ul,
  .fire-door-intro ul {
    padding-left: 28px;
  }
  .benefit-card {
    padding: 24px;
  }
  .product-range {
    padding: 0 4px;
  }
  .product-range h3 {
    margin-bottom: 12px;
  }
  .about-content {
    padding: 0 4px;
  }
  .about-content h3 {
    margin-top: 32px;
    margin-bottom: 14px;
  }
  .about-list {
    padding-left: 0;
  }
  .about-list li {
    margin-bottom: 12px;
    padding-left: 28px;
    line-height: 1.6;
  }
  .fire-door-intro {
    padding: 30px 20px;
  }
  .fire-door-intro h1,
  .fire-door-intro h2 {
    font-size: 1.3rem;
    margin-bottom: 8px;
  }
  .fire-door-intro p {
    font-size: 0.9rem;
    line-height: 1.6;
  }
}

.stats-counter {
  background: var(--navy);
  padding: 60px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  text-align: center;
}

.stat-number {
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 1rem;
  color: var(--blue-light);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.google-reviews-section {
  background: var(--off-white);
}

.google-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 12px;
  flex-wrap: wrap;
}

.google-rating {
  display: flex;
  align-items: center;
  gap: 6px;
}

.google-rating strong {
  font-size: 1.3rem;
  color: var(--navy);
}

.google-rating .stars {
  display: flex;
  gap: 2px;
}

.google-label {
  color: var(--gray-500);
  font-size: 0.9rem;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-top: 40px;
}

.review-card {
  background: var(--white);
  border-radius: 12px;
  padding: 30px;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
}

.review-card:hover,
.review-card:focus-visible {
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}

.review-stars {
  display: flex;
  gap: 2px;
  margin-bottom: 16px;
}

.review-text {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--gray-700);
  margin-bottom: 20px;
  font-style: italic;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.review-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
  flex-shrink: 0;
}

.review-author strong {
  display: block;
  color: var(--navy);
  font-size: 0.95rem;
}

.review-author span {
  color: var(--gray-500);
  font-size: 0.85rem;
}

.project-showcase .section-header h2,
.project-showcase .section-header p {
  color: var(--white);
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.project-card {
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
}

.project-card:hover,
.project-card:focus-visible {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.project-image {
  position: relative;
  height: 220px;
  overflow: hidden;
  background: #f0f2f5;
}

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

.project-overlay {
  position: absolute;
  top: 12px;
  left: 12px;
}

.project-tag {
  background: var(--navy);
  color: var(--white);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.project-info {
  padding: 20px;
}

.project-info h4 {
  color: var(--navy);
  margin-bottom: 8px;
  font-size: 1.05rem;
}

.project-info p {
  color: var(--gray-700);
  font-size: 0.9rem;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
  .stat-number {
    font-size: 2.5rem;
  }
  .reviews-grid {
    grid-template-columns: 1fr;
  }
  .project-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .stat-number {
    font-size: 2rem;
  }
  .stat-label {
    font-size: 0.8rem;
  }
}

.showcase-desc {
  color: var(--gray-700);
  font-size: 0.9rem;
  margin-bottom: 16px;
}

.before-after-slider {
  position: relative;
  user-select: none;
  -webkit-user-select: none;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.ba-image-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
  cursor: ew-resize;
}

.ba-image-wrapper img.ba-after {
  display: block;
  width: 100%;
  height: auto;
}

.ba-before-clip {
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  height: 100%;
  overflow: hidden;
}

.ba-before-clip img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}

.ba-handle {
  position: absolute;
  top: 0;
  left: 50%;
  width: 4px;
  height: 100%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 10;
  pointer-events: none;
}

.ba-handle-line {
  flex: 1;
  width: 3px;
  background: white;
  box-shadow: 0 0 6px rgba(0,0,0,0.4);
}

.ba-handle-circle {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--navy);
  border: 3px solid white;
  box-shadow: 0 2px 10px rgba(0,0,0,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  cursor: grab;
}
.ba-handle-circle span {
  color: white;
  font-size: 0.6rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  pointer-events: none;
  line-height: 1;
  display: block;
  text-align: center;
}

.ba-label {
  position: absolute;
  bottom: 16px;
  background: rgba(20, 40, 80, 0.8);
  color: white;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  pointer-events: none;
  z-index: 5;
}

.ba-label-left {
  left: 16px;
}

.ba-label-right {
  right: 16px;
}

.crossfade-showcase {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: #000;
}

.crossfade-stage {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.crossfade-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #111;
  opacity: 0;
  transition: opacity 1.2s ease;
}

.crossfade-img.active {
  opacity: 1;
}

.crossfade-controls {
  padding: 20px 24px;
  background: var(--navy);
}

.crossfade-progress {
  width: 100%;
  height: 4px;
  background: rgba(255,255,255,0.2);
  border-radius: 2px;
  margin-bottom: 12px;
  overflow: hidden;
}

.crossfade-progress-bar {
  width: 20%;
  height: 100%;
  background: var(--blue-light);
  border-radius: 2px;
  transition: width 0.6s ease;
}

.crossfade-labels {
  display: flex;
  justify-content: space-between;
  margin-bottom: 12px;
}

.crossfade-labels span {
  color: rgba(255,255,255,0.5);
  font-size: 0.75rem;
  font-weight: 500;
  transition: color 0.3s ease;
  text-align: center;
  flex: 1;
}

.crossfade-labels span.active {
  color: white;
}

.crossfade-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
}

.crossfade-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.4);
  background: transparent;
  cursor: pointer;
  padding: 0;
  transition: all 0.3s ease;
}

.crossfade-dot.active {
  background: var(--blue-light);
  border-color: var(--blue-light);
  transform: scale(1.2);
}

.crossfade-dot:hover {
  border-color: white;
}

.tab-sliders-stack {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

@media (max-width: 768px) {
  .crossfade-labels span {
    font-size: 0.65rem;
  }
}

.testimonials-section {
  background: var(--off-white);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 20px;
}

.testimonial-card {
  background: var(--white);
  border-radius: 12px;
  padding: 32px 28px 28px;
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  transition: var(--transition);
}

.testimonial-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
}

.testimonial-stars {
  color: #f5a623;
  font-size: 1.25rem;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.testimonial-text {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--gray-700);
  margin: 0;
  border: none;
  padding: 0;
  flex: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid var(--gray-200);
}

.testimonial-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 0.95rem;
  flex-shrink: 0;
}

.testimonial-name {
  font-weight: 600;
  color: var(--navy);
  font-size: 0.9rem;
}

.testimonials-cta {
  text-align: center;
  margin-top: 40px;
}

@media (max-width: 992px) {
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

.visual-break {
  position: relative;
  overflow: hidden;
  padding: 0;
  min-height: 400px;
  display: flex;
  align-items: center;
}

.visual-break-img {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: 0;
}

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

.visual-break-overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(135deg, rgba(30,32,36,0.85) 0%, rgba(30,32,36,0.4) 100%);
  z-index: 1;
}

.visual-break-content {
  position: relative;
  z-index: 2;
  max-width: 600px;
  padding: 60px;
  color: white;
}

.visual-break-content h2 {
  font-size: 2rem;
  margin-bottom: 16px;
  color: white;
}

.visual-break-content p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.9);
  margin-bottom: 24px;
}

@media (max-width: 768px) {
  .visual-break {
    min-height: 320px;
  }
  .visual-break-content {
    padding: 40px 24px;
  }
  .visual-break-content h2 {
    font-size: 1.5rem;
  }
}

.sticky-cta-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: var(--navy);
  padding: 12px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.sticky-cta-bar.visible {
  transform: translateY(0);
}

.sticky-cta-bar .btn {
  padding: 10px 24px;
  font-size: 0.9rem;
  white-space: nowrap;
}

.sticky-cta-bar .btn-accent {
  background: #e8a838;
  color: var(--navy);
  font-weight: 700;
  border: none;
}

.sticky-cta-bar .btn-accent:hover {
  background: #d4952e;
}

.sticky-cta-bar .sticky-phone {
  color: white;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 6px;
}

.sticky-cta-bar .sticky-phone:hover {
  color: var(--blue-light);
}

.sticky-cta-bar .sticky-divider {
  width: 1px;
  height: 24px;
  background: rgba(255,255,255,0.3);
}

@media (max-width: 768px) {
  .sticky-cta-bar {
    padding: 10px 16px;
    gap: 8px;
  }
  .sticky-cta-bar .btn {
    padding: 10px 16px;
    font-size: 0.85rem;
    flex: 1;
    text-align: center;
  }
  .sticky-cta-bar .sticky-divider {
    display: none;
  }
}

.trust-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  padding: 16px 0;
  flex-wrap: wrap;
}

.trust-strip-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--gray-700);
  font-size: 0.9rem;
  font-weight: 500;
}

.trust-strip-item svg {
  color: var(--blue);
  flex-shrink: 0;
}

.trust-strip-hero {
  margin-top: 24px;
}

.trust-strip-hero .trust-strip-item {
  color: rgba(255,255,255,0.85);
}

.trust-strip-hero .trust-strip-item svg {
  color: var(--blue-light);
}

.urgency-text {
  font-size: 0.85rem;
  color: var(--gray-700);
  margin-top: 8px;
  font-style: italic;
}

.urgency-text-light {
  color: rgba(255,255,255,0.7);
}

.about-content {
  max-width: 800px;
  margin: 0 auto;
  font-size: 1.05rem;
  line-height: 1.8;
}

.about-content h3 {
  margin-top: 40px;
  margin-bottom: 16px;
  color: var(--navy);
  position: relative;
  padding-bottom: 10px;
}

.about-content h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 3px;
  background: var(--blue);
}

.about-list {
  list-style: none;
  padding: 0;
  margin: 16px 0 24px;
}

.about-list li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 10px;
}

.about-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 8px;
  height: 8px;
  background: var(--blue);
  border-radius: 50%;
}

.process-number {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
  margin: 0 auto 15px;
}

.hero-slideshow {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
  padding: 0 !important;
  display: block !important;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-mask-image: -webkit-radial-gradient(white, black);
}

.hero-slideshow .hero-slides,
.hero-slides {
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 100% !important;
  z-index: 0;
  display: block !important;
}

.hero-slideshow .hero-slide,
.hero-slide {
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 100% !important;
  opacity: 0;
}

.hero-slideshow.hero::before {
  background: none;
}

.hero-slide.active {
  opacity: 1;
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-slide {
  -webkit-transform: scale(1);
  transform: scale(1);
  -webkit-transition: opacity 1.2s ease-in-out, -webkit-transform 6s ease-in-out;
  transition: opacity 1.2s ease-in-out, transform 6s ease-in-out;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.hero-slide.zooming {
  -webkit-transform: scale(1.08);
  transform: scale(1.08);
}

.hero-slideshow::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(30,32,36,0.65) 0%, rgba(30,32,36,0.25) 35%, rgba(30,32,36,0.05) 60%, transparent 80%);
  z-index: 1;
  pointer-events: none;
}

.hero-slideshow-content {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 2;
  text-align: center;
  padding: 0 20px 80px;
}

.hero-slideshow-content h1 {
  font-size: clamp(2rem, 5vw, 3.8rem);
  color: var(--white);
  text-shadow: 0 2px 20px rgba(0,0,0,0.4);
  margin-bottom: 30px;
  font-weight: 700;
  letter-spacing: -0.5px;
}

.hero-slideshow-content .hero-buttons {
  justify-content: center;
}

@media (max-width: 768px) {
  .hero-slideshow {
    height: 80vh;
    min-height: 400px;
  }
  .hero-slideshow-content {
    padding: 0 24px 40px;
  }
  .hero-slideshow-content h1 {
    font-size: 1.8rem;
    color: var(--white) !important;
    text-shadow: 0 2px 30px rgba(0,0,0,0.6), 0 0 60px rgba(0,0,0,0.3);
    margin-bottom: 20px;
  }
  .hero-slideshow-content .hero-buttons {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }
  .hero-slideshow-content .hero-buttons .btn {
    width: 100%;
    max-width: 280px;
    text-align: center;
    justify-content: center;
  }
  .hero-slideshow-content .hero-sub {
    font-size: 1rem;
    margin-bottom: 20px;
  }
}

.product-grid-6 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.product-grid-card {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  text-decoration: none;
  color: var(--white);
  display: block;
  aspect-ratio: 4/3;
}

.product-grid-card:hover {
  color: var(--white);
}

.product-grid-img {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
}

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

.product-grid-card:hover .product-grid-img img {
  transform: scale(1.05);
}

.under-construction-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: #f5c518;
  color: #1a1a1a;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 4px 10px;
  border-radius: 4px;
  z-index: 10;
  box-shadow: 0 2px 6px rgba(0,0,0,0.25);
  pointer-events: none;
}

.product-grid-overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(to top, rgba(30,32,36,0.88) 0%, rgba(30,32,36,0.3) 50%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px;
  transition: background 0.3s ease;
}

.product-grid-card:hover .product-grid-overlay {
  background: linear-gradient(to top, rgba(30,32,36,0.92) 0%, rgba(30,32,36,0.4) 60%, transparent 100%);
}

.product-grid-overlay h3 {
  font-size: 1.2rem;
  margin-bottom: 6px;
  color: var(--white);
}

.product-grid-overlay p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.8);
  margin-bottom: 8px;
  line-height: 1.4;
}

.product-grid-link {
  font-weight: 600;
  color: var(--blue-light);
  font-size: 0.85rem;
  transition: color 0.3s ease;
}

.product-grid-card:hover .product-grid-link {
  color: var(--white);
}

@media (max-width: 768px) {
  .product-grid-6 {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .product-grid-card {
    aspect-ratio: 16/9;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .product-grid-6 {
    grid-template-columns: repeat(2, 1fr);
  }
}

.switchable-product-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.switchable-product-text h2 {
  font-size: 1.8rem;
  color: var(--navy);
  margin-bottom: 16px;
}
.switchable-product-text p {
  color: var(--gray-700);
  line-height: 1.7;
  margin-bottom: 16px;
}
.switchable-product-text ul {
  padding-left: 20px;
  margin-bottom: 0;
}
.switchable-product-text ul li {
  color: var(--gray-700);
  line-height: 1.6;
  margin-bottom: 8px;
}
.switchable-product-slider .showcase-desc {
  font-size: 0.85rem;
  color: var(--gray-500);
  margin-bottom: 12px;
  text-align: right;
}
.reactive-intro p {
  font-size: 1.05rem;
  line-height: 1.7;
  opacity: 0.9;
  max-width: 800px;
}
.switchable-product-section {
  padding-top: 60px;
  padding-bottom: 60px;
}
.hero-sub {
  font-size: 1.2rem;
  color: rgba(255,255,255,0.9);
  margin-bottom: 24px;
  letter-spacing: 0.02em;
}
.reactive-intro {
  padding: 40px 20px 30px;
}
.reactive-intro h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: #ffffff;
}
.switchable-product-section {
  padding-top: 20px;
}
.switchable-cta-section {
  background: var(--navy);
  padding: 80px 0;
  text-align: center;
}
.switchable-cta-section h2 {
  color: white;
  font-size: 2rem;
  margin-bottom: 16px;
}
.switchable-cta-section p {
  color: rgba(255,255,255,0.8);
  max-width: 600px;
  margin: 0 auto 32px;
  line-height: 1.6;
}
.switchable-cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
}
@media (max-width: 768px) {
  .switchable-product-row {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .switchable-product-text h2 {
    font-size: 1.4rem;
    margin-bottom: 14px;
  }
  .switchable-product-text p {
    font-size: 0.95rem;
  }
  .switchable-product-text ul {
    padding-left: 24px;
  }
  .switchable-product-text ul li {
    margin-bottom: 10px;
  }
  .switchable-product-section {
    padding: 40px 0;
  }
  .switchable-cta-section {
    padding: 50px 24px;
  }
  .switchable-cta-section h2 {
    font-size: 1.5rem;
  }
  .switchable-cta-buttons {
    flex-direction: column;
    align-items: center;
  }
}

.switchable-hero-toggle {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 500px;
  overflow: hidden;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-mask-image: -webkit-radial-gradient(white, black);
}
.switchable-hero-img {
  -webkit-transform: scale(1);
  transform: scale(1);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-transition: opacity 2s ease-in-out, -webkit-transform 5s ease-in-out;
  transition: opacity 2s ease-in-out, transform 5s ease-in-out;
}
.switchable-hero-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.switchable-hero-img.zooming-hero {
  -webkit-transform: scale(1.08);
  transform: scale(1.08);
}
@media (max-width: 768px) {
  .switchable-hero-toggle {
    height: 80vh;
    min-height: 400px;
  }
}

.fire-door-hero {
  width: 100%;
  height: 85vh;
  overflow: hidden;
  position: relative;
}
.fire-door-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  animation: kenBurnsFireDoor 20s ease-in-out infinite alternate;
  will-change: transform;
}
@keyframes kenBurnsFireDoor {
  0% {
    transform: scale(1) translate(0, 0);
  }
  100% {
    transform: scale(1.25) translate(-3%, -2%);
  }
}
.fire-door-intro {
  background: var(--navy);
  color: white;
  padding: 50px 20px;
  text-align: left;
}
.fire-door-intro h1,
.fire-door-intro h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: #ffffff;
}
.fire-door-intro p {
  font-size: 1.05rem;
  line-height: 1.7;
  opacity: 0.9;
  max-width: 800px;
}
.fire-door-carousel-section {
  padding: 60px 0;
  background: var(--white);
  overflow: hidden;
}
.fire-door-carousel {
  width: 100%;
  overflow: hidden;
  position: relative;
  padding: 0 50px;
  box-sizing: border-box;
}
.fire-door-carousel-track {
  display: flex;
  gap: 20px;
  will-change: transform;
  transition: transform 0.6s ease;
}
.fire-door-carousel-item {
  flex: 0 0 320px;
  min-width: 320px;
  height: 280px;
  border-radius: 8px;
  overflow: hidden;
}
.fire-door-carousel-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  background: var(--navy);
  color: #fff;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 1.1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.3s ease, background 0.3s ease;
  opacity: 0.8;
}
.carousel-arrow:hover {
  opacity: 1;
  background: #1a3a6a;
}
.carousel-arrow-prev {
  left: 5px;
}
.carousel-arrow-next {
  right: 5px;
}
.style-options-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  max-width: 900px;
  margin: 0 auto;
}
.style-option-card {
  text-align: center;
}
.style-option-card img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: 8px;
  display: block;
  margin-bottom: 14px;
}
.style-option-card h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--navy);
  font-style: italic;
}
@media (max-width: 768px) {
  .fire-door-hero {
    height: 50vh;
  }
  .fire-door-hero img[src*="f1-factory"] {
    object-position: 75% center;
  }
  .fire-door-intro h1 {
    font-size: 1.5rem;
  }
  .fire-door-carousel {
    padding: 0 40px;
  }
  .fire-door-carousel-item {
    flex: 0 0 calc(100vw - 120px);
    min-width: calc(100vw - 120px);
    height: 240px;
  }
  .fire-door-carousel-track {
    gap: 16px;
  }
  .style-options-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

.heritage-collage-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.heritage-collage-item {
  aspect-ratio: 4/3;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.heritage-collage-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.heritage-collage-item:hover {
  transform: scale(1.05);
  box-shadow: 0 12px 40px rgba(0,0,0,0.25);
  z-index: 2;
  position: relative;
}
.heritage-collage-item:hover img {
  transform: scale(1.03);
}
@media (max-width: 768px) {
  .heritage-collage-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

.balustrade-filter-tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 30px;
  flex-wrap: wrap;
  justify-content: center;
}
.balustrade-filter-tab {
  padding: 10px 24px;
  border: 2px solid rgba(255,255,255,0.25);
  background: transparent;
  color: rgba(255,255,255,0.7);
  border-radius: 30px;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: 'Inter', sans-serif;
}
.balustrade-filter-tab:hover {
  border-color: rgba(255,255,255,0.5);
  color: #ffffff;
}
.balustrade-filter-tab.active {
  background: #ffffff;
  color: #2a2d32;
  border-color: #ffffff;
}
.balustrade-style-card.hidden {
  display: none;
}
.balustrade-styles-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  max-width: 1100px;
  margin: 0 auto;
}
.balustrade-style-card {
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-radius: 12px;
  overflow: hidden;
  background: var(--white);
  padding-bottom: 16px;
}
.balustrade-style-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}
.balustrade-style-card img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: contain;
  display: block;
  background: #f8f9fa;
  padding: 12px;
}
.balustrade-style-card h3 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy);
  margin-top: 8px;
  font-style: italic;
}
@media (max-width: 992px) {
  .balustrade-styles-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}
@media (max-width: 480px) {
  .balustrade-styles-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }
  .balustrade-style-card h3 {
    font-size: 0.85rem;
  }
}

.glass-colour-selector {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 40px;
  align-items: start;
  max-width: 1000px;
  margin: 0 auto;
}
.glass-colour-display {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}
.glass-colour-display {
  position: relative;
}
.glass-colour-display img {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
  display: block;
}
.glass-colour-display .glass-colour-next {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.5s ease;
}
.glass-colour-swatches {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.glass-swatch {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px 20px;
  border: 2px solid transparent;
  border-radius: 8px;
  cursor: pointer;
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--navy);
  transition: border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  outline: none;
  -webkit-tap-highlight-color: transparent;
  background-color: #dce4e8;
  background-clip: padding-box;
  -webkit-background-clip: padding-box;
}
.glass-swatch:hover {
  border-color: var(--blue);
  transform: translateX(-4px);
}
.glass-swatch.active {
  border-color: var(--navy);
  box-shadow: 0 2px 12px rgba(20,40,80,0.2);
}
.glass-swatch span {
  pointer-events: none;
}
@media (max-width: 768px) {
  .glass-colour-selector {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .glass-colour-swatches {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
  }
  .glass-swatch {
    padding: 10px 16px;
    font-size: 0.85rem;
    min-height: 40px;
    border: 2px solid rgba(20,40,80,0.15);
    border-radius: 20px;
  }
}

.balustrade-system-selector {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 40px;
  align-items: start;
  max-width: 1100px;
  margin: 0 auto;
}
.balustrade-system-display {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}
.balustrade-system-display img {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
  display: block;
}
.balustrade-system-display .glass-colour-next {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.5s ease;
}
.balustrade-system-swatches {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.system-swatch {
  display: flex;
  align-items: center;
  padding: 12px 18px;
  border: 2px solid rgba(0,0,0,0.08);
  border-radius: 8px;
  cursor: pointer;
  font-family: inherit;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--navy);
  background: #f0f2f4;
  transition: border-color 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
  -webkit-appearance: none;
  appearance: none;
  outline: none;
  -webkit-tap-highlight-color: transparent;
}
.system-swatch:hover {
  border-color: var(--blue);
  transform: translateX(-4px);
}
.system-swatch.active {
  border-color: var(--navy);
  background: #e2e7ec;
  box-shadow: 0 2px 12px rgba(0,0,0,0.1);
}
.system-swatch span {
  pointer-events: none;
}
@media (max-width: 768px) {
  .balustrade-system-selector {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .balustrade-system-swatches {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
  }
  .system-swatch {
    padding: 10px 14px;
    font-size: 0.8rem;
    border-radius: 20px;
  }
}

.fire-screen-hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 500px;
  overflow: hidden;
}
.fire-screen-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.fire-screen-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0,0,0,0.08) 0%, rgba(0,0,0,0.35) 100%);
}
.fire-screen-hero-content {
  position: absolute;
  bottom: 80px;
  left: 0;
  right: 0;
  text-align: center;
  padding: 0 20px;
}
.fire-screen-hero-content h1 {
  color: #ffffff;
  font-size: 3.5rem;
  font-weight: 700;
  letter-spacing: 1px;
  line-height: 1.15;
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}
.fire-screen-intro {
  background: var(--navy);
  padding: 0 0 40px;
  text-align: left;
  overflow: hidden;
}
.fire-screen-intro .container {
  padding-top: 30px;
}
.regional-ticker {
  width: 100%;
  overflow: hidden;
  background: var(--navy);
  padding: 12px 0;
  white-space: nowrap;
}
.fire-door-intro .regional-ticker,
.fire-screen-intro .regional-ticker {
  background: rgba(255,255,255,0.08);
  margin-top: -50px;
  margin-left: -20px;
  margin-right: -20px;
  margin-bottom: 20px;
  padding: 12px 0;
  width: calc(100% + 40px);
}
.fire-screen-intro .regional-ticker {
  margin-top: 0;
}
.regional-ticker-track {
  display: inline-flex;
  gap: 0;
  animation: tickerScroll 18s linear infinite;
  will-change: transform;
}
.regional-ticker-track span {
  color: rgba(255,255,255,0.75);
  font-size: 0.85rem;
  letter-spacing: 0.3px;
  padding: 0 6px;
  flex-shrink: 0;
}
.regional-ticker-track .ticker-dot {
  padding: 0 4px;
}
@keyframes tickerScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.fire-screen-intro h2 {
  color: #ffffff;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 12px;
}
.fire-screen-intro-materials {
  color: rgba(255,255,255,0.95);
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 6px;
}
.fire-screen-intro-ratings {
  color: rgba(255,255,255,0.95);
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 1px;
}
.fire-screen-material-section {
  padding: 70px 0;
}
.fire-screen-section-alt {
  background: var(--off-white);
}
.fire-screen-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
  background: #fff;
  border-radius: 16px;
  padding: 40px;
  box-shadow: 0 2px 16px rgba(0,0,0,0.07);
}
.fire-screen-section-alt .fire-screen-row {
  background: #fff;
}
.fire-screen-text h2 {
  font-size: 2rem;
  color: var(--navy);
  margin-bottom: 20px;
  font-weight: 700;
}
.fire-screen-text p {
  color: #444;
  line-height: 1.75;
  margin-bottom: 14px;
  font-size: 0.97rem;
}
.fire-screen-img-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.fire-screen-img-grid img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 6px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.fire-screen-img-grid img:hover {
  transform: scale(1.03);
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}
@media (max-width: 768px) {
  .fire-screen-hero {
    height: 60vh;
    min-height: 350px;
  }
  .fire-screen-hero-content {
    bottom: 40px;
  }
  .fire-screen-hero-content h1 {
    font-size: 2rem;
  }
  .fire-screen-intro {
    padding: 30px 16px;
  }
  .fire-screen-intro h2 {
    font-size: 1.4rem;
  }
  .fire-screen-material-section {
    padding: 40px 0;
  }
  .fire-screen-row {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 24px;
  }
  .fire-screen-img-grid img {
    height: 160px;
  }
}

.showcase-filters {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.showcase-filter-btn {
  padding: 10px 28px;
  font-size: 0.95rem;
  font-weight: 600;
  border: 2px solid var(--navy);
  border-radius: 4px;
  background: transparent;
  color: var(--navy);
  cursor: pointer;
  transition: all 0.3s ease;
}
.showcase-filter-btn:hover {
  background: var(--navy-light);
  color: #fff;
  border-color: var(--navy-light);
}
.showcase-filter-btn.active {
  background: var(--navy);
  color: #fff;
}
.product-showcase-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.product-showcase-card {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  aspect-ratio: 4/3;
  cursor: pointer;
}
.product-showcase-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
  display: block;
}
.product-showcase-card:hover img {
  transform: scale(1.05);
}
.product-showcase-card .card-title {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 40px 20px 20px;
  background: linear-gradient(transparent, rgba(0,0,0,0.7));
  z-index: 2;
  pointer-events: none;
}
.product-showcase-card .card-title h3 {
  color: #fff;
  font-size: 1.15rem;
  margin: 0;
}
.product-showcase-card .card-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(20,40,80,0.92);
  color: #fff;
  padding: 24px;
  transform: translateY(100%);
  transition: transform 0.4s ease;
  z-index: 3;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.product-showcase-card:hover .card-overlay {
  transform: translateY(0);
}
.product-showcase-card .card-overlay p {
  font-size: 0.92rem;
  line-height: 1.5;
  margin: 0;
  color: rgba(255,255,255,0.9);
}
.product-showcase-card .card-overlay .btn-sm {
  padding: 8px 20px;
  font-size: 0.85rem;
  width: fit-content;
}
.product-showcase-card.showcase-hidden {
  display: none !important;
}
.product-showcase-card.showcase-last-row-single {
  grid-column: 1 / -1;
  max-width: 50%;
  justify-self: center;
}
.product-showcase-card.showcase-fade-in {
  animation: showcaseFadeIn 0.4s ease forwards;
}
@keyframes showcaseFadeIn {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}
@media (max-width: 768px) {
  .product-showcase-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  .product-showcase-card {
    perspective: 800px;
    overflow: visible;
    background: none;
    border-radius: 12px;
  }
  .product-showcase-card .card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform 0.5s ease;
    transform-style: preserve-3d;
  }
  .product-showcase-card.mobile-flipped .card-inner {
    transform: rotateY(180deg);
  }
  .product-showcase-card .card-front,
  .product-showcase-card .card-back {
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    border-radius: 12px;
    overflow: hidden;
  }
  .product-showcase-card .card-front {
    position: relative;
  }
  .product-showcase-card .card-back {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    transform: rotateY(180deg);
    background: var(--navy);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px 16px;
    text-align: center;
    gap: 12px;
  }
  .product-showcase-card .card-back h4 {
    color: #fff;
    font-size: 1.05rem;
    font-weight: 700;
    margin: 0;
  }
  .product-showcase-card .card-back p {
    color: rgba(255,255,255,0.88);
    font-size: 0.85rem;
    line-height: 1.5;
    margin: 0;
  }
  .product-showcase-card .card-back .btn-flip-enquire {
    display: inline-block;
    background: #d4a84b;
    color: var(--navy);
    font-weight: 700;
    font-size: 0.85rem;
    padding: 10px 24px;
    border-radius: 6px;
    border: none;
    cursor: pointer;
    text-decoration: none;
    margin-top: 4px;
  }
  .product-showcase-card .card-overlay {
    display: none !important;
  }
  .product-showcase-card:hover .card-overlay {
    display: none !important;
  }
  .product-showcase-card:hover img {
    transform: none;
  }
  .product-showcase-card .card-title {
    padding: 30px 14px 14px;
  }
  .product-showcase-card .card-title h3 {
    font-size: 1rem;
  }
  .product-showcase-card.showcase-last-row-single {
    max-width: 100%;
  }
}
@media (max-width: 480px) {
  .product-showcase-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}
