/* =============================================================
   CSS RESET & NORMALIZE (Mobile-first)  
   ============================================================= */
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, font, 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, main, 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 {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
  font-family: 'Roboto', Arial, sans-serif;
  background: #181E24;
  color: #E2E6EA;
}
body {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  background: #181E24;
  color: #E2E6EA;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}
img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
  display: inline-block;
}
ul, ol {
  list-style: none;
}
a {
  text-decoration: none;
  color: inherit;
  transition: color 0.2s;
}
button { 
  background: none; 
  border: none; 
  font: inherit; 
  cursor: pointer;
  outline: none;
}

/* =============================================================
   BRAND FONTS (Industrial Modern)
   ============================================================= */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@700;900&family=Roboto:wght@400;500;700&display=swap');
:root {
  --primary: #243B5C;
  --secondary: #2A9134;
  --accent: #FFFFFF;
  --bg-main: #181E24;      /* urban, depth */
  --bg-dark: #212833;
  --bg-card: #232935;
  --bg-section: #22262d;
  --text-main: #E2E6EA;
  --text-heading: #F7FBFF;
  --text-secondary: #999CA6;
  --metal1: #757F8A;       /* metallic accent */
  --metal2: #B5C2D1;       /* lighter metallic accent */
  --shadow1: 0 4px 16px 0 rgba(23,27,37,0.22);
  --shadow2: 0 1px 7px 0 rgba(22,28,42,0.14);
  --border-metal: 1.5px solid #384050;
  --radius: 14px;
  --radius-card: 16px;
  --radius-pill: 100px;
  --font-display: 'Montserrat', Arial, sans-serif;
  --font-body: 'Roboto', Arial, sans-serif;
  --fz-xs: 14px;
  --fz-sm: 16px;   
  --fz-md: 18px;
  --fz-lg: 24px;
  --fz-xl: 32px;
  --fz-xxl: 48px;
}

/* =============================================================
   GENERAL LAYOUT & CONTAINER
   ============================================================= */
.container {
  width: 100%;
  max-width: 1180px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 18px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

/* =============================================================
   HEADER & NAV (Industrial Modern)
   ============================================================= */
header {
  background: var(--bg-dark);
  box-shadow: var(--shadow2);
  padding: 0;
  position: sticky;
  top: 0;
  z-index: 20;
  width: 100%;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  min-height: 68px;
  gap: 14px;
  padding: 14px 18px;
}
header nav {
  display: flex;
  flex-direction: row;
  gap: 28px;
  align-items: center;
}
header nav a {
  font-family: var(--font-display);
  font-size: var(--fz-sm);
  color: var(--metal2);
  font-weight: 700;
  padding: 8px 0;
  border-bottom: 2px solid transparent;
  letter-spacing: 0.01em;
  transition: color 0.2s, border-bottom 0.18s;
}
header nav a:hover, header nav a:focus {
  color: var(--secondary);
  border-bottom: 2px solid var(--secondary);
}
header .cta-primary {
  margin-left: 24px;
}

/* Logo */
header img[alt="PearlyVista"] {
  height: 44px;
}

/* =============================================================
   CTA BUTTONS (big, urban, metallic)
   ============================================================= */
.cta-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: var(--fz-md);
  font-weight: 900;
  letter-spacing: 0.02em;
  background: var(--secondary);
  color: #181E24;
  padding: 13px 34px;
  border: none;
  border-radius: var(--radius-pill);
  box-shadow: 0 2px 12px 0 #1a2819cc;
  transition: background 0.22s, color 0.2s, box-shadow 0.2s, transform 0.13s;
  cursor: pointer;
  margin: 18px 0 0 0;
  outline: none;
  text-transform: uppercase;
  position: relative;
  z-index: 2;
}
.cta-primary:hover, .cta-primary:focus {
  background: #36BB47;
  color: #111720;
  box-shadow: 0 6px 24px 0 #263d295d;
  transform: translateY(-2px) scale(1.03);
}

/* =============================================================
   MOBILE NAVIGATION (Burger Menu)
   ============================================================= */
.mobile-menu-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-card);
  color: var(--secondary);
  width: 44px;
  height: 44px;
  border-radius: var(--radius-pill);
  font-size: 28px;
  box-shadow: 0 1px 6px #212 13%;
  border: 1.5px solid #36475e;
  margin-left: 18px;
  transition: background 0.15s;
  z-index: 41;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: var(--secondary);
  color: var(--bg-main);
}

.mobile-menu {
  position: fixed;
  left: 0; top: 0; width: 100vw; height: 100vh;
  background: #212833ee;
  transform: translateX(-100%);
  transition: transform 0.38s cubic-bezier(.77,.21,.42,.89);
  z-index: 51;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 0;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  color: var(--accent);
  font-size: 38px;
  background: none;
  border: none;
  margin: 28px 22px 16px;
  align-self: flex-end;
  z-index: 58;
  transition: color 0.15s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: var(--secondary);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 18px;
  width: 100%;
  padding: 18px 36px;
  margin-top: 18px;
}
.mobile-nav a {
  display: flex;
  align-items: center;
  font-size: var(--fz-lg);
  font-family: var(--font-display);
  color: var(--text-main);
  padding: 14px 0;
  border-radius: var(--radius);
  transition: background 0.13s, color 0.15s;
  font-weight: 700;
  letter-spacing: 0.015em;
  outline: none;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--secondary);
  color: #181E24;
}

@media (min-width:920px) {
  .mobile-menu-toggle, .mobile-menu {
    display: none !important;
  }
}
@media (max-width:919px) {
  header .container nav,
  header .container .cta-primary {
    display: none !important;
  }
}

/* =============================================================
   MAIN HERO SECTION
   ============================================================= */
.hero {
  background: linear-gradient(120deg, #181E24 80%, #232935 100%);
  padding: 64px 0 40px 0;
  margin-bottom: 0;
}
.hero .container {
  flex-direction: column;
  align-items: flex-start;
}
.hero .content-wrapper {
  gap: 22px;
}
.hero h1 {
  font-family: var(--font-display);
  font-size: var(--fz-xxl);
  color: var(--text-heading);
  font-weight: 900;
  text-shadow: 0 6px 28px #111b2d45;
  text-transform: uppercase;
  letter-spacing: 0.035em;
  line-height: 1.13;
}
.hero p {
  font-size: var(--fz-lg);
  color: var(--metal2);
  line-height: 1.6;
  max-width: 690px;
  font-weight: 500;
  margin: 10px 0 20px 0;
}
.hero .cta-primary {
  margin-top: 10px;
}

/* =============================================================
   SECTIONS & SPACING (Industrial Modern)
   ============================================================= */
.section, section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--bg-section);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow1);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
}
/* Remove background for hero/footer/contact-short: handled separately */
.hero, #contact-short, footer {
  background: none !important;
  box-shadow: none !important;
}

/* Content grid and flex containers */
.card-container, .card-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: var(--bg-card);
  border: var(--border-metal);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow2);
  transition: box-shadow 0.16s, transform 0.12s, border-color 0.16s;
  overflow: hidden;
  padding: 34px 30px 28px 30px;
  min-width: 270px;
  flex: 1 1 260px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.card:hover, .card:focus-within {
  border-color: var(--secondary);
  box-shadow: 0 4px 26px 0 #22282758;
  transform: translateY(-3px) scale(1.015);
}

.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;
  width: 100%;
}
/* Responsiveness for flex containers */
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
}

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

/* =============================================================
   LISTS AND ICONS IN FEATURES/TRANSPORT
   ============================================================= */
section ul {
  margin-top: 24px;
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  gap: 28px;
  width: 100%;
}
section ul li {
  background: var(--bg-card);
  border: var(--border-metal);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow2);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  flex: 1 1 220px;
  min-width: 220px;
  max-width: 320px;
  padding: 28px 24px 24px 24px;
  margin-bottom: 20px;
  transition: box-shadow 0.17s, border-color 0.16s, transform 0.13s;
}
section ul li:hover, section ul li:focus-within {
  border-color: var(--secondary);
  box-shadow: 0 4px 24px 0 #1a212980;
  transform: translateY(-2px) scale(1.02);
}
section ul li img {
  width: 38px;
  height: 38px;
  filter: grayscale(0.45) contrast(1.01) brightness(1.12);
  margin-bottom: 10px;
}
section ul li b {
  font-family: var(--font-display);
  font-size: var(--fz-md);
  color: var(--text-heading);
  font-weight: 800;
  margin-bottom: 6px;
  text-shadow: 0 2px 11px #28354433;
}
section ul li p {
  font-size: var(--fz-sm);
  color: var(--metal2);
  margin-top: 3px;
}

@media (max-width: 980px) {
  section ul {
    gap: 16px;
  }
  section ul li {
    min-width: 180px;
    max-width: 100%;
    flex: 1 1 48%;
    padding: 20px 14px 16px 14px;
  }
}
@media (max-width: 640px) {
  section ul {
    flex-direction: column;
    gap: 12px;
  }
  section ul li {
    min-width: 0;
    flex: 1 1 100%;
    max-width: 100%;
  }
}

/* =============================================================
   TYPOGRAPHY & HEADINGS (Industrial Fonts)
   ============================================================= */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  color: var(--text-heading);
  font-weight: 900;
  letter-spacing: 0.02em;
  margin-bottom: 18px;
}
h1 {
  font-size: var(--fz-xxl);
  line-height: 1.12;
  margin-bottom: 22px;
  text-transform: uppercase;
}
h2 {
  font-size: var(--fz-xl);
  font-weight: 800;
  margin-bottom: 18px;
}
h3 {
  font-size: var(--fz-lg);
  margin-bottom: 13px;
  font-weight: 800;
}
h4, h5, h6 {
  font-size: var(--fz-md);
  margin-bottom: 10px;
  font-weight: 700;
}

p, .text-section, .faq-item p {
  color: var(--text-main);
  font-size: var(--fz-sm);
  line-height: 1.65;
  margin-bottom: 10px;
}
.text-section b, b {
  color: var(--metal1);
}
.text-section img {
  vertical-align: middle;
  margin-right: 8px;
  width: 22px;
  filter: grayscale(55%);
}

/* =============================================================
   TESTIMONIAL CARDS (Unmistakable, Contrast, Metal/Light)
   ============================================================= */
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px 24px;
  margin-bottom: 24px;
  border-radius: calc(var(--radius-card) + 2px);
  background: var(--accent);
  color: #232831;
  box-shadow: 0 3px 18px #17212a22;
  border: 1.5px solid #B5C2D1;
  transition: box-shadow 0.14s, border-color 0.14s, transform 0.13s;
}
.testimonial-card:hover, .testimonial-card:focus-within {
  border-color: var(--secondary);
  box-shadow: 0 6px 28px #2a913410;
  transform: scale(1.015);
}
.testimonial-card b {
  color: #324057;
  font-size: var(--fz-md);
  letter-spacing: 0.01em;
  font-family: var(--font-display);
  font-weight: 700;
  margin-bottom: 6px;
}
.testimonial-card p {
  color: #182635;
  font-size: var(--fz-sm);
}

/* High contrast for all testimonial text */
.testimonial-card *, .testimonial-card b, .testimonial-card p {
  color: #1a232f !important;
}

/* Spacing fix for last card */
.testimonial-card:last-child {
  margin-bottom: 0;
}

/* =============================================================
   FAQ ACCORDION
   ============================================================= */
.faq-accordion {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 12px;
}
.faq-item {
  background: var(--bg-card);
  border: var(--border-metal);
  border-radius: var(--radius);
  padding: 24px 22px;
  box-shadow: var(--shadow2);
  transition: box-shadow 0.13s, border-color 0.13s;
  margin-bottom: 18px;
}
.faq-item b {
  font-family: var(--font-display);
  font-size: var(--fz-md);
  color: var(--text-heading);
  letter-spacing: 0.01em;
  margin-bottom: 8px;
  display: block;
}
.faq-item:hover, .faq-item:focus-within {
  border-color: var(--secondary);
  box-shadow: 0 2px 12px #2a913410;
}

/* =============================================================
   FOOTER
   ============================================================= */
footer {
  background: var(--bg-dark);
  box-shadow: 0 -2px 18px #0d131e61;
  padding: 0; /* handled in container */
  width: 100%;
  border-top: 2px solid #232837;
  margin-top: 60px;
}
footer .container {
  flex-direction: row;
  align-items: flex-start;
  gap: 40px;
  justify-content: space-between;
  padding: 34px 18px 24px 18px;
}
footer nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
footer nav a {
  font-size: var(--fz-sm);
  color: #afb7c3;
  border-bottom: 2px solid transparent;
  padding: 3px 0;
  font-weight: 600;
  letter-spacing: 0.01em;
  transition: color 0.2s, border-bottom 0.18s;
}
footer nav a:hover, footer nav a:focus {
  color: var(--secondary);
  border-bottom: 2px solid var(--secondary);
}
footer .social-links {
  display: flex;
  flex-direction: row;
  gap: 16px;
  align-items: center;
}
footer .social-links img {
  width: 32px;
  height: 32px;
  opacity: 0.85;
  filter: grayscale(0.6) contrast(1.14);
  transition: filter 0.15s, opacity 0.15s;
  cursor: pointer;
}
footer .social-links img:hover, footer .social-links img:focus {
  filter: grayscale(0.19) contrast(1.21);
  opacity: 1;
}
footer .copy_right {
  margin-top: 14px;
  color: #8c97a2;
  font-size: 15px;
  font-weight: 400;
}
@media (max-width: 980px) {
  footer .container {
    flex-direction: column;
    padding: 22px 10px 20px 10px;
    gap: 22px;
    align-items: flex-start;
  }
  footer .social-links {
    margin-top: 12px;
  }
}

/* =============================================================
   COOKIE CONSENT BANNER & MODAL (Microinteractions)
   ============================================================= */
.cookie-consent-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 105;
  background: var(--bg-main);
  border-top: 2.5px solid var(--secondary);
  color: var(--accent);
  box-shadow: 0 -8px 28px #202e43cf;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 22px 4vw 22px 4vw;
  gap: 22px;
  font-size: var(--fz-sm);
  transition: transform 0.36s cubic-bezier(.69,.02,.37,.98), opacity 0.21s;
  opacity: 1;
}
.cookie-consent-banner.hide {
  transform: translateY(100%);
  opacity: 0;
  pointer-events: none;
}
.cookie-consent-banner .cookie-consent-message {
  flex: 1 1 360px;
  font-size: 16px;
  line-height: 1.6;
  color: var(--metal2);
}
.cookie-consent-banner .cookie-btns {
  display: flex;
  flex-direction: row;
  gap: 16px;
  align-items: center;
}
.cookie-btn, .cookie-btn-primary {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
  border-radius: var(--radius-pill);
  padding: 9px 26px;
  cursor: pointer;
  outline: none;
  border: none;
  transition: background 0.14s, color 0.13s, box-shadow 0.13s;
}
.cookie-btn {
  background: var(--bg-card);
  color: var(--accent);
  border: 1.6px solid var(--metal1);
}
.cookie-btn:hover, .cookie-btn:focus {
  background: var(--metal1);
  color: var(--bg-main);
}
.cookie-btn-primary {
  background: var(--secondary);
  color: var(--bg-main);
  border: none;
  box-shadow: 0 2px 12px #232c1d33;
}
.cookie-btn-primary:hover, .cookie-btn-primary:focus {
  background: #35b245;
  color: #111720;
}

@media (max-width:600px) {
  .cookie-consent-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
    padding: 20px 6vw;
    font-size: 15px;
  }
}

/* Cookie modal */
.cookie-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 110;
  background: #212833e8;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  pointer-events: all;
  transition: opacity 0.22s;
}
.cookie-modal-overlay.hide {
  opacity: 0;
  pointer-events: none;
}
.cookie-modal {
  background: var(--bg-card);
  border: var(--border-metal);
  box-shadow: 0 6px 32px #2a913440;
  border-radius: var(--radius-card);
  max-width: 420px;
  width: 92vw;
  padding: 32px 28px;
  color: var(--metal2);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
  z-index: 119;
  animation: cookieModalIn 0.41s cubic-bezier(.62,-0.05,.57,1.10);
}
@keyframes cookieModalIn {
  0% { transform: scale(0.8) translateY(40px); opacity: 0;}
  90% { opacity: 1; }
  100% { transform: scale(1) translateY(0); opacity: 1; }
}
.cookie-modal h2 {
  color: var(--secondary);
  font-size: var(--fz-md);
  font-family: var(--font-display);
  margin-bottom: 4px;
}
.cookie-modal .cookie-cat-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
  width: 100%;
}
.cookie-cat {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
  width: 100%;
  font-size: var(--fz-sm);
  color: var(--text-heading);
}
.cookie-cat .cookie-toggle {
  margin-left: auto;
  appearance: none;
  width: 38px;
  height: 22px;
  background: #293141;
  border-radius: 20px;
  position: relative;
  border: 1.4px solid #444b57;
  outline: none;
  transition: background 0.14s, border 0.13s;
}
.cookie-cat .cookie-toggle:checked {
  background: var(--secondary);
  border-color: var(--secondary);
}
.cookie-cat .cookie-toggle::after {
  content: '';
  display: block;
  position: absolute;
  top: 2px;
  left: 3px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #dee4ea;
  box-shadow: 0 1px 4px #12192099;
  transition: left 0.19s, background 0.13s;
}
.cookie-cat .cookie-toggle:checked::after {
  left: 16px;
  background: #e7ffe2;
}
.cookie-cat.essential label {
  color: var(--metal2);
  opacity: 0.68;
}
.cookie-cat.essential .cookie-toggle {
  opacity: 0.53;
  pointer-events: none;
}
.cookie-modal .cookie-modal-actions {
  width: 100%;
  display: flex;
  flex-direction: row;
  gap: 14px;
  margin-top: 10px;
}
.cookie-modal .cookie-btn-cancel {
  background: none;
  color: #aab8c8;
  border: none;
  font-size: 15px;
  padding: 8px 18px;
  border-radius: var(--radius-pill);
  transition: color 0.12s, background 0.13s;
}
.cookie-modal .cookie-btn-cancel:hover, .cookie-modal .cookie-btn-cancel:focus {
  color: var(--secondary);
  background: #212f2445;
}

/* =============================================================
   ADDITIONAL: UTILITIES & MICROINTERACTIONS
   ============================================================= */
::-webkit-scrollbar {
  width: 10px;
  background: #293141;
}
::-webkit-scrollbar-thumb {
  background: #222933;
  border-radius: 14px;
  border: 2px solid #2f3c4c;
}
::-webkit-scrollbar-thumb:hover {
  background: #2A9134;
}

hr {
  border: none;
  border-top: 1.5px solid #323c49;
  margin: 40px 0;
}

/* Text selection (urban/industrial accent) */
::selection {
  background: #2A9134;
  color: #181E24;
}

/* =============================================================
   RESPONSIVE DESIGN (Mobile-first)
   ============================================================= */
@media (max-width:768px) {
  .container {
    padding: 0 8px;
    max-width: 100vw;
  }
  .hero {
    padding: 42px 0 32px 0;
  }
  .hero h1 {
    font-size: 32px;
  }
  h1, h2 {
    font-size: 28px;
  }
  section, .section {
    padding: 25px 4px;
    border-radius: 12px;
  }
  .card, section ul li {
    padding: 13px 6px 15px 10px;
    border-radius: var(--radius);
  }
}

@media (max-width:470px) {
  header .container {
    padding: 11px 5px;
  }
  .cta-primary,
  .cookie-btn,
  .cookie-btn-primary {
    padding-left: 14px;
    padding-right: 14px;
    font-size: 15px;
  }
}

/* =============================================================
   GENERAL INTERACTIVITY (Focus-visible, etc)
   ============================================================= */
a:focus-visible,
button:focus-visible,
.cta-primary:focus-visible,
.cookie-btn:focus-visible,
.cookie-btn-primary:focus-visible {
  outline: 3px solid var(--secondary);
  outline-offset: 1px;
  z-index: 2;
}

/* Hide outline if not keyboard navigating */
:focus:not(:focus-visible) {
  outline: none;
}

/* =============================================================
   TEXT SECTION LAYOUT (e.g. contact, about)
   ============================================================= */
.text-section {
  display: flex;
  flex-direction: column;
  gap: 9px;
  margin-bottom: 16px;
}
.text-section p {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--metal2);
  font-size: var(--fz-sm);
}

/* =============================================================
   SPECIAL SECTIONS (about, contact, policy, etc.)
   ============================================================= */
/* About or Thank you main-only sections (no card look) */
main > section:not(.hero):not([id=contact-short]) {
  box-shadow: var(--shadow2);
}

/* Short Contact section with white card */
#contact-short {
  background: var(--accent) !important;
  border-radius: var(--radius-card);
  box-shadow: 0 6px 36px #212e4277;
  color: #222933 !important;
  padding: 32px 20px;
}
#contact-short h2,
#contact-short .text-section,
#contact-short p {
  color: #253247 !important;
}
#contact-short .cta-primary {
  margin-top: 14px;
}

/* =============================================================
   PRINT STYLES
   ============================================================= */
@media print {
  header, footer, nav, .mobile-menu, .cookie-consent-banner, .cookie-modal-overlay {
    display: none !important;
  }
}

/* =============================================================
   SAFETY: SPACE AND GAP ENFORCEMENT
   ============================================================= */
section, .section {
  margin-bottom: 60px !important;
}
.card-container, .content-grid, section ul, .features {
  gap: 20px !important;
}
.card, section ul li, .feature-item, .testimonial-card, .faq-item {
  margin-bottom: 20px !important;
}

/* =============================================================
   END OF INDUSTRIAL MODERN CSS - PEARLYVISTA
   ============================================================= */
