:root {
  --steel: #121b23;
  --steel-shadow: #080f14;
  --paper-white: #f2f1ec;
  --paper-mist: #fbfaf6;
  --steel-charcoal: #1f2a34;
  --amethyst: #7b56a9;
  --amethyst-light: #9b7bc4;
  --amethyst-dark: #5e3d8a;
  --border-subtle: rgba(123, 86, 169, 0.18);
  --shadow-soft: 0 4px 24px rgba(0, 0, 0, 0.18);
  --shadow-card: 0 2px 12px rgba(0, 0, 0, 0.12);
  --radius: 10px;
  --radius-sm: 6px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --max-w: 1180px;
  --font-heading: Georgia, "Times New Roman", serif;
  --font-body:
    -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
}
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}
body {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.72;
  color: var(--steel-charcoal);
  background: var(--paper-white);
  -webkit-font-smoothing: antialiased;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: var(--amethyst);
  text-decoration: none;
  transition: color var(--transition);
}
a:hover {
  color: var(--amethyst-light);
}
h1,
h2,
h3,
h4 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.25;
  color: var(--steel-charcoal);
}
h1 {
  font-size: clamp(1.9rem, 4vw, 2.8rem);
}
h2 {
  font-size: clamp(1.4rem, 3vw, 2rem);
  margin-bottom: 18px;
}
h3 {
  font-size: clamp(1.1rem, 2.2vw, 1.45rem);
  margin-bottom: 12px;
}
ul,
ol {
  padding-left: 1.4em;
}
p {
  margin-bottom: 1em;
}
.container {
  width: 92%;
  max-width: var(--max-w);
  margin: 0 auto;
}
.top-bar {
  background: var(--steel-shadow);
  color: var(--paper-mist);
  font-size: 13.5px;
  padding: 7px 0;
  border-bottom: 1px solid var(--border-subtle);
}
.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
}
.top-bar a {
  color: var(--paper-mist);
  font-weight: 500;
}
.top-bar a:hover {
  color: var(--amethyst-light);
}
.top-bar__contact {
  display: flex;
  gap: 20px;
  align-items: center;
}
.top-bar__address {
  opacity: 0.8;
  font-size: 12.5px;
}
.header {
  background: var(--steel);
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 2px solid var(--amethyst);
}
.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 ;
  min-height: 64px;
}
.logo {
  font-family: var(--font-heading);
  font-size: 22px;
  color: var(--paper-mist);
  font-weight: 700;
  white-space: nowrap;
}
.logo span {
  color: var(--amethyst-light);
  font-style: italic;
}
.nav {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav__link {
  color: var(--paper-mist);
  font-size: 14.5px;
  font-weight: 600;
  padding: 20px 14px;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  transition: color var(--transition);
}
.nav__link:hover,
.nav__link--active {
  color: var(--amethyst-light);
}
.nav__arrow {
  font-size: 10px;
  margin-left: 3px;
  display: inline-block;
  transition: transform var(--transition);
}
.has-dropdown {
  position: relative;
}
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 250px;
  background: var(--steel);
  border: 1px solid var(--border-subtle);
  border-radius: 0 0 var(--radius-sm) var(--radius-sm);
  box-shadow: var(--shadow-soft);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: all 0.28s ease;
  z-index: 999;
  padding: 6px 0;
}
.has-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.has-dropdown:hover .nav__arrow {
  transform: rotate(180deg);
}
.dropdown-menu a {
  display: block;
  padding: 10px 22px;
  color: var(--paper-mist);
  font-size: 14px;
  font-weight: 500;
  transition: all var(--transition);
  border-left: 3px solid transparent;
}
.dropdown-menu a:hover {
  background: rgba(123, 86, 169, 0.12);
  color: var(--amethyst-light);
  border-left-color: var(--amethyst);
  padding-left: 26px;
}
.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1100;
}
.hamburger span {
  display: block;
  width: 26px;
  height: 3px;
  background: var(--paper-mist);
  margin: 5px 0;
  border-radius: 2px;
  transition: all var(--transition);
}
.mobile-nav {
  display: none;
  position: fixed;
  top: 0;
  right: -100%;
  width: 70%;
  max-width: 420px;
  height: 100svh;
  height: 100vh;
  background: var(--steel-shadow);
  z-index: 1050;
  flex-direction: column;
  padding: 0;
  transition: right 0.35s ease;
  overflow-y: auto;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.mobile-nav::-webkit-scrollbar {
  display: none;
}
.mobile-nav.open {
  right: 0;
  display: flex;
}
.mobile-nav.open {
  display: flex !important;
}
.mobile-nav__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 20px;
  border-bottom: 1px solid var(--border-subtle);
}
.mobile-nav__close {
  background: none;
  border: none;
  color: var(--paper-mist);
  font-size: 28px;
  cursor: pointer;
  flex-shrink: 0;
  padding: 4px 8px;
  line-height: 1;
}
.mobile-nav a {
  display: block;
  padding: 14px 24px;
  color: var(--paper-mist);
  font-size: 16px;
  font-weight: 600;
  border-bottom: 1px solid rgba(123, 86, 169, 0.1);
  transition: all var(--transition);
}
.mobile-nav a:hover {
  color: var(--amethyst-light);
  background: rgba(123, 86, 169, 0.08);
}
.mobile-dropdown-toggle {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 14px 24px;
  background: none;
  border: none;
  border-bottom: 1px solid rgba(123, 86, 169, 0.1);
  color: var(--paper-mist);
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  font-family: var(--font-body);
  transition: all var(--transition);
}
.mobile-dropdown-toggle .arrow {
  transition: transform var(--transition);
  font-size: 12px;
}
.mobile-dropdown-toggle.active .arrow {
  transform: rotate(180deg);
}
.mobile-dropdown-menu {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  background: rgba(8, 15, 20, 0.5);
}
.mobile-dropdown-menu.open {
  max-height: 600px;
}
.mobile-dropdown-menu a {
  display: block;
  padding: 10px 24px 10px 44px;
  color: var(--paper-mist);
  font-size: 14px;
  font-weight: 400;
  transition: all var(--transition);
}
.mobile-dropdown-menu a:hover {
  color: var(--amethyst-light);
}
.mobile-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 1040;
  transition: opacity var(--transition);
}
.mobile-overlay.active {
  display: block;
}
.hero {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  min-height: 560px;
  display: flex;
  align-items: center;
  padding: 60px 0;
}
.hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(8, 15, 20, 0.88) 0%,
    rgba(18, 27, 35, 0.72) 100%
  );
  z-index: 1;
}
.hero .container {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 48px;
  flex-wrap: wrap;
}
.hero__content {
  flex: 1 1 420px;
  color: var(--paper-mist);
}
.hero__badge {
  display: inline-block;
  background: rgba(123, 86, 169, 0.2);
  border: 1px solid var(--amethyst);
  color: var(--amethyst-light);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 6px 16px;
  border-radius: 20px;
  margin-bottom: 18px;
}
.hero h1 {
  color: var(--paper-mist);
  margin-bottom: 16px;
}
.hero__text {
  color: rgba(251, 250, 246, 0.85);
  font-size: 18px;
  line-height: 1.7;
  margin-bottom: 24px;
}
.hero__btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.hero__form {
  flex: 0 1 440px;
  min-width: 0;
}
.feedback-form-container {
  background: rgba(18, 27, 35, 0.92);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius);
  padding: 32px 28px;
  box-shadow: var(--shadow-soft);
}
.feedback-form-container h2 {
  color: var(--paper-mist);
  text-align: center;
  margin-bottom: 20px;
  font-family: var(--font-heading);
  font-size: 1.3rem;
}
.form-row {
  display: flex;
  gap: 12px;
  margin-bottom: 12px;
}
.form-group {
  flex: 1 1 0;
  min-width: 0;
}
.form-group input,
.form-group textarea {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  padding: 13px 16px;
  border: 1px solid rgba(123, 86, 169, 0.25);
  border-radius: var(--radius-sm);
  background: rgba(251, 250, 246, 0.06);
  color: var(--paper-mist);
  font-size: 15px;
  font-family: var(--font-body);
  transition: border-color var(--transition);
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(251, 250, 246, 0.45);
}
.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--amethyst);
}
.form-group textarea {
  min-height: 90px;
  resize: vertical;
}
.form-submit {
  text-align: center;
  margin-top: 8px;
}
.submit-btn {
  display: inline-block;
  background: var(--amethyst);
  color: #fff;
  padding: 14px 40px;
  border: none;
  border-radius: var(--radius);
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: all var(--transition);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  box-shadow: 0 3px 12px rgba(123, 86, 169, 0.35);
}
.submit-btn:hover {
  background: var(--amethyst-dark);
  transform: translateY(-1px);
  box-shadow: 0 5px 18px rgba(123, 86, 169, 0.45);
}
#form-success {
  text-align: center;
}
#form-success p {
  color: #6ecf6e;
  font-size: 16px;
  font-weight: 600;
  padding: 20px 0;
}
.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: var(--radius);
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.7px;
  transition: all var(--transition);
  cursor: pointer;
  text-align: center;
}
.btn--primary {
  background: var(--amethyst);
  color: #fff;
  box-shadow: 0 3px 12px rgba(123, 86, 169, 0.3);
}
.btn--primary:hover {
  background: var(--amethyst-dark);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 5px 18px rgba(123, 86, 169, 0.4);
}
.btn--outline {
  background: transparent;
  color: var(--paper-mist);
  border: 2px solid var(--amethyst);
}
.btn--outline:hover {
  background: var(--amethyst);
  color: #fff;
}
.btn--dark {
  background: var(--amethyst);
  color: #fff;
  box-shadow: 0 3px 12px rgba(123, 86, 169, 0.3);
}
.btn--dark:hover {
  background: var(--amethyst-dark);
  color: #fff;
}
.page-hero {
  background: linear-gradient(
    135deg,
    var(--steel-shadow) 0%,
    var(--steel) 100%
  );
  padding: 56px 0 48px;
  text-align: center;
  border-bottom: 3px solid var(--amethyst);
}
.page-hero h1 {
  color: var(--paper-mist);
  margin-bottom: 12px;
}
.page-hero p {
  color: rgba(251, 250, 246, 0.75);
  font-size: 18px;
  max-width: 640px;
  margin: 0 auto;
}
.breadcrumb {
  font-size: 13.5px;
  margin-bottom: 16px;
}
.breadcrumb a {
  color: var(--amethyst-light);
}
.breadcrumb span {
  color: rgba(251, 250, 246, 0.5);
  margin: 0 6px;
}
.section {
  padding: 64px 0;
}
.section--light {
  background: var(--paper-white);
}
.section--alt {
  background: var(--paper-mist);
}
.section--dark {
  background: var(--steel);
  color: var(--paper-mist);
}
.section--dark h2,
.section--dark h3 {
  color: var(--paper-mist);
}
.section__label {
  display: block;
  font-size: 12.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--amethyst);
  margin-bottom: 8px;
}
.section__title {
  text-align: center;
  margin-bottom: 40px;
}
.section__title h2 {
  margin-bottom: 12px;
}
.section__title p {
  color: #666;
  font-size: 17px;
  max-width: 620px;
  margin: 0 auto;
}
.about-row {
  display: flex;
  gap: 48px;
  align-items: center;
  flex-wrap: wrap;
}
.about-row__img {
  flex: 0 1 560px;
  max-width: 100%;
}
.about-row__img img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  border: 3px solid var(--paper-white);
}
.about-row__text {
  flex: 1 1 400px;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
}
.service-card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: all var(--transition);
  border: 1px solid rgba(0, 0, 0, 0.06);
  display: flex;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
}
.service-card__body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.service-card__body h3 {
  margin-bottom: 10px;
}
.service-card__body p {
  color: #555;
  font-size: 15px;
  margin-bottom: 14px;
}
.service-card__link {
  display: inline-block;
  color: var(--amethyst);
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: auto;
}
.service-card__link:hover {
  color: var(--amethyst-dark);
}
.service-content {
  padding: 56px 0;
}
.service-content__hero-img {
  width: 100%;
  max-height: 420px;
  object-fit: cover;
  border-radius: var(--radius);
  margin-bottom: 36px;
  box-shadow: var(--shadow-card);
  border: 3px solid var(--paper-white);
}
.service-content__body {
  max-width: 820px;
  margin: 0 auto;
}
.service-content__body h2 {
  margin-top: 36px;
  padding-top: 24px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}
.service-content__body h2:first-child {
  border-top: none;
  margin-top: 0;
  padding-top: 0;
}
.service-content__body ul,
.service-content__body ol {
  margin-bottom: 1em;
}
.city-content {
  padding: 56px 0;
}
.city-content__hero-img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  border-radius: var(--radius);
  margin-bottom: 32px;
  box-shadow: var(--shadow-card);
  border: 3px solid var(--paper-white);
}
.city-content__body {
  max-width: 820px;
  margin: 0 auto;
}
.city-content__body h2 {
  margin-top: 32px;
  padding-top: 20px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}
.city-content__body h2:first-child {
  border-top: none;
  margin-top: 0;
  padding-top: 0;
}
.neighborhoods-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 16px 0;
}
.neighborhoods-grid span {
  background: rgba(123, 86, 169, 0.08);
  border: 1px solid var(--border-subtle);
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 500;
  color: var(--steel-charcoal);
}
.nearby-areas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin: 16px 0;
}
.nearby-areas a {
  background: var(--paper-mist);
  border: 1px solid var(--border-subtle);
  padding: 8px 20px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 14px;
  transition: all var(--transition);
}
.nearby-areas a:hover {
  background: var(--amethyst);
  color: #fff;
  border-color: var(--amethyst);
}
.areas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}
.area-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow-card);
  transition: all var(--transition);
  border: 1px solid rgba(0, 0, 0, 0.06);
  text-align: center;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.area-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.14);
  border-color: var(--amethyst);
}
.area-card h3 {
  margin-bottom: 6px;
  font-size: 1.1rem;
}
.area-card p {
  color: #666;
  font-size: 14px;
  margin-bottom: 12px;
}
.area-card__link {
  color: var(--amethyst);
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  margin-top: auto;
  display: inline-block;
}
@media (min-width: 1100px) {
  .areas-grid {
    grid-template-columns: repeat(4, minmax(240px, 1fr));
  }
  .areas-grid > .area-card:nth-last-child(2):nth-child(4n + 1) {
    grid-column: 2;
  }
  .areas-grid > .area-card:last-child:nth-child(4n + 2) {
    grid-column: 3;
  }
}
.testimonials {
  padding: 64px 0;
  background: linear-gradient(180deg, var(--paper-mist) 0%, #f6f2ea 100%);
}
.testimonials .section__title {
  margin-bottom: 32px;
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.testimonial-card {
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow-card);
  position: relative;
  backdrop-filter: blur(4px);
}
.testimonial-card::before {
  content: "“";
  position: absolute;
  top: 14px;
  left: 18px;
  font-family: var(--font-heading);
  font-size: 3.5rem;
  line-height: 1;
  color: rgba(123, 86, 169, 0.16);
}
.testimonial-card p {
  position: relative;
  z-index: 1;
  color: #4e565d;
  font-size: 15px;
  margin-bottom: 14px;
}
.testimonial-card footer {
  padding-top: 14px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  font-size: 14px;
  font-weight: 700;
  color: var(--steel-charcoal);
}
.testimonial-card footer span {
  display: block;
  margin-top: 4px;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--amethyst);
}
.cta-block {
  text-align: center;
  padding: 24px 0;
  margin: 24px 0;
}
.cta-block .btn {
  margin: 0 8px;
}
.cta-block .btn--outline {
  color: var(--amethyst);
  border-color: var(--amethyst);
}
.cta-block .btn--outline:hover {
  color: #fff;
}
.cta-banner {
  background: linear-gradient(
    135deg,
    var(--steel) 0%,
    var(--steel-shadow) 100%
  );
  padding: 56px 0;
  text-align: center;
  border-top: 3px solid var(--amethyst);
}
.cta-banner h2 {
  color: var(--paper-mist);
  margin-bottom: 12px;
}
.cta-banner p {
  color: rgba(251, 250, 246, 0.75);
  margin-bottom: 24px;
  font-size: 17px;
}
.map-section {
  padding: 48px 0;
}
.map-section h2 {
  text-align: center;
  margin-bottom: 24px;
}
.map-container {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  border: 2px solid var(--border-subtle);
}
.map-container iframe {
  width: 100%;
  height: 400px;
  border: 0;
  display: block;
}
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}
.contact-left {
}
.contact-form-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(0, 0, 0, 0.06);
  margin-top: 16px;
}
.contact-form-card .feedback-form-container {
  background: transparent;
  border: none;
  padding: 0;
  box-shadow: none;
}
.contact-form-card .form-group input,
.contact-form-card .form-group textarea {
  background: var(--paper-mist);
  color: var(--steel-charcoal);
  border-color: rgba(0, 0, 0, 0.12);
}
.contact-form-card .form-group input::placeholder,
.contact-form-card .form-group textarea::placeholder {
  color: #999;
}
.contact-form-card .form-group input:focus,
.contact-form-card .form-group textarea:focus {
  border-color: var(--amethyst);
}
.contact-form-card h3 {
  color: var(--steel-charcoal);
}
.contact-info-block {
  margin-top: 32px;
}
.contact-info-block h3 {
  margin-bottom: 16px;
}
.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 18px;
}
.contact-info-item__icon {
  width: 40px;
  height: 40px;
  background: rgba(123, 86, 169, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--amethyst);
  font-size: 18px;
}
.contact-info-item__text {
  font-size: 15px;
}
.contact-info-item__text strong {
  display: block;
  margin-bottom: 2px;
}
.contact-right {
}
.contact-right img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  border: 3px solid var(--paper-white);
}
.faq-list {
  max-width: 780px;
  margin: 0 auto;
}
.faq-item {
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: var(--radius-sm);
  margin-bottom: 10px;
  overflow: hidden;
  background: #fff;
  transition: box-shadow var(--transition);
}
.faq-item:hover {
  box-shadow: var(--shadow-card);
}
.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 18px 22px;
  background: none;
  border: none;
  font-size: 16px;
  font-weight: 600;
  color: var(--steel-charcoal);
  cursor: pointer;
  text-align: left;
  font-family: var(--font-body);
  transition: color var(--transition);
}
.faq-question:hover {
  color: var(--amethyst);
}
.faq-question .icon {
  font-size: 20px;
  flex-shrink: 0;
  margin-left: 12px;
  transition: transform var(--transition);
  color: var(--amethyst);
}
.faq-item.active .faq-question .icon {
  transform: rotate(45deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.4s ease,
    padding 0.3s ease;
}
.faq-item.active .faq-answer {
  max-height: 600px;
}
.faq-answer__inner {
  padding: 0 22px 18px;
  color: #555;
  font-size: 15px;
  line-height: 1.7;
}
.faq-answer__inner a {
  color: var(--amethyst);
  font-weight: 600;
}
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
}
.value-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow-card);
  text-align: center;
  border: 1px solid rgba(0, 0, 0, 0.06);
  transition: all var(--transition);
}
.value-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.14);
}
.value-card__icon {
  font-size: 36px;
  margin-bottom: 14px;
  color: var(--amethyst);
}
.value-card h3 {
  margin-bottom: 10px;
}
.value-card p {
  color: #555;
  font-size: 15px;
}
.footer {
  background: var(--steel-shadow);
  color: var(--paper-mist);
  padding: 56px 0 0;
  border-top: 3px solid var(--amethyst);
}
.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 36px;
  margin-bottom: 36px;
}
.footer h2 {
  color: var(--amethyst-light);
  font-size: 16px;
  margin-bottom: 16px;
  font-family: var(--font-heading);
}
.footer p {
  color: rgba(251, 250, 246, 0.7);
  font-size: 14px;
  line-height: 1.7;
}
.footer a {
  color: rgba(251, 250, 246, 0.7);
  font-size: 14px;
  display: block;
  padding: 3px 0;
  transition: color var(--transition);
}
.footer a:hover {
  color: var(--amethyst-light);
}
.footer__bottom {
  border-top: 1px solid rgba(123, 86, 169, 0.15);
  padding: 20px 0;
  text-align: center;
  font-size: 13px;
  color: rgba(251, 250, 246, 0.5);
}
.sticky-quote {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 900;
  background: var(--amethyst);
  color: #fff;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(123, 86, 169, 0.45);
  transition: all var(--transition);
  border: none;
  display: flex;
  align-items: center;
  gap: 8px;
}
.sticky-quote:hover {
  background: var(--amethyst-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 28px rgba(123, 86, 169, 0.55);
}
.sticky-quote__icon {
  display: none;
}
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  z-index: 2000;
  justify-content: center;
  align-items: center;
  padding: 20px;
}
.modal-overlay.active {
  display: flex;
}
.modal {
  background: var(--steel);
  border-radius: var(--radius);
  padding: 36px 32px;
  max-width: 500px;
  width: 100%;
  position: relative;
  box-shadow: 0 12px 48px rgba(0, 0, 0, 0.4);
  border: 1px solid var(--border-subtle);
  max-height: 90svh;
  max-height: 90vh;
  overflow-y: auto;
}
.modal__close {
  position: absolute;
  top: 14px;
  right: 18px;
  background: none;
  border: none;
  color: var(--paper-mist);
  font-size: 28px;
  cursor: pointer;
  line-height: 1;
  transition: color var(--transition);
}
.modal__close:hover {
  color: var(--amethyst-light);
}
.modal .feedback-form-container {
  background: transparent;
  border: none;
  padding: 0;
  box-shadow: none;
}
.modal .form-group input,
.modal .form-group textarea {
  width: 100%;
  max-width: 100%;
  min-width: 0;
}
@media (max-width: 992px) {
  .hero .container {
    flex-direction: column;
    text-align: center;
  }
  .hero__content {
    flex: 1 1 100%;
  }
  .hero__btns {
    justify-content: center;
  }
  .hero__form {
    flex: 1 1 100%;
    max-width: 500px;
  }
  .about-row {
    flex-direction: column;
  }
  .about-row__img {
    flex: 1 1 100%;
    max-width: 100%;
  }
  .contact-layout {
    grid-template-columns: 1fr;
  }
  .nav {
    display: none;
  }
  .hamburger {
    display: block;
  }
  .mobile-nav {
    display: flex;
    right: -100%;
  }
}
@media (max-width: 768px) {
  .top-bar {
    display: none;
  }
  .header .container {
    padding: 0 4%;
    min-height: 60px;
  }
  .logo {
    font-size: 18px;
  }
  .hamburger {
    padding: 6px;
    flex-shrink: 0;
  }
  .hamburger span {
    width: 24px;
  }
  .services-grid {
    grid-template-columns: 1fr;
  }
  .areas-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .hero {
    min-height: 480px;
    padding: 40px 0;
  }
  h1 {
    font-size: 1.7rem;
  }
  .section {
    padding: 48px 0;
  }
}
@media (max-width: 576px) {
  .form-row {
    flex-direction: column;
    gap: 10px;
  }
  .header .container {
    gap: 8px;
  }
  .header .logo {
    white-space: normal;
    line-height: 1.1;
    max-width: calc(100% - 56px);
  }
  .mobile-nav {
    width: min(86vw, 420px);
  }
  .mobile-nav__header {
    align-items: flex-start;
    gap: 10px;
    padding: 16px;
  }
  .mobile-nav__header .logo {
    white-space: normal;
    line-height: 1.15;
    font-size: 18px;
    max-width: none;
    flex: 1 1 auto;
    min-width: 0;
  }
  .mobile-nav__close {
    font-size: 32px;
    padding: 0 4px;
    margin-top: -2px;
  }
  .areas-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .top-bar__address {
    display: none;
  }
  .sticky-quote {
    bottom: 12px;
    right: 12px;
    left: 12px;
    justify-content: center;
    border-radius: var(--radius);
  }
  .cta-block .btn {
    margin: 8px 0;
  }
}
