/* ============================
   NEATLOOM IMMOBILIEN: LUXURY PREMIUM CSS
   =============================
   
   CSS Reset, brand palette, typography, buttons, navigation, hero, cards,
   testimonials, cookie consent, mobile menu, spacing/layout (flexbox only).
   Mobile-first, responsive, no CSS grid/columns, luxury aesthetic.
   
   --- CSS RESET & NORMALIZE ---
*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0; padding: 0; border: 0; font-size: 100%; font: inherit; vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1.6;
  background: #fff;
  color: #2A3849;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  font-size: 16px;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}
*, *:before, *:after {
  box-sizing: border-box;
}
img, svg {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: #2A3849;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #BFA173;
  outline: none;
}
ul, ol {
  margin-left: 24px;
}

/* --- BRAND COLORS --- */
:root {
  --color-primary: #2A3849;
  --color-secondary: #BFA173;
  --color-accent: #EDEDED;
  --color-dark: #1c2430;
  --color-light: #fff;
  --color-text: #2A3849;
  --color-gold: #BFA173;
  --color-border: #e3dbcb;
  --color-shadow: rgba(42,56,73,0.09);
}

/* --- TYPOGRAPHY --- */

@import url('https://fonts.googleapis.com/css?family=Montserrat:400,600,700&display=swap');
@import url('https://fonts.googleapis.com/css?family=Open+Sans:400,600,700&display=swap');

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: var(--color-primary);
  font-weight: 700;
  line-height: 1.18;
  letter-spacing: 0.01em;
}
h1 {
  font-size: 2.5rem;
  margin-bottom: 28px;
}
h2 {
  font-size: 2rem;
  margin-bottom: 24px;
}
h3 {
  font-size: 1.25rem;
  margin-bottom: 14px;
  font-weight: 600;
}
h4 {
  font-size: 1.05rem;
  margin-bottom: 10px;
  font-weight: 500;
}
p, li, address {
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  color: var(--color-text);
  margin-bottom: 12px;
}
strong {
  font-weight: 700;
  color: var(--color-primary);
}

/* Luxury Accent Line under Headings */
h1, h2, h3 {
  position: relative;
}
h1:after, h2:after, h3:after {
  content: '';
  display: block;
  margin-top: 12px;
  width: 46px;
  height: 3px;
  border-radius: 2px;
  background: var(--color-gold);
  opacity: 0.5;
}

h3:after { height: 2px; width: 28px; }

/* --- GLOBAL CONTAINER --- */
.container {
  width: 100%;
  max-width: 1200px;
  padding-left: 20px;
  padding-right: 20px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  flex-direction: column;
}

.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin: 0 auto;
}

/* --- SECTION SPACING --- */
section {
  margin-bottom: 60px;
  padding: 40px 0 0 0;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

/* --- FLEXBOX PATTERNS & UTILITIES --- */
.card-container,
.property-previews,
.feature-grid,
.service-highlights,
.team-overview,
.blog-teasers,
.service-list,
.valuation-teaser,
.relocation-assistance,
.content-grid,
.blog-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card,
.property-previews > div,
.feature-grid > div,
.service-highlights > div,
.team-overview > div,
.service-list > div,
.blog-teasers > div,
.blog-list > article {
  background: var(--color-light);
  border-radius: 18px;
  box-shadow: 0 2px 12px var(--color-shadow);
  border: 1px solid var(--color-border);
  padding: 28px 22px;
  margin-bottom: 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: box-shadow 0.25s, transform 0.18s;
}
.card:hover,
.property-previews > div:hover,
.feature-grid > div:hover,
.service-list > div:hover,
.blog-teasers > div:hover,
.team-overview > div:hover {
  box-shadow: 0 6px 20px rgba(42,56,73,0.18), 0 0 0 3px var(--color-gold) inset;
  transform: translateY(-3px) scale(1.015);
}

.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}

.text-image-section,
.text-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.text-section { flex-direction: column; align-items: flex-start; }

.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 28px 28px 22px 28px;
  background: var(--color-accent);
  border-left: 6px solid var(--color-gold);
  border-radius: 14px;
  margin-bottom: 20px;
  box-shadow: 0 2px 12px var(--color-shadow);
  transition: box-shadow 0.18s, border-color 0.18s;
}
.testimonial-card:hover {
  box-shadow: 0 4px 20px rgba(42,56,73,0.20);
  border-color: var(--color-primary);
}
.testimonial-card p {
  color: #23211a;
  font-size: 1.1rem;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  margin-bottom: 10px;
}
.testimonial-card strong {
  color: var(--color-primary);
}
.testimonial-card span {
  color: var(--color-gold);
  font-size: 1.25rem;
}

.blog-sidebar {
  background: var(--color-accent);
  border-radius: 14px;
  box-shadow: 0 2px 8px var(--color-shadow);
  padding: 32px 20px;
  min-width: 240px;
  max-width: 340px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  margin-left: 32px;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

.trust-banner, .trust-signals {
  margin: 22px 0 6px 0;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 24px;
  padding-top: 10px;
}
.trust-signals img {
  width: 38px;
  height: 38px;
  filter: grayscale(0.15) brightness(1.1) drop-shadow(0 1px 1px #00000011);
}

/* --- HEADER & NAVIGATION --- */
header {
  background: var(--color-light);
  box-shadow: 0px 1px 8px var(--color-shadow);
  padding: 0;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  min-height: 78px;
  gap: 18px;
}
.logo img {
  height: 38px;
  transition: filter 0.15s;
}
.logo:hover img { filter: brightness(1.12) saturate(1.3); }
.main-nav {
  display: flex;
  flex-direction: row;
  gap: 28px;
  align-items: center;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
}
.main-nav a {
  font-size: 1.025rem;
  color: var(--color-primary);
  padding: 8px 0;
  border-bottom: 2px solid transparent;
  transition: color 0.2s, border-color 0.2s;
}
.main-nav a:hover, .main-nav a:focus {
  color: var(--color-gold);
  border-bottom: 2px solid var(--color-gold);
}
.btn-primary {
  background: var(--color-gold);
  color: var(--color-dark);
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  padding: 11px 32px;
  border: none;
  border-radius: 40px;
  letter-spacing: 0.04em;
  font-size: 1.12rem;
  box-shadow: 0 1px 9px 0 var(--color-shadow);
  transition: background 0.20s, color 0.18s, box-shadow 0.18s, transform 0.07s;
  cursor: pointer;
  outline: none;
  margin-left: 18px;
  display: inline-block;
}
.btn-primary:hover, .btn-primary:focus {
  background: #927742;
  color: #fff;
  box-shadow: 0 3px 18px 0px #BFA17366;
  transform: translateY(-2px) scale(1.04);
}

.btn-secondary {
  background: var(--color-primary);
  color: #fff;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 600;
  border-radius: 40px;
  padding: 11px 28px;
  border: none;
  font-size: 1rem;
  margin-right: 16px;
  transition: background 0.18s, color 0.18s, box-shadow 0.12s;
  box-shadow: 0 1px 6px var(--color-shadow);
}
.btn-secondary:hover, .btn-secondary:focus {
  background: var(--color-gold);
  color: var(--color-dark);
}

/* --- MOBILE BURGER MENU --- */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 2.2rem;
  color: var(--color-gold);
  padding: 8px 11px 5px 11px;
  border-radius: 7px;
  cursor: pointer;
  transition: background 0.18s;
  z-index: 11802;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: #fff5ed;
  outline: 2px solid var(--color-gold);
}

.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: 11801;
  background: rgba(42,56,73,0.95);
  transform: translateX(-100vw);
  transition: transform 0.34s cubic-bezier(.83,0,.13,1);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  width: 100vw;
  height: 100vh;
  padding: 0;
  opacity: 1;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  position: absolute;
  top: 26px;
  right: 26px;
  font-size: 2.3rem;
  background: none;
  color: #fff;
  border: none;
  z-index: 11803;
  cursor: pointer;
  padding: 10px;
  border-radius: 50%;
  transition: background 0.15s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: var(--color-gold);
  color: var(--color-dark);
}
.mobile-nav {
  margin-top: 60px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  padding-left: 32px;
}
.mobile-nav a {
  color: #fff;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.42rem;
  font-weight: 600;
  padding: 12px 0 8px 0;
  letter-spacing: 0.03em;
  border-bottom: 1.5px solid transparent;
  transition: border-color 0.2s, color 0.2s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: var(--color-gold);
  border-bottom: 1.5px solid var(--color-gold);
}

/* --- HERO SECTION --- */
.hero {
  background: linear-gradient(108deg, #edeae4 65%, #fff 100%);
  padding: 64px 0 40px 0;
  margin-bottom: 60px;
  border-bottom: 1px solid var(--color-accent);
}
.hero .content-wrapper {
  align-items: flex-start;
  gap: 24px;
  max-width: 800px;
}
.hero h1 {
  font-size: 2.6rem;
  margin-bottom: 12px;
  color: var(--color-primary);
  font-weight: 700;
}
.hero p {
  font-size: 1.21rem;
  color: var(--color-primary);
  margin-bottom: 15px;
  line-height: 1.5;
}

/* --- FEATURE GRID / PREVIEWS --- */
.feature-grid > div, .service-highlights > div, .property-previews > div, .blog-teasers > div {
  flex: 1 1 280px;
  min-width: 245px;
  border-radius: 16px;
  padding: 34px 20px 28px 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  box-shadow: 0 1px 10px var(--color-shadow);
  border: 1.1px solid var(--color-border);
  background: #fff;
  margin-bottom: 20px;
  transition: box-shadow 0.18s, border-color 0.18s;
}
.feature-grid > div img, .service-list > div img {
  height: 48px;
  margin-bottom: 16px;
  filter: brightness(0.96) saturate(1.15) drop-shadow(0 1px 1px #00000011);
}
.property-previews > div h3, .feature-grid > div h3, .service-highlights > div h3 {
  margin-bottom: 10px;
  font-size: 1.14rem;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 600;
}
.property-previews > div ul, .feature-grid > div ul {
  margin-bottom: 12px;
  margin-left: 18px;
}

/* --- VARIOUS BUTTONS & LINKS --- */
a.btn-primary, button.btn-primary {
  text-align: center;
  display: inline-block;
  text-decoration: none;
}

/* --- CTA / BANNERS --- */
.contact-cta, .faq-cta, .review-cta {
  background: linear-gradient(92deg, #EDEDED, #fff);
  border-top: 1px solid var(--color-accent);
  border-bottom: 1px solid var(--color-accent);
  padding: 30px 0 48px 0;
}
.contact-info-short, .confirmation-message {
  display: flex;
  flex-direction: column;
  gap: 22px;
  align-items: flex-start;
}
.contact-info-short h2 { margin-bottom: 5px; }
.contact-info-short a { margin-top: 0; }

.confirmation-message {
  background: #fff;
  border-radius: 14px;
  padding: 36px 24px;
  border: 1px solid var(--color-border);
  box-shadow: 0 1px 7px var(--color-shadow);
  gap: 16px;
}

/* --- BLOG SIDEBAR & BLOG LIST --- */
.blog-list {
  flex: 2 1 430px;
  flex-direction: column;
  gap: 32px;
  margin-bottom: 28px;
}
.blog-list article {
  background: #fff;
  border-radius: 14px;
  border: 1.1px solid var(--color-border);
  box-shadow: 0 1px 6px var(--color-shadow);
  padding: 32px 30px;
  display: flex;
  flex-direction: column;
  gap: 13px;
}

/* --- SIDEBAR ASIDE --- */
.blog-sidebar ul {
  padding-left: 14px;
}

/* --- FOOTER --- */
footer {
  background: var(--color-primary);
  color: #fff;
  padding: 40px 0 0 0;
  border-top: 5px solid var(--color-gold);
  margin-top: 60px;
  font-size: 1rem;
}
footer .container {
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
  gap: 22px;
}
.logo-footer img {
  height: 42px;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-nav a {
  color: #fff;
  font-size: 1rem;
  margin: 0;
  padding: 0;
  border-bottom: 1px solid transparent;
  transition: color 0.18s, border-color 0.19s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: var(--color-gold);
  border-bottom: 1px solid var(--color-gold);
}
.footer-contact {
  font-size: 0.98rem;
  color: #e5e8ef;
  line-height: 1.45;
}
footer a {
  color: var(--color-gold);
  text-decoration: underline;
}
footer a:hover, footer a:focus {
  color: #fffde6;
  text-decoration: none;
}

/* --- FORM STYLES --- */
input, select, button, textarea {
  font-family: inherit;
  font-size: 1rem;
  color: var(--color-primary);
}
input[type="text"], select, textarea {
  width: 100%;
  border: 1.2px solid var(--color-border);
  border-radius: 8px;
  padding: 13px 14px;
  background: var(--color-accent);
  margin-bottom: 14px;
  box-sizing: border-box;
  transition: border-color 0.15s, box-shadow 0.13s;
}
input[type="text"]:focus, select:focus, textarea:focus {
  border-color: var(--color-gold);
  box-shadow: 0 0 0 2.2px #BFA17344;
  outline: none;
}
.property-search-form {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 20px;
  align-items: flex-end;
}
.property-search-form > div {
  flex: 1 1 140px;
  min-width: 120px;
}
.property-categories {
  margin-top: 0;
  color: var(--color-primary);
  font-size: 0.99rem;
  padding: 8px 0;
}

/* --- COLORED BANNERS, CALL TABLES --- */
.valuation-teaser, .relocation-assistance {
  background: var(--color-accent);
  border-radius: 14px;
  box-shadow: 0 1px 8px var(--color-shadow);
  padding: 24px 20px;
  margin-top: 24px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
}
.valuation-teaser strong {
  color: var(--color-primary);
}

/* --- ICONS IN CONTACT & ELSEWHERE --- */
.contact-info p, .contact-info-short p {
  display: flex;
  align-items: center;
  gap: 12px;
}
.contact-info img {
  height: 22px;
  width: 22px;
  filter: brightness(0.85) saturate(1.11);
}

/* --- MISC --- */
blockquote {
  margin: 0 0 18px 0;
  font-size: 1.12rem;
  font-style: italic;
  color: var(--color-primary);
  border-left: 4px solid var(--color-gold);
  padding-left: 14px;
  background: #edeae4;
  border-radius: 0 7px 7px 0;
}
address {
  color: var(--color-primary);
  font-style: normal;
  font-size: 1rem;
}

/* --- TESTIMONIAL LIST PAGE --- */
.testimonial-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.testimonial-list .testimonial-card {
  min-width: 240px;
  flex: 1 1 330px;
  margin-bottom: 20px;
}

/* --- RESPONSIVE LAYOUT --- */
@media (max-width: 980px) {
  .container, footer .container {
    max-width: 960px;
    padding-left: 12px; padding-right: 12px;
  }
  .main-nav {
    gap: 18px;
  }
  .card-container, .property-previews, .feature-grid, .service-highlights, .service-list, .team-overview {
    gap: 18px;
  }
}
@media (max-width: 860px) {
  .main-nav { display: none; }
  .mobile-menu-toggle {
    display: inline-block;
  }
  .btn-primary {
    margin-left: 0;
  }
  header .container {
    gap: 12px;
  }
  footer .container {
    flex-direction: column;
    align-items: flex-start;
    gap: 25px;
  }
  .blog-sidebar {
    max-width: 100%;
    margin-left: 0;
    margin-top: 18px;
  }
}
@media (max-width: 768px) {
  h1 { font-size: 2.15rem; }
  h2 { font-size: 1.49rem; }
  section, .section { padding-left: 6px; padding-right: 6px; }
  .property-search-form {
    flex-direction: column;
    align-items: stretch;
    gap: 6px;
  }
  .feature-grid,
  .card-container,
  .team-overview,
  .service-highlights,
  .service-list,
  .property-previews,
  .testimonial-list,
  .blog-list {
    flex-direction: column;
    gap: 14px;
  }
  .property-previews > div, .feature-grid > div, .service-highlights > div, .service-list > div, .team-overview > div, .blog-list > article {
    min-width: unset;
  }
  .content-grid { flex-direction: column; gap: 14px; }
  .text-image-section { flex-direction: column; gap: 15px; }
  .blog-sidebar {
    min-width: 0;
    max-width: 100%;
    margin: 0 0 12px 0;
    padding: 22px 10px;
  }
}

@media (max-width: 600px) {
  html, body { font-size: 15px; }
  .container {
    max-width: 100vw;
    padding-left: 0;
    padding-right: 0;
  }
  section, .section {
    padding-left: 0;
    padding-right: 0;
    padding-top: 28px;
  }
  header .container { min-height: 64px; }
  .logo img, .logo-footer img { height: 34px; }
  .testimonial-card, .confirmation-message {
    padding: 20px 10px 18px 10px;
  }
  .hero {
    padding: 32px 0 22px 0;
    margin-bottom: 28px;
  }
  .blog-sidebar { padding: 14px 4px; }
}

/* --- COOKIE CONSENT BANNER / MODAL --- */
.cookie-consent-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 12010;
  width: 100vw;
  background: rgba(255,255,255,0.96);
  box-shadow: 0 -2px 18px 0 #90765115;
  border-top: 3px solid var(--color-gold);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 22px 12px 18px 12px;
  font-size: 1rem;
  animation: banner-in 0.55s cubic-bezier(.83,0,.14,1);
}
@keyframes banner-in {
  0% { transform: translateY(100%); opacity: 0; }
  100% { transform: translateY(0); opacity: 1; }
}
.cookie-consent-banner p {
  color: var(--color-text);
  font-size: 1rem;
  max-width: 720px;
  text-align: center;
}
.cookie-consent-banner .cookie-btns {
  display: flex;
  flex-direction: row;
  gap: 14px;
  margin-top: 4px;
  flex-wrap: wrap;
}
.cookie-btns .btn-primary,
.cookie-btns .btn-secondary {
  min-width: 100px;
  font-size: 0.97rem;
  padding: 10px 18px;
}
.cookie-btns .btn-reject {
  background: #fff;
  border: 1.4px solid var(--color-gold);
  color: var(--color-gold);
  border-radius: 32px;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 600;
  transition: background 0.22s, color 0.18s, border 0.18s;
}
.cookie-btns .btn-reject:hover, .cookie-btns .btn-reject:focus {
  background: #f5eadc;
  color: var(--color-dark);
  border-color: var(--color-primary);
}

.cookie-settings-modal {
  z-index: 12090;
  position: fixed;
  left: 0; right: 0; top: 0; bottom: 0;
  background: rgba(42, 56, 73, 0.67);
  display: none; /* .open toggles display */
  align-items: center;
  justify-content: center;
  transition: opacity 0.25s;
}
.cookie-settings-modal.open {
  display: flex;
  animation: modal-in 0.33s cubic-bezier(.88,0,.21,1) both;
}
@keyframes modal-in {
  0% { opacity: 0; }
  100% { opacity: 1; }
}
.cookie-settings-box {
  background: #fff;
  min-width: 340px;
  max-width: 98vw;
  padding: 40px 28px 26px 28px;
  border-radius: 22px;
  box-shadow: 0 4px 32px rgba(42,56,73,0.16);
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 18px;
  font-size: 1.06rem;
}
.cookie-settings-box h3 {
  color: var(--color-primary);
  font-size: 1.16rem;
  margin-bottom: 4px;
  margin-top: 0;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
}
.cookie-settings-close {
  position: absolute;
  top: 19px; right: 18px;
  background: none;
  border: none;
  font-size: 1.75rem;
  color: var(--color-primary);
  cursor: pointer;
  border-radius: 50%;
  padding: 7px;
}
.cookie-settings-close:hover, .cookie-settings-close:focus {
  background: #f0ece6;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 8px;
}
.cookie-category input[type=checkbox] {
  accent-color: var(--color-gold);
  width: 20px; height: 20px;
}
.cookie-category input[type=checkbox][disabled] {
  filter: grayscale(1) opacity(0.7);
}
@media (max-width: 480px) {
  .cookie-settings-box {
    padding: 14px 4px 14px 4px;
    min-width: 0;
  }
}

/* Hide banner/modal transitions on print */
@media print {
  .cookie-consent-banner, .cookie-settings-modal { display: none !important; }
}

/* --- SMOOTH ANIMATIONS & TRANSITIONS --- */
.btn-primary, .btn-secondary, .footer-nav a, .main-nav a, .mobile-menu-toggle,
.card, .feature-grid > div, .service-list > div, .testimonial-card {
  transition: box-shadow 0.18s, border-color 0.18s, transform 0.14s, color 0.19s, background 0.14s, filter 0.13s;
}
