/* CSS Variables & Theming (Global) */
:root {
  --primary-dark: #144d45;
  --primary-dark-hover: #144d45dd;
  --primary-dark-focus: rgba(20, 77, 69, 0.3);

  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-300: #d1d5db;
  --gray-400: #9ca3af;
  --gray-600: #4b5563;
  --gray-700: #374151;
  --gray-800: #1f2937;
  --gray-900: #121212;

  --white: #ffffff;
  --font-family: "Segoe UI", system-ui, -apple-system, sans-serif;
  --transition: all 0.3s ease;

  --small-shadow:
    0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px -1px rgba(0, 0, 0, 0.1);
  --primary-color: #144d45;
}

/* Reset & Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
address {
  font-style: normal;
}

html {
  scroll-behavior: smooth;
  font-family: var(--font-family);
  color: var(--gray-800);
  background-color: var(--gray-50);
  line-height: 1.6;
}

body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

ul {
  list-style: none;
}

button,
input,
select,
textarea {
  font-family: inherit;
}

/* Accessibility (ADA Compliance) */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
summary:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--primary-dark);
  outline-offset: 4px;
}

/* Layout & Utility Classes */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
}

.section-padding {
  padding: 80px 0;
}

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

.bg-white {
  background-color: var(--white);
}

#your-last-name {
  display: none;
}

/* Typography & Headings */
.section-header {
  max-width: 800px;
  margin: 0 auto 60px;
  text-align: center;
  text-wrap: balance;
}

.section-subtitle {
  color: var(--primary-dark);
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 8px;
  display: block;
}

.section-subtitle.portfolio {
  color: var(--gray-400);
}

.section-title {
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--gray-900);
  line-height: 1.2;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border-radius: 6px;
  font-weight: 700;
  text-align: center;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
}

.btn-primary {
  background-color: var(--primary-dark);
  color: var(--white);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.btn-primary:hover,
.service-card:hover .btn-primary,
.service-card:focus .btn-primary {
  background-color: var(--primary-dark-hover);
  border-color: transparent;
}

.btn-outline {
  background-color: transparent;
  color: var(--primary-dark);
  border-color: var(--primary-dark);
}

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

/* Common Grids */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
}

.grid-5 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

@media (min-width: 768px) {
  .grid-5 {
    grid-template-columns: repeat(5, 1fr);
  }

  .area-card:last-child {
    grid-column: span 1;
  }
}

/* Navigation & Header */

header {
  position: sticky;
  top: 0;
  z-index: 10;
  width: 100%;
  background-color: #fff;
  box-shadow: var(--small-shadow);
}

header > div {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 10px 20px;
}

header > div > a {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: var(--primary-color);
}

header > div > a > span {
  font-size: 1.2rem;
  font-weight: 800;
  margin-top: 5px;
}

header > div > a > img {
  width: 100px;
  height: auto;
}

header > div > nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 25px;
  z-index: 100;
}

header > div > nav > .nav-item,
header > div > nav > .nav-link {
  color: #161616;
  font-size: 1rem;
  font-weight: 400;
}

header > div > nav > .nav-link.important {
  background-color: var(--primary-color);
  padding: 10px;
  border-radius: 12px;
  box-shadow: var(--small-shadow);
  color: #fff;
  font-weight: bold;
}

header > div > nav > .nav-item {
  cursor: pointer;
  position: relative;
  margin-right: 15px;
}

header > div > nav > .nav-item::before {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 20px;
}

header > div > nav > .nav-item::after {
  content: url("img/carot.svg");
  position: absolute;
  right: -15px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 0.6em;
  transition: transform 0.3s ease;
  color: var(--primary-color);
}

.nav-item:hover::after,
.nav-item:focus-within::after {
  transform: translateY(-50%) rotate(180deg);
}

header > div > nav > .nav-item > .nav-items {
  display: none;
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%);
  flex-direction: column;
  background-color: #fff;
  padding: 20px;
  gap: 20px;
  border-radius: 8px;
  white-space: nowrap;
  box-shadow: var(--small-shadow);
}

header > div > nav > .nav-item > .nav-items > a {
  color: #000;
  width: fit-content;
}

.navbar__toggle {
  display: none;
  cursor: pointer;
  background: none;
  border: none;
}

.navbar__toggle .bar {
  width: 25px;
  height: 3px;
  margin: 5px auto;
  transition: all 0.3s ease-in-out;
  background: var(--primary-color);
  display: block;
  cursor: pointer;
}

.navbar__toggle:hover .bar {
  background: var(--primary-color);
}

#mobile-menu.is-active .bar:nth-child(2) {
  opacity: 0;
}

#mobile-menu.is-active .bar:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

#mobile-menu.is-active .bar:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.mobile-carot {
  display: none;
  float: right;
  font-size: 0.8rem;
}

@media only screen and (min-width: 1191px) {
  header > div > nav > .nav-item:hover > .nav-items,
  header > div > nav > .nav-item:focus-within > .nav-items {
    display: flex;
  }

  .nav-link,
  .nav-item {
    transition:
      transform 0.3s ease,
      color 0.3s ease;
  }

  .nav-link:hover,
  .nav-link:focus,
  .nav-item:hover,
  .nav-item:focus-within {
    transform: scale(1.05);
    color: var(--primary-color);
  }
}

.floating-phone {
  display: block;
  position: absolute;
  right: 20px;
  padding: 10px;
  background-color: var(--primary-dark);
  border-radius: 0 0 10px 10px;
  color: #fff;
  font-weight: bold;
  box-shadow: var(--small-shadow);
}

.floating-phone:hover,
.floating-phone:focus {
  background-color: var(--primary-dark-hover);
}

@media only screen and (max-width: 1190px) {
  header > div > a {
    flex-direction: row;
  }

  header > div > a > span {
    font-size: 1rem;
    font-weight: 800;
    margin-top: 0;
    margin-left: 15px;
  }

  header > div > a > img {
    width: 70px;
  }

  .no-scroll {
    overflow: hidden;
    height: 100%;
  }

  .mobile-carot {
    display: inline-block;
    transition: transform 0.3s ease;
  }

  .nav-item.open .mobile-carot {
    transform: rotate(180deg);
  }

  .navbar__toggle {
    display: block;
  }

  header > div > nav {
    display: none;
    position: absolute;
    right: 10px;
    top: 90px;
    flex-direction: column;
    align-items: stretch;
    gap: 25px;
    box-shadow: var(--small-shadow);
    padding: 20px;
    width: 90%;
    max-width: 400px;
    border-radius: 12px;
    background-color: #fff;
    height: auto;
    max-height: 70vh;
    overflow-y: auto;
    overscroll-behavior: contain;
  }

  header > div > nav.is-active {
    display: flex;
  }

  header > div > nav > .nav-item > .nav-items {
    display: none;
    position: relative;
    top: 0;
    left: 0;
    transform: none;
    flex-direction: column;
    background-color: #fff;
    gap: 20px;
    border-radius: 0;
    white-space: nowrap;
    box-shadow: none;
    margin: 20px 0 0 20px;
    border-left: 2px solid var(--primary-color);
    padding: 10px 0 10px 10px;
  }

  header > div > nav > .nav-item::after {
    display: none;
  }

  header > div > nav > .nav-link.important {
    text-align: center;
  }

  .nav-item.open .nav-items {
    display: flex;
  }

  .floating-phone {
    right: 5px;
    padding: 5px 10px;
  }
}

/* Header Alert Bar */
.header-alert-bar {
  position: relative;
  background-color: var(--primary-color);
  font-family: var(--font-family);
  box-shadow: 0 0 4px #000 inset;
}

.header-alert-bar-container {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  max-width: 1400px;
  width: 100%;
  padding: 10px 20px;
  margin: auto;
}

.header-alert-bar span span {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 10px;
  color: #fff;
}

.header-alert-bar span span span {
  font-weight: bold;
  font-size: 1.1em;
}

.header-alert-bar span span a {
  color: #fff;
  font-size: 16px;
  text-decoration: none;
}

.header-alert-bar span button {
  color: #fff;
  background: none;
  border: 0;
  font-weight: bold;
  transition: letter-spacing 0.3s ease;
  cursor: pointer;
}

.header-alert-bar span a:hover,
.header-alert-bar span a:focus,
.header-alert-bar button:hover,
.header-alert-bar button:focus {
  letter-spacing: 1px;
}

@media (max-width: 480px) {
  .header-alert-bar span span {
    font-size: 0.8em;
  }
  .header-alert-bar span a {
    font-size: 12px;
  }
}

@media (max-width: 400px) {
  .header-alert-bar span span,
  .header-alert-bar button {
    font-size: 0.8em;
  }
  .header-alert-bar span a {
    font-size: 11px;
  }
}

@media (max-width: 375px) {
  .header-alert-bar {
    padding: 10px;
  }
  .header-alert-bar span {
    gap: 5px;
  }
  .header-alert-bar span span,
  .header-alert-bar button {
    font-size: 0.7em;
  }
  .header-alert-bar span a {
    font-size: 11px;
  }
}

/* Hero Sections (Global variations) */
.hero {
  position: relative;
  background-color: var(--gray-900);
  color: var(--white);
  text-align: center;
  padding: 80px 20px;
}

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

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(000, 000, 000, 0.85);
  mix-blend-mode: multiply;
}

/* Default block layout (safest for subpages) */
.hero-container {
  position: relative;
  z-index: 1;
  max-width: 1000px;
  margin: 0 auto;
  display: block;
}

/* Homepage Hero Split Layout (Triggers only when the form wrapper is present) */
.hero-container:has(.hero-form-wrapper) {
  max-width: 1280px;
  display: flex;
  flex-direction: column;
  gap: 48px;
  align-items: center;
}

.hero-title {
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 16px;
}

.hero-title span {
  /* color: var(--primary-dark); */
}

.hero-text {
  font-size: 1.125rem;
  color: var(--gray-300);
  margin-bottom: 32px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* Homepage Specific Assets */
.hero-content {
  width: 100%;
  text-align: center;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}

.badge {
  display: flex;
  align-items: center;
  gap: 8px;
  background-color: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 8px 16px;
  border-radius: 9999px;
  font-size: 0.9rem;
  font-weight: 500;
}

.badge svg {
  width: 20px;
  height: 20px;
  color: var(--primary-dark);
}

.under-hero-line {
  width: 100%;
  height: 5px;
  background-color: var(--primary-color);
}

@media (min-width: 992px) {
  .hero {
    padding: 120px 20px;
  }

  .hero-title {
    font-size: 4rem;
  }

  /* Desktop split layout automatically triggers */
  .hero-container:has(.hero-form-wrapper) {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 60px;
  }

  .hero-container:has(.hero-form-wrapper) .hero-content {
    text-align: left;
    flex: 1;
    max-width: 650px;
  }

  .hero-container:has(.hero-form-wrapper) .hero-text {
    margin-left: 0;
  }

  .hero-container:has(.hero-form-wrapper) .hero-badges {
    justify-content: flex-start;
  }
}

@media (max-width: 510px) {
  .hero-badges {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    gap: 16px;
    justify-content: center;
  }
}

/* Forms (Hero, Sticky, and Bottom) */
.hero-form-wrapper {
  width: 100%;
  max-width: 450px;
  flex-shrink: 0;
}

.hero-form-card {
  background-color: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow:
    0 20px 25px -5px rgba(0, 0, 0, 0.1),
    0 10px 10px -5px rgba(0, 0, 0, 0.04);
  border: 1px solid var(--gray-200);
  width: 100%;
  color: var(--gray-800);
}

.form-header {
  padding: 24px 24px 0 24px;
  text-align: center;
}

.form-header h3 {
  color: var(--primary-color);
  font-size: 1.25rem;
  font-weight: 700;
}

.form-header p {
  color: var(--gray-900);
  font-size: 0.875rem;
  margin-top: 4px;
}

.hero-form {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-group {
  position: relative;
}

.form-group.street {
  margin-bottom: 16px;
}

.form-control {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--gray-300);
  border-radius: 6px;
  font-size: 1rem;
  color: var(--gray-800);
  transition: var(--transition);
  background: var(--white);
}

.form-control:focus {
  outline: none;
  border-color: var(--primary-dark);
  box-shadow: 0 0 0 3px var(--primary-dark-focus);
}

.form-fieldset-address {
  border: none;
  padding: 0;
  margin: 0;
}

textarea.form-control {
  resize: vertical;
  min-height: 100px;
}

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

.hero-form .btn {
  width: 100%;
  padding: 16px;
  font-size: 1.125rem;
  margin-top: 8px;
}

@media (max-width: 500px) {
  .form-row {
    grid-template-columns: 1fr;
  }
}

/* Form Section (Bottom of pages) */
.form-section {
  background-color: var(--gray-900);
  color: var(--white);
  position: relative;
}

.form-section-container {
  display: flex;
  flex-direction: column;
  gap: 48px;
  align-items: center;
  max-width: 1000px;
  margin: 0 auto;
}

.form-section-content {
  text-align: center;
}

.form-section-content h2 {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 16px;
  color: var(--white);
}

.form-section-content p {
  color: var(--gray-300);
  font-size: 1.125rem;
  max-width: 600px;
  margin: 0 auto;
}

/* Sticky Sidebar forms */
.sticky-wrapper {
  position: sticky;
  top: 100px;
}

/* Split Layouts (Service & Contact Pages) */
.service-layout {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.service-content {
  flex: 1;
}

.service-sidebar {
  width: 100%;
}

.content-block {
  margin-bottom: 40px;
}

.content-block h2 {
  font-size: 2rem;
  color: var(--gray-900);
  margin-bottom: 20px;
  text-wrap: balance;
}

.content-block p {
  font-size: 1.125rem;
  color: var(--gray-600);
  margin-bottom: 16px;
}

.content-block ul {
  margin-left: 24px;
  margin-bottom: 24px;
  list-style: disc outside;
}

.content-block ul li::marker {
  color: var(--primary-dark);
}

.content-block li {
  font-size: 1.125rem;
  color: var(--gray-600);
  margin-bottom: 8px;
}

.our-office-text {
  margin-bottom: 4px;
}

@media (min-width: 992px) {
  .service-layout {
    flex-direction: row;
    gap: 60px;
  }

  .service-sidebar {
    width: 450px;
    flex-shrink: 0;
  }
}

/* Component: Features & Services Grids */
/* Homepage Icon Cards */
.services-section {
  background-color: var(--white);
}

.service-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: var(--gray-50);
  border: 1px solid var(--gray-100);
  border-radius: 12px;
  padding: 32px;
  transition: var(--transition);
}

.service-card:hover,
.service-card:focus {
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  transform: translateY(-5px);
  outline: none;
}

.service-icon {
  width: 56px;
  height: 56px;
  background-color: var(--primary-dark);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.service-icon svg {
  width: 32px;
  height: 32px;
  color: #fff;
}

.service-card h3 {
  font-size: 1.25rem;
  color: var(--gray-900);
  margin-bottom: 12px;
}

.service-card p {
  color: var(--gray-600);
  height: 100px;
  text-align: center;
}

.service-card a {
  color: #fff;
  font-weight: bold;
  display: block;
}

/* Carousel Container */
.carousel-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
}

/* Scrollable Track */
.carousel-track {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding-bottom: 10px;

  /* Hide scrollbar for cleaner look */
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE/Edge */
}

.carousel-track::-webkit-scrollbar {
  display: none; /* Chrome/Safari */
}

/* Card Sizing & Peek Effect */
.carousel-track .service-card {
  /* 85% width leaves 15% for the next card to peek in */
  flex: 0 0 85%;
  scroll-snap-align: start; /* Snaps the card to the left edge */

  /* Ensure your existing card styles remain intact here */
  box-sizing: border-box;
}

/* Desktop sizing: Adjust if you want to show all 3 on large screens */
@media (min-width: 768px) {
  .carousel-track .service-card {
    flex: 0 0 calc(50% - 10px); /* Show 2 cards on tablet */
  }
}

@media (min-width: 1024px) {
  .carousel-track .service-card {
    flex: 0 0 calc(33.333% - 14px); /* Show all 3 on desktop without peeking */
  }
}

/* Navigation Arrows */
.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: #ffffff;
  border: 1px solid #e2e8f0;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-dark);
  transition: all 0.2s ease;
}

.carousel-arrow:hover {
  background-color: var(--primary-dark-focus);
  color: var(--primary-dark-hover);
}

.carousel-arrow:focus-visible {
  outline: 2px solid var(--primary-dark-focus);
  outline-offset: 2px;
}

/* Hide arrows when disabled via JS */
.carousel-arrow[hidden] {
  display: none;
}

.left-arrow {
  left: -20px; /* Pull slightly outside the container */
}

.right-arrow {
  right: -20px;
}

/* Hide arrows on mobile (users will swipe naturally) */
@media (max-width: 767px) {
  .carousel-arrow {
    display: none !important;
  }
}

/* Dots Indicators */
.carousel-indicators {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
}

.carousel-indicators button {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background-color: var(--primary-dark-focus);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

/* Active state for dots */
.carousel-indicators button[aria-selected="true"] {
  background-color: var(--primary-dark);
}

.carousel-indicators button:focus-visible {
  outline: 2px solid var(--primary-dark-focus);
  outline-offset: 2px;
}

/* Alternating Service Showcase (Services Page) */
.service-showcase {
  display: flex;
  flex-direction: column;
  background-color: var(--white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.05);
  border: 1px solid var(--gray-200);
  margin-bottom: 40px;
}

.service-showcase:last-child {
  margin-bottom: 0;
}

.service-showcase-img {
  width: 100%;
  height: 300px;
  position: relative;
}

.service-showcase-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-showcase-content {
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.service-showcase-content h2 {
  font-size: 2rem;
  color: var(--gray-900);
  margin-bottom: 16px;
  font-weight: 800;
}

.service-showcase-content p {
  color: var(--gray-600);
  font-size: 1.125rem;
  margin-bottom: 24px;
  line-height: 1.7;
}

.service-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.service-ctas .btn {
  flex: 1;
  min-width: 200px;
}

@media (min-width: 992px) {
  .service-showcase {
    flex-direction: row;
    height: 500px;
    margin-bottom: 60px;
  }

  .service-showcase:nth-child(even) {
    flex-direction: row-reverse;
  }

  .service-showcase-img {
    width: 50%;
    height: 100%;
  }

  .service-showcase-content {
    width: 50%;
    padding: 64px;
  }

  .service-ctas {
    flex-wrap: nowrap;
    justify-content: flex-start;
  }

  .service-ctas .btn {
    flex: 0 1 auto;
  }
}

/* Component: About & Process Steps */
.about-section {
  background-color: var(--gray-100);
}

.about-container {
  display: flex;
  flex-direction: column;
  gap: 60px;
  align-items: center;
}

.about-image-wrapper {
  flex: 1;
  position: relative;
  width: 100%;
}

.about-img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.about-badge {
  position: absolute;
  bottom: -24px;
  right: -24px;
  background-color: var(--primary-dark);
  color: var(--white);
  padding: 24px;
  border-radius: 12px;
  border: 4px solid var(--gray-100);
  text-align: center;
  display: none;
}

.about-badge strong {
  display: block;
  font-size: 2.25rem;
  line-height: 1;
}

.about-content {
  flex: 1;
}

.about-content .section-header {
  text-align: left;
  margin-bottom: 24px;
}

.about-text {
  color: var(--gray-600);
  font-size: 1.125rem;
  margin-bottom: 24px;
}

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

.feature-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 500;
  color: var(--gray-700);
}

.feature-list svg {
  width: 24px;
  height: 24px;
  color: var(--primary-dark);
}

@media (min-width: 992px) {
  .about-container {
    flex-direction: row;
  }

  .about-img {
    height: 500px;
  }

  .about-badge {
    display: block;
  }
}

/* Process Steps */
.process-section {
  background-color: var(--gray-100);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
  counter-reset: process-counter;
}

.process-step {
  background: var(--white);
  padding: 32px;
  border-radius: 12px;
  position: relative;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.process-step::before {
  counter-increment: process-counter;
  content: counter(process-counter);
  position: absolute;
  top: -20px;
  left: 32px;
  width: 48px;
  height: 48px;
  background: var(--primary-dark);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 800;
  border: 4px solid var(--gray-100);
}

.process-step h3 {
  margin-top: 16px;
  font-size: 1.25rem;
  color: var(--gray-900);
  margin-bottom: 12px;
}

.process-step p {
  color: var(--gray-600);
}

/* Materials & Brands */
.brands-section {
  background-color: var(--white);
}

.section-description {
  margin-top: 16px;
  font-size: 1.125rem;
  color: var(--gray-600);
}

.brands-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 20px;
}

.brand-card {
  border: 1px solid var(--gray-200);
  border-radius: 12px;
  padding: 32px;
  text-align: center;
  background: var(--gray-50);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.brand-card h3 {
  font-size: 1.25rem;
  color: var(--gray-900);
  margin-bottom: 8px;
}

.brand-card p {
  font-size: 0.9rem;
  color: var(--gray-600);
}

@media (min-width: 768px) {
  .brands-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Portfolio & Lightbox */
.portfolio-section {
  background-color: var(--gray-900);
  color: var(--white);
}

.portfolio-section.bg-white {
  background-color: var(--white);
  color: var(--gray-900);
}

.portfolio-section .section-title {
  color: var(--white);
}

.portfolio-section.bg-white .section-title {
  color: var(--gray-900);
}

.portfolio-item-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 24px;
}

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

@media (max-width: 600px) {
  .portfolio-item-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
}

.portfolio-item {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  height: 260px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.portfolio-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.portfolio-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(17, 24, 39, 0.9), transparent);
  display: flex;
  align-items: flex-end;
  padding: 24px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.portfolio-overlay span {
  color: var(--white);
  font-weight: 600;
  font-size: 1.1rem;
}

.portfolio-item:hover img,
.portfolio-item:focus-within img {
  transform: scale(1.1);
}

.portfolio-item:hover .portfolio-overlay,
.portfolio-item:focus-within .portfolio-overlay {
  opacity: 1;
}

.portfolio-overlay a {
  position: absolute;
  inset: 0;
}

.lightbox-modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  visibility: hidden;
  opacity: 0;
  transition:
    visibility 0s 0.3s,
    opacity 0.3s ease;
}

.lightbox-modal.is-active {
  visibility: visible;
  opacity: 1;
  transition: opacity 0.3s ease;
}

.lightbox-backdrop {
  position: absolute;
  inset: 0;
  background-color: rgba(17, 24, 39, 0.95);
  cursor: pointer;
}

.lightbox-content {
  position: relative;
  z-index: 2001;
  max-width: 90vw;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.lightbox-content img {
  width: 100%;
  max-width: 100%;
  max-height: 85vh;
  border-radius: 8px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
  transform: scale(0.95);
  transition: transform 0.3s ease;
  object-fit: contain;
}

.lightbox-modal.is-active .lightbox-content img {
  transform: scale(1);
}

.lightbox-close {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 2002;
  background: rgba(0, 0, 0, 0.5);
  border: 2px solid transparent;
  color: var(--white);
  border-radius: 50%;
  width: 48px;
  height: 48px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.lightbox-close:hover,
.lightbox-close:focus-visible {
  background: var(--primary-dark);
  outline: none;
  border-color: var(--white);
}

.lightbox-close svg {
  width: 24px;
  height: 24px;
}

/* Testimonials & Reviews Grid */
.testimonials-section {
  background-color: var(--gray-100);
  color: var(--white);
}

.testimonials-section .section-title {
  color: var(--gray-900);
}

.testimonial-card {
  background-color: var(--gray-800);
  border: 1px solid var(--gray-700);
  padding: 32px;
  border-radius: 12px;
}

/* Dedicated Reviews Page Layout */
.reviews-section {
  background-color: var(--gray-50);
}

.reviews-grid {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.review-card {
  background-color: var(--white);
  border-radius: 12px;
  padding: 32px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
  border: 1px solid var(--gray-200);
  display: flex;
  flex-direction: column;
  transition: var(--transition);
}

.review-card:hover {
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  transform: translateY(-4px);
  border-color: var(--gray-300);
}

/* Review Shared Assets */
.review-stars,
.stars {
  display: flex;
  color: #fbbf24;
  gap: 4px;
  margin-bottom: 20px;
}

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

.stars svg {
  width: 20px;
  height: 20px;
  margin-bottom: 16px;
}

.review-text,
.testimonial-text {
  color: var(--gray-700);
  font-size: 1.125rem;
  line-height: 1.6;
  font-style: italic;
  margin-bottom: 24px;
  flex: 1;
}

.testimonial-text {
  color: var(--gray-300);
}

.testimonial-author {
  font-weight: 700;
  color: var(--white);
  font-size: 1.125rem;
}

.review-author-info,
.review-text {
  border-bottom: 1px solid var(--gray-100);
  padding-bottom: 20px;
  margin-bottom: 20px;
}

.review-author {
  font-weight: 800;
  color: var(--gray-900);
  font-size: 1.125rem;
  margin-bottom: 4px;
}

.review-service {
  font-size: 0.875rem;
  color: var(--primary-dark);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.see-review-ext {
  display: block;
  width: fit-content;
  font-weight: bold;
}

.see-review-ext:hover {
  text-decoration: underline;
}

/* CTA Section */
.cta-section {
  background-color: var(--white);
  border-top: 1px solid var(--gray-200);
}

.cta-container {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.cta-container h2 {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--gray-900);
  margin-bottom: 16px;
}

.cta-container p {
  font-size: 1.125rem;
  color: var(--gray-600);
  margin-bottom: 32px;
}

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

/* FAQ Accordion */
.faq-section {
  background-color: var(--gray-50);
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background-color: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 8px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  transition: background-color 0.5s ease-in-out;
}

.faq-item:hover,
.faq-item:focus-within {
  background-color: var(--gray-100);
}

.faq-summary {
  width: 100%;
  background: transparent;
  border: none;
  padding: 24px;
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--gray-800);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: left;
  font-family: inherit;
}

.faq-summary:focus {
  outline: none;
}

.faq-icon {
  color: var(--primary-dark);
  transition: transform 0.3s ease;
  flex-shrink: 0;
  margin-left: 16px;
}

.faq-item.is-open .faq-icon {
  transform: rotate(180deg);
}

.faq-content-wrapper {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.3s ease-in-out;
}

.faq-item.is-open .faq-content-wrapper {
  grid-template-rows: 1fr;
}

.faq-content-inner {
  overflow: hidden;
}

.faq-content-body {
  padding: 0 24px 24px;
  color: var(--gray-600);
}

.faq-content-body p {
  padding-top: 10px;
  border-top: 1px solid var(--gray-100);
}

.faq-content-body ul {
  margin: 10px 20px 0 30px;
  list-style: disc outside;
}

/* Contact Page Elements */
.contact-intro {
  margin-bottom: 40px;
}

.contact-intro h2 {
  font-size: 2rem;
  color: var(--gray-900);
  margin-bottom: 16px;
}

.contact-intro p {
  font-size: 1.125rem;
  color: var(--gray-600);
}

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin-bottom: 40px;
}

.contact-method {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.contact-icon {
  width: 56px;
  height: 56px;
  background-color: var(--primary-dark);
  color: var(--primary-dark);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-icon svg {
  width: 28px;
  height: 28px;
  color: #fff;
}

.contact-text h3 {
  font-size: 1.25rem;
  color: var(--gray-900);
  margin-bottom: 4px;
}

.contact-text p,
.contact-text a {
  font-size: 1.125rem;
  color: var(--gray-600);
  line-height: 1.5;
}

.contact-text a:hover {
  color: var(--primary-dark);
  text-decoration: underline;
}

.map-section {
  background-color: var(--gray-100);
}

.map-container {
  width: 100%;
  height: 400px;
  background-color: var(--gray-300);
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* Blog & Article Elements */
/* Blog Grid / Related Articles */
.blog-section {
  background-color: var(--gray-50);
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 40px;
}

.blog-card {
  background-color: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  border: 1px solid var(--gray-200);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.blog-card:hover,
.blog-card:focus-within {
  transform: translateY(-5px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.blog-image-wrapper {
  position: relative;
  height: 240px;
  overflow: hidden;
}

.blog-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.blog-card:hover .blog-image,
.blog-card:focus-within .blog-image {
  transform: scale(1.05);
}

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

.blog-meta,
.blog-meta-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.875rem;
  margin-bottom: 16px;
}

.blog-category,
.blog-category-card {
  color: var(--primary-dark);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.blog-date,
.blog-date-card {
  color: var(--gray-500);
}

.blog-title,
.blog-title-card {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gray-900);
  line-height: 1.3;
  margin-bottom: 12px;
}

.blog-title-card {
  font-size: 1.25rem;
}

.blog-title a,
.blog-title-card a {
  color: inherit;
  outline: none;
}

.blog-title a:hover,
.blog-title-card a:hover {
  color: var(--primary-dark);
}

.blog-excerpt,
.blog-excerpt-card {
  color: var(--gray-600);
  margin-bottom: 24px;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.read-more,
.read-more-card {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--primary-dark);
  font-weight: 700;
  font-size: 1rem;
  margin-top: auto;
}

.read-more svg,
.read-more-card svg {
  width: 20px;
  height: 20px;
  transition: transform 0.3s ease;
}

.blog-card:hover .read-more svg,
.read-more:focus-visible svg,
.blog-card:hover .read-more-card svg,
.read-more-card:focus-visible svg {
  transform: translateX(4px);
}

.article-cta {
  margin-top: 20px;
}

/* Pagination */
.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 60px;
}

.page-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  height: 44px;
  padding: 0 12px;
  border-radius: 6px;
  background-color: var(--white);
  border: 1px solid var(--gray-300);
  color: var(--gray-700);
  font-weight: 600;
  transition: var(--transition);
}

.page-link.dots {
  border: none;
  background: transparent;
  pointer-events: none;
}

.page-link:hover,
.page-link:focus-visible {
  border-color: var(--primary-dark);
  color: var(--primary-dark);
}

.page-link.active {
  background-color: var(--primary-dark);
  border-color: var(--primary-dark);
  color: var(--white);
}

.page-link.disabled {
  opacity: 0.5;
  pointer-events: none;
}

.page-link svg {
  width: 20px;
  height: 20px;
}

/* Article specific styling (Prose) */
.article-header {
  position: relative;
  padding: 60px 20px 40px;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
  z-index: 5;
}

.article-meta {
  display: flex;
  justify-content: center;
  gap: 16px;
  align-items: center;
  color: var(--gray-600);
  margin-bottom: 24px;
  font-weight: 500;
  flex-wrap: wrap;
}

.article-meta .category {
  color: var(--primary-dark);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 700;
  background: var(--primary-dark-focus);
  padding: 4px 12px;
  border-radius: 99px;
  font-size: 0.875rem;
}

.article-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--gray-900);
  line-height: 1.2;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}

@media (min-width: 768px) {
  .article-title {
    font-size: 3.5rem;
  }
}

.article-featured-image {
  max-width: 1000px;
  margin: 0 auto 60px;
  padding: 0 20px;
}

.article-featured-image img {
  width: 100%;
  max-height: 600px;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.article-content {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 20px 60px;
  font-size: 1.1875rem;
  color: var(--gray-700);
  line-height: 1.8;
}

.article-content h2 {
  font-size: 2rem;
  color: var(--gray-900);
  margin: 48px 0 24px;
  font-weight: 800;
  line-height: 1.3;
}

.article-content h3 {
  font-size: 1.5rem;
  color: var(--gray-900);
  margin: 40px 0 16px;
  font-weight: 700;
}

.article-content p {
  margin-bottom: 24px;
}

.article-content ul,
.article-content ol {
  margin-bottom: 24px;
  padding-left: 24px;
}

.article-content li {
  margin-bottom: 12px;
}

.article-content li::marker {
  color: var(--primary-dark);
  font-weight: bold;
}

.article-content blockquote {
  border-left: 4px solid var(--primary-dark);
  padding-left: 24px;
  font-style: italic;
  color: var(--gray-900);
  font-size: 1.5rem;
  margin: 48px 0;
  background: var(--gray-50);
  padding: 32px;
  border-radius: 0 12px 12px 0;
}

.article-content img {
  border-radius: 12px;
  margin: 40px 0;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.article-content figcaption {
  text-align: center;
  color: var(--gray-500);
  font-size: 0.9rem;
  margin-top: -24px;
  margin-bottom: 40px;
}

.article-content strong {
  color: var(--gray-900);
  font-weight: 700;
}

.author-box {
  display: flex;
  flex-direction: column;
  text-align: center;
  align-items: center;
  gap: 24px;
  background: var(--gray-50);
  padding: 40px;
  border-radius: 16px;
  margin-top: 60px;
  border: 1px solid var(--gray-200);
}

@media (min-width: 600px) {
  .author-box {
    flex-direction: row;
    text-align: left;
    align-items: start;
  }
}

.author-avatar {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.author-info h4 {
  font-size: 1.25rem;
  color: var(--gray-900);
  margin-bottom: 8px;
  font-weight: 800;
}

.author-info p {
  color: var(--gray-600);
  font-size: 1rem;
  margin-bottom: 0;
  line-height: 1.6;
}

.related-articles {
  background-color: var(--gray-50);
  border-top: 1px solid var(--gray-200);
}

.related-header {
  max-width: 1280px;
  margin: 0 auto 40px;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.related-header h2 {
  font-size: 2rem;
  font-weight: 800;
  color: var(--gray-900);
}

.related-header a {
  color: var(--primary-dark);
  font-weight: 600;
  display: block;
}

.related-articles .blog-grid {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
}

@media (max-width: 768px) {
  .related-header a {
    display: inline-block;
  }

  .related-header {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* Service Areas Section */
.service-areas-section {
  background-color: var(--white);
}

.service-areas-section .section-header p {
  color: var(--gray-600);
  font-size: 1.125rem;
  margin-top: 16px;
}

.area-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: var(--gray-50);
  border: 1px solid var(--gray-100);
  padding: 24px;
  border-radius: 12px;
  text-align: center;
  font-weight: 700;
  color: var(--primary-dark);
  font-size: 1.125rem;
  transition: var(--transition);
}

.area-card:hover {
  border-color: var(--primary-dark-hover);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  color: var(--primary-dark-hover);
}

/* See Our Reviews Section */
.review-section {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #121212;
}

.review-container {
  margin: 0 auto;
  width: 100%;
  max-width: 1280px;
}

.review-content {
  margin-left: 1.25rem;
  margin-right: 1.25rem;
  text-align: center;
}

.review-logo {
  display: inline-block;
  vertical-align: middle;
  margin-bottom: 0.75rem;
}

.review-rating {
  display: flex;
  justify-content: center;
  gap: 0.25rem;
  margin-bottom: 0.75rem;
}

.review-star {
  appearance: none;
  -webkit-appearance: none;
  margin: 0;
  width: 1.5rem;
  height: 1.5rem;
  background-color: #fb923c;
  clip-path: polygon(
    50% 0%,
    61% 35%,
    98% 35%,
    68% 57%,
    79% 91%,
    50% 70%,
    21% 91%,
    32% 57%,
    2% 35%,
    39% 35%
  );
}

.review-star:not(:checked) {
  opacity: 0.8;
}

.review-link {
  text-decoration: none;
  color: #ffffff;
  display: inline-block;
}

.review-link:hover .review-title {
  text-decoration: underline;
}

.review-title {
  margin: 0;
  margin-bottom: 1.25rem;
  font-size: 2.25rem;
  line-height: 1;
  font-weight: 600;
  text-align: center;
  color: #ffffff;
}

@media (max-width: 768px) {
  .review-title {
    font-size: 2.25rem;
  }
}

.flyer-section > .container > picture {
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.flyer-section > .container > picture:first-of-type {
  margin-bottom: 20px;
}

.flyer-pdf-link {
  display: block;
  margin-bottom: 10px;
  width: fit-content;
}

.flyer-pdf-link:hover,
.flyer-pdf-link:focus {
  font-weight: bold;
}

/* Footer */
.footer {
  background-color: var(--gray-900);
  padding: 64px 0 32px;
  border-top: 1px solid var(--gray-800);
  color: var(--white);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  margin-bottom: 48px;
}

.footer-brand h2 {
  color: var(--white);
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 16px;
  letter-spacing: -0.025em;
}

.footer-brand p {
  color: var(--gray-400);
  max-width: 300px;
}

.footer-heading {
  color: var(--white);
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 20px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a,
.footer-links li {
  color: var(--gray-300);
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--gray-400);
}

.footer-bottom {
  text-align: center;
  padding-top: 32px;
  border-top: 1px solid var(--primary-color);
  color: var(--gray-500);
  font-size: 0.875rem;
}

.footer-bottom a {
  font-weight: bold;
}

.footer-bottom a:hover {
  color: var(--gray-400);
}

.footer-service-links {
  display: flex;
  flex-direction: row;
  gap: 20px;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.footer-service-links a::after {
  content: "|";
  margin-left: 20px;
}

.footer-service-links a:last-of-type::after {
  content: none;
  margin-left: 0;
}

.footer-social-holder {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 20px;
  width: 100%;
  margin-bottom: 20px;
}

.footer-social-holder a svg {
  width: 30px;
  height: 30px;
  color: #fff;
  transition: color 0.3s ease-in-out;
}

.footer-social-holder a svg:hover {
  color: var(--gray-400);
}

@media (max-width: 820px) {
  .footer-service-links {
    flex-direction: column;
    align-items: center;
  }
  .footer-service-links a::after {
    content: none;
    margin-left: 0;
  }
}

@media (max-width: 768px) {
  .footer-service-links {
    flex-direction: column;
    align-items: start;
  }
  .footer-service-links a::after {
    content: none;
    margin-left: 0;
  }
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr;
  }
}
