@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;700;800&display=swap");

:root {
  --bg: #ffffff;
  --text: #010100;
  --muted: #2d2d2d;
  --line: #d6d6d6;
  --navy: #CA102E;
  --navy-2: #CA102E;
  --orange: #CA102E;
  --white: #ffffff;
  --radius: 14px;
  --shadow: 0 10px 24px rgba(0, 0, 0, 0.28);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.5;
}

a {
  color: inherit;
  text-decoration: none;
}

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

.container {
  width: min(1200px, 92%);
  margin: 0 auto;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #CA102E;
  border-bottom: 1px solid var(--line);
}

.nav {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.brand-logo {
  width: 124px;
  height: 124px;
  object-fit: contain;
  border-radius: 8px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: 14px;
  color: #ffffff;
}

.nav-dropdown {
  position: relative;
  padding-bottom: 10px;
  margin-bottom: -10px;
}

.nav-dropdown-trigger {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
}

.nav-dropdown-trigger::after {
  content: "▾";
  font-size: 11px;
}

.nav-dropdown-trigger.active {
  color: #4C4F56;
  font-weight: 700;
}

.nav-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: #CA102E;
  border: 1px solid var(--line);
  border-radius: 10px;
  box-shadow: var(--shadow);
  min-width: 170px;
  padding: 8px;
  display: none;
  z-index: 120;
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
  display: grid;
  gap: 6px;
}

.nav-dropdown-menu a {
  padding: 8px 10px;
  border-radius: 8px;
}

.nav-dropdown-menu a:hover {
  background: #4C4F56;
  color: #ffffff;
}

.nav-links a:hover,
.nav-dropdown-trigger:hover {
  color: #4C4F56;
}

.nav-links a.active {
  color: #4C4F56;
  font-weight: 700;
}

.topbar .nav-links a:hover,
.topbar .nav-links a.active,
.topbar .nav-dropdown-trigger:hover,
.topbar .nav-dropdown-trigger.active {
  background: #4C4F56;
  color: #ffffff;
  padding: 8px 12px;
  border-radius: 8px;
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 12px;
}

.mobile-menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #CA102E;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.mobile-menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: #ffffff;
  border-radius: 2px;
}

.topbar .btn-light {
  background: #ffffff;
  color: #010100;
  border: 1px solid #ffffff;
}

.topbar .btn-light:hover,
.topbar .btn-light:focus-visible {
  background: #4C4F56;
  color: #ffffff;
  border-color: #4C4F56;
}

.topbar .btn-primary {
  background: #4C4F56;
  color: #ffffff;
  border: 1px solid #4C4F56;
}

.topbar .btn-primary:hover,
.topbar .btn-primary:focus-visible {
  background: #ffffff;
  color: #010100;
  border-color: #ffffff;
}

.phone {
  font-weight: 700;
  font-size: 14px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 10px;
  padding: 12px 18px;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.15s ease;
}

.btn-primary {
  background: var(--navy);
  color: #010100;
}

.btn-primary:hover,
.btn-primary:focus-visible {
  background: #4C4F56;
  color: #ffffff;
}

.btn-accent {
  background: var(--orange);
  color: #010100;
}

.btn-accent:hover,
.btn-accent:focus-visible {
  background: #4C4F56;
  color: #ffffff;
}

.btn-light {
  background: var(--white);
  color: #010100;
  border: 1px solid var(--line);
}

.btn-light:hover,
.btn-light:focus-visible {
  background: var(--orange);
  color: #ffffff;
  border-color: var(--orange);
}

.btn:active {
  transform: translateY(1px);
}

.blinds-hero-quote-btn {
  color: #ffffff;
}

.blinds-hero-quote-btn:hover,
.blinds-hero-quote-btn:focus-visible {
  color: #ffffff;
}

.blinds-bottom-quote-btn {
  background: #4C4F56;
  color: #ffffff;
}

.blinds-bottom-quote-btn:hover,
.blinds-bottom-quote-btn:focus-visible {
  background: var(--white);
  color: #010100;
}

.blinds-bottom-call-btn:hover,
.blinds-bottom-call-btn:focus-visible {
  background: #4C4F56;
  color: #ffffff;
  border-color: #4C4F56;
}

.btn-block {
  width: 100%;
}

.hero {
  background: var(--navy);
  color: #ffffff;
  padding: 56px 0;
}

.hero-light {
  padding-top: 40px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  align-items: center;
  gap: 36px;
}

.home-hero {
  min-height: 560px;
  position: relative;
  background: linear-gradient(rgba(1, 1, 0, 0.74), rgba(1, 1, 0, 0.74)),
    url("images/homeframing.avif") center / cover no-repeat;
}

.home-hero .container {
  min-height: 560px;
  display: flex;
  align-items: center;
}

.home-hero h1 {
  color: #ffffff;
}

.home-hero p.lead {
  color: #ffffff;
}

.home-hero .btn-accent {
  color: #ffffff;
}

.hero-copy {
  max-width: 780px;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--orange);
  color: var(--white);
  border-radius: 999px;
  font-weight: 700;
  font-size: 12px;
  text-transform: uppercase;
  padding: 6px 12px;
}

.badge-dark {
  background: var(--navy);
}

.knowledge-badge {
  background: #4C4F56;
  color: #ffffff;
}

.residential-hero {
  background: #CA102E;
}

.residential-hero h1,
.residential-hero p,
.residential-hero .soft {
  color: #ffffff;
}

.residential-hero-badge {
  background: #4C4F56;
  color: #ffffff;
}

.residential-hero-btn {
  background: #ffffff;
  color: #010100;
  border: 1px solid #d6d6d6;
}

.residential-hero-btn:hover,
.residential-hero-btn:focus-visible {
  background: #4C4F56;
  color: #ffffff;
  border-color: #4C4F56;
}

.residential-city-list li,
.residential-city-list.light-list li {
  color: #ffffff;
}

.residential-consult-btn {
  background: #ffffff;
  color: #010100;
  border: 1px solid #d6d6d6;
}

.residential-form-wrap .btn-accent.btn-block {
  color: #ffffff;
}

.commercial-hero-badge {
  background: #4C4F56;
  color: #ffffff;
}

.commercial-start-btn {
  background: #ffffff;
  color: #010100;
  border: 1px solid #d6d6d6;
}

.commercial-start-btn:hover,
.commercial-start-btn:focus-visible {
  background: #4C4F56;
  color: #ffffff;
  border-color: #4C4F56;
}

.commercial-call-btn:hover,
.commercial-call-btn:focus-visible {
  background: #4C4F56;
  color: #ffffff;
  border-color: #4C4F56;
}

h1,
h2,
h3,
h4 {
  line-height: 1.1;
  margin: 0 0 14px;
  font-weight: 800;
}

h1 {
  font-size: clamp(34px, 4vw, 62px);
}

h2 {
  font-size: clamp(28px, 3vw, 48px);
}

h3 {
  font-size: clamp(22px, 2.2vw, 34px);
}

p.lead {
  font-size: 19px;
  color: rgba(1, 1, 0, 0.84);
  max-width: 700px;
}

.center-lead {
  margin-inline: auto;
  text-align: center;
}

p.soft {
  color: var(--muted);
}

.section {
  padding: 74px 0;
}

.section-tight-top {
  padding-top: 24px;
}

.section-title {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 34px;
}

.grid-2 {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

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

.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px;
  box-shadow: var(--shadow);
}

.slim-card {
  margin-top: 18px;
}

.dark {
  background: var(--navy);
  color: #ffffff;
}

.dark .soft {
  color: #ffffff;
}

.image-card {
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid rgba(1, 1, 0, 0.15);
}

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

.list li {
  padding: 6px 0;
  color: var(--muted);
}

.list li::before {
  content: "•";
  color: var(--orange);
  font-weight: 900;
  margin-right: 8px;
}

.light-list li {
  color: #ffffff;
}

.home-why-list li {
  color: #ffffff;
}

.home-why-list li::before {
  color: #ffffff;
}

.trust-bar {
  background: var(--navy);
  color: #ffffff;
  padding: 14px 0;
  border-top: 1px solid rgba(1, 1, 0, 0.12);
  border-bottom: 1px solid rgba(1, 1, 0, 0.12);
}

.trust-items {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  text-align: center;
  font-size: 13px;
  font-weight: 700;
}

.cta-band {
  background: var(--orange);
  color: #ffffff;
  text-align: center;
  padding: 62px 0;
}

.cta-band h3,
.cta-band p {
  color: #ffffff;
}

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

.home-bottom-quote-btn {
  background: #ffffff;
  color: #010100;
  border: 1px solid #d6d6d6;
}

.home-bottom-quote-btn:hover,
.home-bottom-quote-btn:focus-visible {
  background: #4C4F56;
  color: #ffffff;
  border-color: #4C4F56;
}

.home-bottom-call-btn:hover,
.home-bottom-call-btn:focus-visible {
  background: #4C4F56;
  color: #ffffff;
  border-color: #4C4F56;
}

.about-cta-btn:hover,
.about-cta-btn:focus-visible {
  background: #4C4F56;
  color: #ffffff;
  border-color: #4C4F56;
}

.button-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 20px;
}

.center-row {
  justify-content: center;
}

.page-head {
  background: var(--navy);
  color: #ffffff;
  padding: 70px 0 54px;
  text-align: center;
}

.hero p.lead,
.page-head .lead {
  color: #ffffff;
}

.footer {
  background: #4C4F56;
  color: #ffffff;
  padding: 56px 0 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 28px;
}

.footer-brand {
  color: #ffffff;
  margin-bottom: 12px;
}

.footer-logo {
  width: 126px;
  height: 126px;
}

.footer h4 {
  color: #ffffff;
  font-size: 16px;
  margin-bottom: 14px;
}

.footer a {
  color: #ffffff;
}

.footer a:hover {
  color: #ffffff;
  text-decoration: underline;
}

.footer-bottom {
  margin-top: 24px;
  border-top: 1px solid rgba(1, 1, 0, 0.12);
  padding-top: 14px;
  font-size: 12px;
  color: #ffffff;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.whatsapp-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 140;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #29b418;
  color: #010100;
  border-radius: 999px;
  padding: 10px 14px;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.2);
  font-weight: 800;
  font-size: 14px;
}

.whatsapp-label {
  color: #ffffff;
}

.whatsapp-float:hover,
.whatsapp-float:focus-visible {
  background: #249f15;
}

.whatsapp-icon {
  width: 24px;
  height: 24px;
  display: inline-flex;
}

.whatsapp-icon svg {
  width: 100%;
  height: 100%;
}

.form-wrap {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.form-field {
  margin-top: 12px;
}

.service-category-selector {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.service-category-option {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 12px 16px;
  font: inherit;
  font-weight: 700;
  background: var(--white);
  color: #010100;
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.15s ease;
}

.service-category-option:hover,
.service-category-option:focus-visible {
  border-color: var(--navy);
  background: var(--navy);
  color: #ffffff;
}

.service-category-option.active {
  background: var(--orange);
  border-color: var(--orange);
  color: #ffffff;
}

.service-category-option:active {
  transform: translateY(1px);
}

label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 6px;
  color: #CA102E;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 10px 12px;
  font: inherit;
  background: var(--white);
}

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

.form-status {
  margin-top: 12px;
  font-size: 14px;
  font-weight: 600;
}

.form-status.success {
  color: #11854b;
}

.form-status.error {
  color: #bf2a2a;
}

.project-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.project-card .body {
  padding: 20px;
}

.service-card {
  display: grid;
  gap: 8px;
}

.service-title {
  display: flex;
  align-items: center;
  gap: 10px;
}

.service-title h4 {
  margin: 0;
}

.service-icon {
  width: 22px;
  height: 22px;
  flex: 0 0 22px;
}

.commercial-services .service-icon {
  filter: brightness(0) saturate(100%) invert(17%) sepia(82%) saturate(4502%) hue-rotate(338deg) brightness(87%) contrast(95%);
}

.service-card .service-icon {
  filter: brightness(0) saturate(100%) invert(17%) sepia(82%) saturate(4502%) hue-rotate(338deg) brightness(87%) contrast(95%);
}

.tabs {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin: 6px 0 30px;
}

.tabs button {
  border: 1px solid #8a6f31;
  border-radius: 8px;
  padding: 8px 14px;
  background: var(--white);
  cursor: pointer;
  color: #010100;
  font-weight: 700;
}

.tabs button.active {
  background: var(--orange);
  border-color: var(--orange);
  color: #ffffff;
}

.faq-item {
  border: 1px solid var(--line);
  background: var(--white);
  border-radius: 10px;
  margin-bottom: 12px;
  overflow: hidden;
}

.faq-q {
  width: 100%;
  border: 0;
  text-align: left;
  background: transparent;
  cursor: pointer;
  padding: 16px;
  font-weight: 700;
  color: var(--text);
}

.faq-a {
  padding: 0 16px 16px;
  color: var(--muted);
}

.knowledge-grid {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 26px;
}

.knowledge-sidebar h4 {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 14px;
}

.knowledge-sidebar .resource-link {
  color: #CA102E;
  font-weight: 700;
}

.knowledge-sidebar .resource-link:hover,
.faq-a a:hover {
  text-decoration: underline;
}

.faq-a a {
  color: #CA102E;
  font-weight: 600;
}

.ask-box {
  margin-top: 20px;
}

.ask-box a {
  color: var(--orange);
  font-weight: 700;
}

.faq-section {
  margin-top: 28px;
}

.knowledge-cta {
  text-align: center;
  margin-top: 28px;
}

.knowledge-tools {
  margin-bottom: 18px;
}

.knowledge-search-input {
  width: 100%;
  margin-top: 8px;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 12px 14px;
  font: inherit;
  background: #ffffff;
}

.kb-item .faq-q {
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.q-num {
  color: var(--orange);
  font-weight: 800;
  min-width: 28px;
}

.q-text {
  flex: 1;
}

.knowledge-pagination {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-top: 18px;
  margin-bottom: 12px;
}

.knowledge-pagination button {
  border: 1px solid var(--line);
  background: #ffffff;
  color: #010100;
  border-radius: 8px;
  min-width: 36px;
  height: 36px;
  cursor: pointer;
  font-weight: 700;
}

.knowledge-pagination button.active {
  background: var(--orange);
  border-color: var(--orange);
  color: #ffffff;
}

.knowledge-cta .btn-primary {
  color: #ffffff;
}

.blog-download-cta .btn-primary {
  color: #ffffff;
}

.map-section {
  padding-top: 0;
}

.map-block {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  height: 360px;
}

.stat-card {
  background: rgba(1, 1, 0, 0.08);
  border-color: rgba(1, 1, 0, 0.15);
  color: #010100;
  text-align: center;
  font-weight: 700;
}

.project-quote-btn {
  background: #ffffff;
  color: #010100;
  border: 1px solid #d6d6d6;
}

.project-quote-btn:hover,
.project-quote-btn:focus-visible {
  background: #4C4F56;
  color: #ffffff;
  border-color: #4C4F56;
}

.commercial-form-wrap .btn-accent.btn-block {
  color: #ffffff;
}

.contact-form-wrap .btn-accent.btn-block {
  color: #ffffff;
}

.commercial-form-wrap .btn-accent.btn-block:hover,
.commercial-form-wrap .btn-accent.btn-block:focus-visible {
  background: #4C4F56;
  color: #ffffff;
  border-color: #4C4F56;
}

.project-stat-card {
  background: #ffffff;
  color: #010100;
  border: 1px solid #d6d6d6;
}

.project-call-btn:hover,
.project-call-btn:focus-visible {
  background: #4C4F56;
  color: #ffffff;
  border-color: #4C4F56;
}

.accent-text {
  color: var(--orange);
}

.text-navy {
  color: var(--navy);
}

.two-up-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.columns-2 {
  columns: 2;
}

.align-start {
  align-items: start;
}

.narrow {
  max-width: 900px;
}

.narrow-left {
  max-width: 920px;
}

.centered-card {
  text-align: center;
}

.hero-centered {
  text-align: center;
}

.blog-hero {
  min-height: 360px;
  background: linear-gradient(rgba(1, 1, 0, 0.62), rgba(1, 1, 0, 0.62)),
    url("images/calgary.png") center / cover no-repeat;
}

.blog-hero .container {
  min-height: 360px;
  display: flex;
  align-items: center;
}

.blog-hero-copy {
  max-width: 800px;
}

.blog-hero h1 {
  color: #CA102E;
}

.blog-hero .badge {
  color: #ffffff;
}

.blog-hero p.lead {
  color: #ffffff;
}

.blog-hero-title-white {
  color: #ffffff;
}

.blog-section {
  padding-top: 46px;
}

.blog-post-head {
  padding-top: 56px;
  padding-bottom: 44px;
}

.blog-post-section {
  padding-top: 44px;
}

.blog-post {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 26px;
}

.blog-post h2,
.blog-post h3 {
  margin-top: 20px;
}

.blog-post-cover {
  width: 100%;
  border-radius: 12px;
  border: 1px solid var(--line);
  margin-bottom: 18px;
}

.blog-download-cta {
  margin: 22px 0;
}

.blog-feature {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 20px;
  margin-bottom: 30px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.blog-feature-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 280px;
}

.blog-feature-body {
  padding: 28px;
}

.blog-toolbar {
  margin-bottom: 16px;
}

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

.blog-card {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
}

.blog-image img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.blog-card-body {
  padding: 16px;
}

.blog-meta {
  margin: 0 0 10px;
  color: #CA102E;
  font-weight: 700;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.blog-card h4 {
  margin-bottom: 10px;
}

.blog-read-link {
  color: #CA102E;
  font-weight: 700;
}

.blog-read-link:hover {
  text-decoration: underline;
}

.blog-pagination-static {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 24px;
}

.blog-pagination-static button {
  border: 1px solid var(--line);
  background: #ffffff;
  color: #010100;
  border-radius: 8px;
  min-width: 42px;
  height: 36px;
  padding: 0 10px;
  font-weight: 700;
}

.blog-pagination-static button.active {
  background: var(--orange);
  border-color: var(--orange);
  color: #010100;
}

.blog-pagination-static button:disabled {
  opacity: 0.6;
}

@media (max-width: 1050px) {
  .nav {
    flex-wrap: wrap;
    padding: 10px 0;
  }

  .nav-links {
    order: 3;
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
    gap: 14px;
    padding-bottom: 8px;
  }

  .nav-dropdown-menu {
    left: 50%;
    transform: translateX(-50%);
  }

  .hero-grid,
  .blog-feature,
  .grid-3,
  .grid-2,
  .knowledge-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

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

  .form-grid,
  .trust-items {
    grid-template-columns: 1fr 1fr;
  }

  .columns-2 {
    columns: 1;
  }
}

@media (max-width: 680px) {
  .nav {
    flex-wrap: wrap;
    padding: 10px 0;
    gap: 10px;
  }

  .mobile-menu-toggle {
    display: inline-flex;
    margin-left: auto;
  }

  .nav-links,
  .nav-cta {
    display: none;
    width: 100%;
  }

  .topbar.nav-open .nav-links {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    padding: 8px 0;
    order: 3;
  }

  .topbar.nav-open .nav-cta {
    display: flex;
    flex-direction: column;
    gap: 10px;
    order: 4;
    padding-bottom: 10px;
  }

  .nav-links a,
  .nav-dropdown-trigger {
    text-align: left;
    padding: 10px 12px;
    border-radius: 8px;
    background: #4C4F56;
  }

  .nav-dropdown {
    width: 100%;
    text-align: left;
    padding-bottom: 0;
    margin-bottom: 0;
  }

  .phone {
    font-size: 13px;
  }

  .btn {
    width: 100%;
  }

  .nav-dropdown-menu {
    position: static;
    display: none;
    box-shadow: none;
    background: transparent;
    border: 0;
    width: 100%;
    min-width: 0;
    padding: 0;
    transform: none;
  }

  .nav-dropdown-menu a {
    background: #4C4F56;
  }

  .nav-dropdown.open .nav-dropdown-menu {
    display: grid;
  }

  .button-row {
    width: 100%;
  }

  .section {
    padding: 54px 0;
  }

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

  .blog-post {
    padding: 18px;
  }

  .whatsapp-float {
    padding: 10px;
    border-radius: 50%;
  }

  .whatsapp-label {
    display: none;
  }

  p.lead {
    font-size: 16px;
  }

  .form-grid,
  .trust-items,
  .two-up-images {
    grid-template-columns: 1fr;
  }

  .service-category-selector {
    grid-template-columns: 1fr;
  }
}
