/* ============================================================
   Texas Commercial Furniture — Stylesheet (Redesign v2)
   ============================================================ */
:root {
  --navy:       #1C2B3A;
  --navy-lt:    #253748;
  --navy-dark:  #131E2A;
  --blue:       #2B5F8E;
  --blue-lt:    #E8F0F8;
  --blue-mid:   #3A76AA;
  --white:      #FFFFFF;
  --off-white:  #F7F6F4;
  --gray-100:   #F2F1EF;
  --gray-200:   #E5E3E0;
  --border:     #DDDBD8;
  --text:       #111111;
  --text-body:  #3A3A3A;
  --text-muted: #6B6B6B;
  --shadow-sm:  0 1px 3px rgba(0,0,0,0.06);
  --shadow-md:  0 4px 16px rgba(0,0,0,0.10);
  --shadow-lg:  0 8px 32px rgba(0,0,0,0.12);
  --radius:     4px;
  --transition: 0.16s ease;
}

*,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-body);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}
a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }

/* ── Layout ─────────────────────────────────────────────────── */
.container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 40px;
}

/* ── Header ─────────────────────────────────────────────────── */
header {
  position: sticky;
  top: 0;
  z-index: 300;
  height: 68px;
  background: var(--white);
  border-bottom: 1px solid var(--border);
}
header .container {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  display: flex;
  align-items: baseline;
  gap: 6px;
  line-height: 1;
}
.logo-main {
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -0.3px;
  color: var(--navy);
}
.logo-divider {
  width: 1px;
  height: 14px;
  background: var(--border);
  flex-shrink: 0;
  align-self: center;
}
.logo-sub {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  color: var(--text-muted);
  text-transform: uppercase;
  align-self: center;
}
nav { display: flex; gap: 36px; align-items: center; }
nav a {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.07em;
  color: var(--text-muted);
  text-transform: uppercase;
  transition: color var(--transition);
}
nav a:hover, nav a.active { color: var(--navy); }
.nav-cta {
  background: var(--navy);
  color: var(--white) !important;
  padding: 8px 18px;
  border-radius: var(--radius);
  font-size: 11px !important;
  letter-spacing: 0.08em !important;
  transition: background var(--transition) !important;
}
.nav-cta:hover { background: var(--navy-lt) !important; }

/* ── Homepage Hero Slideshow ─────────────────────────────────── */
.hero-slideshow {
  position: relative;
  width: 100%;
  height: 85vh;
  min-height: 520px;
  max-height: 900px;
  overflow: hidden;
  background: var(--navy-dark);
}
.hero-slides { width: 100%; height: 100%; position: relative; }
.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.9s ease;
}
.hero-slide.active { opacity: 1; }
.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.hero-slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.68) 0%, rgba(0,0,0,0.12) 55%, transparent 100%);
  display: flex;
  align-items: flex-end;
}
.hero-slide-content { padding: 56px 72px; }
.hero-slide-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  margin-bottom: 12px;
}
.hero-slide-title {
  font-size: 54px;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.5px;
  line-height: 1.08;
  margin-bottom: 28px;
}
.hero-slide-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-bottom: 1.5px solid rgba(255,255,255,0.45);
  padding-bottom: 3px;
  transition: border-color var(--transition);
  text-decoration: none;
}
.hero-slide-cta:hover { border-color: #fff; }
.hero-slide-cta svg { width: 16px; height: 16px; stroke: currentColor; fill: none; stroke-width: 2.2; }
.hero-dots {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 10;
}
.hero-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.35);
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
  padding: 0;
}
.hero-dot.active { background: #fff; transform: scale(1.25); }
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--blue);
  color: var(--white);
  padding: 14px 30px;
  border-radius: var(--radius);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: background var(--transition);
}
.btn-primary:hover { background: var(--blue-mid); }
.btn-primary svg { width: 14px; height: 14px; stroke: currentColor; fill: none; stroke-width: 2.2; }

/* ── Homepage Category Grid ──────────────────────────────────── */
.home-cats { padding: 80px 0; }
.section-header {
  margin-bottom: 48px;
}
.section-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 10px;
  display: block;
}
.section-header h2 {
  font-size: 30px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.3px;
  line-height: 1.2;
  margin-bottom: 8px;
}
.section-header p {
  font-size: 14px;
  color: var(--text-muted);
  max-width: 480px;
}
.cat-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.cat-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 32px 28px;
  display: flex;
  align-items: flex-start;
  gap: 20px;
  transition: box-shadow var(--transition), border-color var(--transition), transform var(--transition);
  cursor: pointer;
}
.cat-card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--blue);
  transform: translateY(-2px);
}
.cat-icon-wrap {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: var(--blue-lt);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cat-icon-wrap svg {
  width: 24px;
  height: 24px;
  stroke: var(--blue);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.cat-text { flex: 1; min-width: 0; }
.cat-name {
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 6px;
}
.cat-desc {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.55;
  margin-bottom: 14px;
}
.cat-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cat-count {
  font-size: 12px;
  font-weight: 600;
  color: var(--blue);
}
.cat-arrow {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color var(--transition), gap var(--transition);
}
.cat-card:hover .cat-arrow { color: var(--blue); gap: 8px; }
.cat-arrow svg { width: 14px; height: 14px; stroke: currentColor; fill: none; stroke-width: 2.2; }

/* ── Trust Bar ───────────────────────────────────────────────── */
/* ── Footer ──────────────────────────────────────────────────── */
footer {
  background: var(--navy-dark);
  padding: 52px 0 36px;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 60px;
  align-items: start;
  margin-bottom: 40px;
}
.footer-brand .logo-main { color: rgba(255,255,255,0.9); }
.footer-brand .logo-sub { color: rgba(255,255,255,0.3); }
.footer-brand p {
  margin-top: 14px;
  font-size: 12px;
  color: rgba(255,255,255,0.38);
  line-height: 1.65;
  max-width: 260px;
}
.footer-links h4 {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.38);
  margin-bottom: 14px;
}
.footer-links ul { list-style: none; }
.footer-links li { margin-bottom: 8px; }
.footer-links a {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  transition: color var(--transition);
}
.footer-links a:hover { color: rgba(255,255,255,0.9); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-copy { font-size: 12px; color: rgba(255,255,255,0.3); }
.footer-certs { font-size: 11px; color: rgba(255,255,255,0.22); }

/* ════════════════════════════════════════════════════════════════
   Products Page
   ════════════════════════════════════════════════════════════════ */

/* ── Page header ─────────────────────────────────────────────── */
.products-page-hd {
  background: var(--navy);
  padding: 48px 0 52px;
}
.products-page-hd h1 {
  font-size: 34px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.4px;
  margin-bottom: 8px;
}
.products-page-hd p {
  font-size: 15px;
  color: rgba(255,255,255,0.5);
}

/* ── Category tabs ───────────────────────────────────────────── */
.cat-tabs-bar {
  position: sticky;
  top: 68px;
  z-index: 200;
  background: var(--white);
  border-bottom: 1px solid var(--border);
}
.cat-tabs {
  display: flex;
  gap: 0;
  overflow-x: auto;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.cat-tabs::-webkit-scrollbar { display: none; }
.cat-tab {
  flex-shrink: 0;
  padding: 18px 28px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--text-muted);
  background: transparent;
  border: none;
  border-bottom: 3px solid transparent;
  cursor: pointer;
  transition: color var(--transition), border-color var(--transition);
  font-family: inherit;
  display: flex;
  align-items: center;
  gap: 8px;
}
.cat-tab:hover { color: var(--navy); }
.cat-tab.active {
  color: var(--navy);
  border-bottom-color: var(--blue);
}
.cat-tab-count {
  background: var(--gray-100);
  color: var(--text-muted);
  border-radius: 10px;
  padding: 1px 7px;
  font-size: 10px;
  font-weight: 700;
}
.cat-tab.active .cat-tab-count {
  background: var(--blue-lt);
  color: var(--blue);
}

/* ── Category section wrapper ────────────────────────────────── */
.catalog-section { padding: 0 0 80px; }

/* ── Category hero banner ────────────────────────────────────── */
.cat-hero-banner {
  position: relative;
  width: 100%;
  height: 420px;
  margin-bottom: 48px;
  border-radius: 8px;
  overflow: hidden;
  background: var(--navy);
}
.cat-hero-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.cat-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(20,30,48,0.68) 0%, rgba(20,30,48,0.15) 60%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 40px 48px;
}
.cat-hero-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  margin-bottom: 8px;
}
.cat-hero-title {
  font-size: 34px;
  font-weight: 700;
  color: #fff;
  line-height: 1.15;
  letter-spacing: -0.01em;
}
.cat-hero-sub {
  font-size: 15px;
  color: rgba(255,255,255,0.72);
  margin-top: 8px;
  font-weight: 400;
}

/* ── Hero gallery (fallback: 3 product images) ───────────────── */
.hero-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3px;
  margin-bottom: 48px;
  border-radius: 6px;
  overflow: hidden;
  background: var(--gray-200);
}
.hero-gallery-item {
  position: relative;
  overflow: hidden;
  background: var(--off-white);
}
.hero-gallery-item:first-child { grid-column: span 1; }
.hero-gallery-img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}
.hero-gallery-item img { object-fit: contain; background: #F8F7F5; }
.hero-gallery-item:hover .hero-gallery-img { transform: scale(1.04); }
.hero-gallery-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 28px 18px 14px;
  background: linear-gradient(to top, rgba(20,30,42,0.72) 0%, transparent 100%);
  font-size: 12px;
  font-weight: 600;
  color: rgba(255,255,255,0.9);
  letter-spacing: 0.02em;
  line-height: 1.35;
}
/* placeholder when no image */
.hero-gallery-placeholder {
  width: 100%;
  height: 340px;
  background: var(--gray-100);
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-gallery-placeholder svg {
  width: 40px;
  height: 40px;
  stroke: var(--border);
  fill: none;
  stroke-width: 1.2;
}

/* ── Search + subcategory pills row ──────────────────────────── */
.filter-row {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 28px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
}
.search-wrap-inline {
  position: relative;
  flex-shrink: 0;
  width: 260px;
}
.search-icon-inline {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  width: 15px;
  height: 15px;
  stroke: var(--text-muted);
  fill: none;
  stroke-width: 1.8;
  pointer-events: none;
}
.search-input-inline {
  width: 100%;
  padding: 9px 12px 9px 36px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 13px;
  font-family: inherit;
  color: var(--text);
  background: var(--white);
  outline: none;
  transition: border-color var(--transition);
}
.search-input-inline:focus { border-color: var(--blue); }
.pills-row {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  flex: 1;
}
.pill {
  padding: 7px 14px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--text-muted);
  cursor: pointer;
  transition: all var(--transition);
  font-family: inherit;
  white-space: nowrap;
}
.pill:hover {
  border-color: var(--blue);
  color: var(--blue);
  background: var(--blue-lt);
}
.pill.active {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--white);
}

/* ── Results bar ─────────────────────────────────────────────── */
.results-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}
.results-count { font-size: 13px; color: var(--text-muted); }
.clear-btn {
  font-size: 12px;
  color: var(--blue);
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  display: none;
}
.clear-btn.visible { display: inline; }

/* ── Product grid ────────────────────────────────────────────── */
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

/* ── Product card ────────────────────────────────────────────── */
.prod-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 6px;
  overflow: hidden;
  transition: box-shadow var(--transition), border-color var(--transition), transform var(--transition);
  display: flex;
  flex-direction: column;
}
.prod-card:hover {
  box-shadow: var(--shadow-md);
  border-color: #C8C5C1;
  transform: translateY(-2px);
}
.prod-img {
  aspect-ratio: 4/3;
  background: var(--off-white);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}
.prod-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 20px;
  transition: transform 0.22s ease;
}
.prod-card:hover .prod-img img { transform: scale(1.04); }
.prod-img-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: var(--border);
}
.prod-img-placeholder svg { width: 36px; height: 36px; }
.prod-img-placeholder span { font-size: 11px; color: var(--text-muted); letter-spacing: 0.06em; }
.prod-body {
  padding: 18px 18px 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.prod-subcategory {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 6px;
}
.prod-name {
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
  line-height: 1.35;
  margin-bottom: 12px;
}
.prod-spec-primary {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 16px;
  flex: 1;
}
.prod-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 12px;
  border-top: 1px solid var(--gray-100);
}
.prod-cert {
  font-size: 10px;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.04em;
}
.btn-quote {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: var(--navy);
  color: var(--white);
  padding: 7px 14px;
  border-radius: var(--radius);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  font-family: inherit;
  transition: background var(--transition);
}
.btn-quote:hover { background: var(--blue); }
.btn-quote svg { width: 12px; height: 12px; stroke: currentColor; fill: none; stroke-width: 2.2; }

/* ── No results ──────────────────────────────────────────────── */
.no-results {
  grid-column: 1/-1;
  text-align: center;
  padding: 80px 0;
  color: var(--text-muted);
}
.no-results svg { width: 40px; height: 40px; stroke: var(--border); fill: none; stroke-width: 1.2; margin: 0 auto 16px; }
.no-results p { font-size: 15px; margin-bottom: 4px; color: var(--text); }
.no-results span { font-size: 13px; }

/* ── Responsive ──────────────────────────────────────────────── */
@media (max-width: 1100px) {
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-slide-title { font-size: 42px; }
  .hero-slide-content { padding: 44px 52px; }
}
@media (max-width: 860px) {
  .hero-slideshow { height: 65vh; min-height: 400px; }
  .hero-slide-title { font-size: 34px; }
  .hero-slide-content { padding: 36px 36px; }
  .cat-hero-banner { height: 300px; }
  .cat-hero-overlay { padding: 28px 28px; }
  .cat-hero-title { font-size: 26px; }
  .hero-gallery { grid-template-columns: repeat(2, 1fr); }
  .hero-gallery-item:nth-child(3) { display: none; }
  .cat-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 36px; }
}
@media (max-width: 640px) {
  .container { padding: 0 20px; }
  .hero-slideshow { height: 55vh; min-height: 340px; }
  .hero-slide-title { font-size: 26px; }
  .hero-slide-content { padding: 28px 24px; }
  .hero-slide-label { display: none; }
  .hero-gallery { grid-template-columns: 1fr; }
  .hero-gallery-item:nth-child(2),
  .hero-gallery-item:nth-child(3) { display: none; }
  .products-grid { grid-template-columns: 1fr; }
  .filter-row { flex-direction: column; align-items: stretch; }
  .search-wrap-inline { width: 100%; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
}

/* ── Contact / Quote modal ─────────────────────────── */
.contact-modal-overlay {
  position: fixed; inset: 0; background: rgba(15, 23, 32, 0.55);
  display: none; align-items: center; justify-content: center;
  z-index: 9999; padding: 20px;
}
.contact-modal-overlay.is-open { display: flex; }
.contact-modal {
  background: #fff; width: 100%; max-width: 520px; max-height: 90vh;
  border-radius: 8px; box-shadow: 0 20px 60px rgba(0,0,0,0.3);
  overflow-y: auto;
}
.contact-modal-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 24px; border-bottom: 1px solid #e6e8eb;
}
.contact-modal-header h3 { margin: 0; font-size: 18px; font-weight: 600; color: #0f1720; }
.contact-modal-close {
  background: transparent; border: none; font-size: 24px; cursor: pointer;
  color: #6b7280; padding: 0; line-height: 1; width: 28px; height: 28px;
}
.contact-modal-close:hover { color: #111; }
.contact-modal-body { padding: 22px 24px; }
.contact-modal-body label {
  display: block; font-size: 13px; font-weight: 500; color: #374151;
  margin-bottom: 6px; margin-top: 14px;
}
.contact-modal-body label:first-child { margin-top: 0; }
.contact-modal-body input[type="text"],
.contact-modal-body input[type="email"],
.contact-modal-body textarea,
.contact-modal-body select {
  width: 100%; box-sizing: border-box; padding: 9px 11px;
  border: 1px solid #d1d5db; border-radius: 5px; font-size: 14px;
  font-family: inherit; color: #111;
  transition: border-color 0.15s;
}
.contact-modal-body input:focus,
.contact-modal-body textarea:focus,
.contact-modal-body select:focus {
  outline: none; border-color: #0f1720;
}
.contact-modal-body textarea { min-height: 96px; resize: vertical; }
.contact-modal-body .timeframe-options {
  display: flex; gap: 8px; margin-top: 4px;
}
.contact-modal-body .timeframe-options label {
  flex: 1; margin: 0; padding: 9px 4px; text-align: center;
  border: 1px solid #d1d5db; border-radius: 5px; cursor: pointer;
  font-size: 13px; font-weight: 500; color: #374151;
  transition: all 0.15s;
}
.contact-modal-body .timeframe-options label:hover { border-color: #9ca3af; }
.contact-modal-body .timeframe-options input[type="radio"] { display: none; }
.contact-modal-body .timeframe-options input[type="radio"]:checked + span,
.contact-modal-body .timeframe-options label.is-active {
  background: #0f1720; color: #fff; border-color: #0f1720;
}
.contact-modal-footer {
  padding: 18px 24px; border-top: 1px solid #e6e8eb;
  display: flex; justify-content: flex-end; gap: 10px;
}
.contact-modal-submit {
  background: #0f1720; color: #fff; border: none;
  padding: 10px 22px; border-radius: 5px; font-weight: 600;
  font-size: 14px; cursor: pointer;
}
.contact-modal-submit:hover { background: #1f2937; }
.contact-modal-cancel {
  background: transparent; color: #374151; border: 1px solid #d1d5db;
  padding: 10px 18px; border-radius: 5px; font-size: 14px; cursor: pointer;
}
.contact-modal-cancel:hover { background: #f3f4f6; }
.contact-modal-success {
  padding: 40px 24px; text-align: center; color: #0f1720;
}
.contact-modal-success svg { width: 56px; height: 56px; color: #16a34a; margin-bottom: 12px; }
.contact-modal-success h3 { margin: 0 0 8px; font-size: 20px; }
.contact-modal-success p { margin: 0; color: #6b7280; font-size: 14px; }
