/* ========================
   VesuvGavia Astrologie – TECH FUTURISTIC Responsive Style
   Only Flexbox, No CSS Grid, Modern Effects, Brand Guideline Colors & Fonts
   ======================== */

/* --------------------
   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,
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 {
  box-sizing: border-box;
  font-size: 16px;
  height: 100%;
  scroll-behavior: smooth;
}
*, *:before, *:after {
  box-sizing: inherit;
}
body {
  min-height: 100vh;
  background: #151823;
  color: #F9F7F2;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  letter-spacing: 0.01em;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, svg {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: #BBA87F;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #fff58c;
  text-decoration: underline;
}
ul, ol {
  margin-left: 1.5em;
}
strong, b {
  font-weight: 700;
}
button {
  font: inherit;
  background: none;
  border: none;
  cursor: pointer;
  outline: none;
}

/* --------------------
   GENERAL TYPOGRAPHY
--------------------- */
h1,h2,h3,h4,h5,h6 {
  font-family: 'Cormorant Garamond', 'Times New Roman', Times, serif;
  color: #F9F7F2;
  font-weight: 600;
  line-height: 1.15;
}
h1 {
  font-size: 2.4rem;
  margin-bottom: 18px;
}
h2 {
  font-size: 1.8rem;
  margin-bottom: 16px;
}
h3 {
  font-size: 1.35rem;
  margin-bottom: 10px;
}

@media (max-width: 768px) {
  h1 { font-size: 1.6rem; }
  h2 { font-size: 1.22rem; }
}

p, li, address {
  color: #ECE9E2;
  font-size: 1rem;
  margin-bottom: 12px;
}


/* ======================
   HEADER & NAVIGATION
======================== */
header {
  width: 100%;
  background: linear-gradient(90deg, #1b2033 30%, #2a3352 100%);
  box-shadow: 0 2px 20px 0 rgba(36,48,74, 0.16);
  position: relative;
  z-index: 50;
  padding: 0 0 2px 0;
}
.branding {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 20px 24px 8px 24px;
  gap: 8px;
}
.logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  color: #F9F7F2;
  letter-spacing: 1px;
  text-shadow: 0 0 8px #BBA87F77,0 0 1px #24304A;
  font-weight: 700;
}
.tagline {
  font-size: 1rem;
  color: #BBA87F;
  letter-spacing: 0.2px;
  margin-left: 2px;
  font-style: italic;
}

.main-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: flex-end;
  align-items: center;
  background: none;
  padding: 0 24px 14px 24px;
}
.main-nav a {
  color: #BBA87F;
  padding: 8px 20px;
  border-radius: 24px;
  font-weight: 500;
  letter-spacing: 0.05em;
  font-size: 1rem;
  transition: background 0.22s, color 0.18s, box-shadow 0.18s;
  position: relative;
  z-index: 1;
}
.main-nav a.cta {
  background: #BBA87F;
  color: #24304A;
  font-weight: 700;
  box-shadow: 0 1px 10px 0 #bba87f28;
  border-radius: 30px;
  border: none;
  transition: background 0.2s, color 0.18s, box-shadow 0.19s;
}
.main-nav a.cta:hover, .main-nav a.cta:focus {
  background: #fff58c;
  color: #24304A;
  box-shadow: 0 2px 16px 0 #bba87f55;
  text-decoration: none;
}
.main-nav a:hover:not(.cta), .main-nav a:focus:not(.cta) {
  background: #24304A;
  color: #F9F7F2;
  box-shadow: 0 1px 4px 0 #24304A44;
}

/* -------------------
   MOBILE NAVIGATION
-------------------- */
.mobile-menu-toggle {
  display: none;
  position: absolute;
  top: 26px;
  right: 24px;
  color: #BBA87F;
  font-size: 2.2rem;
  z-index: 1040;
  background: none;
  border: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  transition: background 0.17s, color 0.19s;
}
.mobile-menu-toggle:active, .mobile-menu-toggle:focus {
  background: #24304A;
  color: #fff58c;
}

.mobile-menu {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(27, 32, 51, 0.92);
  z-index: 1200;
  transform: translateX(100%);
  transition: transform 0.34s cubic-bezier(.64,0,.34,1);
  box-shadow: -2px 0 22px 0 #24304A33;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  margin: 18px 22px 8px 0;
  font-size: 2rem;
  color: #BBA87F;
  background: none;
  border-radius: 50%;
  transition: background 0.17s, color 0.17s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #2a3352;
  color: #fff58c;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 22px;
  align-items: flex-start;
  padding: 12px 32px;
}
.mobile-nav a {
  color: #F9F7F2;
  font-size: 1.16rem;
  padding: 8px 0;
  border-radius: 18px;
  font-weight: 500;
  width: 100%;
  transition: background 0.18s, color 0.15s;
}
.mobile-nav a.cta {
  background: #BBA87F;
  color: #24304A;
  font-weight: 700;
  border-radius: 30px;
  padding: 12px 28px;
  margin-top: 12px;
}
.mobile-nav a.cta:hover, .mobile-nav a.cta:focus {
  background: #fff58c;
  color: #24304A;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #fff2;
  color: #fff58c;
}

@media (max-width: 992px) {
  .main-nav {
    gap: 8px;
    padding-right: 14px;
  }
}
@media (max-width: 768px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
  .branding {
    padding-left: 13px;
    padding-top: 13px;
  }
}


/* ========================
   HERO & KEY SECTIONS
=========================== */
.hero {
  padding: 56px 20px 48px 20px;
  margin-bottom: 60px;
  background: linear-gradient(97deg, #24304A 0%, #1b2033 100%);
  border-radius: 0 0 34px 34px;
  box-shadow: 0 4px 32px 0 #24304A22;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  position: relative;
}
.hero h1 {
  color: #fffbea;
  text-shadow: 0 0 12px #BBA87F88;
  margin-bottom: 8px;
  font-size: 2.1rem;
}
.hero p {
  margin-bottom: 16px;
  color: #ECE9E2;
  font-size: 1.21rem;
  font-weight: 400;
}
.hero .cta {
  margin-top: 8px;
}

@media (max-width: 768px) {
  .hero {
    border-radius: 0 0 18px 18px;
    padding: 38px 10px 32px 10px;
    gap: 8px;
  }
  .hero h1 {
    font-size: 1.3rem;
  }
  .hero p {
    font-size: 1rem;
  }
}


/* =======================
   CORE SECTION LAYOUTS
======================== */
.section,
.features,
.services,
.about,
.contact,
.legal,
.thankyou,
.testimonials {
  margin-bottom: 60px;
  padding: 40px 20px;
  border-radius: 20px;
  background: #18203A;
  box-shadow: 0 2px 18px 0 #24304A26;
}
@media (max-width: 768px) {
  .section, .features, .services, .about, .contact, .legal, .thankyou, .testimonials {
    margin-bottom: 38px;
    padding: 30px 8px;
  }
}

/* =======================
   FEATURES, SERVICES: FLEX
======================== */
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 18px;
  justify-content: flex-start;
}
.feature-grid > div {
  background: #202846;
  border-radius: 16px;
  padding: 28px 24px 18px 24px;
  min-width: 240px;
  flex: 1 1 240px;
  box-shadow: 0 1px 12px 0 #BBA87F22, 0 1px 2px #24304A15;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  position: relative;
  transition: box-shadow 0.22s, transform 0.18s;
}
.feature-grid > div:hover {
  box-shadow: 0 3px 28px -6px #BBA87F44, 0 2px 10px #24304A22;
  transform: translateY(-2px) scale(1.03);
}
.feature-grid .icon {
  width: 32px;
  height: 32px;
  margin-bottom: 6px;
  filter: drop-shadow(0 0 6px #BBA87F77);
}
.feature-grid h3 {
  color: #fff58c;
  font-size: 1.15rem;
  margin-bottom: 6px;
}
.feature-grid p {
  font-size: 1rem;
  color: #ECE9E2;
  margin-bottom: 0;
}

.features ul, .services ul, .about ul {
  list-style: disc outside;
  margin-left: 1.5em;
  margin-top: 12px;
  margin-bottom: 0;
  color: #ECE9E2;
}
.features li, .services li, .about li {
  margin-bottom: 10px;
}
.features ol, .services ol, .about ol {
  margin-left: 1.45em;
  margin-top: 10px;
  color: #ECE9E2;
}
.features h2, .services h2, .about h2 {
  color: #BBA87F;
  font-weight: 600;
}

/* .feature-item (not in HTML currently present but support for future use) */
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #202846;
  border-radius: 14px;
  box-shadow: 0 2px 8px 0 #24304A19;
  padding: 22px 18px;
  margin-bottom: 20px;
}

/* SERVICE CARDS, SECTIONS */
.services {
  background: #202846;
  box-shadow: 0 2px 18px 0 #BBA87F18;
}


/* =========================
   CARDS and FLEX CONTAINERS
========================= */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 20px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #202846;
  border-radius: 16px;
  box-shadow: 0 2px 14px 0 #BBA87F14,0 1px 1px #24304A11;
  padding: 26px 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: transform 0.17s, box-shadow 0.21s;
}
.card:hover {
  transform: translateY(-3px) scale(1.015);
  box-shadow: 0 7px 40px 0 #BBA87F44, 0 4px 20px #24304A33;
}

.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;
}
@media (max-width: 768px) {
  .feature-grid, .card-container, .content-grid, .text-image-section {
    flex-direction: column;
    align-items: stretch;
    gap: 18px;
  }
}

.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #F9F7F2;
  color: #24304A;
  border-radius: 16px;
  box-shadow: 0 2px 14px #BBA87F18;
  margin-bottom: 20px;
}

/* ============================
   TESTIMONIALS & BLOCKQUOTES
============================== */
.testimonials {
  background: #F9F7F2;
  color: #24304A;
  box-shadow: 0 2px 22px 0 #BBA87F19;
  border-radius: 24px;
}
.testimonials h2 {
  color: #24304A;
}
.testimonials blockquote {
  background: #fff;
  color: #24304A;
  border-left: 6px solid #BBA87F;
  padding: 20px 32px 22px 20px;
  border-radius: 18px;
  box-shadow: 0 1px 6px #BBA87F15, 0 2px 12px #1b203318;
  font-style: italic;
  margin: 0 0 24px 0;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.13rem;
  display: flex;
  flex-direction: column;
  position: relative;
  min-width: 0;
}
.testimonials blockquote footer {
  color: #BBA87F;
  margin-top: 15px;
  font-size: 1rem;
  font-style: normal;
  font-weight: 500;
}
.testimonial-slider {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 18px;
}

@media (max-width: 768px) {
  .testimonials {
    padding-left: 5px;
    padding-right: 5px;
  }
  .testimonial-slider {
    gap: 12px;
  }
}


/* =======================
   TABLES (COMPATIBILITY)
======================== */
.compatibility-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  margin-bottom: 18px;
  margin-top: 12px;
  background: #23294f;
  color: #F9F7F2;
  border-radius: 18px;
  box-shadow: 0 2px 10px #BBA87F17;
  overflow: hidden;
  font-size: 1rem;
  text-align: left;
}
.compatibility-table th,
.compatibility-table td {
  padding: 12px 18px;
}
.compatibility-table th {
  background: #24304A;
  color: #BBA87F;
  font-weight: 700;
  font-size: 1.02rem;
  letter-spacing: 0.03em;
}
.compatibility-table tr:nth-child(even) td {
  background: #282c39;
}
.compatibility-table tr:nth-child(odd) td {
  background: #23294f;
}
.compatibility-calc {
  display: flex;
  align-items: center;
  gap: 16px;
  background: #1b2033;
  border-radius: 15px;
  padding: 14px 24px;
  color: #BBA87F;
  font-size: 1.1rem;
  margin-top: 10px;
  box-shadow: 0 1px 7px #BBA87F19;
}
.compatibility-calc svg {
  flex-shrink: 0;
  filter: drop-shadow(0 0 4px #BBA87F44);
}


/* ============================
   CALENDAR + MAP EMBED STYLES
============================== */
.calendar-view {
  margin-top: 10px;
  margin-bottom: 10px;
  background: #24304A11;
  border-radius: 18px;
  box-shadow: 0 1px 4px #24304A14;
  padding: 18px 10px;
  display: flex;
  justify-content: center;
}
.tips-highlight {
  margin-top: 15px;
  background: #202846;
  padding: 16px 24px;
  border-radius: 14px;
  box-shadow: 0 1px 4px #BBA87F19;
}

.map-embed {
  width: 100%;
  margin: 22px 0 0 0;
  display: flex;
  justify-content: center;
}
.map-embed svg {
  max-width: 340px;
  border-radius: 12px;
  box-shadow: 0 2px 12px #24304A1A;
  background: #F9F7F2;
}


/* =======================
   CONTACT & LEGAL BLOCKS
======================== */
.contact-details p {
  margin-bottom: 0;
  font-size: 1rem;
}
address {
  font-style: normal;
  color: #ECE9E2;
  margin-bottom: 10px;
}

.legal {
  background: #202846;
  color: #ECE9E2;
  border-radius: 14px;
  padding: 36px 22px;
}
.legal h1, .legal h2 {
  color: #BBA87F;
}


/* =====================
   CTA BUTTONS
====================== */
.cta, .btn, a.button {
  background: linear-gradient(90deg, #BBA87F 56%, #fff58c 100%);
  color: #24304A;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1.12rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  border-radius: 30px;
  padding: 14px 36px;
  box-shadow: 0 1px 14px 0 #BBA87F2f;
  transition: background 0.24s, box-shadow 0.18s, color 0.17s, transform 0.18s;
  border: none;
  cursor: pointer;
  display: inline-block;
  outline: none;
}
.cta:hover, .cta:focus, .btn:hover, .btn:focus, a.button:hover, a.button:focus {
  background: linear-gradient(90deg, #fff58c 0%, #BBA87F 100%);
  color: #24304A;
  box-shadow: 0 2px 22px 0 #BBA87F99;
  text-decoration: none;
  transform: translateY(-2px) scale(1.025);
}


/* =========================
   FOOTER STYLES
=========================== */
footer {
  background: linear-gradient(90deg, #2a3352 60%, #24304A 100%);
  color: #BBA87F;
  padding: 38px 20px 30px 20px;
  box-shadow: 0 -2px 14px #24304A23;
}
.footer-contact {
  margin-bottom: 15px;
}
.footer-contact strong {
  font-family: 'Cormorant Garamond', serif;
  color: #F9F7F2;
  font-size: 1.15rem;
}
.footer-contact p, .footer-contact a {
  font-size: 1rem;
  color: #ECE9E2;
  margin-bottom: 6px;
}
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 8px;
}
.footer-links a {
  color: #BBA87F;
  text-decoration: underline;
  font-size: 1rem;
}
.footer-links a:hover, .footer-links a:focus {
  color: #fff58c;
  text-decoration: none;
}

@media (max-width: 768px) {
  footer {
    flex-direction: column;
    padding: 22px 8px 18px 8px;
  }
  .footer-links {
    gap: 12px;
    margin-top: 14px;
  }
}


/* =============================
   COOKIE BANNER & COOKIE MODAL
============================= */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  width: 100vw;
  z-index: 1500;
  background: linear-gradient(90deg, #18203A 60%, #24304A 100%);
  box-shadow: 0 -2px 16px #24304A44;
  color: #F9F7F2;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 26px 16px 20px;
  font-size: 1.02rem;
  transition: transform 0.28s cubic-bezier(.65,.05,.3,1);
}
.cookie-banner.hide {
  transform: translateY(120%);
}
.cookie-banner .cookie-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-left: 18px;
}
.cookie-btn,.cookie-settings-btn {
  padding: 10px 24px;
  font-size: 1.02rem;
  border-radius: 20px;
  border: none;
  background: #BBA87F;
  color: #24304A;
  font-family: 'Roboto', Arial, sans-serif;
  font-weight: 600;
  margin: 0;
  margin-right: 2px;
  cursor: pointer;
  transition: background 0.23s, color 0.17s, box-shadow 0.17s;
  box-shadow: 0 1px 10px 0 #BBA87F28;
}
.cookie-btn:hover,
.cookie-settings-btn:hover,
.cookie-btn:focus,
.cookie-settings-btn:focus {
  background: #fff58c;
  color: #24304A;
  box-shadow: 0 2px 19px #BBA87F29;
}
.cookie-btn.reject {
  background: #ECE9E2;
  color: #24304A;
  border: 1px solid #BBA87F;
}
.cookie-btn.reject:hover, .cookie-btn.reject:focus {
  background: #24304A;
  color: #fff58c;
}

/* cookie settings modal */
.cookie-modal {
  position: fixed;
  left: 0; top: 0; right: 0; bottom: 0;
  background: rgba(27,32,51,0.95);
  z-index: 1600;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transition: opacity 0.21s, visibility 0.18s;
  opacity: 0;
  visibility: hidden;
}
.cookie-modal.open {
  opacity: 1;
  visibility: visible;
}
.cookie-modal-content {
  background: #1b2033;
  color: #ECE9E2;
  border-radius: 18px;
  max-width: 420px;
  width: 88vw;
  padding: 32px 26px 20px 26px;
  box-shadow: 0 8px 44px #BBA87F33, 0 2px 5px #24304A19;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
  position: relative;
  animation: fade-in-top .32s cubic-bezier(.73,.16,.29,1);
}
@keyframes fade-in-top {
  0% { opacity: 0; transform: translateY(-24px); }
  100% { opacity: 1; transform: translateY(0); }
}
.cookie-modal-close {
  position: absolute;
  right: 18px;
  top: 18px;
  font-size: 1.7rem;
  background: none;
  color: #BBA87F;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.16s, color 0.17s;
  z-index: 1601;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  background: #24304A;
  color: #fff58c;
}
.cookie-modal-content h2 {
  color: #BBA87F;
  margin-bottom: 10px;
  font-family: 'Cormorant Garamond', serif;
}
.cookie-pref-list {
  margin: 16px 0 12px 0;
  padding: 0;
  width: 100%;
}
.cookie-pref-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  background: #202846;
  border-radius: 10px;
  padding: 12px 14px;
  margin-bottom: 11px;
}
.cookie-pref-item .cookie-toggle {
  appearance: none;
  width: 40px;
  height: 22px;
  background: #ECE9E2;
  border-radius: 22px;
  position: relative;
  outline: none;
  border: 1.5px solid #BBA87F;
  cursor: pointer;
  transition: background 0.19s, border 0.18s;
}
.cookie-pref-item .cookie-toggle:checked {
  background: #BBA87F;
  border: 1.5px solid #ECE9E2;
}
.cookie-pref-item .cookie-toggle:before {
  content: '';
  display: block;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #24304A;
  position: absolute;
  left: 0; top: 1px;
  transition: transform 0.25s;
}
.cookie-pref-item .cookie-toggle:checked:before {
  background: #fff58c;
  transform: translateX(18px);
}
.cookie-pref-item label {
  font-size: 1rem;
  color: #ECE9E2;
  user-select: none;
}
.cookie-pref-item.essential label {
  font-weight: 700;
}
.cookie-pref-item.essential .cookie-toggle {
  opacity: 0.5;
  pointer-events: none;
}
.cookie-modal-actions {
  display: flex;
  gap: 16px;
  margin-top: 12px;
}
.cookie-modal-actions .cookie-btn {
  padding: 10px 28px;
}

@media (max-width: 500px) {
  .cookie-modal-content {
    padding: 16px 7vw 16px 7vw;
  }
  .cookie-banner {
    flex-direction: column;
    gap: 10px;
    padding: 12px 7vw 14px 7vw;
    font-size: 0.98rem;
    align-items: flex-start;
  }
  .cookie-banner .cookie-buttons {
    margin-left: 0;
    width: 100%;
  }
}

/* =======================
   THANK YOU PAGE/STATE
======================= */
.thankyou {
  text-align: center;
  background: linear-gradient(90deg, #24304A 60%, #BBA87F 190%);
  color: #F9F7F2;
  margin: 56px 0 34px 0;
}
.thankyou h1 {
  font-size: 2rem;
  margin-bottom: 16px;
  color: #fff58c;
}
.thankyou a.cta {
  margin-top: 24px;
}


/* =========================
   MICRO-ACCENTS, EFFECTS
=========================== */
.section, .features, .about, .services, .contact, .legal, .thankyou, .testimonials, .card, .feature-grid > div {
  border: 1.5px solid #23294F;
  box-shadow: 0 1.5px 10px #BBA87F14, 0 1px 5px #24304A19;
}
.feature-grid > div::before {
  content: '';
  display: block;
  position: absolute;
  top: -8px; right: -8px;
  width: 26px; height: 26px;
  border-radius: 50%;
  background: radial-gradient(circle, #BBA87F55 35%, transparent 80%);
  z-index: 0;
  pointer-events: none;
}
.card::after {
  content: '';
  display: block;
  position: absolute;
  bottom: -8px; left: -8px;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: radial-gradient(circle, #BBA87F34 55%, transparent 90%);
  z-index: 0;
  pointer-events: none;
}

/* Neon hover accent for .cta and .main-nav a.cta */
.cta:active, .main-nav a.cta:active {
  box-shadow: 0 0px 16px #fff58c70,0 0px 4px #BBA87F33;
}


/* =========================
   RESPONSIVE ADJUSTMENTS
========================= */
@media (max-width: 600px) {
  .card, .feature-grid > div {
    min-width: 0;
    padding: 20px 10px;
  }
  .hero, .section, .features, .services, .about, .contact, .legal, .thankyou, .testimonials {
    padding: 18px 3vw;
  }
}
