/* ---- 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;
}
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
  display: block;
}
body { line-height: 1; }
ol, ul { list-style: none; }
a { text-decoration: none; color: inherit; }
img { border-style: none; max-width: 100%; display: block; }
button { background: none; border: none; cursor: pointer; font-family: inherit; }
input, textarea, select { font-family: inherit; font-size: 1rem; }

/* ---- INDUSTRIAL MODERN ROOT & BRAND COLORS ---- */
:root {
  --primary: #174098;
  --secondary: #2e3440;
  --accent: #1EBE71;
  --background: #191c21;
  --background-alt: #23272E;
  --foreground: #F2F2F2;
  --surface: #252930;
  --border: #373B41;
  --metallic: #b0b4ba;
  --card: #1F232A;
  --success: #1EBE71;
  --danger: #D84D4D;
  --warning: #FFC857;
  --shadow: rgba(0,0,0,0.22);
  --font-display: 'Montserrat', Arial, Helvetica, sans-serif;
  --font-body: 'Open Sans', Arial, Helvetica, sans-serif;
}

/* ---- GLOBAL STYLES ---- */
html {
  color-scheme: dark;
  scroll-behavior: smooth;
}
body {
  background: var(--background);
  color: var(--foreground);
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 400;
  min-height: 100vh;
  letter-spacing: 0.01em;
  -webkit-font-smoothing: antialiased;
}
.container {
  width: 100%;
  max-width: 1240px;
  padding: 0 20px;
  margin: 0 auto;
  box-sizing: border-box;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* ---- TYPOGRAPHY HIERARCHY ---- */
h1, .h1 {
  font-family: var(--font-display);
  font-size: 2.75rem;
  font-weight: 700;
  color: var(--foreground);
  letter-spacing: 0.02em;
  margin-bottom: 12px;
}
h2, .h2 {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 12px;
}
h3, .h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 500;
  margin-bottom: 6px;
  color: var(--metallic);
}
h4, .h4 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--accent);
}
p, li, ul, ol, small {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--foreground);
  margin-bottom: 0;
}
small { font-size: 0.95em; color: var(--metallic); }
strong { color: var(--accent); font-weight: 600; }

@media (max-width: 768px) {
  h1, .h1 { font-size: 2rem; }
  h2, .h2 { font-size: 1.4rem; }
  h3, .h3 { font-size: 1.1rem; }
}

/* ---- SPACING PATTERNS ---- */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: var(--card);
  margin-bottom: 20px;
  position: relative;
  border-radius: 12px;
  box-shadow: 0 4px 16px var(--shadow);
}
.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;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #b9bfbb;
  color: #282B39;
  border-radius: 16px;
  margin-bottom: 20px;
  box-shadow: 0 2px 8px rgba(23,64,152,0.12);
  border: 1px solid var(--metallic);
  min-width: 220px;
  max-width: 400px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: var(--surface);
  border-radius: 14px;
  box-shadow: 0 2px 8px var(--shadow);
  padding: 24px 20px;
  border-left: 5px solid var(--accent);
}
@media (max-width: 900px){
  .feature-item { padding: 20px 12px; }
}

/* ---- HEADER NAVIGATION ---- */
header {
  background: var(--surface);
  box-shadow: 0 2px 10px var(--shadow);
  position: sticky;
  top: 0;
  z-index: 1300;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 18px 20px 10px 20px;
}
.logo img {
  height: 42px;
  min-width: 108px;
  filter: drop-shadow(0 3px 6px rgba(23,64,152,0.18));
}
nav.main-nav {
  display: flex;
  align-items: center;
  gap: 16px;
}
.main-nav a {
  font-family: var(--font-display);
  color: var(--foreground);
  font-weight: 500;
  letter-spacing: 0.03em;
  padding: 7px 14px;
  border-radius: 7px;
  transition: background .23s, color .23s;
}
.main-nav a:hover,
.main-nav a:focus {
  background: var(--accent);
  color: #1F232A;
}

.cta-btn {
  display: flex;
  align-items: center;
  background: var(--accent);
  color: #1F232A;
  font-weight: 800;
  padding: 10px 26px;
  border-radius: 47px;
  margin-left: 15px;
  font-family: var(--font-display);
  font-size: 1.05rem;
  box-shadow: 0 2px 10px rgba(30,190,113,0.13);
  border: 1.5px solid var(--accent);
  transition: box-shadow .18s, background .18s, color .18s, border-color .17s;
}
.cta-btn:hover, .cta-btn:focus {
  background: #fff;
  color: var(--accent);
  border-color: #1EBE71;
  box-shadow: 0 2px 18px #1ebf717f;
}
.cta-link {
  font-family: var(--font-display);
  color: var(--accent);
  font-weight: 600;
  border-bottom: 2px solid var(--accent);
  padding-bottom: 2px;
  margin-top: 12px;
  transition: border-color .2s, color .2s;
}
.cta-link:hover,.cta-link:focus {
  color: #fff;
  border-color: #fff;
}

/* ---- MOBILE NAVIGATION ---- */
.mobile-menu-toggle {
  display: none;
  font-size: 2.1rem;
  color: var(--accent);
  background: transparent;
  border: none;
  padding: 3px 15px;
  z-index: 2001;
}
.mobile-menu {
  position: fixed;
  top: 0; left: 0; height: 100vh; width: 100vw;
  background: var(--background);
  box-shadow: 3px 0 18px rgba(23,64,152,0.17);
  transform: translateX(-100vw);
  transition: transform 0.38s cubic-bezier(.4,1.2,.4,1);
  z-index: 3000;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding-top: 24px;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  color: var(--accent);
  font-size: 2.1rem;
  align-self: flex-end;
  background: transparent;
  border: none;
  margin: 8px 18px 12px 0;
  padding: 6px 11px;
  border-radius: 50%;
  transition: background .2s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: var(--surface);
}
nav.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 12px 24px;
  align-items: flex-start;
}
.mobile-nav a {
  color: var(--foreground);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.22rem;
  padding: 12px 6px;
  border-radius: 6px;
  transition: background .2s, color .2s;
  width: 100%;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--accent);
  color: #181A22;
}

@media (max-width: 950px) {
  nav.main-nav, .cta-btn { display: none; }
  .mobile-menu-toggle { display: block; }
}
@media (min-width: 951px) {
  .mobile-menu { display: none !important; }
}

/* ---- HERO SECTION ---- */
.hero {
  background: linear-gradient(90deg, #23272E 65%, #181A22 100%);
  border-bottom: 3px solid var(--metallic);
  margin-bottom: 0;
  padding: 60px 0 40px 0;
}
.hero .container, .hero .content-wrapper { align-items: flex-start; }
.hero h1 { color: #fff; font-size: 2.2rem; }
.hero p { font-size: 1.23rem; max-width: 650px; margin-bottom: 22px; }

/* ---- FEATURES & GRID ---- */
.features { background: var(--background-alt); }
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  align-items: stretch;
  margin-top: 18px;
}
@media (max-width: 900px) {
  .feature-grid, .service-categories-grid {
    flex-direction: column;
    gap: 20px;
  }
}

/* ---- SERVICE PREVIEW & SHORT LISTS ---- */
.services-preview, .services {
  background: var(--background);
}
.short-service-list, .benefits-list, .review-summary, .comparison-list ul {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin: 20px 0 0 0;
  font-size: 1.07em;
  align-items: center;
}
.short-service-list li {
  background: var(--surface);
  color: var(--foreground);
  border-radius: 9px;
  padding: 14px 18px;
  box-shadow: 0 2px 10px var(--shadow);
  min-width: 170px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.comparison-list ul li {
  background: var(--surface);
  border-radius: 7px;
  padding: 10px 14px;
  font-size: 1.01em;
  gap: 10px;
  display: flex;
  align-items: center;
}

/* ---- SERVICE CATEGORIES GRID ---- */
.service-categories-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-top: 32px;
  justify-content: flex-start;
}
.service-item {
  background: var(--surface);
  border-radius: 15px;
  box-shadow: 0 2px 9px var(--shadow);
  padding: 22px 20px;
  min-width: 260px; max-width: 324px;
  display: flex; flex-direction: column; gap: 15px;
  border-top: 4px solid var(--primary);
  transition: transform .13s, box-shadow .19s;
}
.service-item:hover, .service-item:focus-within {
  transform: translateY(-4px) scale(1.015);
  box-shadow: 0 6px 18px #17409844;
  border-top-color: var(--accent);
}
.service-item img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  filter: grayscale(30%) brightness(1.08) drop-shadow(0 2px 3px var(--shadow));
}

/* ---- PRICING TABLES ---- */
.pricing-tables {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-top: 18px;
  justify-content: flex-start;
}
.pricing-table {
  background: var(--surface);
  border-radius: 13px;
  padding: 28px 26px;
  box-shadow: 0 2px 10px var(--shadow);
  min-width: 230px;
  max-width: 300px;
  border-left: 5px solid var(--primary);
  display: flex; flex-direction: column; gap: 10px;
  transition: border-color .2s, box-shadow .2s, transform .15s;
}
.pricing-table:hover, .pricing-table:focus-within {
  border-left-color: var(--accent);
  box-shadow: 0 5px 20px #168f5370;
  transform: translateY(-2px) scale(1.016);
}
.pricing-table h2 { color: var(--primary); font-size: 1.3rem; }
.pricing-table strong { color: var(--accent); font-size: 1.13em; }

/* ---- TESTIMONIALS ---- */
.testimonial-slider, .testimonial-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 28px 0 20px;
  align-items: stretch;
}
.star-ratings {
  color: var(--accent);
  font-family: var(--font-display);
  font-size: 1.15rem;
  letter-spacing: 1.5px;
  margin-bottom: 5px;
  font-weight: 700;
}
.review-summary {
  display: flex;
  gap: 16px;
  align-items: center;
  color: var(--primary);
  font-family: var(--font-display);
}

/* ---- CTA SECTIONS ---- */
.cta, .cta.inquire {
  background: var(--primary);
  text-align: center;
  border-radius: 19px;
  margin-bottom: 60px;
  padding: 48px 20px 60px 20px;
  color: #fff;
  box-shadow: 0 6px 32px #17409852;
}
.cta h2 { color: #fff; font-size: 2rem; }
.cta p { color: #f3f3f3; margin-bottom: 24px; }
.cta .cta-btn { margin-top: 8px; }

/* ---- FAQ ACCORDION ---- */
.faq-accordion, .accordion-faq {
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.faq-item {
  background: var(--surface);
  border-radius: 12px;
  padding: 18px 20px;
  box-shadow: 0 1px 7px var(--shadow);
  margin-bottom: 20px;
  cursor: pointer;
}
.faq-item h2, .faq-item h3 {
  color: var(--primary);
  font-size: 1.13rem;
  margin-bottom: 4px;
}
.faq-item div {
  color: var(--foreground);
  font-size: 1em;
  margin-top: 6px;
  line-height: 1.6;
}

/* ---- CONTACT & MAP ---- */
.company-contact-details {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 30px;
}
.company-contact-details img {
  height: 22px;
  margin-right: 7px;
  vertical-align: middle;
}
.company-contact-details h2 {
  color: var(--primary);
  margin-bottom: 2px;
}
.map-section {
  background: var(--surface);
  border-radius: 7px;
  padding: 16px 14px;
  margin-top: 22px;
  border-left: 2.5px solid var(--accent);
}

/* ---- FOOTER ---- */
footer {
  background: var(--background-alt);
  border-top: 5px solid var(--metallic);
  color: var(--foreground);
  font-size: 0.97em;
}
footer .container {
  padding: 26px 20px 14px 20px;
}
.footer-main {
  display: flex;
  align-items: flex-start;
  gap: 32px;
  margin-bottom: 10px;
  flex-wrap: wrap;
}
.logo-footer img {
  height: 36px;
  min-width: 100px;
  filter: grayscale(25%) drop-shadow(0 3px 7px #1EBE7177);
}
.footer-nav {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-nav a {
  color: var(--metallic);
  font-size: 1em;
  transition: color .2s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: var(--accent);
}
.footer-contact {
  margin-top: 12px;
  color: var(--metallic);
  line-height: 1.5;
}
.footer-contact a { color: var(--accent); }
.copyright {
  color: var(--metallic);
  margin: 18px 0 0 0;
  font-size: 0.93em;
  text-align: center;
}

/* ---- LEGAL/INFO PAGE ---- */
.footer-legal {
  background: var(--background-alt);
  border-radius: 18px;
  box-shadow: 0 2px 12px #23272E33;
  margin-bottom: 60px;
  padding: 36px 0;
}
.footer-legal a { color: var(--accent); text-decoration: underline; }

/* ---- ANIMATIONS ---- */
a, .cta-btn, .cta-link, button, .faq-item, .service-item, .feature-item {
  transition: all .22s cubic-bezier(.57,1.35,.53,1);
}
.cta-btn:active { transform: scale(0.97); }

/* ---- RESPONSIVE LAYOUT ---- */
@media (max-width: 1100px){
  .service-categories-grid,
  .pricing-tables,
  .feature-grid,
  .testimonial-slider,
  .testimonial-list {
    gap: 18px;
  }
}
@media (max-width: 900px) {
  .service-categories-grid,
  .pricing-tables,
  .feature-grid,
  .testimonial-slider,
  .testimonial-list {
    flex-direction: column;
    gap: 20px;
  }
  .footer-main { flex-direction: column; gap: 18px; }
}
@media (max-width: 768px){
  .container { padding: 0 8px; }
  .section {margin-bottom: 30px; padding: 22px 8px;}
  .content-wrapper { gap: 20px; }
  .short-service-list, .benefits-list, .testimonial-slider, .testimonial-list, .pricing-tables, .service-categories-grid { flex-direction: column; gap: 14px; }
  .footer-main { flex-direction: column; gap: 15px; }
  .content-grid, .feature-grid { flex-direction: column; gap: 15px; }
  .testimonials-preview { padding-bottom: 10px; }
  .text-image-section { flex-direction: column; gap: 15px; align-items: stretch; }
}

/* ---- TESTIMONIALS PREVIEW COLOR CONTRAST ---- */
.testimonial-card {
  background: #b9bfbb;
  color: #181A22;
  box-shadow: 0 2px 9px #191c21cc;
}
.testimonial-card small { color: #174098; }

/* ---- MISC/UTILITY ---- */
::-webkit-scrollbar { width: 7px; background: #23242B; }
::-webkit-scrollbar-thumb { background: #3c4250; border-radius: 9px; }

ol { list-style-type: decimal; margin-left: 1.2em; }
ul { list-style-type: disc; margin-left: 1.2em; }

/* Style icons inside cards/lists */
.short-service-list img, .benefits-list img, .comparison-list img, .company-contact-details img, .why-us img, .service-item img, .process img {
  height: 28px;
  width: 28px;
  filter: grayscale(60%) brightness(1.12);
}
@media (max-width: 500px) {
  .short-service-list li, .feature-item, .service-item, .pricing-table { min-width: 0; max-width: 100%; }
}

/* ---- COOKIE CONSENT BANNER ---- */
.cookie-consent-banner {
  position: fixed;
  left: 0; right: 0;
  bottom: 0;
  background: var(--surface);
  color: var(--foreground);
  padding: 25px 22px 21px 22px;
  box-shadow: 0 -2px 22px #000c;
  z-index: 5000;
  display: flex;
  flex-direction: row;
  gap: 30px;
  align-items: center;
  justify-content: space-between;
  border-top: 2.5px solid var(--metallic);
  animation: cookieFadeIn .4s;
}
.cookie-consent-banner .cookie-btn-group {
  display: flex;
  gap: 12px;
}
.cookie-consent-banner p {
  font-weight: 500;
  font-size: 1.08em;
  color: var(--metallic);
  max-width: 630px;
}
.cookie-btn, .cookie-btn:visited {
  font-family: var(--font-display);
  font-weight: 700;
  padding: 9px 18px;
  border-radius: 30px;
  font-size: 1.01rem;
  box-shadow: 0 1px 3px #0002;
  border: 2.2px solid transparent;
  transition: background .21s, color .21s, border-color .19s;
  cursor: pointer;
}
.cookie-btn.accept {
  background: var(--accent);
  color: #23272E;
  border-color: var(--accent);
}
.cookie-btn.accept:hover, .cookie-btn.accept:focus {
  background: #fff;
  color: var(--accent);
  border-color: var(--accent);
}
.cookie-btn.reject {
  background: #fff;
  color: var(--danger);
  border-color: var(--danger);
}
.cookie-btn.reject:hover, .cookie-btn.reject:focus {
  background: var(--danger);
  color: #fff;
}
.cookie-btn.settings {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}
.cookie-btn.settings:hover, .cookie-btn.settings:focus {
  background: var(--metallic);
  color: var(--primary);
  border-color: var(--metallic);
}
@media (max-width: 760px) {
  .cookie-consent-banner {
    flex-direction: column;
    gap: 16px;
    padding: 17px 6px 14px 6px;
    font-size: 1em;
  }
  .cookie-consent-banner .cookie-btn-group {
    gap: 7px;
    width: 100%; justify-content: flex-end;
  }
}
@keyframes cookieFadeIn {
  0% { transform: translateY(100%); opacity: 0; }
  100% { transform: translateY(0); opacity: 1; }
}

/* ---- COOKIE MODAL ---- */
.cookie-modal-overlay {
  position: fixed; top: 0; left: 0; height: 100vh; width: 100vw;
  background: rgba(25,28,33,0.76);
  z-index: 6000;
  display: flex; align-items: center; justify-content: center;
}
.cookie-modal {
  background: var(--surface);
  border-radius: 17px;
  box-shadow: 0 8px 36px #23272ecc;
  color: var(--foreground);
  min-width: 315px; max-width: 420px;
  padding: 36px 25px 24px 25px;
  animation: cookieModalUp .35s;
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
}
.cookie-modal h2 {
  color: var(--primary);
  margin-bottom: 7px;
}
.cookie-modal .cookie-modal-close {
  position: absolute;
  top: 13px; right: 14px;
  font-size: 1.65rem;
  color: var(--accent);
  background: none;
  border: none;
  border-radius: 50%;
  padding: 2px 10px;
  transition: background .18s;
}
.cookie-modal .cookie-modal-close:hover {
  background: #1EBE7133;
}
.cookie-toggle-section {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin: 10px 0;
}
.cookie-option-group {
  display: flex;
  align-items: center;
  gap: 13px;
  background: var(--background-alt);
  border-radius: 9px;
  padding: 9px 15px;
}
.cookie-option-label {
  flex: 1 1 auto;
}
.cookie-switch {
  position: relative;
  display: inline-block;
  width: 34px;
  height: 20px;
}
.cookie-switch input { display: none; }
.cookie-slider {
  position: absolute;
  cursor: pointer;
  top: 0; left: 0; right: 0; bottom: 0;
  background: #fff;
  border: 1.5px solid var(--primary);
  transition: .2s;
  border-radius: 25px;
}
.cookie-slider:before {
  position: absolute;
  content: "";
  height: 15px; width: 15px;
  left: 2.2px; top: 1.5px;
  background: var(--primary);
  border-radius: 50%;
  transition: .2s;
}
.cookie-switch input:checked + .cookie-slider {
  background: var(--accent);
  border-color: var(--accent);
}
.cookie-switch input:checked + .cookie-slider:before {
  background: #fff;
  transform: translateX(14px);
}
.cookie-modal-actions {
  display: flex;
  gap: 14px;
  justify-content: flex-end;
  margin-top: 12px;
}
@keyframes cookieModalUp {
  0% { transform: translateY(50px); opacity: 0; }
  100% { transform: translateY(0); opacity: 1; }
}

/* ---- INDUSTRIAL MODERN EXTRAS ---- */
.border-metallic {
  border-color: var(--metallic) !important;
}
.text-metallic {
  color: var(--metallic) !important;
}
.card-metallic {
  background: linear-gradient(115deg, #23272E 85%, #747c87 100%);
  border: 1.5px solid var(--metallic);
}

/* ---- FORMS (for possible contact/feedback/review forms) ---- */
input[type='text'], input[type='email'], textarea {
  background: var(--background-alt);
  color: var(--foreground);
  border: 1.5px solid var(--metallic);
  border-radius: 9px;
  padding: 10px 14px;
  font-family: inherit;
  font-size: 1rem;
  margin-bottom: 18px;
  box-shadow: 0 2px 7px #23272e18;
}
input[type='text']:focus, input[type='email']:focus, textarea:focus {
  outline: 2px solid var(--primary);
  border-color: var(--accent);
}

/* ---- THANK YOU PAGE / CONFIRMATION ---- */
.confirmation {
  background: var(--primary);
  color: #fff;
  border-radius: 16px;
  box-shadow: 0 7px 28px #17409854;
  margin-bottom: 60px;
  padding: 48px 14px 40px 14px;
}
.confirmation h1, .confirmation h2 { color: #fff; }
.confirmation ul { color: var(--metallic); margin-top: 14px; }

/* ---- HIGH CONTRAST FOR TESTIMONIALS/REVIEWS ---- */
.testimonial-card {
  background: #b9bfbb;
  color: #191c21;
}
.testimonial-card .star-ratings { color: var(--primary); }
.testimonial-card small { color: var(--primary); }

/* ---- Prevent Overlap: More spacing for all content cards/sections ---- */
.card, .testimonial-card, .feature-item, .service-item, .pricing-table, .faq-item {
  margin-bottom: 20px;
}


/* ---- VISUAL HIERARCHY for Section Headings ---- */
section > .container > .content-wrapper > h1,
section > .container > .content-wrapper > h2 {
  margin-bottom: 10px;
}

@media (max-width: 480px){
  .hero { padding: 28px 0 28px 0; }
  .cta, .cta.inquire, .confirmation { padding: 22px 4px 28px 4px; }
  .footer-legal { padding: 12px 0; }
}

/* ---- Accordion FAQ: collapsed/active example (can be controlled via JS) ---- */
.faq-item.active, .accordion-faq .faq-item.active {
  border-left: 4px solid var(--accent);
  background: #fff1;
}
.faq-item.active h2, .faq-item.active h3 {
  color: var(--accent);
}

/* ---- Trust seals and awards visual ---- */
.trust-seals {
  margin-top: 14px;
  display: flex;
  align-items: center;
  gap: 15px;
}
.trust-seals img {
  height: 42px;
  filter: brightness(1.05) grayscale(30%);
}
.trust-seals span {
  color: var(--metallic);
  font-size: 1em;
  font-family: var(--font-display);
  letter-spacing: 0.02em;
}

/* ---- Custom visually-hidden for accessibility ---- */
.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; border: 0;
  clip: rect(0 0 0 0); white-space: nowrap; word-wrap: normal;
}
