/* ELEXA BURST – style.css – Vibrant Energetic Flexbox Design */
/* =============================================
   CSS RESET & NORMALIZE
   ============================================= */
html {
  box-sizing: border-box;
  font-size: 100%;
  -webkit-tap-highlight-color: transparent;
  background: #F7F7FA;
}
*, *:before, *:after {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
}
body {
  font-family: "Open Sans", Arial, sans-serif;
  color: #222;
  background: #F7F7FA;
  font-size: 16px;
  line-height: 1.5;
}
a {
  color: #23436A;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #31A67A;
  outline: none;
}
ul, ol {
  list-style: none;
}
h1, h2, h3, h4, h5, h6 {
  font-family: "Montserrat", Arial, sans-serif;
  font-weight: 700;
  color: #23436A;
}
h1 { font-size: 2.75rem; line-height: 1.15; margin-bottom: 16px; }
h2 { font-size: 2.125rem; margin-bottom: 16px; }
h3 { font-size: 1.25rem; margin-bottom: 10px; font-weight: 600; color: #222; }
h4, h5, h6 { font-size: 1rem; }
p { margin-bottom: 16px; font-size: 1rem; color: #333; }
strong { font-weight: 700; }
img { max-width: 100%; height: auto; display: inline-block; }
table { border-collapse: collapse; width: 100%; margin-bottom: 24px; }
th, td {padding: 14px 12px; text-align: left;}
th { background: #23436A; color: #fff; font-family: "Montserrat", Arial, sans-serif; font-weight: 700;}
tbody tr { background: #fff; border-bottom: 2px solid #E2E8F0; }
tbody tr:last-child { border-bottom: none; }
td { color: #214056; font-size: 16px; }

/* =============================================
   VARIABLES (with fallbacks)
   ============================================= */
:root {
  --primary: #23436A;
  --secondary: #31A67A;
  --accent: #F7F7FA;
  --electric-pink: #FF377D;
  --electric-blue: #1BDCFF;
  --electric-yellow: #FFD600;
  --shadow1: rgba(49,166,122,0.10);
  --shadow2: rgba(35,67,106,0.09);
}

/* =============================================
   GENERAL SPACING AND CONTAINERS
   ============================================= */
.container {
  width: 100%;
  max-width: 1230px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 8px 36px var(--shadow1), 0 1.5px 4px var(--shadow2);
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
}

/* =============================================
   HEADER & NAVIGATION
   ============================================= */
header {
  width: 100%;
  background: #23436A;
  box-shadow: 0 2px 16px rgba(35,67,106,0.13);
  position: sticky;
  top: 0;
  z-index: 50;
}
header .container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  min-height: 72px;
}
header nav {
  display: flex;
  align-items: center;
  gap: 36px;
  flex-wrap: wrap;
  width: 100%;
}
header nav > a img {
  height: 42px;
  margin-right: 35px;
}
header nav ul {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  align-items: center;
}
header nav ul li a {
  color: #fff;
  font-family: "Montserrat", Arial, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.05em;
  padding: 10px 8px;
  border-radius: 6px;
  transition: background 0.17s, color 0.17s;
}
header nav ul li a:hover, header nav ul li a:focus {
  color: #FFD600;
  background: rgba(255,255,255,0.14);
}
.cta-header {
  background: #FFD600;
  color: #23436A;
  font-weight: 700;
  font-family: "Montserrat", Arial, sans-serif;
  padding: 11px 28px;
  margin-left: 24px;
  border-radius: 8px;
  box-shadow: 0 2px 7px rgba(227,108,169,0.07);
  font-size: 1rem;
  text-transform: uppercase;
  transition: background 0.18s, color 0.18s, box-shadow 0.18s;
}
.cta-header:hover, .cta-header:focus {
  background: #FF377D;
  color: #fff;
  box-shadow: 0 6px 16px rgba(255,55,125,0.17);
}
.mobile-menu-toggle {
  display: none;
  font-size: 2rem;
  background: none;
  border: none;
  color: #FFD600;
  margin-left: auto;
  outline: none;
  cursor: pointer;
  padding: 6px 8px;
  border-radius: 8px;
  z-index: 110;
  transition: background 0.17s;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: rgba(255,255,255,0.1);
}

/* =============================================
   MOBILE MENU
   ============================================= */
.mobile-menu {
  display: none;
  position: fixed;
  z-index: 200;
  left: 0; top: 0; bottom: 0; right: 0;
  background: #23436A;
  transform: translateX(-100%);
  transition: transform 0.4s cubic-bezier(0.87,0.09,0.16,1.1);
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 24px 12px 36px 18px;
  box-shadow: 2px 0 22px rgba(35,67,106,0.30);
}
.mobile-menu.open {
  display: flex;
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  background: none;
  border: none;
  color: #FFD600;
  font-size: 2.4rem;
  margin-bottom: 18px;
  padding: 6px 10px;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.18s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: rgba(255,255,255,0.09);
}
.mobile-nav {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.mobile-nav a {
  display: block;
  width: 100%;
  color: #fff;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 1.15rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  padding: 18px 12px 13px 4px;
  border-radius: 8px;
  transition: background 0.14s, color 0.14s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: #31A67A;
  background: rgba(255,255,255,0.08);
}

/* =============================================
   HERO SECTION
   ============================================= */
.hero {
  background: linear-gradient(110deg, #FFD600 0%, #1BDCFF 100%);
  box-shadow: 0 8px 32px var(--shadow2);
  min-height: 250px;
  display: flex;
  align-items: center;
  padding: 0;
  margin-bottom: 0;
  position: relative;
}
.hero .container {
  display: flex;
  flex-direction: column;
  gap: 0;
  align-items: flex-start;
  padding: 44px 20px 40px 20px;
}
.hero .content-wrapper {
  gap: 23px;
}
.hero h1 {
  color: #23436A;
  font-size: 2.4rem;
  margin-bottom: 6px;
  font-weight: 800;
  letter-spacing: -0.03em;
  text-shadow: 0 4px 20px rgba(255,55,125,0.05);
}
.hero p {
  color: #222;
  font-size: 1.15rem;
  max-width: 560px;
  margin-bottom: 18px;
}
.cta-main {
  display: inline-block;
  background: #31A67A;
  color: #fff;
  font-family: "Montserrat", Arial, sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 15px 40px;
  border-radius: 12px;
  margin-top: 8px;
  box-shadow: 0 3px 18px rgba(49,166,122,0.10);
  transition: background 0.16s, color 0.16s, box-shadow 0.18s, transform 0.16s;
  border: none;
  cursor: pointer;
}
.cta-main:hover, .cta-main:focus {
  background: #FF377D;
  color: #fff;
  transform: scale(1.036);
  box-shadow: 0 7px 28px rgba(255,55,125,0.13);
}
.cta-secondary {
  background: #23436A;
  color: #FFD600;
  border-radius: 8px;
  font-family: "Montserrat", Arial, sans-serif;
  font-weight: 700;
  padding: 11px 35px;
  font-size: 1rem;
  margin-top: 12px;
  text-transform: uppercase;
  letter-spacing: 0.035em;
  box-shadow: 0 2.5px 11px rgba(35,67,106,0.14);
  transition: background 0.15s, color 0.15s, box-shadow 0.14s;
}
.cta-secondary:hover, .cta-secondary:focus {
  background: #31A67A;
  color: #fff;
  box-shadow: 0 7px 20px rgba(49,166,122,0.21);
}

/* =============================================
   FEATURES & CARDS
   ============================================= */
.features {
  background: #fff;
  border-radius: 24px;
  margin-bottom: 60px;
  padding: 40px 20px;
}
.features .content-wrapper {
  gap: 34px;
}
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-top: 15px;
  width: 100%;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #F7F7FA;
  border-radius: 15px;
  box-shadow: 0 3.5px 15px rgba(27,220,255,0.10);
  min-width: 250px;
  flex: 1 1 250px;
  padding: 28px 22px 24px 22px;
  margin-bottom: 20px;
  transition: transform 0.14s, box-shadow 0.19s;
}
.feature-item img {
  width: 45px;
  height: 45px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(255,214,0,0.17);
  margin-bottom: 4px;
}
.feature-item:hover, .feature-item:focus-within {
  box-shadow: 0 10px 32px rgba(255,55,125,0.13), 0 8px 32px rgba(49,166,122,0.10);
  transform: translateY(-3px) scale(1.025);
}
.feature-item h3 {
  color: #31A67A;
  font-size: 1.13rem;
  font-weight: 700;
  margin-bottom: 7px;
}
.feature-item p {
  color: #23436A;
  font-size: 1.02rem;
}


.card-container, .blog-posts-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: 18px;
  margin-bottom: 20px;
  box-shadow: 0 4px 24px var(--shadow2);
  position: relative;
  padding: 26px 30px;
  flex: 1 1 290px;
  transition: box-shadow 0.14s, transform 0.14s;
  display: flex;
  flex-direction: column;
  min-width: 260px;
}
.card:hover, .card:focus-within {
  box-shadow: 0 10px 36px rgba(255,55,125,0.11);
  transform: translateY(-4px) scale(1.018);
}

.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
}

.blog-posts-grid article {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 3.5px 12px rgba(35,67,106,0.13);
  padding: 22px 20px;
  flex: 1 1 280px;
  transition: box-shadow 0.13s, transform 0.13s;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
.blog-posts-grid article:hover {
  box-shadow: 0 10px 32px rgba(27,220,255,0.12);
  transform: scale(1.02);
}
.blog-posts-grid h3 {
  color: #FF377D;
  font-size: 1.16rem;
  font-family: "Montserrat", Arial, sans-serif;
  font-weight: 700;
  margin-bottom: 7px;
}
.blog-posts-grid a {
  color: #31A67A;
  font-weight: 700;
  line-height: 1.25;
  margin-top: auto;
  font-family: "Montserrat", Arial, sans-serif;
}
.blog-posts-grid a:hover, .blog-posts-grid a:focus {
  color: #FF377D;
}

/* =============================================
   TESTIMONIALS
   ============================================= */
.testimonials { background: #F7F7FA; margin-bottom: 60px; padding: 40px 20px; border-radius: 20px;}
.testimonials .content-wrapper { gap: 36px; }
.testimonial-slider {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  width: 100%;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  background: #fff;
  color: #222;
  border-radius: 16px;
  box-shadow: 0 2.5px 15px rgba(27,220,255,0.16);
  padding: 24px 28px 20px 24px;
  min-width: 280px;
  max-width: 390px;
  margin-bottom: 20px;
  transition: box-shadow 0.14s, transform 0.13s;
}
.testimonial-card:hover, .testimonial-card:focus-within {
  box-shadow: 0 8px 32px rgba(255,55,125,0.09);
  transform: translateY(-2px) scale(1.02);
}
.testimonial-card p {
  color: #214056;
  line-height: 1.5;
  font-size: 1.03rem;
  margin-bottom: 8px;
}
.testimonial-meta {
  color: #FF377D;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 0.96rem;
}
.testimonials h2 {
  color: #23436A;
}

/* Individual cards (alternate layouts on testimonial pages) */
.testimonials .testimonial-card:not(.testimonial-slider .testimonial-card) {
  max-width: 680px;
  margin-left: 0;
  margin-right: 0;
}

/* =============================================
   CTA SECTIONS
   ============================================= */
.cta { background: #31A67A; color: #fff; border-radius: 18px; margin-bottom: 60px; padding: 34px 20px; text-align: center; }
.cta .cta-main { background: #FFD600; color: #23436A; margin-bottom: 16px; }
.cta .cta-main:hover, .cta .cta-main:focus { background: #FF377D; color: #fff; }
.cta .contact-info { display: flex; flex-wrap: wrap; gap: 20px; justify-content: center; margin-top: 14px; }
.cta .contact-info li, .cta .contact-info a { color: #fff; font-size: 1rem; }

/* =============================================
   LAYOUT COMMON PATTERNS / FLEXBOX
   ============================================= */
.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;
}

/* =============================================
   CONTACT INFO
   ============================================= */
.contact-info {
  margin: 0 0 18px 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.contact-info ul {
  display: flex;
  flex-direction: column;
  gap: 13px;
  padding: 0;
  margin: 0;
}
.contact-info li {
  display: flex;
  align-items: center;
  gap: 11px;
  color: #222;
  font-size: 1rem;
  font-family: "Open Sans", Arial, sans-serif;
}
.contact-info a {
  color: #31A67A;
  font-weight: 600;
}
.contact-info a:hover, .contact-info a:focus {
  color: #FF377D;
  text-decoration: underline;
}
.contact-info img {
  width: 26px;
  height: 26px;
}

.map-placeholder {
  width: 100%;
  min-height: 140px;
  background: #F7F7FA;
  border-radius: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 13px;
  box-shadow: 0 2px 12px rgba(35,67,106,0.07);
}

/* =============================================
   POLICY & FAQ SECTIONS
   ============================================= */
.policy {
  background: #fff;
  border-radius: 16px;
  margin-bottom: 60px;
  padding: 40px 20px;
}
.policy ul {
  margin: 10px 0 20px 24px;
  list-style: disc inside;
  color: #23436A;
}
.faq ul {
  margin-top: 12px;
  margin-bottom: 16px;
  padding-left: 26px;
  color: #214056;
}
.faq li {
  margin-bottom: 10px;
  font-size: 1rem;
  font-weight: 400;
}


/* =============================================
   FOOTER
   ============================================= */
footer {
  background: #23436A;
  color: #fff;
  padding: 54px 20px 20px 20px;
  border-radius: 20px 20px 0 0;
  margin-top: 80px;
}
footer .container {
  display: flex;
  flex-direction: column;
  gap: 25px;
}
.footer-nav ul {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin-bottom: 20px;
  padding: 0;
}
.footer-nav a {
  color: #FFD600;
  font-family: "Montserrat", Arial, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  padding: 7px 0;
  transition: color 0.12s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: #31A67A;
}
.footer-social {
  display: flex;
  align-items: center;
  gap: 16px;
}
.footer-social span {
  color: #fff;
  font-size: 1rem;
  font-family: "Montserrat", Arial, sans-serif;
}
.footer-social a img {
  width: 38px;
  height: 38px;
  filter: grayscale(0.2) brightness(1.08);
  transition: filter 0.15s;
  border-radius: 8px;
}
.footer-social a:hover img {
  filter: drop-shadow(0 2px 7px #1BDCFF) brightness(1.15);
}
.footer-contact ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-contact li {
  display: flex;
  align-items: center;
  font-size: 1rem;
  gap: 10px;
  color: #fff;
}
.footer-contact a {
  color: #FFD600;
  font-weight: 600;
  font-family: "Montserrat", Arial, sans-serif;
}
.footer-contact a:hover {
  color: #1BDCFF;
}
.footer-copy {
  font-size: 0.97rem;
  color: #CED6E0;
  margin-top: 18px;
}

/* =============================================
   COOKIE CONSENT BANNER & MODAL
   ============================================= */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 999;
  background: #23436A;
  color: #fff;
  padding: 22px 20px 12px 20px;
  box-shadow: 0 -7px 32px rgba(35,67,106,0.23);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  font-size: 1rem;
  animation: cookie-in 0.45s cubic-bezier(0.6,0.2,0.1,1.1);
}
@keyframes cookie-in {
  from { transform: translateY(100%); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.cookie-banner .cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 7px;
}
.cookie-btn {
  background: #FFD600;
  color: #23436A;
  font-family: "Montserrat", Arial, sans-serif;
  border: none;
  border-radius: 7px;
  font-size: 1.02rem;
  font-weight: 700;
  padding: 9px 23px;
  transition: background 0.16s, color 0.16s;
  margin: 0;
  cursor: pointer;
  margin-bottom: 5px;
  box-shadow: 0 2.5px 9px rgba(227,108,169,0.08);
}
.cookie-btn:hover, .cookie-btn:focus {
  background: #FF377D;
  color: #fff;
}
.cookie-btn.settings {
  background: #31A67A;
  color: #fff;
}
.cookie-btn.settings:hover, .cookie-btn.settings:focus {
  background: #FFD600;
  color: #23436A;
}
.cookie-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(35,67,106,0.74);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: cookie-modal-in 0.4s cubic-bezier(0.7,0,0.16,1.01);
}
@keyframes cookie-modal-in {
  from { opacity: 0; transform: scale(.93); }
  to { opacity: 1; transform: scale(1); }
}
.cookie-modal {
  background: #fff;
  color: #23436A;
  border-radius: 18px;
  box-shadow: 0 8px 40px rgba(49,166,122,0.13);
  padding: 34px 24px 23px 24px;
  min-width: 295px;
  max-width: 95vw;
  font-size: 1rem;
  position: relative;
  z-index: 1001;
  display: flex;
  flex-direction: column;
  gap: 19px;
  animation: cookie-modal-in 0.4s;
}
.cookie-modal h2 {
  font-size: 1.26rem;
  color: #31A67A;
  font-weight: 700;
  margin-bottom: 7px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 13px;
}
.cookie-category label {
  font-size: 1.04rem;
  font-weight: 600;
  color: #23436A;
}
.cookie-category .toggle-switch {
  appearance: none;
  width: 44px;
  height: 26px;
  background: #CED6E0;
  border-radius: 13px;
  position: relative;
  outline: none;
  cursor: pointer;
  transition: background 0.14s;
}
.cookie-category .toggle-switch:checked {
  background: #31A67A;
}
.cookie-category .toggle-switch::before {
  content: '';
  position: absolute;
  left: 4px;
  top: 3px;
  width: 20px;
  height: 20px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 1px 3px rgba(35,67,106,0.09);
  transition: left 0.18s;
}
.cookie-category .toggle-switch:checked::before {
  left: 20px;
}
.cookie-modal .cookie-actions {
  display: flex;
  gap: 18px;
  margin-top: 13px;
}
.cookie-modal .modal-close {
  position: absolute;
  top: 10px;
  right: 14px;
  background: none;
  border: none;
  color: #31A67A;
  font-size: 2rem;
  cursor: pointer;
  padding: 3px;
  transition: color 0.16s;
}
.cookie-modal .modal-close:hover, .cookie-modal .modal-close:focus {
  color: #FF377D;
}

/* =============================================
   PRICING TABLES
   ============================================= */
.pricing-table table {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2.5px 12px rgba(49,166,122,0.13);
  overflow: hidden;
  margin-bottom: 28px;
}
.pricing-table th {
  background: #31A67A;
  color: #fff;
}
.pricing-table td {
  color: #214056;
  font-size: 1rem;
}
.pricing-table ul {
  margin: 18px 0 16px 0;
  padding-left: 26px;
  list-style: disc inside;
}
.pricing-table a.cta-main {
  margin-top: 14px;
}

/* =============================================
   FORMS, INPUTS, BUTTONS (if present)
   ============================================= */
input, textarea, select {
  font-family: "Open Sans", Arial, sans-serif;
  font-size: 1rem;
  border-radius: 8px;
  border: 1.5px solid #31A67A;
  padding: 12px 14px;
  margin-bottom: 16px;
  color: #23436A;
  outline: none;
  background: #fff;
  transition: border-color 0.13s;
  box-shadow: 0 1px 8px rgba(49,166,122,0.05);
}
input:focus, textarea:focus, select:focus {
  border-color: #FF377D;
}
button {
  font-family: "Montserrat", Arial, sans-serif;
  font-weight: 600;
  font-size: 1.03rem;
  border-radius: 8px;
  padding: 12px 30px;
  border: none;
  background: #31A67A;
  color: #fff;
  cursor: pointer;
  transition: background 0.16s, color 0.16s, box-shadow 0.13s;
  box-shadow: 0 2px 11px rgba(49,166,122,0.09);
}
button:hover, button:focus {
  background: #FF377D;
  color: #fff;
}

/* =============================================
   SPECIAL SECTIONS FOR LAYOUT (e.g., .about-short, .newsletter, .thank-you)
   ============================================= */
.about-short, .newsletter, .thank-you {
  background: #1BDCFF;
  border-radius: 18px;
  color: #23436A;
  margin-bottom: 60px;
  padding: 40px 20px;
  box-shadow: 0 8px 32px rgba(27,220,255,0.11);
}
.about-short h2, .newsletter h2, .thank-you h1 {
  color: #FF377D;
}
.about-short ul, .newsletter ul {
  margin-top: 11px;
  margin-left: 18px;
  color: #23436A;
  list-style: disc inside;
}

/* =============================================
   RESPONSIVE DESIGN (Mobile First)
   ============================================= */
@media (max-width: 1110px) {
  .container {
    max-width: 970px;
  }
  .feature-grid,
  .testimonial-slider {
    gap: 18px;
  }
  .footer-nav ul {
    gap: 20px;
  }
}
@media (max-width: 900px) {
  .container {
    max-width: 750px;
  }
  .hero h1 {
    font-size: 2rem;
  }
}
@media (max-width: 768px) {
  .container {
    padding-left: 10px; padding-right: 10px;
  }
  header nav ul {
    display: none;
  }
  header .cta-header { display: none; }
  .mobile-menu-toggle {
    display: block;
  }
  .feature-grid,
  .testimonial-slider,
  .card-container,
  .blog-posts-grid,
  .content-grid {
    flex-direction: column;
    gap: 17px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 22px;
    align-items: flex-start;
  }
  .section, .about-short, .newsletter, .thank-you, .features, .testimonials, .policy, .cta {
    margin-bottom: 40px;
    padding: 30px 8px;
    border-radius: 10px;
  }
  .footer-nav ul {
    flex-direction: column;
    gap: 8px;
  }
  .footer-social {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
  .footer-contact ul {
    gap: 7px;
  }
  .footer-copy {
    font-size: 0.89rem;
  }
  .map-placeholder {
    min-height: 90px;
  }
  .cookie-modal {
    padding: 24px 7px 18px 11px;
    min-width: unset;
  }
}
@media (max-width: 500px) {
  html { font-size: 98%; }
  .hero .container, .section, .about-short, .newsletter, .thank-you, .features, .testimonials, .policy, .cta {
    padding-left: 2.5vw;
    padding-right: 2.5vw;
  }
  .testimonial-card {
    padding: 17px 8px;
    min-width: 180px;
    font-size: 0.98rem;
  }
  .feature-item {
    padding: 12px 5px 12px 8px;
    min-width: 140px;
    font-size: 0.98rem;
  }
  .card {
    padding: 12px 8px;
    min-width: 160px;
  }
  .blog-posts-grid article {
    padding: 11px 6px;
  }
  .cookie-modal {
    font-size: 0.95rem;
  }
}

/* =============================================
   MICRO-INTERACTIONS
   ============================================= */
.cta-main, .cta-header, .card, .feature-item, .testimonial-card, .blog-posts-grid article, .cookie-btn, .cookie-modal, button {
  transition: box-shadow 0.16s, background 0.14s, color 0.14s, transform 0.12s;
}

/* Subtle card shadow pulse on hover */
.card:hover, .feature-item:hover, .testimonial-card:hover, .blog-posts-grid article:hover {
  animation: pulse-shadow 0.24s linear;
}
@keyframes pulse-shadow {
  0%   { box-shadow: 0 2.5px 12px rgba(49,166,122,0.13); }
  50%  { box-shadow: 0 16px 38px rgba(255,55,125,0.14); }
  100% { box-shadow: 0 4px 24px rgba(35,67,106,0.13); }
}

/* =============================================
   Z-INDEX LAYERING (for menu & overlays)
   ============================================= */
header, .mobile-menu, .cookie-banner, .cookie-modal-overlay {
  z-index: 1000 !important;
}

/* =============================================
   COLOR CONTRAST (Testimonials)
   ============================================= */
.testimonial-card, .testimonial-card p, .testimonial-meta {
  color: #1B2541 !important;
  background: #fff !important;
}

/* =============================================
   ACCESSIBILITY
   ============================================= */
:focus-visible {
  outline: 2.5px solid #FF377D;
  outline-offset: 2px;
}
[role="button"], button, .cta-main, .cta-header {
  outline: none;
}

/* =============================================
   PRINT (Safe)
   ============================================= */
@media print {
  header, footer, .cookie-banner, .mobile-menu, .cookie-modal-overlay {
    display: none !important;
  }
  body { background: #fff; color: #111; }
}
