* { box-sizing: border-box; margin: 0; padding: 0; }
body {
  font-family: -apple-system, Helvetica, Arial, sans-serif;
  color: #1f2937;
  line-height: 1.6;
}
header {
  background: #0f3d5c;
  color: #fff;
  padding: 1.25rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.75rem;
}
header .brand {
  font-size: 1.4rem;
  font-weight: 700;
}
header .brand a {
  color: inherit;
  text-decoration: none;
}
nav {
  display: flex;
  flex-wrap: wrap;
}
nav > a,
.nav-item > a {
  color: #fff;
  text-decoration: none;
  margin-left: 1.5rem;
  font-size: 0.95rem;
  white-space: nowrap;
}
nav a.active {
  text-decoration: underline;
  text-underline-offset: 4px;
}
.nav-item {
  position: relative;
}
.nav-item > a {
  margin-left: 1.5rem;
}
.dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  border-radius: 6px;
  box-shadow: 0 8px 24px rgba(15, 61, 92, 0.2);
  min-width: 160px;
  padding: 0.5rem 0;
  z-index: 20;
}
.nav-item:hover .dropdown,
.nav-item:focus-within .dropdown {
  display: block;
}
.dropdown a {
  display: block;
  color: #0f3d5c;
  text-decoration: none;
  margin-left: 0;
  padding: 0.5rem 1rem;
  font-size: 0.9rem;
  white-space: nowrap;
}
.dropdown a:hover,
.dropdown a.active {
  background: #f3f6f9;
}
.nav-cta {
  background: #fff;
  color: #0f3d5c;
  padding: 0.4rem 1.05rem;
  border-radius: 999px;
  font-weight: 700;
}
.nav-cta:hover {
  background: #e5edf3;
}
@media (max-width: 800px) {
  nav > a,
  .nav-item > a {
    margin: 0.35rem 0.9rem 0.35rem 0;
  }
}

/* Hero */
.hero {
  position: relative;
  padding: 6rem 2rem;
  text-align: center;
  color: #fff;
}
.hero.hero-home {
  background: linear-gradient(rgba(15, 61, 92, 0.72), rgba(15, 61, 92, 0.72)),
    url("../img/web/hero-office-shades.jpg") center/cover no-repeat;
}
.hero.hero-sub {
  padding: 4rem 2rem 4.5rem;
}
.hero.hero-blinds {
  background: linear-gradient(rgba(15, 61, 92, 0.72), rgba(15, 61, 92, 0.72)),
    url("../img/web/gallery-team-office.jpg") center/cover no-repeat;
}
.hero.hero-shades {
  background: linear-gradient(rgba(15, 61, 92, 0.72), rgba(15, 61, 92, 0.72)),
    url("../img/web/gallery-creative-office.jpg") center/cover no-repeat;
}
.hero.hero-screens {
  background: linear-gradient(rgba(15, 61, 92, 0.72), rgba(15, 61, 92, 0.72)),
    url("../img/web/gallery-city-view-office.jpg") center/cover no-repeat;
}
.hero.hero-quote {
  background: linear-gradient(rgba(15, 61, 92, 0.78), rgba(15, 61, 92, 0.78)),
    url("../img/web/hero-office-shades.jpg") center/cover no-repeat;
}
.hero.hero-city {
  background: linear-gradient(rgba(15, 61, 92, 0.72), rgba(15, 61, 92, 0.72)),
    url("../img/web/hero-office-shades.jpg") center/cover no-repeat;
}
.hero .eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.85rem;
  font-weight: 700;
  color: #cfe0ec;
  margin-bottom: 0.75rem;
}
.hero h1 {
  font-size: 2.4rem;
  margin-bottom: 1rem;
  color: #fff;
}
.hero.hero-sub h1 {
  font-size: 2rem;
}
.hero p {
  font-size: 1.1rem;
  color: #e5edf3;
  max-width: 600px;
  margin: 0 auto 2rem;
}
.breadcrumb {
  font-size: 0.85rem;
  color: #cfe0ec;
  margin-bottom: 1.25rem;
}
.breadcrumb a {
  color: #cfe0ec;
  text-decoration: underline;
}
.breadcrumb span {
  color: #fff;
}
.btn {
  display: inline-block;
  background: #fff;
  color: #0f3d5c;
  padding: 0.75rem 1.75rem;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
}

/* Card grids (used for "who we serve", services, and product options) */
.services {
  padding: 4rem 2rem;
  max-width: 960px;
  margin: 0 auto;
}
.services.wide {
  max-width: 1100px;
}
.services h2 {
  text-align: center;
  color: #0f3d5c;
  margin-bottom: 0.75rem;
}
.section-intro {
  text-align: center;
  color: #4b5563;
  max-width: 640px;
  margin: 0 auto 2rem;
}
.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}
.service-card {
  background: #f9fafb;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  padding: 1.5rem;
  text-align: center;
}
.service-card h3 {
  color: #0f3d5c;
  margin-bottom: 0.5rem;
}
.card-tag {
  display: inline-block;
  background: #eef3f7;
  color: #0f3d5c;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  padding: 0.3rem 0.65rem;
  border-radius: 4px;
  margin-top: 0.85rem;
}
.card-link {
  display: inline-block;
  margin-top: 0.85rem;
  color: #0f3d5c;
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
}
.card-link:hover {
  text-decoration: underline;
}

/* Image + text feature section */
.feature {
  background: #eef3f7;
  padding: 4rem 2rem;
}
.feature-inner {
  max-width: 960px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(220px, 340px) 1fr;
  gap: 2.5rem;
  align-items: center;
}
.feature-inner img {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 8px 24px rgba(15, 61, 92, 0.15);
}
.feature-text h2 {
  color: #0f3d5c;
  margin-bottom: 0.75rem;
}
.feature-text p {
  color: #4b5563;
}
@media (max-width: 700px) {
  .feature-inner {
    grid-template-columns: 1fr;
  }
}

/* Gallery */
.gallery {
  padding: 4rem 2rem;
  max-width: 1100px;
  margin: 0 auto;
}
.gallery h2 {
  text-align: center;
  color: #0f3d5c;
  margin-bottom: 0.5rem;
}
.gallery > p {
  text-align: center;
  color: #4b5563;
  max-width: 600px;
  margin: 0 auto 2.5rem;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.25rem;
}
.gallery-item {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}
.gallery-item:hover img {
  transform: scale(1.05);
}
.gallery-item span {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(transparent, rgba(15, 61, 92, 0.85));
  color: #fff;
  font-size: 0.9rem;
  padding: 1.5rem 0.9rem 0.6rem;
}

/* Service area */
.service-area {
  background: #0f3d5c;
  color: #fff;
  padding: 3.5rem 2rem;
  text-align: center;
}
.service-area h2 {
  margin-bottom: 0.75rem;
  color: #fff;
}
.service-area p {
  max-width: 700px;
  margin: 0 auto;
  color: #dce8f0;
  font-size: 1.05rem;
}
.area-counties {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.75rem;
  max-width: 960px;
  margin: 2.5rem auto 0;
  text-align: left;
}
.area-county {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  padding: 1.25rem 1.5rem;
}
.area-county h3 {
  color: #9fc6e0;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 0.6rem;
}
.area-county p {
  margin: 0;
  color: #dce8f0;
  font-size: 0.98rem;
  max-width: none;
}
.area-county p a {
  color: #cfe0ec;
  text-decoration: underline;
}
.area-county p a:hover {
  color: #fff;
}
.service-area .view-all {
  text-align: center;
  margin-top: 2rem;
}
.service-area .view-all a {
  color: #fff;
  font-weight: 600;
  text-decoration: underline;
}

/* CTA banner (category pages) */
.cta-banner {
  background: #0f3d5c;
  color: #fff;
  text-align: center;
  padding: 3.5rem 2rem;
}
.cta-banner h2 {
  color: #fff;
  margin-bottom: 0.75rem;
}
.cta-banner p {
  max-width: 600px;
  margin: 0 auto 1.5rem;
  color: #dce8f0;
}

/* Related product links (category pages) */
.related-links {
  padding: 3.5rem 2rem;
  max-width: 960px;
  margin: 0 auto;
  text-align: center;
}
.related-links h2 {
  color: #0f3d5c;
  margin-bottom: 1.25rem;
}
.related-grid {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}
.related-grid a {
  display: inline-block;
  border: 1px solid #0f3d5c;
  color: #0f3d5c;
  padding: 0.65rem 1.5rem;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
}
.related-grid a:hover {
  background: #0f3d5c;
  color: #fff;
}

/* Instant quote estimator */
.quote-wrap {
  padding: 3.5rem 2rem;
  max-width: 1000px;
  margin: 0 auto;
}
.quote-grid {
  display: grid;
  grid-template-columns: 1fr minmax(300px, 380px);
  gap: 2.5rem;
  align-items: start;
}
.quote-field {
  margin-bottom: 1.25rem;
}
.quote-field label {
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: #0f3d5c;
  margin-bottom: 0.4rem;
}
.quote-form select,
.quote-form input[type="number"] {
  width: 100%;
  padding: 0.65rem 0.75rem;
  font-size: 1rem;
  font-family: inherit;
  color: #1f2937;
  background: #fff;
  border: 1px solid #cbd5e1;
  border-radius: 6px;
}
.quote-form select:focus,
.quote-form input:focus {
  outline: none;
  border-color: #0f3d5c;
  box-shadow: 0 0 0 3px rgba(15, 61, 92, 0.12);
}
.quote-size {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.quote-size input {
  flex: 1 1 0;
  min-width: 0;
}
.quote-size select {
  flex: 0 0 auto;
  width: auto;
}
.quote-x {
  color: #9ca3af;
  font-weight: 600;
}
.quote-hint {
  margin-top: 0.4rem;
  font-size: 0.85rem;
  color: #4b5563;
}
.quote-hint.is-empty {
  color: #9ca3af;
}

.quote-result {
  position: sticky;
  top: 1.5rem;
  background: #0f3d5c;
  color: #fff;
  border-radius: 10px;
  padding: 1.75rem;
  box-shadow: 0 8px 24px rgba(15, 61, 92, 0.2);
}
.quote-result-label {
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.75rem;
  font-weight: 700;
  color: #9fc6e0;
  margin-bottom: 0.35rem;
}
.quote-amount {
  font-size: 1.9rem;
  font-weight: 700;
  line-height: 1.2;
  color: #fff;
}
.quote-sub {
  color: #dce8f0;
  font-size: 0.95rem;
  margin-top: 0.35rem;
}
.quote-breakdown {
  margin: 1.25rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  padding-top: 1rem;
  font-size: 0.9rem;
}
.quote-breakdown dt {
  color: #9fc6e0;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  font-size: 0.72rem;
  font-weight: 700;
  margin-top: 0.75rem;
}
.quote-breakdown dt:first-child {
  margin-top: 0;
}
.quote-breakdown dd {
  color: #fff;
  margin: 0.15rem 0 0;
}
.quote-disclaimer {
  font-size: 0.8rem;
  color: #b7cede;
  line-height: 1.5;
  margin-bottom: 1.25rem;
}
.quote-cta {
  display: block;
  text-align: center;
}
@media (max-width: 800px) {
  .quote-grid {
    grid-template-columns: 1fr;
  }
  .quote-result {
    position: static;
  }
}

footer {
  background: #0f3d5c;
  color: #cbd5e1;
  text-align: center;
  padding: 1.5rem;
  font-size: 0.9rem;
}

/* ---- AI scheduling assistant widget (site-wide) ---- */
.pl-chat {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 2147483000;
  font-family: -apple-system, Helvetica, Arial, sans-serif;
}

/* Launcher pill */
.pl-chat-launcher {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #0f3d5c;
  color: #fff;
  border: none;
  cursor: pointer;
  padding: 0.7rem 1.15rem;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 700;
  font-family: inherit;
  box-shadow: 0 6px 20px rgba(15, 61, 92, 0.35);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.pl-chat-launcher:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 26px rgba(15, 61, 92, 0.45);
}
.pl-chat-launcher-icon {
  display: block;
}
.pl-chat.is-open .pl-chat-launcher {
  display: none;
}

/* Enticing teaser bubble */
.pl-chat-teaser {
  position: absolute;
  bottom: calc(100% + 12px);
  right: 0;
  width: 250px;
  background: #fff;
  color: #1f2937;
  border-radius: 12px;
  padding: 0.9rem 1.9rem 0.9rem 1rem;
  box-shadow: 0 10px 30px rgba(15, 61, 92, 0.25);
  font-size: 0.9rem;
  line-height: 1.45;
  cursor: pointer;
  opacity: 0;
  transform: translateY(8px);
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease;
}
.pl-chat-teaser.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.pl-chat-teaser p {
  margin: 0;
}
.pl-chat-teaser strong {
  color: #0f3d5c;
}
.pl-chat-teaser::after {
  content: "";
  position: absolute;
  bottom: -7px;
  right: 28px;
  width: 14px;
  height: 14px;
  background: #fff;
  transform: rotate(45deg);
  box-shadow: 3px 3px 6px rgba(15, 61, 92, 0.12);
}
.pl-chat-teaser-close {
  position: absolute;
  top: 4px;
  right: 6px;
  background: none;
  border: none;
  color: #9ca3af;
  font-size: 1.2rem;
  line-height: 1;
  cursor: pointer;
  padding: 0.15rem 0.3rem;
}
.pl-chat-teaser-close:hover {
  color: #4b5563;
}

/* Chat panel */
.pl-chat-panel {
  display: none;
  position: absolute;
  bottom: 0;
  right: 0;
  width: 360px;
  max-width: calc(100vw - 40px);
  height: 520px;
  max-height: calc(100vh - 40px);
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 18px 48px rgba(15, 61, 92, 0.35);
  flex-direction: column;
}
.pl-chat.is-open .pl-chat-panel {
  display: flex;
}
.pl-chat-head {
  background: #0f3d5c;
  color: #fff;
  padding: 0.9rem 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.pl-chat-title {
  margin: 0;
  font-weight: 700;
  font-size: 1rem;
}
.pl-chat-status {
  margin: 0.1rem 0 0;
  font-size: 0.78rem;
  color: #b7cede;
}
.pl-chat-close {
  background: none;
  border: none;
  color: #cfe0ec;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  padding: 0 0.25rem;
}
.pl-chat-close:hover {
  color: #fff;
}

.pl-chat-log {
  flex: 1 1 auto;
  overflow-y: auto;
  padding: 1rem;
  background: #f4f7fa;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.pl-chat-msg {
  max-width: 82%;
  padding: 0.6rem 0.8rem;
  border-radius: 12px;
  font-size: 0.92rem;
  line-height: 1.45;
  word-wrap: break-word;
}
.pl-chat-msg-assistant {
  align-self: flex-start;
  background: #fff;
  color: #1f2937;
  border: 1px solid #e5e7eb;
  border-bottom-left-radius: 4px;
}
.pl-chat-msg-user {
  align-self: flex-end;
  background: #0f3d5c;
  color: #fff;
  border-bottom-right-radius: 4px;
}
.pl-chat-msg-assistant a {
  color: #0f3d5c;
  font-weight: 600;
}
.pl-chat-msg-user a {
  color: #fff;
  text-decoration: underline;
}
.pl-chat-typing {
  display: flex;
  gap: 4px;
  align-items: center;
}
.pl-chat-typing span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #9ca3af;
  animation: pl-chat-bounce 1.2s infinite ease-in-out;
}
.pl-chat-typing span:nth-child(2) {
  animation-delay: 0.15s;
}
.pl-chat-typing span:nth-child(3) {
  animation-delay: 0.3s;
}
@keyframes pl-chat-bounce {
  0%, 60%, 100% { transform: translateY(0); opacity: 0.5; }
  30% { transform: translateY(-4px); opacity: 1; }
}

.pl-chat-form {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem;
  border-top: 1px solid #e5e7eb;
  background: #fff;
}
.pl-chat-form input {
  flex: 1 1 auto;
  min-width: 0;
  border: 1px solid #cbd5e1;
  border-radius: 999px;
  padding: 0.6rem 0.9rem;
  font-size: 0.92rem;
  font-family: inherit;
  color: #1f2937;
}
.pl-chat-form input:focus {
  outline: none;
  border-color: #0f3d5c;
  box-shadow: 0 0 0 3px rgba(15, 61, 92, 0.12);
}
.pl-chat-send {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: none;
  border-radius: 50%;
  background: #0f3d5c;
  color: #fff;
  cursor: pointer;
}
.pl-chat-send:hover {
  background: #12507a;
}
.pl-chat-form.is-busy .pl-chat-send {
  opacity: 0.5;
  pointer-events: none;
}
.pl-chat-disclaim {
  margin: 0;
  padding: 0.4rem 0.9rem 0.7rem;
  background: #fff;
  font-size: 0.68rem;
  color: #9ca3af;
  text-align: center;
  line-height: 1.4;
}

@media (max-width: 480px) {
  .pl-chat {
    right: 12px;
    bottom: 12px;
  }
  .pl-chat-panel {
    width: calc(100vw - 24px);
    height: calc(100vh - 90px);
  }
  .pl-chat-launcher-label {
    display: none;
  }
  .pl-chat-launcher {
    padding: 0.85rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .pl-chat-launcher,
  .pl-chat-teaser {
    transition: none;
  }
  .pl-chat-typing span {
    animation: none;
  }
}
