:root {
  --brand: #C8960C;
  --brand-dark: #A67B0A;
  --brand-light: #FDF6E3;
  --brand-glow: rgba(200, 150, 12, 0.12);
  --dark-brown: #3D2B1F;
  --text-primary: #1a1a1a;
  --text-secondary: #4a4538;
  --text-muted: #8a8378;
  --bg-white: #ffffff;
  --bg-light: #FDFBF7;
  --bg-alt: #F5F0E8;
  --border-light: #E8E0D4;
  --border-medium: #D4C9B8;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.08), 0 2px 4px rgba(0,0,0,0.04);
  --shadow-lg: 0 12px 40px rgba(0,0,0,0.1), 0 4px 12px rgba(0,0,0,0.06);
  --shadow-xl: 0 24px 60px rgba(0,0,0,0.12), 0 8px 20px rgba(0,0,0,0.06);
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --max-width: 1200px;
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  color: var(--text-primary);
  background: var(--bg-white);
  line-height: 1.7;
  font-size: 16px;
  overflow-x: hidden;
}

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

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

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

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 100px 0;
}

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

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

.section-label {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: 12px;
  background: var(--brand-glow);
  padding: 6px 16px;
  border-radius: 100px;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1.2;
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 17px;
  color: var(--text-secondary);
  line-height: 1.7;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15px;
  padding: 12px 28px;
  border-radius: var(--radius-md);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
  gap: 8px;
  white-space: nowrap;
}

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

.btn-primary:hover {
  background: var(--brand-dark);
  border-color: var(--brand-dark);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(200, 150, 12, 0.35);
}

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

.btn-outline-light:hover {
  background: rgba(255,255,255,0.1);
  border-color: #fff;
  color: #fff;
  transform: translateY(-1px);
}

.btn-white {
  background: #fff;
  color: var(--brand);
  border-color: #fff;
}

.btn-white:hover {
  background: var(--bg-light);
  border-color: var(--bg-light);
  color: var(--brand-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}

.btn-outline-white {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.4);
}

.btn-outline-white:hover {
  background: rgba(255,255,255,0.1);
  border-color: #fff;
  color: #fff;
  transform: translateY(-1px);
}

.btn-lg {
  padding: 16px 36px;
  font-size: 16px;
}

.btn-full {
  width: 100%;
}

/* =================== HEADER =================== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-light);
  transition: all var(--transition);
}

.site-header.scrolled {
  box-shadow: var(--shadow-md);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  height: 80px;
}

.logo-link {
  flex-shrink: 0;
}

.logo-img {
  height: 54px;
  width: auto;
}

.main-nav {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

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

.nav-link {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary);
  padding: 8px 10px;
  border-radius: var(--radius-md);
  transition: all var(--transition);
  white-space: nowrap;
}

.nav-link:hover,
.nav-link.active {
  color: var(--brand);
  background: var(--brand-glow);
}

.header-cta {
  flex-shrink: 0;
}

/* ==============================
   NAV DROPDOWN
   ============================== */
.nav-has-dropdown {
  position: relative;
}

.nav-has-dropdown > a {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-chevron {
  width: 10px;
  height: 10px;
  flex-shrink: 0;
  transition: transform var(--transition);
}

.nav-has-dropdown:hover .nav-chevron {
  transform: rotate(180deg);
}

.nav-dropdown {
  display: none;
  position: absolute;
  top: 100%;
  padding-top: 6px;
  left: 0;
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 6px 0;
  min-width: 190px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
  z-index: 200;
  list-style: none;
}

.nav-has-dropdown:hover .nav-dropdown {
  display: block;
}

.nav-dropdown li a {
  display: block;
  padding: 9px 18px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary);
  white-space: nowrap;
  transition: all var(--transition);
}

.nav-dropdown li a:hover {
  color: var(--brand);
  background: var(--brand-glow);
}

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

.hamburger-line {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: all var(--transition);
}

/* =================== MOBILE NAV =================== */
.mobile-nav {
  display: none;
  position: fixed;
  top: 80px;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1001;
  background: rgba(255,255,255,0.98);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 20px;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  box-shadow: var(--shadow-lg);
}

.mobile-nav.open {
  display: block;
}

.mobile-nav .nav-list {
  flex-direction: column;
  gap: 4px;
}

.mobile-nav .nav-link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 16px;
  font-size: 16px;
}

.mobile-nav .nav-chevron {
  width: 12px;
  height: 12px;
  transition: transform 0.2s ease;
}

.mobile-nav .nav-has-dropdown .nav-dropdown {
  position: static;
  display: none;
  box-shadow: none;
  border: none;
  border-radius: 0;
  padding: 0;
  min-width: 0;
  background: rgba(0,0,0,0.02);
}

.mobile-nav .nav-has-dropdown.mobile-open .nav-dropdown {
  display: block;
}

.mobile-nav .nav-has-dropdown.mobile-open .nav-chevron {
  transform: rotate(180deg);
}

.mobile-nav .nav-dropdown li a {
  padding: 10px 32px;
  font-size: 15px;
}

.mobile-nav-cta {
  display: block;
  text-align: center;
  margin-top: 20px;
}

/* =================== HERO =================== */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 80px;
}

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

.hero-img {
  width: 100%;
  height: 130%;
  object-fit: cover;
  transform: translateY(-10%);
}

@media (max-width: 768px) {
  .hero-img {
    height: 100%;
    transform: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-img {
    height: 100%;
    transform: none;
  }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
    rgba(30, 20, 10, 0.85) 0%,
    rgba(30, 20, 10, 0.65) 40%,
    rgba(30, 20, 10, 0.45) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
  padding: 80px 0 100px;
}

.hero-badge {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--brand);
  background: rgba(200, 150, 12, 0.2);
  border: 1px solid rgba(200, 150, 12, 0.4);
  padding: 8px 20px;
  border-radius: 100px;
  margin-bottom: 28px;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(36px, 6vw, 64px);
  font-weight: 700;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 24px;
}

.hero-subtitle {
  font-size: 18px;
  color: rgba(255,255,255,0.85);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 560px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.hero-trust {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.8);
  font-size: 14px;
  font-weight: 500;
}

.trust-icon {
  width: 18px;
  height: 18px;
  color: var(--brand);
  flex-shrink: 0;
}

/* =================== SERVICES GRID =================== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  display: block;
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-light);
  transition: all var(--transition);
  text-decoration: none;
  color: inherit;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  color: inherit;
  border-color: rgba(200, 150, 12, 0.3);
}

.service-card-img {
  height: 220px;
  overflow: hidden;
}

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

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

.service-card-body {
  padding: 24px;
}

.service-card-body h3 {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--text-primary);
}

.service-card-body p {
  font-size: 15px;
  color: var(--text-secondary);
  margin-bottom: 16px;
  line-height: 1.6;
}

.service-link {
  font-size: 14px;
  font-weight: 600;
  color: var(--brand);
  transition: all var(--transition);
}

.service-card:hover .service-link {
  color: var(--brand-dark);
}

/* =================== WHY US =================== */
.why-us-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.why-us-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.why-us-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 400px;
}

.why-us-intro {
  font-size: 17px;
  color: var(--text-secondary);
  margin-bottom: 32px;
  line-height: 1.7;
}

.why-us-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.why-us-list li {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.why-icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--brand-glow);
  border-radius: var(--radius-md);
  color: var(--brand);
}

.why-icon svg {
  width: 22px;
  height: 22px;
}

.why-us-list strong {
  display: block;
  font-size: 16px;
  margin-bottom: 4px;
  color: var(--text-primary);
}

.why-us-list p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* =================== TESTIMONIALS =================== */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testimonial-card {
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: all var(--transition);
}

.testimonial-card:hover {
  box-shadow: var(--shadow-md);
  border-color: rgba(200, 150, 12, 0.2);
}

.testimonial-stars {
  display: flex;
  gap: 2px;
  margin-bottom: 20px;
}

.testimonial-stars svg {
  width: 18px;
  height: 18px;
  color: #f59e0b;
}

.testimonial-card blockquote {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-secondary);
  margin-bottom: 24px;
  font-style: normal;
}

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

.author-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--brand);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 16px;
  flex-shrink: 0;
}

.testimonial-author strong {
  display: block;
  font-size: 15px;
  color: var(--text-primary);
}

.testimonial-author span {
  font-size: 13px;
  color: var(--text-muted);
}

/* =================== PROCESS =================== */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  counter-reset: step;
}

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

.process-number {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--brand);
  color: #fff;
  font-size: 22px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.process-step h3 {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--text-primary);
}

.process-step p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* =================== CTA SECTION =================== */
.cta-section {
  background: linear-gradient(135deg, #3D2B1F 0%, #2A1D14 50%, #1a1209 100%);
  padding: 80px 0;
}

.cta-inner {
  text-align: center;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

.cta-inner h2 {
  font-family: var(--font-heading);
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 600;
  color: #fff;
  margin-bottom: 16px;
}

.cta-inner p {
  font-size: 17px;
  color: rgba(255,255,255,0.9);
  margin-bottom: 32px;
  line-height: 1.7;
}

.cta-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* =================== AREAS =================== */
.areas-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.area-tag {
  display: inline-block;
  padding: 10px 22px;
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: 100px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary);
  transition: all var(--transition);
}

.area-tag:hover {
  border-color: var(--brand);
  color: var(--brand);
  background: var(--brand-glow);
}

/* =================== PAGE HERO =================== */
.page-hero {
  padding: 140px 0 60px;
  background: linear-gradient(135deg, #3D2B1F 0%, #2A1D14 100%);
  border-bottom: 3px solid var(--brand);
  text-align: center;
}

.page-hero .section-label {
  color: var(--brand);
  margin-bottom: 16px;
}

.page-hero-title {
  font-family: var(--font-heading);
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.15;
  margin-bottom: 16px;
}

.page-hero-subtitle {
  font-size: 18px;
  color: rgba(255,255,255,0.8);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

/* =================== SERVICE DETAIL =================== */
.service-detail-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.service-detail-layout.reverse {
  direction: rtl;
}

.service-detail-layout.reverse > * {
  direction: ltr;
}

.service-detail-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.service-detail-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 350px;
}

.install-photo-stack {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  overflow: visible;
}

.install-photo-stack img {
  border-radius: var(--radius-lg);
  height: 320px;
  min-height: unset;
  object-fit: cover;
}

.lvt-project-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  overflow: visible;
}

.lvt-project-grid img {
  border-radius: var(--radius-md);
  height: 220px;
  min-height: unset;
  object-fit: cover;
  width: 100%;
}

.lvt-product-label {
  grid-column: 1 / -1;
  text-align: center;
  font-size: 13px;
  color: var(--text-light);
  font-style: italic;
  padding-top: 4px;
}

.service-detail-content .section-label {
  margin-bottom: 12px;
}

.service-detail-content h2 {
  font-family: var(--font-heading);
  font-size: clamp(26px, 3.5vw, 36px);
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 20px;
}

.service-detail-content p {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 24px;
}

.feature-list {
  list-style: none;
  margin-bottom: 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.feature-list li {
  font-size: 15px;
  color: var(--text-secondary);
  padding-left: 28px;
  position: relative;
}

.feature-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 6px;
  width: 18px;
  height: 18px;
  background: var(--brand-glow);
  border-radius: 50%;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' stroke='%2303C9A9' stroke-width='3' xmlns='http://www.w3.org/2000/svg'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-size: 12px;
  background-repeat: no-repeat;
  background-position: center;
}

/* =================== TRADE SERVICES =================== */
.trade-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.trade-card {
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  transition: all var(--transition);
}

.trade-card:hover {
  border-color: rgba(200, 150, 12, 0.3);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.trade-icon {
  width: 48px;
  height: 48px;
  color: var(--brand);
  margin: 0 auto 16px;
}

.trade-card h3 {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--text-primary);
}

.trade-card p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* =================== ABOUT =================== */
.about-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-layout-reverse .about-image {
  order: 2;
}
.about-layout-reverse .about-content {
  order: 1;
}

.about-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.about-image img {
  width: 100%;
  min-height: 400px;
  object-fit: cover;
}

.about-content h2 {
  font-family: var(--font-heading);
  font-size: clamp(26px, 3.5vw, 36px);
  font-weight: 600;
  margin-bottom: 20px;
  color: var(--text-primary);
}

.about-content p {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 16px;
}

/* =================== TEAM =================== */
.team-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  margin-bottom: 48px;
}

.team-member {
  display: flex;
  gap: 24px;
  align-items: center;
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 24px;
  transition: all var(--transition);
}

.team-member:hover {
  box-shadow: var(--shadow-md);
  border-color: rgba(200, 150, 12, 0.2);
}

.team-photo {
  width: 160px;
  height: 200px;
  flex-shrink: 0;
  border-radius: var(--radius-md);
  overflow: hidden;
}

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

.team-info h3 {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.team-role {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  color: var(--brand);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 12px;
}

.team-info p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
}

.team-photos-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.team-group-photo {
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 4 / 3;
}

.team-group-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.team-group-photo:hover img {
  transform: scale(1.05);
}

/* =================== NOODLES =================== */
.noodles-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.noodles-main-photo {
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 16px;
}

.noodles-main-photo img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  object-position: center top;
}

.noodles-secondary-photos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.noodles-thumb {
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 4 / 3;
}

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

.noodles-thumb:hover img {
  transform: scale(1.05);
}

.noodles-content h2 {
  font-family: var(--font-heading);
  font-size: clamp(26px, 3.5vw, 36px);
  font-weight: 600;
  margin-bottom: 20px;
  color: var(--text-primary);
}

.noodles-content p {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 16px;
}

/* =================== NOODLES VIDEO (HOMEPAGE) =================== */
.noodles-video-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.noodles-video-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.noodles-video-wrap video {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
}

.noodles-video-text h2 {
  font-family: var(--font-heading);
  font-size: clamp(24px, 3.5vw, 34px);
  font-weight: 600;
  margin-bottom: 16px;
  color: var(--text-primary);
}

.noodles-video-text p {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 16px;
}

.noodles-label {
  color: var(--brand);
}

/* =================== SHOWROOM GALLERY ROW =================== */
.showroom-gallery-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 16px;
}

.showroom-gallery-row img {
  width: 100%;
  height: 120px;
  object-fit: cover;
  border-radius: var(--radius-sm);
  transition: transform 0.6s ease;
}

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

/* =================== VALUES =================== */
.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.value-card {
  text-align: center;
  padding: 32px 24px;
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  transition: all var(--transition);
}

.value-card:hover {
  box-shadow: var(--shadow-md);
  border-color: rgba(200, 150, 12, 0.2);
}

.value-icon-wrap {
  width: 56px;
  height: 56px;
  background: var(--brand-glow);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  color: var(--brand);
}

.value-icon-wrap svg {
  width: 28px;
  height: 28px;
}

.value-card h3 {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--text-primary);
}

.value-card p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* =================== STATS =================== */
.stats {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--text-primary) 0%, #2d2d4a 100%);
}

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

.stat-number {
  display: block;
  font-family: var(--font-heading);
  font-size: clamp(36px, 5vw, 52px);
  font-weight: 700;
  color: var(--brand);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 15px;
  color: rgba(255,255,255,0.7);
  font-weight: 500;
}

/* =================== SHOWROOM =================== */
.showroom-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.showroom-content h2 {
  font-family: var(--font-heading);
  font-size: clamp(26px, 3.5vw, 36px);
  font-weight: 600;
  margin-bottom: 20px;
  color: var(--text-primary);
}

.showroom-content > p {
  font-size: 16px;
  color: var(--text-secondary);
  margin-bottom: 28px;
  line-height: 1.7;
}

.showroom-details {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 28px;
}

.showroom-info {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.info-icon {
  width: 22px;
  height: 22px;
  color: var(--brand);
  flex-shrink: 0;
  margin-top: 2px;
}

.showroom-info strong {
  display: block;
  font-size: 14px;
  color: var(--text-primary);
  margin-bottom: 2px;
}

.showroom-info p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.5;
}

.showroom-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.showroom-image img {
  width: 100%;
  min-height: 400px;
  object-fit: cover;
}

/* =================== GALLERY =================== */
.gallery-filters {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 40px;
  position: sticky;
  top: 72px;
  z-index: 10;
  background: var(--bg-main, #f8f6f3);
  padding: 12px 0 16px;
}

.filter-btn {
  padding: 10px 22px;
  border: 1px solid var(--border-light);
  background: var(--bg-white);
  border-radius: 100px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary);
  cursor: pointer;
  transition: all var(--transition);
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--brand);
  color: #fff;
  border-color: var(--brand);
}

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

.gallery-section-header {
  grid-column: 1 / -1;
  padding: 2rem 0 0.5rem;
}
.gallery-section-header:first-of-type {
  padding-top: 0;
}
.gallery-section-header h2 {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--heading-color, #1a1a1a);
  margin-bottom: 0.35rem;
}
.gallery-section-header p {
  font-size: 0.95rem;
  color: var(--text-muted, #666);
  line-height: 1.5;
  max-width: 600px;
}
.gallery-section-header .gallery-section-count {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  color: var(--brand);
  background: rgba(200, 150, 12, 0.12);
  padding: 3px 10px;
  border-radius: 100px;
  margin-bottom: 6px;
}
.gallery-section-header.hidden {
  display: none;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #fff;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

.gallery-item-img {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 70%;
  transition: transform 0.5s ease;
  /* Promote to its own GPU layer up front so the texture stays sharp during hover scaling */
  transform: translateZ(0);
  will-change: transform;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  image-rendering: -webkit-optimize-contrast;
}

.gallery-item:hover img {
  transform: scale(1.04) translateZ(0);
}

.gallery-overlay {
  padding: 14px 16px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.gallery-category {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: 2px;
  width: fit-content;
}

.gallery-overlay h3 {
  font-family: var(--font-heading);
  font-size: 15px;
  color: var(--heading-color, #1a1a1a);
  font-weight: 600;
  margin-bottom: 0;
  line-height: 1.3;
}

.gallery-overlay p {
  font-size: 13px;
  color: var(--text-muted, #888);
}

.gallery-item.hidden {
  display: none;
}

.gallery-section-empty {
  background: var(--bg-soft, #faf7f2);
  border: 1px dashed rgba(0,0,0,0.12);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  text-align: center;
}
.gallery-section-empty .gallery-empty-note {
  margin-top: 12px;
  font-size: 14px;
  color: var(--text-muted, #888);
}
.gallery-section-empty .gallery-empty-note a {
  color: var(--brand);
  font-weight: 600;
}

/* =================== CONTACT =================== */
.contact-layout {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 48px;
  align-items: start;
}

.contact-form-wrap h2 {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--text-primary);
}

.contact-form-wrap > p {
  font-size: 16px;
  color: var(--text-secondary);
  margin-bottom: 28px;
}

.form-success {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  background: var(--brand-glow);
  border: 1px solid rgba(200, 150, 12, 0.3);
  border-radius: var(--radius-md);
  margin-bottom: 24px;
  color: var(--brand-dark);
  font-weight: 500;
}

.form-success svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  color: var(--brand);
}

.form-error-banner {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  background: #fff5f5;
  border: 1px solid #fca5a5;
  border-radius: var(--radius-md);
  margin-bottom: 24px;
  color: #b91c1c;
  font-weight: 500;
}

.form-error-banner svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}

.btn-form-submit {
  width: 100%;
  justify-content: center;
  font-size: 16px;
  padding: 14px 24px;
}

.btn-spinner {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.spin-icon {
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.form-disclaimer {
  font-size: 13px;
  color: var(--text-muted);
  text-align: center;
  margin-top: -8px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

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

.form-group label {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-primary);
}

.required {
  color: #ef4444;
}

.form-group input,
.form-group select,
.form-group textarea {
  font-family: var(--font-body);
  font-size: 15px;
  padding: 12px 16px;
  border: 1px solid var(--border-medium);
  border-radius: var(--radius-md);
  background: var(--bg-white);
  color: var(--text-primary);
  transition: all var(--transition);
  outline: none;
  width: 100%;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--brand);
  box-shadow: 0 0 0 3px var(--brand-glow);
}

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

.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' stroke='%234a4a6a' stroke-width='2' xmlns='http://www.w3.org/2000/svg'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 18px;
  padding-right: 40px;
}

.contact-info-side {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-info-card {
  background: var(--bg-light);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 28px;
}

.contact-info-card h3 {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 20px;
  color: var(--text-primary);
}

.contact-details {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-details li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.contact-details svg {
  width: 20px;
  height: 20px;
  color: var(--brand);
  flex-shrink: 0;
  margin-top: 3px;
}

.contact-details strong {
  display: block;
  font-size: 14px;
  color: var(--text-primary);
  margin-bottom: 2px;
}

.contact-details p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.5;
}

.contact-details a {
  color: var(--brand);
  font-weight: 500;
}

.hours-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.hours-list li {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  font-size: 14px;
  color: var(--text-secondary);
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border-light);
}

.hours-list li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.hours-list li span:first-child {
  font-weight: 600;
  color: var(--text-primary);
}

.hours-list li.closed span:last-child {
  color: var(--text-secondary);
  font-weight: 400;
}

.hours-list li.sat-hours {
  flex-wrap: nowrap;
  align-items: flex-start;
}

.hours-list li.sat-hours span:first-child {
  flex-shrink: 0;
}

.hours-list li.sat-hours span:last-child {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  text-align: right;
  gap: 2px;
}

@media (max-width: 480px) {
  .hours-list li.sat-hours {
    font-size: 0.82rem;
  }
}

.highlight-card {
  background: var(--brand-light);
  border-color: var(--brand);
}

.highlight-card h3 {
  color: var(--brand-dark);
}

.highlights-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.highlights-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-secondary);
  font-size: 14px;
  font-weight: 500;
}

.highlights-list svg {
  width: 18px;
  height: 18px;
  color: var(--brand);
  flex-shrink: 0;
}

/* =================== FOOTER =================== */
.site-footer {
  background: var(--text-primary);
  color: rgba(255,255,255,0.75);
  padding: 80px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1.2fr;
  gap: 48px;
  padding-bottom: 48px;
}

.footer-logo {
  height: 48px;
  margin-bottom: 16px;
}

.footer-tagline {
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 20px;
  color: rgba(255,255,255,0.6);
  max-width: 300px;
}

.footer-rating {
  display: flex;
  align-items: center;
  gap: 10px;
}

.stars {
  display: flex;
  gap: 2px;
}

.star-icon {
  width: 16px;
  height: 16px;
  color: #f59e0b;
}

.rating-text {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
}

.footer-heading {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 20px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  transition: color var(--transition);
}

.footer-links a:hover {
  color: var(--brand);
}

.footer-contact {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-contact li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.footer-icon {
  width: 18px;
  height: 18px;
  color: var(--brand);
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-contact span,
.footer-contact p {
  font-size: 14px;
  line-height: 1.5;
  color: rgba(255,255,255,0.6);
}

.footer-contact a {
  color: rgba(255,255,255,0.6);
}

.footer-contact a:hover {
  color: var(--brand);
}

.footer-hours {
  margin-top: 20px;
}

.footer-hours h5 {
  font-size: 14px;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
  margin-bottom: 6px;
}

.footer-hours p {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  line-height: 1.5;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 24px 0;
  text-align: center;
}

.footer-bottom p {
  font-size: 13px;
  color: rgba(255,255,255,0.45);
}

.footer-service-area {
  margin-top: 8px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 4px 8px;
  font-size: 12px;
}

.footer-service-area span,
.footer-service-area a {
  white-space: nowrap;
  color: rgba(255,255,255,0.45);
}

.footer-service-area a:hover {
  color: var(--brand);
}

/* =================== RESPONSIVE =================== */
@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

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

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

  .team-grid {
    grid-template-columns: 1fr;
  }

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

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 32px;
  }

  .footer-brand {
    grid-column: 1 / -1;
    display: flex;
    flex-direction: row;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px 32px;
    padding-bottom: 24px;
    margin-bottom: 8px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }

  .footer-brand .footer-logo {
    height: 42px;
    margin-bottom: 0;
  }

  .footer-brand .footer-tagline {
    flex: 1;
    min-width: 200px;
    margin-bottom: 0;
  }

  .footer-brand .footer-rating {
    margin-left: auto;
  }

  .footer-brand .footer-bbb {
    margin-top: 0;
    padding-top: 0;
    border-top: none;
  }

  .footer-brand .footer-social {
    margin-top: 0;
  }
}

@media (max-width: 768px) {
  .section {
    padding: 70px 0;
  }

  .desktop-nav {
    display: none !important;
  }

  body.nav-open {
    overflow: hidden;
  }

  .nav-list {
    flex-direction: column;
    gap: 4px;
  }

  .nav-link {
    display: block;
    padding: 12px 16px;
    font-size: 16px;
  }

  .header-cta {
    display: none;
  }

  .nav-chevron {
    display: none;
  }

  .mobile-toggle {
    display: flex;
  }

  .mobile-toggle.open .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .mobile-toggle.open .hamburger-line:nth-child(2) {
    opacity: 0;
  }

  .mobile-toggle.open .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }

  .hero {
    min-height: 80vh;
  }

  .hero-content {
    padding: 60px 0 80px;
  }

  .hero-trust {
    flex-direction: column;
    gap: 12px;
  }

  .why-us-layout,
  .about-layout,
  .showroom-layout,
  .noodles-layout,
  .service-detail-layout,
  .service-detail-layout.reverse {
    grid-template-columns: 1fr;
    gap: 32px;
    direction: ltr;
  }

  .install-photo-stack {
    grid-template-columns: 1fr;
  }

  .install-photo-stack img {
    height: 240px;
  }

  .lvt-project-grid {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }

  .lvt-project-grid img {
    height: 160px;
  }

  .noodles-video-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .noodles-video-wrap video {
    height: 300px;
  }

  .team-member {
    flex-direction: column;
    text-align: center;
  }

  .team-photo {
    width: 140px;
    height: 180px;
  }

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

  .testimonials-grid {
    grid-template-columns: 1fr;
  }

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

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

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

  .page-hero {
    padding: 120px 0 48px;
  }

  .cta-section {
    padding: 60px 0;
  }
}

@media (max-width: 767px) {
  .site-footer {
    padding: 48px 0 0;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px 24px;
  }

  .footer-brand {
    grid-column: 1 / -1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }

  .footer-brand .footer-tagline {
    max-width: 100%;
  }

  .footer-rating {
    justify-content: center;
  }

  .footer-brand .footer-bbb {
    border-top: none;
    padding-top: 0;
  }

  .footer-brand .footer-social {
    justify-content: center;
  }

  .footer-col-links {
    text-align: left;
  }

  .footer-links {
    align-items: flex-start;
  }

  .footer-col:last-child {
    grid-column: 1 / -1;
    text-align: left;
  }

  .footer-contact {
    align-items: flex-start;
  }

  .footer-contact li {
    justify-content: flex-start;
  }

  .footer-hours {
    text-align: left;
  }
}

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

  .process-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .trade-grid {
    grid-template-columns: 1fr;
  }

  .values-grid {
    grid-template-columns: 1fr;
  }

  .stats-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .hero-actions {
    flex-direction: column;
  }

  .cta-actions {
    flex-direction: column;
    align-items: center;
  }
}

/* ==============================
   FLOORING GUIDE PAGES
   ============================== */

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

.guide-card {
  display: flex;
  flex-direction: column;
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-decoration: none;
  color: var(--text-primary);
  transition: var(--transition);
}

.guide-card:hover {
  border-color: var(--brand);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.guide-icon-wrap {
  width: 48px;
  height: 48px;
  background: var(--brand-light);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  color: var(--brand);
}

.guide-icon-wrap svg {
  width: 24px;
  height: 24px;
}

.guide-card h3 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  margin-bottom: 8px;
}

.guide-card p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.5;
  flex: 1;
}

/* Article & Guide Layout */
.article-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 48px;
  align-items: start;
}

.article-content p {
  margin-bottom: 20px;
  line-height: 1.8;
  font-size: 1.05rem;
  color: var(--text-secondary);
}

.article-content p:first-child {
  font-size: 1.15rem;
  color: var(--text-primary);
}

.article-hero-img {
  width: 100%;
  border-radius: var(--radius-lg);
  margin-bottom: 32px;
}

.tips-box {
  background: var(--brand-light);
  border-left: 4px solid var(--brand);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  padding: 24px 28px;
  margin: 32px 0;
}

.tips-box h3 {
  font-family: var(--font-heading);
  color: var(--brand-dark);
  margin-bottom: 12px;
}

.tips-box ul {
  list-style: disc;
  padding-left: 20px;
}

.tips-box li {
  margin-bottom: 8px;
  color: var(--text-secondary);
}

.article-cta-box {
  background: var(--bg-alt);
  border-radius: var(--radius-lg);
  padding: 32px;
  margin-top: 40px;
  text-align: center;
}

.article-cta-box h3 {
  font-family: var(--font-heading);
  margin-bottom: 8px;
}

.article-cta-box p {
  margin-bottom: 16px;
  font-size: 1rem;
}

.article-sidebar {
  position: sticky;
  top: 100px;
}

.sidebar-card {
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 24px;
  margin-bottom: 24px;
}

.sidebar-img {
  width: 100%;
  border-radius: var(--radius-md);
  margin-bottom: 16px;
}

.sidebar-card h3 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  margin-bottom: 12px;
}

.sidebar-links {
  list-style: none;
}

.sidebar-links li {
  margin-bottom: 4px;
}

.sidebar-links a {
  display: block;
  padding: 8px 12px;
  color: var(--text-secondary);
  text-decoration: none;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  font-size: 0.92rem;
}

.sidebar-links a:hover,
.sidebar-links a.active {
  color: var(--brand-dark);
  background: var(--brand-light);
}

.sidebar-cta {
  background: var(--brand-light);
  border-color: var(--brand);
}

.btn-full {
  display: block;
  width: 100%;
  text-align: center;
}

.btn-outline {
  display: inline-block;
  padding: 12px 28px;
  border: 2px solid var(--brand);
  color: var(--brand-dark);
  background: transparent;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  font-size: 0.95rem;
  transition: var(--transition);
  cursor: pointer;
}

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

/* Breadcrumb */
.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  font-size: 0.9rem;
}

.breadcrumb a {
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  transition: var(--transition);
}

.breadcrumb a:hover {
  color: white;
}

.breadcrumb span {
  color: rgba(255,255,255,0.5);
}

.breadcrumb .breadcrumb-sep {
  color: rgba(255,255,255,0.3);
}

/* ==============================
   BLOG
   ============================== */

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

.blog-card {
  display: flex;
  flex-direction: column;
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  text-decoration: none;
  color: var(--text-primary);
  transition: var(--transition);
}

.blog-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

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

.blog-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

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

.blog-card-body {
  padding: 20px 24px 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.blog-category {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--brand);
  margin-bottom: 8px;
}

.blog-card-body h3 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  margin-bottom: 8px;
  line-height: 1.4;
}

.blog-card-body p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  flex: 1;
  line-height: 1.5;
}

.blog-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 16px;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.blog-post-date {
  color: rgba(255,255,255,0.7);
  font-size: 0.95rem;
  margin-top: 8px;
}

.blog-filter-active {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 32px;
  padding: 12px 20px;
  background: var(--brand-light);
  border-radius: var(--radius-md);
  font-size: 0.95rem;
}

.btn-clear-filter {
  color: var(--brand-dark);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
}

/* ==============================
   TESTIMONIALS & REVIEWS
   ============================== */

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

.testimonial-card {
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 28px;
}

.testimonial-stars {
  display: flex;
  gap: 2px;
  margin-bottom: 16px;
  color: #f59e0b;
}

.testimonial-stars svg {
  width: 18px;
  height: 18px;
}

.testimonial-card blockquote {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin-bottom: 20px;
  font-style: italic;
}

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

.author-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--brand);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
}

.testimonial-author strong {
  display: block;
  font-size: 0.95rem;
}

.testimonial-author span {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.stats-inline {
  display: flex;
  justify-content: center;
  gap: 48px;
  margin-bottom: 32px;
  padding: 32px;
  background: var(--brand-light);
  border-radius: var(--radius-lg);
}

.stat-inline-item {
  text-align: center;
}

.stat-number-sm {
  display: block;
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--brand-dark);
}

.stat-label-sm {
  font-size: 0.85rem;
  color: var(--text-secondary);
}

/* Review Summary */
.review-summary {
  text-align: center;
  margin-bottom: 48px;
}

.review-score {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.review-big-number {
  font-family: var(--font-heading);
  font-size: 4rem;
  font-weight: 700;
  color: var(--brand-dark);
  line-height: 1;
}

.review-stars {
  display: flex;
  gap: 4px;
  color: #f59e0b;
}

.review-stars svg {
  width: 28px;
  height: 28px;
}

.review-count {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-top: 4px;
}

/* ==============================
   FINANCING
   ============================== */

.financing-layout {
  max-width: 900px;
  margin: 0 auto;
}

.financing-apply-box {
  margin: 32px 0;
  background: linear-gradient(135deg, #3D2B1F 0%, #2A1D14 100%);
  border-radius: var(--radius-lg);
  padding: 32px 36px;
}

.financing-apply-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.financing-apply-text h3 {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}

.financing-apply-text p {
  color: rgba(255,255,255,0.75);
  font-size: 15px;
  margin: 0;
}

.financing-apply-inner .btn {
  flex-shrink: 0;
}

@media (max-width: 600px) {
  .financing-apply-inner {
    flex-direction: column;
    text-align: center;
  }

  .financing-apply-inner .btn {
    width: 100%;
  }
}

.financing-features {
  margin: 32px 0;
}

.financing-feature {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
  align-items: flex-start;
}

.financing-feature .why-icon {
  flex-shrink: 0;
}

.financing-feature strong {
  display: block;
  font-size: 1.05rem;
  margin-bottom: 4px;
}

.financing-feature p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  margin: 0;
}

/* ==============================
   TRADE SERVICES
   ============================== */

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

.trade-card {
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  transition: var(--transition);
}

.trade-card:hover {
  border-color: var(--brand);
  box-shadow: var(--shadow-md);
}

.trade-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 16px;
  color: var(--brand);
}

.trade-card h3 {
  font-family: var(--font-heading);
  margin-bottom: 8px;
}

.trade-card p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

/* ==============================
   PRODUCTS PAGE
   ============================== */

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

.product-category-card {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  text-decoration: none;
  color: var(--text-primary);
  transition: var(--transition);
}

.product-category-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

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

.product-category-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

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

.product-category-body {
  padding: 20px 24px 24px;
}

.product-category-body h3 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  margin-bottom: 8px;
}

.product-category-body p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.5;
  margin-bottom: 12px;
}

.brands-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 900px;
  margin: 32px auto 0;
}

.brand-item {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--text-secondary);
}

/* ==============================
   COMPARISON GRID
   ============================== */

.comparison-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  max-width: 800px;
  margin: 32px auto 0;
}

.comparison-card {
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 32px;
}

.comparison-card h3 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  margin-bottom: 20px;
  text-align: center;
}

.featured-card {
  border-color: var(--brand);
  box-shadow: 0 0 0 1px var(--brand);
}

/* ==============================
   LEGAL PAGES
   ============================== */

.page-hero-sm {
  padding: 140px 0 48px;
}

.legal-content {
  max-width: 800px;
  margin: 0 auto;
}

.legal-content h2 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  margin: 32px 0 12px;
  color: var(--text-primary);
}

.legal-content p {
  margin-bottom: 16px;
  color: var(--text-secondary);
  line-height: 1.7;
}

.legal-content ul {
  margin: 8px 0 16px 20px;
}

.legal-content li {
  margin-bottom: 6px;
  color: var(--text-secondary);
}

.legal-content a {
  color: var(--brand-dark);
  text-decoration: none;
}

.legal-content a:hover {
  text-decoration: underline;
}

/* ==============================
   QUOTE / FORM EXTRAS
   ============================== */

.expect-list {
  list-style: none;
  padding: 0;
}

.expect-list li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 12px;
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.expect-list li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  color: var(--brand);
  font-weight: 700;
}

.contact-phone-link {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--brand-dark);
  text-decoration: none;
  margin-bottom: 16px;
}

.contact-phone-link:hover {
  color: var(--brand);
}

.form-success {
  margin-top: 20px;
  padding: 16px 20px;
  background: var(--brand-light);
  border: 1px solid var(--brand);
  border-radius: var(--radius-md);
  color: var(--brand-dark);
  font-weight: 500;
}

/* ==============================
   LOCATION PAGES
   ============================== */

.areas-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-top: 32px;
}

/* ==============================
   MAP + SERVICE AREA PILLS
   ============================== */

.map-areas-layout {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 32px;
  margin-top: 40px;
  align-items: start;
}

.map-embed {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  background: var(--bg-white);
}

.map-embed iframe {
  display: block;
  width: 100%;
  height: 340px;
}

.map-store-info {
  padding: 20px 24px;
  border-top: 3px solid var(--brand);
}

.store-info-inner {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.store-info-inner strong {
  font-size: 17px;
  color: var(--text-primary);
}

.store-info-inner span {
  font-size: 14px;
  color: var(--text-secondary);
}

.store-info-inner a {
  color: var(--brand);
  font-weight: 600;
  text-decoration: none;
}

.store-info-inner a:hover {
  color: var(--brand-dark);
}

.store-amenities {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

.amenity-tag {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 5px 12px;
  background: var(--brand-glow);
  color: var(--brand-dark);
  font-size: 12px;
  font-weight: 600;
  border-radius: 100px;
  border: 1px solid rgba(200, 150, 12, 0.2);
  cursor: default;
  pointer-events: none;
  user-select: none;
  text-decoration: none;
}

.amenity-tag-link {
  cursor: pointer;
  pointer-events: auto;
  user-select: auto;
  background: var(--brand);
  color: #fff !important;
  border-color: var(--brand);
  transition: background 0.2s ease;
}

.amenity-tag-link:hover {
  background: var(--dark-brown);
  border-color: var(--dark-brown);
  color: #fff !important;
  opacity: 1;
}

.service-areas-pills {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-light);
}

.pills-heading {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 20px;
  text-align: center;
}

.pills-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.area-pill {
  display: inline-block;
  padding: 10px 22px;
  background: var(--bg-light);
  border: 2px solid var(--border-light);
  border-radius: 100px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-primary);
  text-decoration: none;
  transition: all var(--transition);
}

.area-pill:hover {
  background: var(--brand);
  border-color: var(--brand);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(200, 150, 12, 0.3);
}

/* ==============================
   CITY SERVICE PAGES
   ============================== */

.city-service-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 40px;
  align-items: start;
}

.city-service-main h2 {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 700;
  color: var(--text-primary);
  margin: 28px 0 16px;
}

.city-service-main h3 {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 700;
  color: var(--text-primary);
  margin: 32px 0 16px;
}

.city-service-main p {
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 12px;
}

.city-service-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.city-service-image img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  display: block;
}

.benefits-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.benefits-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  color: var(--text-secondary);
  padding: 12px 16px;
  background: var(--bg-light);
  border-radius: var(--radius-md);
}

.benefit-check {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: var(--brand);
}

.process-steps-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.process-step-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px 20px;
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
}

.process-step-num {
  width: 32px;
  height: 32px;
  min-width: 32px;
  border-radius: 50%;
  background: var(--brand);
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.process-step-item p {
  margin: 0;
  font-size: 15px;
  line-height: 1.5;
  color: var(--text-secondary);
}

.city-service-sidebar {
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: sticky;
  top: 100px;
}

.sidebar-card {
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 24px;
}

.sidebar-card h4 {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 16px;
}

.sidebar-services-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.sidebar-services-list a {
  display: block;
  padding: 10px 14px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary);
  text-decoration: none;
  border-radius: var(--radius-md);
  transition: all var(--transition);
}

.sidebar-services-list a:hover {
  color: var(--brand);
  background: var(--brand-glow);
}

.sidebar-services-list a.active {
  color: var(--brand);
  background: var(--brand-glow);
  font-weight: 700;
}

.sidebar-cta {
  background: linear-gradient(135deg, #3D2B1F, #2A1D14);
  border: none;
}

.sidebar-cta h4 {
  color: #fff;
}

.sidebar-cta p {
  color: rgba(255,255,255,0.75);
  font-size: 14px;
  margin-bottom: 16px;
}

.sidebar-cta .btn {
  width: 100%;
  text-align: center;
  margin-bottom: 8px;
}

.btn-outline-brand {
  background: transparent;
  color: var(--brand);
  border: 2px solid var(--brand);
}

.btn-outline-brand:hover {
  background: var(--brand);
  color: #fff;
}

.sidebar-neighborhoods {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.neighborhood-tag {
  display: inline-block;
  padding: 4px 10px;
  font-size: 12px;
  background: var(--bg-light);
  border-radius: 100px;
  color: var(--text-muted);
}

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

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

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

  .article-sidebar {
    position: static;
  }

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

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

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

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

  .map-areas-layout {
    grid-template-columns: 1fr;
  }

  .city-service-layout {
    grid-template-columns: 1fr;
  }

  .city-service-sidebar {
    position: static;
  }

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

  .comparison-grid {
    grid-template-columns: 1fr;
  }

  .stats-inline {
    gap: 24px;
    padding: 24px;
  }
}

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

  .trade-grid {
    grid-template-columns: 1fr;
  }

  .brands-grid {
    grid-template-columns: 1fr;
    gap: 16px;
    max-width: 320px;
  }

  .brand-logo-img {
    max-width: 260px;
    height: 90px;
  }

  .stats-inline {
    flex-direction: column;
    gap: 16px;
  }

  .breadcrumb {
    font-size: 0.8rem;
  }
}

/* ==============================
   EMBEDDED FORM & REVIEW WIDGETS
   ============================== */

.embedded-form-container {
  width: 100%;
  min-height: 1220px;
  border-radius: 10px;
  overflow: hidden;
}

.review-widget-container {
  width: 100%;
  min-height: 400px;
}

.review-widget-container iframe {
  border-radius: 10px;
}

/* ==============================
   FLOATING FINANCING BUTTON
   ============================== */

@keyframes financeSlideIn {
  0% { transform: translateX(-120%); opacity: 0; }
  100% { transform: translateX(0); opacity: 1; }
}

@keyframes financePulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(200, 150, 12, 0.3); }
  50% { box-shadow: 0 4px 28px rgba(200, 150, 12, 0.55); }
}

.floating-finance-wrap {
  position: fixed;
  bottom: 28px;
  left: 28px;
  z-index: 999;
  animation: financeSlideIn 0.6s ease-out 1s both;
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.floating-finance-wrap.hidden {
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
}

.finance-close-btn {
  position: absolute;
  top: -10px;
  right: -10px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: none;
  background: #333;
  color: #fff;
  font-size: 16px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
  opacity: 0;
  transition: opacity 0.2s ease, background 0.2s ease;
  padding: 0;
}
.floating-finance-wrap:hover .finance-close-btn {
  opacity: 1;
}
.finance-close-btn:hover {
  background: #555;
}

.floating-finance-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 24px;
  background: linear-gradient(135deg, #C8960C 0%, #A67B0A 100%);
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  border-radius: 100px;
  box-shadow: 0 4px 20px rgba(200, 150, 12, 0.3);
  animation: financePulse 3s ease-in-out 2s infinite;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.floating-finance-btn:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 8px 32px rgba(200, 150, 12, 0.5);
  background: linear-gradient(135deg, #d9a520 0%, #C8960C 100%);
  color: #fff;
}

.floating-finance-btn:active {
  transform: translateY(-1px) scale(1.01);
}

.finance-btn-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  background: rgba(255,255,255,0.2);
  border-radius: 50%;
  flex-shrink: 0;
}

.finance-btn-icon svg {
  width: 16px;
  height: 16px;
  stroke: #fff;
}

.finance-btn-label {
  white-space: nowrap;
}

.finance-btn-arrow {
  font-size: 18px;
  transition: transform 0.25s ease;
}

.floating-finance-btn:hover .finance-btn-arrow {
  transform: translateX(3px);
}

@media (max-width: 600px) {
  .floating-finance-wrap {
    bottom: 12px;
    left: 12px;
    right: auto;
  }
  .floating-finance-btn {
    padding: 10px 16px;
    font-size: 13px;
    gap: 8px;
  }
  .finance-btn-icon {
    width: 24px;
    height: 24px;
  }
  .finance-btn-icon svg {
    width: 14px;
    height: 14px;
  }
  .finance-close-btn {
    opacity: 1;
    top: -8px;
    right: -8px;
    width: 22px;
    height: 22px;
    font-size: 14px;
  }
}

.footer-bbb {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.footer-social {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

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

.social-link svg {
  width: 18px;
  height: 18px;
}

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

.trust-badges {
  margin-top: 24px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.bbb-badge-link {
  display: inline-block;
}

.stat-bbb a {
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.stat-bbb a:hover .stat-number {
  color: var(--brand);
}

.bbb-badge-center {
  display: flex;
  justify-content: center;
  margin-top: 24px;
}
/* ============================================================
   CARPET ON STAIRS PAGE
   ============================================================ */

.stairs-hero {
  position: relative;
  padding: 100px 0 80px;
  background: var(--dark-brown);
  overflow: hidden;
  text-align: center;
}

.stairs-hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('/images/stairs/stairs-15.jpg');
  background-size: cover;
  background-position: center top;
  opacity: 1;
}

.stairs-hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(20, 10, 5, 0.72);
}

.stairs-hero-content {
  position: relative;
  z-index: 1;
}

.stairs-hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(36px, 5vw, 60px);
  color: #fff;
  margin: 12px 0 16px;
  line-height: 1.1;
}

.stairs-hero p {
  font-size: 18px;
  color: rgba(255,255,255,0.8);
  max-width: 600px;
  margin: 0 auto 32px;
  line-height: 1.7;
}

/* Filter Bar */
.stairs-filter-bar {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 40px;
  justify-content: center;
}

.stairs-filter-btn {
  padding: 10px 24px;
  border: 2px solid var(--border-light);
  border-radius: 40px;
  background: transparent;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-secondary);
  cursor: pointer;
  transition: all 0.2s ease;
}

.stairs-filter-btn:hover,
.stairs-filter-btn.active {
  background: var(--brand);
  border-color: var(--brand);
  color: #fff;
}

/* Masonry Grid */
.stairs-masonry {
  columns: 3;
  column-gap: 16px;
}

.stairs-item {
  break-inside: avoid;
  position: relative;
  margin-bottom: 16px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  background: var(--bg-section);
}

.stairs-item img {
  width: 100%;
  display: block;
  transition: transform 0.4s ease;
}


.stairs-item:hover img {
  transform: scale(1.04);
}

.stairs-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, transparent 50%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

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

.stairs-style-tag {
  display: inline-block;
  background: var(--brand);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 20px;
  margin-bottom: 8px;
  align-self: flex-start;
}

.stairs-view-btn {
  align-self: flex-start;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.4);
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  padding: 8px 18px;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.2s ease;
}

.stairs-view-btn:hover {
  background: rgba(255,255,255,0.3);
}

/* Why Grid */
.stairs-why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

.stairs-why-card {
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
}

.stairs-why-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--bg-gold-light, #FDF6E3);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: var(--brand);
}

.stairs-why-icon svg {
  width: 26px;
  height: 26px;
}

.stairs-why-card h3 {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 10px;
}

.stairs-why-card p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* CTA */
.stairs-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  background: var(--dark-brown);
  border-radius: var(--radius-xl);
  padding: 60px;
}

.stairs-cta-inner h2 {
  font-family: var(--font-heading);
  font-size: 32px;
  color: #fff;
  margin-bottom: 12px;
}

.stairs-cta-inner p {
  color: rgba(255,255,255,0.75);
  font-size: 16px;
  line-height: 1.7;
  max-width: 500px;
}

.stairs-cta-btns {
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex-shrink: 0;
}

.stairs-cta-btns .btn-outline {
  border-color: rgba(255,255,255,0.4);
  color: #fff;
}

.stairs-cta-btns .btn-outline:hover {
  border-color: var(--brand);
  background: var(--brand);
  color: #fff;
}

/* Lightbox */
.stairs-lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.stairs-lightbox.open {
  opacity: 1;
  pointer-events: all;
}

.stairs-lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.92);
}

.stairs-lightbox-inner {
  position: relative;
  z-index: 1;
  max-width: 90vw;
  max-height: 90vh;
  text-align: center;
}

.stairs-lightbox-inner img {
  max-width: 100%;
  max-height: 80vh;
  border-radius: var(--radius-lg);
  object-fit: contain;
}

.stairs-lightbox-caption {
  color: rgba(255,255,255,0.7);
  font-size: 14px;
  margin-top: 12px;
}

.stairs-lightbox-close {
  position: absolute;
  top: 20px;
  right: 24px;
  background: rgba(255,255,255,0.1);
  border: none;
  color: #fff;
  font-size: 36px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 2;
  line-height: 1;
  transition: background 0.2s;
}

.stairs-lightbox-close:hover { background: rgba(255,255,255,0.25); }

.stairs-lightbox-prev,
.stairs-lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.1);
  border: none;
  color: #fff;
  font-size: 48px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}

.stairs-lightbox-prev { left: 20px; }
.stairs-lightbox-next { right: 20px; }
.stairs-lightbox-prev:hover,
.stairs-lightbox-next:hover { background: var(--brand); }

@keyframes fadeIn {
  from { opacity: 0; transform: scale(0.97); }
  to   { opacity: 1; transform: scale(1); }
}

/* Responsive */
@media (max-width: 1024px) {
  .stairs-masonry { columns: 2; }
  .stairs-why-grid { grid-template-columns: repeat(2, 1fr); }
  .stairs-cta-inner { flex-direction: column; text-align: center; padding: 40px 32px; }
  .stairs-cta-btns { flex-direction: row; justify-content: center; }
}

@media (max-width: 768px) {
  .stairs-masonry { columns: 1; }
  .stairs-why-grid { grid-template-columns: 1fr; }
  .stairs-lightbox-prev { left: 8px; }
  .stairs-lightbox-next { right: 8px; }
  .stairs-cta-btns { flex-direction: column; }
}

/* ==============================
   REVIEWS GRID (Testimonials Page)
   ============================== */

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

.review-card {
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition), transform var(--transition);
}

.review-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.review-header {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}

.reviewer-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--brand-glow);
  border: 2px solid var(--brand);
  color: var(--brand);
  font-weight: 700;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.reviewer-info {
  flex: 1;
  min-width: 0;
}

.reviewer-name {
  display: block;
  font-size: 15px;
  color: var(--text-primary);
  font-weight: 700;
}

.review-source {
  display: block;
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 2px;
}

.review-stars {
  display: flex;
  gap: 2px;
  margin-left: auto;
}

.review-stars svg {
  width: 16px;
  height: 16px;
  color: var(--brand);
}

.review-text {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.7;
}

.reviews-cta-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 48px;
  padding: 32px;
  background: var(--brand-light);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(200, 150, 12, 0.2);
}

.reviews-cta-bar p {
  font-size: 16px;
  color: var(--text-secondary);
  font-weight: 500;
}

/* ==============================
   SERVICES OVERVIEW GRID
   ============================== */

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

.service-overview-card {
  display: flex;
  flex-direction: column;
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  text-decoration: none;
  color: inherit;
  transition: all var(--transition);
}

.service-overview-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(200, 150, 12, 0.3);
  color: inherit;
}

.service-overview-icon {
  width: 48px;
  height: 48px;
  background: var(--brand-glow);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand);
  margin-bottom: 16px;
}

.service-overview-icon svg {
  width: 24px;
  height: 24px;
}

.service-overview-card h3 {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 10px;
}

.service-overview-card p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 16px;
  flex: 1;
}

.trade-link {
  font-size: 13px;
  font-weight: 600;
  color: var(--brand);
  transition: color var(--transition);
  margin-top: auto;
}

.trade-card:hover .trade-link {
  color: var(--brand-dark);
}

.trade-cta-bar {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}

/* ==============================
   BRAND LOGOS GRID
   ============================== */

.brand-logo-item {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  transition: all var(--transition);
}

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

.brand-logo-item img {
  max-height: 60px;
  width: auto;
  object-fit: contain;
  filter: grayscale(1) opacity(0.7);
  transition: filter var(--transition);
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
}

.brand-logo-item:hover img {
  filter: grayscale(0) opacity(1);
}

/* ==============================
   RESPONSIVE — REVIEWS & SERVICES
   ============================== */

@media (max-width: 1024px) {
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
  .services-overview-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  .reviews-grid { grid-template-columns: 1fr; }
  .services-overview-grid { grid-template-columns: 1fr; }
  .reviews-cta-bar { flex-direction: column; text-align: center; }
}

/* ==============================
   BRAND LOGO CARDS
   ============================== */

.brands-logo-grid {
  grid-template-columns: repeat(3, 1fr);
  max-width: 960px;
  margin: 32px auto 0;
}

.brand-logo-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 32px 24px;
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  text-align: center;
  gap: 4px;
}

.brand-logo-name {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: -0.01em;
}

.brand-logo-sub {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--brand);
}

/* ==============================
   TRADE DETAIL LAYOUT
   ============================== */

.trade-detail-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.trade-detail-layout.reverse {
  direction: rtl;
}

.trade-detail-layout.reverse > * {
  direction: ltr;
}

.trade-detail-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.trade-detail-img img {
  width: 100%;
  height: 340px;
  object-fit: cover;
}

.trade-detail-content h3 {
  font-family: var(--font-heading);
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 14px;
}

.trade-detail-content p {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 20px;
}

@media (max-width: 768px) {
  .trade-detail-layout,
  .trade-detail-layout.reverse {
    grid-template-columns: 1fr;
    direction: ltr;
    gap: 32px;
  }
  .trade-detail-img img { height: 240px; }
}

/* ==============================
   BRAND LOGO IMAGES
   ============================== */

.brand-logo-img {
  width: 100%;
  max-width: 240px;
  height: 100px;
  object-fit: contain;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

/* ==============================
   SERVICE DETAIL LAYOUT (Trade Services Page)
   ============================== */

.service-detail-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.service-detail-layout.reverse {
  direction: rtl;
}

.service-detail-layout.reverse > * {
  direction: ltr;
}

.service-detail-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.service-detail-img img {
  width: 100%;
  height: 360px;
  object-fit: cover;
}

.service-detail-content .section-label {
  display: inline-block;
  margin-bottom: 10px;
}

.service-detail-content h2 {
  font-family: var(--font-heading);
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 16px;
}

.service-detail-content p {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 20px;
}

@media (max-width: 768px) {
  .service-detail-layout,
  .service-detail-layout.reverse {
    grid-template-columns: 1fr;
    direction: ltr;
    gap: 28px;
  }
  .service-detail-img img { height: 240px; }
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
}
.faq-item {
  border-bottom: 1px solid var(--border);
  padding: 24px 0;
}
.faq-item:last-child {
  border-bottom: none;
}
.faq-question {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 10px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
}
.faq-question::after {
  content: "+";
  font-size: 22px;
  font-weight: 300;
  color: var(--primary);
  flex-shrink: 0;
  line-height: 1;
}
.faq-item.open .faq-question::after {
  content: "\2212";
}
.faq-answer {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.7;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}
.faq-item.open .faq-answer {
  max-height: 500px;
  padding-top: 4px;
}
@media (max-width: 768px) {
  .faq-question { font-size: 16px; }
  .faq-answer { font-size: 14px; }
}

.drive-time-card {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  max-width: 800px;
  margin: 0 auto;
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 32px;
}
.drive-time-icon {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  background: var(--brand-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand);
}
.btn-sm {
  padding: 8px 18px;
  font-size: 14px;
}
.drive-time-content p {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.75;
  margin: 0;
}
@media (max-width: 768px) {
  .drive-time-card {
    flex-direction: column;
    padding: 24px;
    gap: 16px;
  }
  .about-layout-reverse .about-image { order: 0; }
  .about-layout-reverse .about-content { order: 0; }
}

.before-after-grid {
  display: flex;
  flex-direction: column;
  gap: 48px;
}
.before-after-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.before-after-card {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,0.10);
}
.before-after-card img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  display: block;
}
.before-after-label {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 6px 16px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.before-label {
  background: rgba(180, 40, 40, 0.88);
  color: #fff;
}
.after-label {
  background: rgba(30, 120, 50, 0.88);
  color: #fff;
}
@media (max-width: 768px) {
  .before-after-pair {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .before-after-card img {
    height: 240px;
  }
}
.hero-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.hero-gallery-item {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
}
.hero-gallery-item img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.hero-gallery-item:hover img {
  transform: scale(1.04);
}
.hero-gallery-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px 16px 14px;
  background: linear-gradient(to top, rgba(0,0,0,0.65) 0%, transparent 100%);
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
@media (max-width: 768px) {
  .hero-gallery {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .hero-gallery-item img {
    height: 180px;
  }
}

.project-mosaic {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  min-height: 420px;
  overflow: visible;
  border-radius: 0;
}
.project-mosaic img {
  height: 100%;
}
.mosaic-tall {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  height: 100%;
}
.mosaic-tall img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.mosaic-tall:hover img {
  transform: scale(1.04);
}
.mosaic-stack {
  display: flex;
  flex-direction: column;
  gap: 10px;
  height: 100%;
}
.mosaic-item {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  flex: 1;
}
.mosaic-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.mosaic-item:hover img {
  transform: scale(1.04);
}
.mosaic-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px 14px 10px;
  background: linear-gradient(to top, rgba(0,0,0,0.6) 0%, transparent 100%);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
@media (max-width: 768px) {
  .project-mosaic {
    grid-template-columns: 1fr;
    height: auto;
  }
  .mosaic-tall img {
    height: 220px;
  }
  .mosaic-stack {
    flex-direction: row;
  }
  .mosaic-item img {
    height: 150px;
  }
}

.project-showcase {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.project-showcase .showcase-item:first-child {
  grid-column: span 2;
  grid-row: span 2;
}
.showcase-item {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
}
.showcase-item img {
  width: 100%;
  height: 100%;
  min-height: 200px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.project-showcase .showcase-item:first-child img {
  min-height: 420px;
}
.showcase-item:hover img {
  transform: scale(1.05);
}
.showcase-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 40px 20px 16px;
  background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 100%);
  color: #fff;
  transform: translateY(100%);
  transition: transform 0.35s ease;
}
.showcase-item:hover .showcase-overlay {
  transform: translateY(0);
}
.showcase-overlay h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 4px;
}
.showcase-overlay p {
  font-size: 13px;
  opacity: 0.9;
  margin: 0;
}
@media (max-width: 768px) {
  .project-showcase {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }
  .project-showcase .showcase-item:first-child {
    grid-column: span 2;
    grid-row: span 1;
  }
  .project-showcase .showcase-item:first-child img {
    min-height: 220px;
  }
  .showcase-item img {
    min-height: 150px;
  }
  .showcase-overlay {
    transform: translateY(0);
    padding: 24px 12px 10px;
  }
  .showcase-overlay h3 { font-size: 14px; }
  .showcase-overlay p { font-size: 12px; }
}

.commercial-video-hero {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  max-height: 480px;
}
.commercial-video-hero video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  max-height: 480px;
}
.commercial-video-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 32px 24px 20px;
  background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, transparent 100%);
  color: #fff;
}
.commercial-video-caption .section-label {
  color: var(--gold);
  margin-bottom: 6px;
}
.commercial-video-caption p {
  font-size: 15px;
  line-height: 1.5;
  margin: 0;
  max-width: 600px;
}
@media (max-width: 768px) {
  .commercial-video-hero { max-height: 320px; border-radius: 12px; }
  .commercial-video-hero video { max-height: 320px; }
  .commercial-video-caption { padding: 24px 16px 14px; }
  .commercial-video-caption p { font-size: 13px; }
}

.commercial-slideshow {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  background: #111;
}
.slideshow-track {
  position: relative;
  width: 100%;
}
.slideshow-slide {
  display: none;
  position: relative;
}
.slideshow-slide.active {
  display: block;
}
.slideshow-slide img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  display: block;
}
.slideshow-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 28px 20px 14px;
  background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 100%);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.5;
}
.slideshow-prev,
.slideshow-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border: none;
  background: rgba(0,0,0,0.5);
  color: #fff;
  font-size: 24px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease;
  z-index: 2;
  padding: 0;
  line-height: 1;
}
.slideshow-prev { left: 12px; }
.slideshow-next { right: 12px; }
.slideshow-prev:hover,
.slideshow-next:hover {
  background: rgba(0,0,0,0.75);
}
.slideshow-dots {
  position: absolute;
  bottom: 52px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 2;
}
.slideshow-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 2px solid #fff;
  background: transparent;
  cursor: pointer;
  padding: 0;
  transition: background 0.2s ease;
}
.slideshow-dot.active {
  background: #fff;
}
@media (max-width: 768px) {
  .slideshow-slide img { height: 280px; }
  .slideshow-caption { font-size: 13px; padding: 24px 14px 12px; }
  .slideshow-prev, .slideshow-next { width: 34px; height: 34px; font-size: 20px; }
  .slideshow-dots { bottom: 44px; }
}

.carpet-feature-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: center;
  margin-bottom: 3rem;
}
.carpet-feature-row:last-child {
  margin-bottom: 0;
}
.carpet-feature-row.reverse .carpet-feature-img {
  order: 2;
}
.carpet-feature-row.reverse .carpet-feature-text {
  order: 1;
}
.carpet-feature-img {
  border-radius: 12px;
  overflow: hidden;
  position: relative;
}
.carpet-feature-img img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.carpet-feature-img:hover img {
  transform: scale(1.03);
}
.carpet-feature-text h3 {
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: var(--heading-color, #1a1a1a);
}
.carpet-feature-text p {
  font-size: 0.98rem;
  line-height: 1.7;
  color: var(--text-muted, #555);
  margin-bottom: 0.75rem;
}
.carpet-feature-text .btn {
  margin-top: 0.75rem;
}
.carpet-warehouse-banner {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  max-height: 400px;
}
.carpet-warehouse-banner img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  display: block;
}
.carpet-warehouse-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0,0,0,0.72) 0%, rgba(0,0,0,0.3) 60%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 2.5rem 3rem;
  color: #fff;
}
.carpet-warehouse-overlay h3 {
  font-size: 1.75rem;
  font-weight: 800;
  margin-bottom: 0.75rem;
  color: #fff;
}
.carpet-warehouse-overlay p {
  font-size: 1.05rem;
  line-height: 1.6;
  max-width: 480px;
  margin-bottom: 1.25rem;
  color: rgba(255,255,255,0.9);
}
.carpet-video-feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: center;
}
.carpet-video-wrap {
  border-radius: 12px;
  overflow: hidden;
  background: #000;
}
.carpet-video-wrap video {
  width: 100%;
  height: 400px;
  object-fit: cover;
  display: block;
}
.carpet-video-text h2 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: var(--heading-color, #1a1a1a);
}
.carpet-video-text p {
  font-size: 0.98rem;
  line-height: 1.7;
  color: var(--text-muted, #555);
  margin-bottom: 0.75rem;
}
.carpet-video-text .btn {
  margin-top: 0.75rem;
}

@media (max-width: 768px) {
  .carpet-video-feature {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
  .carpet-video-wrap video {
    height: 280px;
  }
  .carpet-feature-row {
    grid-template-columns: 1fr;
    gap: 1.25rem;
    margin-bottom: 2.5rem;
  }
  .carpet-feature-row.reverse .carpet-feature-img,
  .carpet-feature-row.reverse .carpet-feature-text {
    order: unset;
  }
  .carpet-feature-img img {
    height: 240px;
  }
  .carpet-warehouse-banner img {
    height: 300px;
  }
  .carpet-warehouse-overlay {
    padding: 1.5rem;
    background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.35) 70%, transparent 100%);
    justify-content: flex-end;
  }
  .carpet-warehouse-overlay h3 {
    font-size: 1.35rem;
  }
  .carpet-warehouse-overlay p {
    font-size: 0.92rem;
  }
}

/* =================== SCROLL REVEAL =================== */
@keyframes revealUp {
  from {
    opacity: 0;
    transform: translateY(32px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.js-ready .reveal {
  opacity: 0;
}

.js-ready .reveal.revealed {
  animation: revealUp 0.7s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.js-ready .reveal.revealed:nth-child(2) { animation-delay: 0.08s; }
.js-ready .reveal.revealed:nth-child(3) { animation-delay: 0.16s; }
.js-ready .reveal.revealed:nth-child(4) { animation-delay: 0.24s; }
.js-ready .reveal.revealed:nth-child(5) { animation-delay: 0.32s; }
.js-ready .reveal.revealed:nth-child(6) { animation-delay: 0.40s; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; }
  .reveal.revealed { animation: none; opacity: 1; }
}

/* =================== HERO ENTRANCE =================== */
@keyframes heroBadgeIn {
  from { opacity: 0; transform: translateY(-12px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes heroTitleIn {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes heroFadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.hero-badge  { animation: heroBadgeIn 0.8s 0.2s cubic-bezier(0.22,1,0.36,1) both; }
.hero-title  { animation: heroTitleIn 0.8s 0.35s cubic-bezier(0.22,1,0.36,1) both; }
.hero-subtitle { animation: heroFadeIn 0.7s 0.55s ease both; }
.hero-actions  { animation: heroFadeIn 0.7s 0.7s ease both; }
.hero-trust    { animation: heroFadeIn 0.7s 0.85s ease both; }

@media (prefers-reduced-motion: reduce) {
  .hero-badge, .hero-title, .hero-subtitle, .hero-actions, .hero-trust {
    animation: none;
    opacity: 1;
  }
}

/* =================== PROCESS CONNECTORS =================== */
@media (min-width: 769px) {
  .process-step::after {
    content: '';
    position: absolute;
    top: 28px;
    left: calc(50% + 36px);
    width: calc(100% - 72px);
    height: 2px;
    background: linear-gradient(90deg, var(--brand) 0%, var(--border-light) 100%);
    opacity: 0.4;
  }
  .process-step:last-child::after {
    display: none;
  }
}

/* =================== WHY-US LIST HOVER =================== */
.why-us-list li {
  padding: 12px 16px;
  border-radius: var(--radius-md);
  transition: background var(--transition), box-shadow var(--transition);
}

.why-us-list li:hover {
  background: var(--brand-glow);
  box-shadow: var(--shadow-sm);
}
