/* Deck Container Below Navbar Architecture for Affordable Firewood Winnipeg */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;500;600;700;800;900&family=Plus+Jakarta+Sans:ital,wght@0,400;0,500;0,600;0,700;1,400&display=swap');

:root {
  /* Deep Ember Charcoal & Flame Palette */
  --bg-dark: #080605;
  --bg-card: rgba(22, 17, 14, 0.92);
  --bg-card-hover: rgba(34, 26, 21, 0.96);
  --bg-surface: #100c0a;
  --bg-surface-lighter: #1a1411;
  
  --primary-flame: #ff4500;
  --primary-amber: #ff8c00;
  --primary-wood: #e09648;
  --accent-gold: #ffc107;
  --accent-emerald: #10b981;
  
  --text-main: #fcfaf7;
  --text-muted: #cdbfb4;
  --text-dim: #988a7e;
  
  --border-subtle: rgba(224, 150, 72, 0.22);
  --border-glow: rgba(255, 69, 0, 0.55);
  --border-active: rgba(255, 140, 0, 0.75);
  
  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 32px;
  --radius-full: 9999px;
  
  --shadow-sm: 0 6px 20px rgba(0, 0, 0, 0.4);
  --shadow-md: 0 14px 36px rgba(0, 0, 0, 0.6);
  --shadow-flame: 0 12px 36px rgba(255, 69, 0, 0.4);
  --shadow-flame-lg: 0 22px 60px rgba(255, 69, 0, 0.6);
  
  /* Slower Cinematic 1.65s Element Flight Duration */
  --transition-element-flight: 1.65s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  
  --font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
}

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

html, body {
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  font-family: var(--font-body);
  background-color: var(--bg-dark);
  color: var(--text-main);
  line-height: 1.6;
}

/* Blazing Fire Glow Layer Pinned To Bottom of Screen */
body::after {
  content: '';
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;
  height: 240px;
  background: linear-gradient(to top, 
    rgba(255, 30, 0, 0.6) 0%, 
    rgba(255, 69, 0, 0.38) 35%, 
    rgba(255, 140, 0, 0.18) 70%, 
    transparent 100%
  );
  pointer-events: none;
  z-index: 1;
  animation: bottomFirePulse 2.8s infinite alternate ease-in-out;
}

@keyframes bottomFirePulse {
  0% {
    height: 200px;
    opacity: 0.8;
    filter: saturate(1.2);
  }
  50% {
    height: 260px;
    opacity: 1;
    filter: saturate(1.7);
  }
  100% {
    height: 220px;
    opacity: 0.85;
    filter: saturate(1.3);
  }
}

/* High-Visibility Floating Embers Background Canvas */
#emberCanvas {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  z-index: 0;
}

/* Status Bar Top Announcement */
.top-bar {
  background: linear-gradient(90deg, #18110d, #2a1b14, #18110d);
  border-bottom: 1px solid var(--border-subtle);
  padding: 8px 0;
  font-size: 0.84rem;
  color: var(--text-muted);
  text-align: center;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 36px;
  z-index: 1002;
}

.status-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent-emerald);
  margin-right: 6px;
  box-shadow: 0 0 8px var(--accent-emerald);
  animation: statusPulse 2s infinite ease-in-out;
}

/* Navigation Bar */
.navbar {
  position: fixed;
  top: 36px;
  left: 0;
  width: 100%;
  height: 76px;
  z-index: 1000;
  transition: var(--transition-fast);
  display: flex;
  align-items: center;
  background: rgba(8, 6, 5, 0.96);
  backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--border-subtle);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  height: 100%;
}

/* Full-Screen Section Deck Container: Starts STRICTLY BELOW Navbar (top: 112px) */
.deck-container {
  position: fixed;
  top: 112px;
  left: 0;
  width: 100vw;
  height: calc(100vh - 112px);
  overflow: hidden;
  z-index: 2;
}

.deck-slide {
  position: absolute;
  inset: 0;
  width: 100vw;
  height: calc(100vh - 112px);
  overflow: hidden;
  padding: 16px 0 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  background: transparent;
}

.deck-slide.active-slide {
  z-index: 10;
  pointer-events: auto;
}

/* Base Hardware-Accelerated Flight Element */
.slide-item {
  transition: transform 1.1s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform, opacity;
  transform: translateZ(0);
  opacity: 0;
}

/* Inactive / Exiting Stage: Rapid 0.22s Fade Out & Zero-Delay Departure (Eliminates Bleed-Through) */
.deck-slide:not(.active-slide) .slide-item {
  opacity: 0 !important;
  transition: opacity 0.22s ease-out, transform 0.35s ease-out !important;
  transition-delay: 0s !important;
}

/* Active Stage: All Directional Elements Fly Into Centered Position (0, 0) and Fade In */
.deck-slide.active-slide .slide-item {
  transform: translate3d(0, 0, 0) !important;
  opacity: 1 !important;
  transition: transform 1.1s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

/* --- 1. DIRECTION: SLIDE LEFT --- */
.deck-slide.passed-slide .slide-left {
  transform: translate3d(-100%, 0, 0) !important;
  opacity: 0 !important;
}
.deck-slide.upcoming-slide .slide-left {
  transform: translate3d(100%, 0, 0) !important;
  opacity: 0 !important;
}

/* --- 2. DIRECTION: SLIDE RIGHT --- */
.deck-slide.passed-slide .slide-right {
  transform: translate3d(100%, 0, 0) !important;
  opacity: 0 !important;
}
.deck-slide.upcoming-slide .slide-right {
  transform: translate3d(-100%, 0, 0) !important;
  opacity: 0 !important;
}

/* --- 3. DIRECTION: SLIDE UP --- */
.deck-slide.passed-slide .slide-up {
  transform: translate3d(0, -100%, 0) !important;
  opacity: 0 !important;
}
.deck-slide.upcoming-slide .slide-up {
  transform: translate3d(0, 100%, 0) !important;
  opacity: 0 !important;
}

/* --- 4. DIRECTION: SLIDE DOWN --- */
.deck-slide.passed-slide .slide-down {
  transform: translate3d(0, 100%, 0) !important;
  opacity: 0 !important;
}
.deck-slide.upcoming-slide .slide-down {
  transform: translate3d(0, -100%, 0) !important;
  opacity: 0 !important;
}

/* Staggered Delays: ONLY Apply When Entering Active Slide */
.deck-slide.active-slide .delay-100 { transition-delay: 0.1s !important; }
.deck-slide.active-slide .delay-200 { transition-delay: 0.2s !important; }
.deck-slide.active-slide .delay-300 { transition-delay: 0.3s !important; }
.deck-slide.active-slide .delay-400 { transition-delay: 0.4s !important; }

/* Deck Slide Indicator Navigation Bar on Right Screen Edge */
.slide-indicators {
  position: fixed;
  right: 28px;
  top: 55%;
  transform: translateY(-50%);
  z-index: 1001;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.indicator-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.25);
  border: 1px solid var(--border-subtle);
  cursor: pointer;
  transition: var(--transition-fast);
}

.indicator-dot.active {
  background: var(--primary-flame);
  box-shadow: 0 0 12px var(--primary-flame);
  transform: scale(1.4);
  border-color: var(--primary-amber);
}

/* Keyframe Animations */
@keyframes flamePulse {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 0 15px rgba(255, 69, 0, 0.5);
  }
  50% {
    transform: scale(1.06);
    box-shadow: 0 0 28px rgba(255, 140, 0, 0.85);
  }
}

@keyframes shimmer {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(220%); }
}

@keyframes floatSlow {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

@keyframes statusPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(1.3); }
}

/* Typography Utility */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  line-height: 1.15;
  font-weight: 800;
  letter-spacing: -0.03em;
}

a {
  color: inherit;
  text-decoration: none;
  white-space: nowrap;
}

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

/* Form & Input Field Global Styles */
input[type="text"],
input[type="tel"],
input[type="email"],
input[type="number"],
input[type="search"],
textarea,
select,
.form-control,
.form-select {
  width: 100%;
  padding: 12px 18px;
  border-radius: var(--radius-md);
  background: rgba(16, 12, 10, 0.88);
  border: 1px solid var(--border-subtle);
  color: var(--text-main);
  font-family: var(--font-body);
  font-size: 1rem;
  outline: none;
  transition: var(--transition-fast);
  box-sizing: border-box;
  box-shadow: inset 0 2px 5px rgba(0,0,0,0.5);
  backdrop-filter: blur(14px);
}

input[type="text"]:focus,
input[type="tel"]:focus,
input[type="email"]:focus,
input[type="number"]:focus,
input[type="search"]:focus,
textarea:focus,
select:focus,
.form-control:focus,
.form-select:focus {
  border-color: var(--primary-flame);
  box-shadow: 0 0 0 3px rgba(255, 69, 0, 0.3), 0 6px 20px rgba(255, 69, 0, 0.2);
  background: rgba(26, 20, 17, 0.95);
}

textarea {
  resize: vertical;
  min-height: 80px;
}

.form-group {
  margin-bottom: 14px;
  text-align: left;
}

.form-label {
  display: block;
  font-weight: 600;
  font-size: 0.88rem;
  margin-bottom: 5px;
  color: var(--text-main);
  letter-spacing: 0.01em;
}

/* Utility Containers */
.container {
  width: 100%;
  max-width: 1260px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 2;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--text-main);
  white-space: nowrap;
  letter-spacing: -0.01em;
  flex-shrink: 0;
}

.logo-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  line-height: 1.1;
  flex-shrink: 0;
}

.logo-img {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  object-fit: cover;
  border: 1.5px solid var(--primary-amber);
  box-shadow: 0 3px 10px rgba(255, 69, 0, 0.4);
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
  flex-shrink: 0;
}

.logo:hover .logo-img {
  transform: scale(1.08) rotate(3deg);
  box-shadow: 0 5px 18px rgba(255, 69, 0, 0.75);
}

.logo-text span {
  background: linear-gradient(135deg, var(--primary-flame), var(--primary-amber));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.logo-sub {
  font-size: 0.58rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--primary-wood);
  display: block;
  margin-top: 1px;
  white-space: nowrap;
}

nav {
  flex-shrink: 1;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 18px;
  list-style: none;
}

.nav-link {
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--text-muted);
  transition: var(--transition-fast);
  position: relative;
  white-space: nowrap;
  padding: 6px 0;
}

.nav-link:hover,
.nav-link.active {
  color: var(--text-main);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--primary-flame), var(--primary-amber));
  transition: var(--transition-fast);
  border-radius: 2px;
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
  white-space: nowrap;
}

.nav-cta .btn {
  padding: 9px 20px;
  min-height: 40px;
  font-size: 0.88rem;
}

/* Primary Button Component */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 28px;
  min-height: 46px;
  border-radius: var(--radius-full);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  transition: var(--transition-fast);
  border: 1px solid transparent;
  outline: none;
  white-space: nowrap;
  max-width: 100%;
  box-sizing: border-box;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary-flame), var(--primary-amber));
  color: #fff;
  box-shadow: var(--shadow-flame);
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.28), transparent);
  transform: skewX(-20deg);
  animation: shimmer 3.5s infinite;
}

.btn-primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: var(--shadow-flame-lg);
}

.btn-outline {
  background: rgba(255, 255, 255, 0.04);
  color: var(--text-main);
  border-color: var(--border-subtle);
  backdrop-filter: blur(12px);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--primary-flame);
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 8px 24px rgba(255, 69, 0, 0.2);
}

.btn-sm {
  padding: 8px 18px;
  font-size: 0.88rem;
  min-height: 38px;
}

.btn-lg {
  padding: 14px 30px;
  font-size: 1.02rem;
  min-height: 50px;
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text-main);
  font-size: 1.6rem;
  cursor: pointer;
}

/* Hero Section */
.hero {
  position: relative;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: center;
}

.badge-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 7px 20px;
  border-radius: var(--radius-full);
  background: rgba(255, 69, 0, 0.14);
  border: 1px solid rgba(255, 69, 0, 0.38);
  color: var(--primary-flame);
  font-weight: 700;
  font-size: 0.88rem;
  margin-bottom: 16px;
  white-space: nowrap;
  box-shadow: 0 4px 18px rgba(255, 69, 0, 0.18);
}

.hero-title {
  font-size: 3.2rem;
  line-height: 1.1;
  margin-bottom: 16px;
}

.hero-title .highlight {
  background: linear-gradient(135deg, var(--primary-flame), var(--primary-amber), var(--primary-wood));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-description {
  font-size: 1.08rem;
  color: var(--text-muted);
  margin-bottom: 24px;
  max-width: 580px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.hero-features {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-top: 26px;
  padding-top: 16px;
  border-top: 1px solid var(--border-subtle);
}

.feature-stat {
  display: flex;
  flex-direction: column;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--primary-flame), var(--primary-amber));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.stat-label {
  font-size: 0.84rem;
  color: var(--text-dim);
  white-space: nowrap;
  font-weight: 600;
}

.hero-visual {
  position: relative;
}

.hero-main-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-glow);
  background: var(--bg-card);
  animation: floatSlow 7s ease-in-out infinite;
}

.hero-main-card img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  object-position: center 45%;
  transition: transform 0.6s ease;
}

.hero-main-card:hover img {
  transform: scale(1.04);
}

.hero-badge-overlay {
  position: absolute;
  bottom: 16px;
  left: 16px;
  right: 16px;
  padding: 16px 20px;
  background: rgba(8, 6, 5, 0.92);
  backdrop-filter: blur(18px);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-glow);
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.7);
}

.badge-icon-flame {
  font-size: 1.8rem;
  color: var(--primary-flame);
}

/* Feature Grid Section */
.section-header {
  text-align: center;
  max-width: 740px;
  margin: 0 auto 28px;
}

.section-subtitle {
  color: var(--primary-flame);
  text-transform: uppercase;
  font-weight: 800;
  font-size: 0.84rem;
  letter-spacing: 0.14em;
  margin-bottom: 6px;
  display: block;
}

.section-title {
  font-size: 2.2rem;
  margin-bottom: 10px;
}

.section-desc {
  color: var(--text-muted);
  font-size: 1rem;
}

/* Mouse Spotlight Card Halos */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}

.feature-card,
.product-card,
.spotlight-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 24px 20px;
  transition: var(--transition-fast);
  backdrop-filter: blur(14px);
  position: relative;
  overflow: hidden;
}

/* Mouse Spotlight Layer */
.feature-card::after,
.product-card::after,
.spotlight-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(500px circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(255, 69, 0, 0.12), transparent 40%);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.feature-card:hover::after,
.product-card:hover::after,
.spotlight-card:hover::after {
  opacity: 1;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 0;
  background: linear-gradient(180deg, var(--primary-flame), var(--primary-amber));
  transition: var(--transition-fast);
}

.feature-card:hover::before {
  height: 100%;
}

.feature-card:hover {
  transform: translateY(-6px);
  border-color: var(--border-glow);
  box-shadow: var(--shadow-flame);
  background: var(--bg-card-hover);
}

.feature-icon {
  width: 46px;
  height: 46px;
  border-radius: var(--radius-md);
  background: rgba(255, 69, 0, 0.14);
  color: var(--primary-flame);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  margin-bottom: 14px;
  border: 1px solid rgba(255, 69, 0, 0.28);
}

.feature-card h3 {
  font-size: 1.18rem;
  margin-bottom: 8px;
}

.feature-card p {
  color: var(--text-muted);
  font-size: 0.92rem;
}

/* Products Selection Grid */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-bottom: 24px;
}

.product-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  padding: 0;
}

.product-card.popular {
  border-color: var(--primary-flame);
  box-shadow: var(--shadow-flame);
}

.product-card.popular::before {
  content: 'MOST POPULAR OPTION';
  position: absolute;
  top: 14px;
  right: 14px;
  background: linear-gradient(135deg, var(--primary-flame), var(--primary-amber));
  color: #fff;
  font-size: 0.7rem;
  font-weight: 900;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  z-index: 10;
  letter-spacing: 0.06em;
  white-space: nowrap;
  box-shadow: 0 4px 14px rgba(255, 69, 0, 0.4);
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-flame-lg);
  border-color: var(--border-glow);
}

.product-img {
  height: 180px;
  position: relative;
  overflow: hidden;
}

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

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

.product-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.product-title {
  font-size: 1.3rem;
  margin-bottom: 4px;
}

.product-specs {
  font-size: 0.85rem;
  color: var(--primary-wood);
  font-weight: 700;
  margin-bottom: 12px;
}

.product-list {
  list-style: none;
  margin-bottom: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.product-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.product-list i {
  color: var(--primary-flame);
}

.product-footer {
  margin-top: auto;
  padding-top: 8px;
}

/* Photo Gallery Grid */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 16px;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  height: 200px;
  cursor: pointer;
  border: 1px solid var(--border-subtle);
  transition: var(--transition-fast);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transition: transform 0.6s ease;
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(8, 6, 5, 0.94) 0%, transparent 60%);
  display: flex;
  align-items: flex-end;
  padding: 14px;
  opacity: 0;
  transition: var(--transition-fast);
}

.gallery-item:hover {
  border-color: var(--primary-flame);
  box-shadow: 0 10px 28px rgba(255, 69, 0, 0.35);
}

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

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

.gallery-caption {
  color: var(--text-main);
  font-weight: 700;
  font-size: 0.88rem;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* Winnipeg & Towns Neighborhoods */
.neighborhood-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
  justify-content: center;
}

.area-chip {
  padding: 7px 15px;
  border-radius: var(--radius-full);
  background: rgba(224, 150, 72, 0.12);
  border: 1px solid var(--border-subtle);
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--text-muted);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  transition: var(--transition-fast);
}

.area-chip:hover {
  border-color: var(--primary-flame);
  color: var(--text-main);
  background: rgba(255, 69, 0, 0.18);
  transform: translateY(-2px);
}

.area-chip i {
  color: var(--primary-flame);
  font-size: 0.8rem;
}

/* FAQ Cards */
#seo-faq article {
  transition: var(--transition-fast);
}

#seo-faq article:hover {
  border-color: var(--primary-flame) !important;
  box-shadow: 0 10px 25px rgba(255, 69, 0, 0.2);
}

/* Interactive Cord Estimator Widget */
.estimator-box {
  background: var(--bg-card);
  border: 1px solid var(--border-glow);
  border-radius: var(--radius-lg);
  padding: 22px;
  margin: 18px auto 0;
  max-width: 860px;
  box-shadow: var(--shadow-flame);
}

.estimator-toggle {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-bottom: 14px;
}

.estimator-btn {
  padding: 8px 18px;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-subtle);
  color: var(--text-muted);
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition-fast);
}

.estimator-btn.active {
  background: linear-gradient(135deg, var(--primary-flame), var(--primary-amber));
  color: #fff;
  border-color: transparent;
  box-shadow: var(--shadow-flame);
}

/* Lightbox Modal */
.lightbox-modal {
  position: fixed;
  inset: 0;
  z-index: 2100;
  background: rgba(0, 0, 0, 0.94);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition-fast);
}

.lightbox-modal.open {
  opacity: 1;
  pointer-events: auto;
}

.lightbox-img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-glow);
  box-shadow: 0 20px 60px rgba(0,0,0,0.8);
}

.modal-close {
  position: absolute;
  top: 24px;
  right: 24px;
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 1.8rem;
  cursor: pointer;
  transition: var(--transition-fast);
}

.modal-close:hover {
  color: var(--primary-flame);
  transform: scale(1.15);
}

/* Mobile Quick Call Bar */
.mobile-call-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(8, 6, 5, 0.95);
  backdrop-filter: blur(16px);
  border-top: 1px solid var(--border-glow);
  padding: 12px 20px;
  z-index: 1002;
  box-shadow: 0 -6px 20px rgba(0,0,0,0.6);
}

/* Responsive Media Queries for Tablet, Mobile, iPhone Safari, & Android Chrome */
@media (max-width: 1200px) {
  .nav-menu {
    gap: 12px;
  }
  .nav-link {
    font-size: 0.85rem;
  }
  .logo-sub {
    font-size: 0.58rem;
    letter-spacing: 0.06em;
  }
}

@media (max-width: 1024px), screen and (pointer: coarse) {
  html, body {
    overflow-x: hidden !important;
    width: 100% !important;
    max-width: 100vw !important;
  }

  .container {
    padding: 0 16px !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }

  .hero-grid {
    grid-template-columns: 1fr !important;
    gap: 24px;
    width: 100%;
  }

  .hero-content {
    align-items: center !important;
    text-align: center !important;
    width: 100%;
  }
  
  .badge-tag {
    white-space: normal !important;
    text-align: center !important;
    max-width: 100% !important;
    word-break: break-word !important;
    overflow-wrap: break-word !important;
    font-size: 0.82rem;
    padding: 8px 14px;
    margin: 0 auto 16px !important;
    border-radius: 12px;
    box-sizing: border-box !important;
  }

  .hero-title {
    font-size: 2.2rem;
    line-height: 1.15;
    word-break: break-word;
    overflow-wrap: break-word;
    max-width: 100%;
    text-align: center;
    margin-bottom: 14px;
  }

  .hero-description {
    font-size: 0.98rem;
    line-height: 1.5;
    max-width: 100%;
    word-break: break-word;
    overflow-wrap: break-word;
    text-align: center;
    margin: 0 auto 20px;
  }

  .hero-actions {
    width: 100%;
    justify-content: center;
    margin: 0 auto;
    flex-direction: column;
  }

  .hero-actions .btn {
    width: 100%;
    max-width: 100%;
    justify-content: center;
  }

  .hero-features {
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
    width: 100%;
    margin-top: 20px;
    padding-top: 14px;
  }

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

  .hero-main-card img {
    max-height: 260px;
    object-fit: cover;
    border-radius: 16px;
  }

  .slide-indicators {
    display: none;
  }

  .top-bar {
    display: none;
  }

  .navbar {
    top: 0;
    height: 64px;
  }

  .deck-container {
    top: 64px;
    height: calc(100vh - 64px);
    width: 100%;
    max-width: 100vw;
    overflow: hidden;
  }

  .deck-slide {
    height: calc(100vh - 64px);
    width: 100%;
    max-width: 100vw;
    box-sizing: border-box;
    overflow-y: auto !important;
    overflow-x: hidden !important;
    -webkit-overflow-scrolling: touch;
    justify-content: flex-start !important;
    padding: 20px 16px 180px !important; /* Generous 180px bottom clearance ensures mobile call bar never covers content */
  }

  .nav-menu {
    position: fixed;
    top: 64px;
    left: 0;
    width: 100%;
    background: var(--bg-surface);
    flex-direction: column;
    padding: 24px;
    gap: 16px;
    border-bottom: 1px solid var(--border-glow);
    transform: translateY(-150%);
    transition: var(--transition-fast);
    box-shadow: 0 10px 30px rgba(0,0,0,0.8);
    z-index: 1050;
  }
  
  .nav-menu.open {
    transform: translateY(0);
  }
  
  .mobile-toggle {
    display: block;
  }

  .features-grid,
  .products-grid {
    grid-template-columns: 1fr !important;
    width: 100%;
    gap: 16px;
  }

  .feature-card,
  .product-card,
  .estimator-box,
  article {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    overflow-wrap: break-word;
    word-break: break-word;
  }

  .neighborhood-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
    width: 100%;
  }

  .area-chip {
    white-space: normal !important;
    word-break: break-word;
    max-width: 100%;
    text-align: center;
    font-size: 0.82rem;
    padding: 6px 12px;
    box-sizing: border-box;
  }

  .mobile-call-bar {
    display: flex;
    gap: 10px;
    padding: 10px 14px;
    z-index: 2000;
  }
  
  .mobile-call-bar .btn {
    flex: 1;
    min-height: 44px;
    font-size: 0.88rem;
    white-space: nowrap;
  }
}

@media (max-width: 480px) {
  .logo-sub {
    display: none;
  }

  .hero-title {
    font-size: 1.7rem;
    line-height: 1.2;
  }

  .nav-cta .btn-outline {
    display: none;
  }

  .deck-slide {
    padding: 16px 12px 180px !important;
  }
}
