/* ============================================
   SHOWROOM PAGE - Professional & Conversion-Focused
   ============================================

   Note: All color variables are now defined in core/variables.css
   This file uses global variables for consistency and maintainability.
   ============================================ */

/* ============================================
   BASE RESET
   ============================================ */

   [data-showroom-page] {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    line-height: 1.6;
    color: var(--text);
    background: var(--bg);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    min-height: 100vh;
    overflow-x: hidden;
  }

  [data-showroom-page] * {
    box-sizing: border-box;
  }

  .showroom-page {
    max-width: 100%;
    margin: 0;
    padding: 0;
    background: var(--bg);
    position: relative;
  }

  .showroom-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 clamp(1.5rem, 4vw, 3rem);
  }

  /* ============================================
     SCROLL PROGRESS INDICATOR
     ============================================ */

  .showroom-scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 4px;
    background: linear-gradient(90deg, var(--brand-blue), var(--brand-blue));
    z-index: 9999;
    transition: width 0.1s ease-out;
    box-shadow: 0 0 20px rgba(26, 67, 191, 0.6);
  }

  /* ============================================
     INTRO HERO (SHOWROOM PROMO)
     ============================================ */

  .showroom-intro-hero {
    position: relative;
    padding: clamp(3.5rem, 13vw, 15rem) 0;
    overflow: hidden;
    height: 680px;
  }

  .showroom-intro-bg {
    position: absolute;
    inset: 0;
    background:
      url("https://hcconstructionllc.com/production/wp-content/uploads/2026/02/showroom.webp") center/cover no-repeat;
    filter: saturate(0.95);
  }

  .showroom-intro-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
      radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.25), transparent 35%),
      radial-gradient(circle at 80% 70%, rgba(26, 67, 191, 0.25), transparent 40%);
    opacity: 0.35;
  }

  .showroom-intro-hero .showroom-container {
    position: relative;
    z-index: 1;
  }

  .showroom-intro-card {
    max-width: 620px;
    margin: 0 auto;
    text-align: center;
    background: rgba(255, 255, 255, 0.94);
    border-radius: 22px;
    padding: clamp(1.75rem, 3vw, 2.5rem);
    box-shadow:
      0 24px 50px rgba(15, 27, 61, 0.28),
      0 0 0 1px rgba(255, 255, 255, 0.5) inset;
    backdrop-filter: blur(6px);
    border: 1px solid rgba(26, 67, 191, 0.08);
    position: relative;
    overflow: hidden;
  }

  .showroom-intro-card::before {
    content: '';
    position: absolute;
    inset: -30% -20% auto;
    height: 120px;
    background: linear-gradient(120deg, rgba(26, 67, 191, 0.18), rgba(255, 255, 255, 0));
    transform: rotate(-6deg);
    opacity: 0.6;
    pointer-events: none;
  }

  .showroom-intro-card::after {
    content: '';
    position: absolute;
    right: -60px;
    bottom: -60px;
    width: 160px;
    height: 160px;
    background: radial-gradient(circle, rgba(26, 67, 191, 0.25), transparent 65%);
    opacity: 0.6;
    pointer-events: none;
  }

  .showroom-intro-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.45rem 1.2rem;
    border-radius: 999px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--showroom-primary);
    background: rgba(26, 67, 191, 0.08);
    border: 1px solid rgba(26, 67, 191, 0.2);
    margin-bottom: 1rem;
    box-shadow: 0 10px 22px rgba(26, 67, 191, 0.12);
  }

  .showroom-intro-title {
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    line-height: 1.2;
    margin: 0 0 0.75rem;
    color: var(--text);
    font-weight: 700;
  }

  .showroom-intro-text {
    margin: 0 0 1.4rem;
    color: var(--muted);
    font-size: 1rem;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
  }

  .showroom-intro-actions {
    display: flex;
    justify-content: center;
  }

  .showroom-intro-btn {
    border: 0;
    background: linear-gradient(135deg, var(--showroom-primary), var(--showroom-primary-light));
    color: #fff;
    padding: 0.8rem 1.8rem;
    border-radius: 999px;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 12px 24px rgba(26, 67, 191, 0.25);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
  }

  .showroom-intro-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 32px rgba(26, 67, 191, 0.38);
    color: var(--bg);
    background: var(--brand-orange);
  }

  /* ============================================
     HERO SECTION
     ============================================ */

  .showroom-hero {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: clamp(4rem, 8vw, 6rem) 0;
    overflow: hidden;
  }

  .showroom-hero-background {
    position: absolute;
    inset: 0;
    z-index: 0;
  }

  .showroom-hero-gradient {
    position: absolute;
    inset: 0;
    background:
      radial-gradient(ellipse at 20% 30%, rgba(26, 67, 191, 0.08) 0%, transparent 60%),
      radial-gradient(ellipse at 80% 70%, rgba(26, 67, 191, 0.05) 0%, transparent 60%),
      linear-gradient(180deg, var(--bg) 0%, #f8f9fa 50%, var(--bg) 100%);
  }

  .showroom-hero-pattern {
    position: absolute;
    inset: 0;
    background-image:
      radial-gradient(circle at 1px 1px, rgba(26, 67, 191, 0.03) 1px, transparent 0);
    background-size: 40px 40px;
    opacity: 0.4;
  }

  /* Hero Layout - Two Column Grid */
  .showroom-hero-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
    gap: clamp(3rem, 6vw, 5rem);
    align-items: center;
    position: relative;
    z-index: 1;
    width: 100%;
  }

  .showroom-hero-content {
    position: relative;
    z-index: 2;
    text-align: left;
  }

  .showroom-eyebrow {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background: rgba(26, 67, 191, 0.1);
    border: 1px solid rgba(26, 67, 191, 0.2);
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--showroom-primary);
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
  }

  .showroom-eyebrow:hover {
    background: rgba(26, 67, 191, 0.15);
    border-color: rgba(26, 67, 191, 0.3);
    transform: translateY(-2px);
  }

  .showroom-hero-title {
    font-size: clamp(3rem, 8vw, 5.5rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--text);
    letter-spacing: -0.02em;
  }

  .showroom-title-accent {
    background: linear-gradient(135deg, var(--showroom-primary), var(--showroom-primary-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
  }

  .showroom-title-location {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    font-weight: 400;
    color: var(--muted);
    display: block;
    margin-top: 0.5rem;
  }

  .showroom-hero-subtitle {
    font-size: clamp(1.125rem, 2vw, 1.25rem);
    line-height: 1.7;
    color: var(--dark-alt);
    max-width: 700px;
    margin: 0 auto 3rem;
  }

  .showroom-hero-cta {
    display: flex;
    gap: 1.5rem;
    justify-content: flex-start;
    flex-wrap: wrap;
  }

  /* Hero Media Section */
  .showroom-hero-media {
    position: relative;
    z-index: 2;
  }

  .showroom-hero-images {
    display: grid;
    grid-template-columns: 1fr;
    gap: clamp(1.25rem, 2.5vw, 1.75rem);
    position: relative;
  }

  .showroom-hero-image-card {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    background: var(--card);
    box-shadow:
      0 20px 60px rgba(0, 0, 0, 0.15),
      0 8px 24px rgba(0, 0, 0, 0.1),
      0 0 0 1px rgba(26, 67, 191, 0.1);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1),
                box-shadow 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    aspect-ratio: 4 / 3;
  }

  .showroom-hero-image-card:hover {
    transform: translateY(-6px) scale(1.02);
    box-shadow:
      0 24px 72px rgba(0, 0, 0, 0.2),
      0 12px 32px rgba(0, 0, 0, 0.15),
      0 0 0 1px rgba(26, 67, 191, 0.2);
  }

  .showroom-hero-image-stack {
    position: absolute;
    inset: 0;
  }

  .showroom-hero-image-main {
    aspect-ratio: 16 / 10;
  }

  .showroom-hero-image-secondary {
    aspect-ratio: 16 / 9;
  }

  .showroom-hero-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    opacity: 0;
    animation: showroomHeroSwap 14s ease-in-out infinite;
  }

  .showroom-hero-img:nth-child(1) {
    opacity: 1;
    animation-delay: 0s;
  }

  .showroom-hero-img:nth-child(2) {
    animation-delay: 7s;
  }

  .showroom-hero-image-card:hover .showroom-hero-img {
    transform: scale(1.03);
  }

  .showroom-hero-image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(to top,
      rgba(15, 23, 42, 0.75) 0%,
      rgba(15, 23, 42, 0.5) 50%,
      transparent 100%);
    pointer-events: none;
    z-index: 1;
  }

  .showroom-hero-image-badge {
    position: absolute;
    bottom: clamp(1rem, 2vw, 1.5rem);
    left: clamp(1rem, 2vw, 1.5rem);
    z-index: 2;
    padding: clamp(0.5rem, 1vw, 0.75rem) clamp(1rem, 2vw, 1.5rem);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px) saturate(180%);
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow:
      0 8px 24px rgba(0, 0, 0, 0.15),
      0 0 0 1px rgba(26, 67, 191, 0.1);
    transition: all 0.3s ease;
  }

  .showroom-hero-image-card:hover .showroom-hero-image-badge {
    background: rgba(255, 255, 255, 1);
    transform: translateY(-4px);
    box-shadow:
      0 12px 32px rgba(0, 0, 0, 0.2),
      0 0 0 1px rgba(26, 67, 191, 0.15);
  }

  .showroom-hero-image-badge span {
    font-size: clamp(0.75rem, 1.2vw, 0.875rem);
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--brand-blue);
    display: block;
  }

  /* Decorative Elements */
  .showroom-hero-decorative {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
  }

  .showroom-hero-decorative-shape {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg,
      rgba(26, 67, 191, 0.12) 0%,
      rgba(26, 67, 191, 0.06) 100%);
    filter: blur(60px);
    animation: showroomShapeFloat 20s ease-in-out infinite;
    will-change: transform, opacity;
  }

  .showroom-hero-decorative-1 {
    width: clamp(200px, 30vw, 350px);
    height: clamp(200px, 30vw, 350px);
    top: -10%;
    right: -5%;
    animation-delay: 0s;
  }

  .showroom-hero-decorative-2 {
    width: clamp(150px, 25vw, 280px);
    height: clamp(150px, 25vw, 280px);
    bottom: -8%;
    left: -5%;
    animation-delay: -10s;
    background: linear-gradient(225deg,
      rgba(26, 67, 191, 0.1) 0%,
      rgba(26, 67, 191, 0.05) 100%);
  }

  @keyframes showroomShapeFloat {
    0%, 100% {
      transform: translate(0, 0) scale(1);
      opacity: 0.6;
    }
    25% {
      transform: translate(20px, -15px) scale(1.1);
      opacity: 0.8;
    }
    50% {
      transform: translate(-15px, 20px) scale(0.95);
      opacity: 0.7;
    }
    75% {
      transform: translate(15px, 15px) scale(1.05);
      opacity: 0.75;
    }
  }

  /* ============================================
     BUTTONS
     ============================================ */

  .showroom-cta-primary,
  .showroom-cta-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.125rem 2.25rem;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    transition: var(--showroom-transition);
    position: relative;
    overflow: hidden;
    text-decoration: none;
    font-family: inherit;
  }

  .showroom-cta-primary {
    background: linear-gradient(135deg, var(--showroom-primary), var(--showroom-primary-dark));
    color: var(--text-white);
    box-shadow: 0 8px 24px rgba(26, 67, 191, 0.3);
  }

  .showroom-cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(26, 67, 191, 0.4);
    color: var(--card);
    background: var(--brand-orange);
  }

  .showroom-cta-primary:active {
    transform: translateY(0);
  }

  .showroom-cta-primary svg {
    transition: transform var(--showroom-transition-fast);
  }

  .showroom-cta-primary:hover svg {
    transform: translateX(4px);
  }

  .showroom-cta-secondary {
    background: transparent;
    color: var(--text);
    border: 2px solid var(--stroke-strong);
    backdrop-filter: blur(10px);
  }

  .showroom-cta-secondary:hover {
    background: rgba(26, 67, 191, 0.05);
    border-color: var(--showroom-primary);
    color: var(--showroom-primary);
  }

  .showroom-cta-large {
    padding: 1.375rem 1.5rem;
    font-size: 1.125rem;
  }

  /* ============================================
     SECTION HEADERS
     ============================================ */

  .showroom-section-header {
    text-align: center;
    margin-bottom: 4rem;
  }

  .showroom-section-title {
    font-size: clamp(2.5rem, 6vw, 3.5rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--brand-blue);
  }

  .showroom-section-subtitle {
    font-size: clamp(1.125rem, 2vw, 1.25rem);
    color: var(--muted);
    max-width: 600px;
    margin: 0 auto;
  }

  /* ============================================
     CATEGORIES GRID
     ============================================ */

  .showroom-categories {
    padding: clamp(6rem, 10vw, 8rem) 0;
    position: relative;
  }

  .showroom-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
  }

  .showroom-card {
    background: var(--card);
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid var(--stroke);
    transition: var(--showroom-transition);
    position: relative;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  }

  .showroom-card:hover {
    transform: translateY(-8px) scale(1.01);
    border-color: var(--showroom-primary);
    box-shadow: 0 20px 60px rgba(26, 67, 191, 0.15),
                0 0 0 1px rgba(26, 67, 191, 0.1);
  }

  .showroom-card-image {
    position: relative;
    width: 100%;
    height: 400px;
    overflow: hidden;
  }

  .showroom-card-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #f0f0f0, #e8e8e8);
  }

  .showroom-card-kitchen {
    background:
      linear-gradient(135deg, rgba(26, 67, 191, 0.05), rgba(26, 67, 191, 0.02)),
      linear-gradient(135deg, #f5f5f5, #f0f0f0);
  }

  .showroom-card-bathroom {
    background:
      linear-gradient(135deg, rgba(26, 67, 191, 0.05), rgba(26, 67, 191, 0.02)),
      linear-gradient(135deg, #f0f0f0, #f5f5f5);
  }

  /* Showroom Card Images */
  .showroom-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.5s ease;
  }

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

  .showroom-card-overlay {
    position: absolute;
    inset: 0;
    background: rgba(26, 67, 191, 0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    backdrop-filter: blur(4px);
    z-index: 2;
  }

  .showroom-card:hover .showroom-card-overlay,
  .showroom-card:focus-within .showroom-card-overlay {
    opacity: 1;
  }

  .showroom-card-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: var(--showroom-primary);
    color: var(--text-white);
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s ease 0.1s, opacity 0.3s ease 0.1s, background 0.3s ease;
    font-family: inherit;
    text-decoration: none;
    white-space: nowrap;
    transform: translateY(10px);
    opacity: 0;
  }

  .showroom-card:hover .showroom-card-cta,
  .showroom-card:focus-within .showroom-card-cta {
    transform: translateY(0);
    opacity: 1;
  }

  .showroom-card-cta:hover {
    background: var(--showroom-primary-light);
    transform: translateY(-2px) !important;
    box-shadow: 0 4px 12px rgba(26, 67, 191, 0.3);
  }

  .showroom-card-content {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    position: relative;
    z-index: 1;
  }

  .showroom-card-title {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--brand-blue);
  }

  .showroom-card-description {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--dark-alt);
    margin-bottom: 0;
    flex-grow: 1;
  }

  /* ============================================
     FEATURES SECTION
     ============================================ */

  .showroom-features {
    padding: clamp(6rem, 10vw, 8rem) 0;
    background: #f8f9fa;
    position: relative;
  }

  .showroom-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.3rem;
  }

  .showroom-feature {
    text-align: center;
    padding: 2rem;
    background: var(--bg);
    border-radius: 20px;
    border: 1px solid var(--stroke);
    transition: var(--showroom-transition);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
  }

  .showroom-feature:hover {
    transform: translateY(-4px);
    border-color: var(--showroom-primary);
    box-shadow: 0 12px 40px rgba(26, 67, 191, 0.12);
  }

  .showroom-feature-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 1.5rem;
    padding: 1rem;
    background: rgba(26, 67, 191, 0.1);
    border: 1px solid rgba(26, 67, 191, 0.2);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--showroom-primary);
    transition: all 0.3s ease;
  }

  .showroom-feature:hover .showroom-feature-icon {
    background: rgba(26, 67, 191, 0.15);
    border-color: rgba(26, 67, 191, 0.3);
    transform: scale(1.05);
  }

  .showroom-feature-title {
    font-size: 1.375rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--brand-blue);
  }

  .showroom-feature-text {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--dark-alt);
  }

  /* ============================================
     DETAILS SECTION
     ============================================ */

  .showroom-details {
    padding: clamp(6rem, 10vw, 8rem) 0;
  }

  .showroom-details-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
  }

  @media (max-width: 968px) {
    .showroom-details-content {
      grid-template-columns: 1fr;
      gap: 3rem;
    }

    .showroom-details-visual {
      order: -1;
    }
  }

  .showroom-details-title {
    font-size: clamp(2rem, 5vw, 2.75rem);
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 1.5rem;
    color: var(--brand-blue);
  }

  .showroom-details-description {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--dark-alt);
    margin-bottom: 1.5rem;
  }

  .showroom-details-cta {
    margin-top: 2rem;
  }

  .showroom-details-visual {
    position: relative;
  }

  .showroom-visual-card {
    width: 100%;
    height: 500px;
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid var(--stroke);
    background: #f3f4f6;
    transition: all 0.4s ease;
    position: relative;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  display: block;
  }

  .showroom-visual-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 24px;
    background: linear-gradient(135deg, rgba(26, 67, 191, 0.05), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
  }

  .showroom-visual-card:hover {
    border-color: var(--showroom-primary);
    box-shadow: 0 16px 48px rgba(26, 67, 191, 0.2);
  }

  .showroom-visual-card:hover::after {
    opacity: 1;
  }

  .showroom-visual-placeholder {
    width: 100%;
    height: 100%;
    background:
      linear-gradient(135deg, rgba(26, 67, 191, 0.05), rgba(26, 67, 191, 0.02)),
      linear-gradient(135deg, #f5f5f5, #f0f0f0);
  }

  /* Showroom Visual Image */
  .showroom-visual-img {
    position: absolute !important;
    inset: 0;
    width: 100% !important;
    height: 100% !important;
    min-width: 100%;
    min-height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    border-radius: 0;
    transition: transform 0.5s ease;
  }

  .showroom-visual-card:hover .showroom-visual-img {
    transform: scale(1.02);
  }

  /* ============================================
     CTA SECTION
     ============================================ */

  .showroom-cta-section {
    padding: clamp(6rem, 10vw, 8rem) 0;
    background: var(--bg);
    position: relative;
    overflow: hidden;
  }

  .showroom-cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
      radial-gradient(ellipse at 50% 50%, rgba(26, 67, 191, 0.08) 0%, transparent 70%);
    pointer-events: none;
  }

  .showroom-cta-collage {
    position: absolute;
    inset: 0;
    background-image:
    linear-gradient(180deg, rgba(248, 249, 250, 0.2) 0%, rgba(248, 249, 250, 0.08) 45%, rgba(248, 249, 250, 0.35) 100%),
      url("https://hcconstructionllc.com/production/wp-content/uploads/2026/02/showroom_cab_3-scaled.webp"),
      url("https://hcconstructionllc.com/production/wp-content/uploads/2026/02/showroom_cabinetry-scaled.webp"),
      url("https://hcconstructionllc.com/production/wp-content/uploads/2026/02/showroom_cab_1-scaled.webp"),
      url("https://hcconstructionllc.com/production/wp-content/uploads/2026/02/showroom_1-scaled.webp");
  background-size: cover, 58% 100%, 42% 55%, 42% 55%, 34% 70%;
  background-position: center, left center, right top, right bottom, center 72%;
    background-repeat: no-repeat;
  opacity: 0.9;
  filter: saturate(1.3) contrast(1.12) brightness(1.08);
    pointer-events: none;
    z-index: 0;
  animation: showroomCollageDrift 12s ease-in-out infinite, showroomCollagePulse 6s ease-in-out infinite;
  transform: translateZ(0);
  }

  .showroom-cta-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 4rem;
    background: rgba(255, 255, 255, 0.96);
    border-radius: 32px;
    border: 1px solid var(--stroke);
    transition: all 0.4s ease;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    backdrop-filter: blur(12px);
  }

  @keyframes showroomCollageDrift {
    0%, 100% {
    background-position: center, left center, right top, right bottom, center 72%;
    }
    50% {
    background-position: center, left 4% center, right 6% top, right 10% bottom, center 60%;
    }
  }

@keyframes showroomCollagePulse {
  0%, 100% {
    filter: saturate(1.22) contrast(1.1) brightness(1.05);
  }
  50% {
    filter: saturate(1.35) contrast(1.16) brightness(1.1);
  }
}

@keyframes showroomHeroSwap {
  0%,
  42% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0;
    transform: scale(1.02);
  }
  92% {
    opacity: 0;
    transform: scale(1.01);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

  .showroom-cta-content:hover {
    border-color: var(--showroom-primary);
    box-shadow: 0 20px 60px rgba(26, 67, 191, 0.15);
  }

  .showroom-cta-title {
    font-size: clamp(2.5rem, 6vw, 3.5rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--brand-blue);
  }

  .showroom-cta-subtitle {
    font-size: clamp(1.125rem, 2vw, 1.25rem);
    color: var(--muted);
    margin-bottom: 2.5rem;
  }

  .showroom-cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
  }

  /* ============================================
     ANIMATIONS
     ============================================ */

  [data-animate] {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1),
                transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  }

  [data-animate].is-visible {
    opacity: 1;
    transform: translateY(0);
  }

  [data-animate="fade-up"] {
    transform: translateY(30px);
  }

  /* ============================================
     RESPONSIVE ADJUSTMENTS
     ============================================ */

  @media (max-width: 968px) {
    .showroom-hero-layout {
      grid-template-columns: 1fr;
      gap: clamp(2rem, 4vw, 3rem);
    }

    .showroom-hero-media {
      order: -1; /* Image first on mobile */
    }

    .showroom-hero-content {
      text-align: center;
    }

    .showroom-hero-cta {
      justify-content: center;
    }

    .showroom-hero-images {
      grid-template-columns: 1fr;
    }

    .showroom-hero-image-main,
    .showroom-hero-image-secondary {
      aspect-ratio: 16 / 10;
    }

    .showroom-grid {
      grid-template-columns: 1fr;
      gap: 1.5rem;
    }

    .showroom-features-grid {
      grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
      gap: 1rem;
    }

    .showroom-hero-cta {
      flex-direction: column;
      align-items: stretch;
    }

    .showroom-cta-primary,
    .showroom-cta-secondary {
      width: 100%;
      justify-content: center;
    }

    .showroom-card-image {
      height: 300px;
    }

    .showroom-visual-card {
      height: 400px;
    }

    .showroom-cta-content {
      padding: 3rem 2rem;
    }
  }

  @media (max-width: 640px) {
    .showroom-hero {
      min-height: 80vh;
      padding: clamp(3rem, 6vw, 4rem) 0;
    }

    .showroom-section-header {
      margin-bottom: 3rem;
    }

    .showroom-features-grid {
      grid-template-columns: 1fr;
    }

    .showroom-card-content {
      padding: 1.5rem;
    }

    .showroom-feature {
      padding: 1.5rem;
    }
  }

  /* ============================================
     ACCESSIBILITY & REDUCED MOTION
     ============================================ */

  @media (prefers-reduced-motion: reduce) {
    .showroom-card,
    .showroom-feature,
    .showroom-visual-card,
    .showroom-cta-content,
    [data-animate] {
      transition: none !important;
      animation: none !important;
    }

    .showroom-card:hover,
    .showroom-feature:hover {
      transform: none;
    }
  }

  /* Focus states for accessibility */
  .showroom-cta-primary:focus,
  .showroom-cta-secondary:focus,
  .showroom-card-cta:focus {
    outline: 2px solid var(--showroom-primary);
    outline-offset: 4px;
  }

  /* ============================================
     PERFORMANCE OPTIMIZATIONS
     ============================================ */

  .showroom-card-img,
  .showroom-visual-img {
    will-change: transform;
    backface-visibility: hidden;
  }

  .showroom-card:hover .showroom-card-img {
    will-change: transform;
  }
