/* --- 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;
  box-sizing: border-box;
}
html { box-sizing: border-box; }
*, *:before, *:after {
  box-sizing: inherit;
}
body {
  line-height: 1.45;
  background: #181c24;
  color: #F8FAF9;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  min-height: 100vh;
  letter-spacing: .01em;
}
img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
  border-radius: 8px;
}
a {
  color: #A9C437;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover,
a:focus {
  color: #F8FAF9;
  outline: none;
}

/* --- VARIABLES (with fallback) --- */
:root {
  --color-primary: #2B547E;
  --color-secondary: #A9C437;
  --color-accent: #F8FAF9;
  --color-surface: #222834;
  --color-bg: #181c24;
  --color-text: #F8FAF9;
  --color-text-dark: #222834;
  --industrial-metal: #adb6be;
  --shadow-main: 0 4px 24px rgba(27,29,34,0.24);
  --radius-main: 12px;
}

/* --- TYPOGRAPHY --- */
@import url('https://fonts.googleapis.com/css?family=Montserrat:700,600,500,400&display=swap');
@import url('https://fonts.googleapis.com/css?family=Roboto:400,500,700&display=swap');

h1, h2, h3, h4 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  letter-spacing: .01em;
  color: #A9C437;
  margin-bottom: 24px;
  line-height: 1.14;
  text-shadow: 0 1px 0 #00000055;
}
h1 {
  font-size: 2.5rem;
  margin-bottom: 16px;
}
h2 {
  font-size: 2rem;
}
h3 {
  font-size: 1.25rem;
}
h4 {
  font-size: 1.1rem;
  color: var(--industrial-metal);
}
p, ul, ol, li {
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  color: #F8FAF9;
  font-size: 1rem;
  margin-bottom: 1.1em;
}
strong {
  font-weight: 700;
  color: #A9C437;
}
.subheadline {
  font-size: 1.15rem;
  color: var(--industrial-metal);
  margin-bottom: 24px;
  font-weight: 500;
}

/* --- GENERAL LAYOUT & CONTAINER --- */
.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin: 0 auto;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--color-surface);
  border-radius: var(--radius-main);
  box-shadow: var(--shadow-main);
}
main > section {
  background: none;
  box-shadow: none;
  border-radius: 0;
}

/* --- FLEX PATTERNS (NO GRID!) --- */
.features-grid, .benefits-grid, .service-highlights, .pricing-tables, .testimonials-grid,
.card-container, .card-grid, .content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  align-items: stretch;
}
.features-grid, .benefits-grid {
  gap: 24px;
}
.card-container, .card-grid, .content-grid {
  gap: 20px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: var(--color-surface);
  border-radius: var(--radius-main);
  box-shadow: var(--shadow-main);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-width: 260px;
  flex: 1 1 320px;
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 28px 24px 24px 24px;
}
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
.testimonials-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.testimonial-card {
  background: #F8FAF9;
  color: #222834;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  margin-bottom: 20px;
  border-radius: var(--radius-main);
  box-shadow: 0 2px 16px rgba(27,29,34,0.11);
  min-width: 260px;
  flex: 1 1 320px;
  border-left: 4px solid #A9C437;
  transition: box-shadow 0.19s;
}
.testimonial-card:hover { box-shadow: 0 6px 34px rgba(43,84,126,0.24); }
.testimonial-meta {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--color-primary);
  display: flex;
  gap: 14px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  padding: 12px 4px;
}

/* --- NAVIGATION HEADER --- */
header {
  background: #202532;
  box-shadow: 0 2px 18px rgba(27,29,34,0.16);
  padding: 0;
}
header .container {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  min-height: 80px;
  gap: 18px;
}
header img {
  max-height: 48px;
  margin-right: 24px;
}
nav.main-nav {
  display: flex;
  flex-direction: row;
  gap: 22px;
}
nav.main-nav a {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: #F8FAF9;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: .02em;
  padding: 6px 0;
  position: relative;
  transition: color 0.15s;
}
nav.main-nav a:not(.cta-primary):after {
  content: '';
  display: block;
  width: 0%;
  height: 2px;
  background: #A9C437;
  transition: width 0.19s cubic-bezier(.55,0,.1,1);
  margin-top: 2px;
}
nav.main-nav a:not(.cta-primary):hover:after { width: 50%; }
nav.main-nav a:hover:not(.cta-primary) { color: #A9C437; }
nav.main-nav .cta-primary {
  background: linear-gradient(94deg,#2B547E 70%, #A9C437 100%);
  color: #fff;
  padding: 9px 24px;
  border-radius: 26px;
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: .05em;
  box-shadow: 0 2px 10px rgba(169,196,55,0.05);
  margin-left: 12px;
  transition: background 0.17s, box-shadow 0.18s;
}
nav.main-nav .cta-primary:hover,
nav.main-nav .cta-primary:focus {
  background: #A9C437;
  color: #202532;
  box-shadow: 0 5px 28px #2B547E44;
}
.mobile-menu-toggle {
  display: none;
  background: #222834;
  border: none;
  color: #A9C437;
  font-size: 2rem;
  padding: 8px 14px;
  margin-left: 16px;
  border-radius: 8px;
  cursor: pointer;
  transition: box-shadow 0.17s, background 0.18s;
  z-index: 1001;
}
.mobile-menu-toggle:hover,
.mobile-menu-toggle:focus {
  background: #A9C437;
  color: #202532;
}

/* --- MOBILE NAV & OVERLAY --- */
.mobile-menu {
  position: fixed;
  top: 0; left: 0; bottom: 0; right: 0;
  background: #181c24ee;
  z-index: 1100;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  transform: translateX(-100%);
  transition: transform 0.38s cubic-bezier(.77,0,.18,1);
  width: 100vw;
  height: 100vh;
  padding: 0;
  overflow-y: auto;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: none;
  border: none;
  color: #A9C437;
  font-size: 2.1rem;
  padding: 18px 26px 12px 12px;
  align-self: flex-end;
  cursor: pointer;
  transition: color 0.19s;
  z-index: 1200;
}
.mobile-menu-close:hover { color: #fff; }
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 26px;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 18px 40px;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.2rem;
  color: #F8FAF9;
  padding: 10px 0;
  font-weight: 600;
  letter-spacing: .015em;
  transition: color 0.16s;
  border-radius: 0;
  min-width: 180px;
  display: block;
}
.mobile-nav a:hover {
  color: #A9C437;
}
.mobile-nav .cta-primary {
  color: #222834;
  background: #A9C437;
  border-radius: 22px;
  padding: 10px 28px;
  margin-top: 18px;
  font-size: 1.1rem;
  font-weight: 800;
  box-shadow: 0 3px 18px #2b547e24;
}

@media (max-width:1060px) {
  .main-nav {
    gap: 16px;
  }
}
@media (max-width: 900px) {
  header .container { flex-wrap: wrap; }
  .main-nav { flex-wrap: wrap; }
}
@media (max-width: 850px) {
  header .container { flex-direction: row; }
  nav.main-nav { display: none; }
  .mobile-menu-toggle { display: block; }
}

/* --- HERO / HEADLINES --- */
h1, h2, h3, h4 {
  text-shadow: 0 1px 0 #12161a99, 0 0 2px #0001;
}

/* --- BUTTONS / CTA --- */
.cta-primary, .btn {
  display: inline-block;
  background: #2B547E;
  color: #F8FAF9;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  border: none;
  border-radius: 24px;
  padding: 10px 30px;
  cursor: pointer;
  box-shadow: 0 2px 12px #22283422;
  font-size: 1.1rem;
  letter-spacing: .03em;
  margin-top: 12px;
  margin-right: 12px;
  transition: background 0.15s, color 0.14s, box-shadow 0.16s, transform 0.15s;
}
.cta-primary:hover, .cta-primary:focus,
.btn:hover, .btn:focus {
  background: #A9C437;
  color: #222834;
  box-shadow: 0 4px 20px #A9C43745;
  transform: translateY(-3px) scale(1.02);
}

/* --- FEATURES / BENEFITS / CARDS --- */
.feature, .benefit, .card {
  background: #222834;
  border-radius: var(--radius-main);
  box-shadow: var(--shadow-main);
  padding: 32px 22px 22px 22px;
  min-width: 220px;
  flex: 1 1 260px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
  border: 1.5px solid #363d46;
  position: relative;
  transition: box-shadow 0.17s, border-color 0.18s;
}
.feature:hover,
.benefit:hover,
.card:hover {
  box-shadow: 0 6px 34px #2B547E29;
  border-color: #A9C437;
}
.feature img, .benefit img {
  max-width: 54px;
  margin-bottom: 10px;
  filter: grayscale(55%) brightness(1.18) contrast(1.22);
}

/* --- SERVICES / FAQ / LISTS --- */
.services-list,
.usp-list,
.grooming-services-list,
.explanatory-notes ul,
.faq-accordion,
.legal-text ul {
  list-style: none;
  margin: 0 0 24px 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.services-list li, .usp-list li, .grooming-services-list li, .faq-item, .legal-text ul li {
  position: relative;
  background: #1e232f;
  border-radius: 7px;
  padding: 14px 18px 14px 18px;
  color: #F8FAF9;
  font-size: 1rem;
  margin-bottom: 2px;
  box-shadow: 0 1px 4px #1C213022;
  border-left: 4px solid #A9C43722;
}
.services-list li strong, .usp-list li strong, .grooming-services-list li strong {
  color: #A9C437;
}

.faq-item h3 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.16rem;
  color: #A9C437;
  margin-bottom: 7px;
}
.faq-item p {
  margin-bottom: 0;
}

/* FAQ Accordion anim/gaps */
.faq-accordion { gap: 20px; }

.contact-for-more {
  margin-top: 18px;
  background: #2B547E;
  color: #fff;
  padding: 18px 22px;
  border-radius: 10px;
  font-size: 1.02rem;
}
.contact-for-more a {
  color: #A9C437;
  text-decoration: underline;
}

/* --- PRICING TABLES --- */
.pricing-tables {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
  margin-bottom: 28px;
}
.pricing-tables table {
  background: #222834;
  border-radius: 14px;
  color: #F8FAF9;
  box-shadow: 0 2px 18px rgba(43,84,126,0.18);
  padding: 0;
  border-spacing: 0;
  min-width: 260px;
  width: 100%;
  max-width: 370px;
  margin: 0;
  overflow: hidden;
  font-size: 1rem;
}
.pricing-tables caption {
  font-family: 'Montserrat', Arial, sans-serif;
  padding: 18px 0 6px 0;
  color: #A9C437;
  font-size: 1.2rem;
  font-weight: 700;
}
.pricing-tables th, .pricing-tables td {
  padding: 12px 14px;
  border-bottom: 1px solid #202532;
  text-align: left;
}
.pricing-tables th {
  background: #232b3e;
  color: #A9C437;
  font-weight: 800;
  font-size: 1.02rem;
}
.pricing-tables tbody tr:last-child td {
  border-bottom: none;
}

/* --- CONTACT SHORT --- */
.contact-short {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  font-family: 'Montserrat', Arial, sans-serif;
  background: #222834;
  padding: 11px 20px;
  border-radius: 10px;
  font-size: 1rem;
  margin-top: 16px;
  margin-bottom: 0;
}
.contact-short img {
  width: 22px;
  margin-right: 6px;
}
.contact-short a {
  color: #A9C437;
  font-weight: 600;
  font-size: 1.04rem;
  margin-right: 18px;
}
.contact-short a:hover {
  color: #F8FAF9;
}

/* --- FOOTER --- */
footer {
  background: #181c24;
  color: #adb6be;
  padding: 48px 0 16px 0;
  margin-top: 90px;
}
footer .container {
  display: flex;
  flex-direction: column;
  gap: 30px;
  align-items: flex-start;
}
.footer-menu {
  display: flex;
  flex-direction: row;
  gap: 22px;
  margin-bottom: 8px;
  font-size: 1rem;
}
.footer-menu a {
  color: #A9C437;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
}
.footer-menu a:hover {
  color: #F8FAF9;
}
.legal-disclaimer {
  margin-top: 8px;
  font-size: 0.97rem;
  color: #879bae;
}
.contact-short span {
  color: #A9C437;
}

/* ---- CONTACT PAGE INFO BOXES ---- */
.contact-info {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 26px;
  margin-bottom: 14px;
  align-items: flex-start;
  background: #222834;
  border-radius: 13px;
  padding: 22px 19px;
}
.contact-info > div {
  flex: 1 1 180px;
  min-width: 175px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1rem;
  color: #F8FAF9;
}
.contact-info img {
  width: 28px;
}
.address-details,
.opening-hours,
.phone-number,
.email-address { color: #F8FAF9; }

/* --- MAP EMBED --- */
.map-embed {
  background: #202532;
  color: #A9C437;
  border-radius: 11px;
  padding: 20px 16px;
  font-size: 1.06rem;
}

/* --- SECTION SPACING & LAYOUT MANDATORY --- */
.section { margin-bottom: 60px; padding: 40px 20px; }
.card-container { display: flex; flex-wrap: wrap; gap: 24px; }
.card { margin-bottom: 20px; position: relative; }
.content-grid { display: flex; flex-wrap: wrap; gap: 20px; justify-content: space-between; }
.text-image-section { display: flex; align-items: center; gap: 30px; flex-wrap: wrap; }
.testimonial-card { display: flex; align-items: center; gap: 20px; padding: 20px; }
.feature-item { display: flex; flex-direction: column; align-items: flex-start; gap: 15px; }

/* --- RESPONSIVE DESIGN (MOBILE FIRST) --- */
@media (max-width: 768px) {
  .container {
    max-width: 100vw;
    padding: 0 10px;
  }
  .section {
    margin-bottom: 38px;
    padding: 28px 7px;
  }
  .features-grid,
  .benefits-grid,
  .testimonials-grid,
  .card-container,
  .pricing-tables,
  .content-grid,
  .service-highlights {
    flex-direction: column;
    gap: 18px;
  }
  .testimonial-card, .feature, .benefit, .card {
    min-width: 0;
    width: 100%;
    flex: 1 1 100%;
  }
  .contact-info {
    flex-direction: column;
    gap: 14px;
  }
  .footer-menu {
    flex-direction: column;
    gap: 9px;
  }
  header .container {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 7px;
    min-height: 66px;
  }
  .content-wrapper {
    gap: 18px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
  }
}

/* --- TABLET --- */
@media (max-width: 1150px) {
  .container { max-width: 960px; }
}
@media (max-width:960px) {
  .container, footer .container { max-width: 750px; }
}

/* --- LEGAL PAGE STYLES --- */
.legal-text {
  background: #212834;
  color: #F8FAF9;
  padding: 24px 16px;
  border-radius: 13px;
  font-size: 1.07rem;
  box-shadow: 0 2px 14px #2B547E12;
}
.legal-text h2, .legal-text h3 {
  color: #A9C437;
  margin-bottom: 14px;
  margin-top: 22px;
  font-size: 1.25rem;
}
.legal-text ul { gap: 12px; }
.legal-text ul li {
  padding-left: 14px;
  background: transparent;
  border: none;
  color: #F8FAF9;
}

/* --- ANIMATIONS / TRANSITIONS / HOVERS --- */
section, .card, .cta-primary, .feature, .testimonial-card, .btn {
  transition: box-shadow 0.18s cubic-bezier(.48,0,.36,.98), border-color 0.19s, background 0.13s, color 0.16s;
}
.card:hover, .feature:hover, .benefit:hover {
  box-shadow: 0 10px 38px #A9C43731, 0 2px 14px #2B547E33;
  z-index: 2;
}
.cta-primary:active, .btn:active {
  transform: translateY(1px) scale(0.98);
  box-shadow: 0 2px 10px #2B547E42;
}
input, button, textarea, select {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
}

/* --- CERTIFICATIONS ROW, CUSTOMER CARE --- */
.certifications {
  display: flex;
  align-items: center;
  gap: 16px;
  font-family: 'Montserrat', Arial, sans-serif;
  margin-top: 15px;
  color: #A9C437;
}
.certifications img {
  width: 40px;
}
.customer-care {
  background: #1a1e25;
  color: #F8FAF9;
  font-size: 1.06rem;
  padding: 18px 20px;
  margin-top: 22px;
  border-radius: 10px;
  box-shadow: 0 1px 6px #2B547E19;
}

/* --- COOKIE CONSENT BANNER --- */
.cookie-consent-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  width: 100vw;
  background: #232b3e;
  color: #F8FAF9;
  box-shadow: 0 -6px 24px #2B547E29;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 20px;
  padding: 18px 30px;
  z-index: 2000;
  font-size: 1rem;
  border-top: 4px solid #A9C437;
  animation: cookieAppear 0.45s cubic-bezier(.42,0,.27,1);
}
@keyframes cookieAppear {
  0% {transform: translateY(60px); opacity: 0;}
  100% {transform: none; opacity: 1;}
}
.cookie-consent-banner .btn {
  margin: 0 9px 0 0;
  padding: 11px 22px;
  border-radius: 20px;
  border: none;
  font-weight: 700;
  background: #A9C437;
  color: #1A1E25;
  box-shadow: 0 2px 6px #2B547E18;
  transition: background 0.13s, color 0.12s;
  cursor: pointer;
}
.cookie-consent-banner .btn.settings {
  background: #2B547E;
  color: #F8FAF9;
}
.cookie-consent-banner .btn.accept:hover { background: #7ba423; }
.cookie-consent-banner .btn.reject {
  background: #232b3e;
  color: #A9C437;
  border: 1.5px solid #A9C437;
}
.cookie-consent-banner .btn.reject:hover { background: #A9C437; color: #232b3e; }

@media (max-width: 600px) {
  .cookie-consent-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    padding: 16px 7px 18px 10px;
    font-size: 0.97rem;
  }
  .cookie-consent-banner .btn {
    margin-right: 7px;
    margin-top: 7px;
  }
}

/* --- COOKIE SETTINGS MODAL --- */
.cookie-modal {
  position: fixed;
  left: 0; top: 0; right: 0; bottom: 0;
  z-index: 2100;
  background: rgba(20,24,32,0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: modalShow 0.3s ease;
}
@keyframes modalShow {
  from { opacity: 0; }
  to { opacity: 1; }
}
.cookie-modal-content {
  background: #232b3e;
  color: #F8FAF9;
  padding: 36px 36px 26px 36px;
  border-radius: 20px;
  box-shadow: 0 6px 40px #181c24a9;
  min-width: 320px;
  max-width: 96vw;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 24px;
  font-size: 1.05rem;
}
.cookie-modal-content h2 {
  color: #A9C437;
  font-size: 1.3rem;
  font-family: 'Montserrat', Arial, sans-serif;
  margin-bottom: 12px;
}
.cookie-modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  background: none;
  border: none;
  color: #A9C437;
  font-size: 2rem;
  cursor: pointer;
  transition: color 0.18s;
  z-index: 2150;
}
.cookie-modal-close:hover { color: #fff;}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 8px;
}
.cookie-category {
  background: #181c24;
  border: 1px solid #2B547E;
  border-radius: 12px;
  padding: 16px;
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: 1rem;
}
.cookie-category label {
  font-weight: 700;
  color: #A9C437;
  font-family: 'Montserrat', Arial, sans-serif;
}
.cookie-category input[type="checkbox"] {
  accent-color: #A9C437;
  width: 20px;
  height: 20px;
}
.cookie-category.essential label { color: #A9C437; }
.cookie-category.essential input {
  accent-color: #A9C437;
  cursor: not-allowed;
}
.cookie-category.essential input:disabled {
  background: #e8eed4;
}
.cookie-modal-actions {
  display: flex;
  gap: 14px;
  margin-top: 20px;
  justify-content: flex-end;
}
.cookie-modal-actions .btn {
  padding: 11px 24px;
}

/* --- SCROLLBAR Styling --- */
::-webkit-scrollbar { width: 10px; background: #212834; }
::-webkit-scrollbar-thumb { background: #2B547Ebb; border-radius: 8px; }
::-webkit-scrollbar-thumb:hover { background: #A9C437cc; }

/* --- MICROINTERACTIONS / EFFECTS --- */
.feature, .benefit, .card, .testimonial-card {
  position: relative;
  overflow: hidden;
}
.feature:after, .benefit:after, .testimonial-card:after, .card:after {
  content: '';
  position: absolute;
  right: 0; top: 0;
  width: 8px; height: 100%;
  background: linear-gradient(#A9C43733 60%, #2B547E44 100%);
  opacity: 0.62;
  pointer-events: none;
  z-index: 1;
  border-radius: 0 var(--radius-main) var(--radius-main) 0;
}

/* --- GALLERY SERVICE-HIGHLIGHTS --- */
.service-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 18px;
}
.service-description {
  background: #212834;
  border-radius: 11px;
  padding: 22px 18px;
  color: #F8FAF9;
  min-width: 230px;
  flex: 1 1 240px;
  box-shadow: 0 1px 7px #2B547E1a;
  margin-bottom: 0;
}

/* --- MISC --- */
::-moz-selection { background: #A9C437; color: #222834; }
::selection { background: #A9C437; color: #222834; }

input, textarea, select {
  background: #212834;
  color: #F8FAF9;
  border: 1.5px solid #2B547E;
  border-radius: 8px;
  padding: 12px 13px;
  outline: none;
  box-shadow: none;
  font-size: 1rem;
  transition: border-color 0.16s, background 0.13s;
}
input:focus, textarea:focus, select:focus {
  border-color: #A9C437;
  background: #232b3e;
}

/* Accessibility improvement for contrast on white/testimonial bg */
.testimonial-card p, .testimonial-card span {
  color: #222834 !important;
  text-shadow: none;
}

/* For ensuring all elements have at least 20px margin between them */
.card, .feature, .benefit, .testimonial-card, .service-description, .faq-item, .legal-text {
  margin-bottom: 20px;
}

/* Preventing content overlapping */
.card, .feature, .benefit, .testimonial-card, .service-description, .faq-item, .legal-text, .section, .content-wrapper, .container {
  min-width: 0;
  min-height: 0;
}


/* --- END OF CSS --- */
