/* 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;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1.5;
  background: #F9F6F2;
  color: #132136;
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 16px;
  min-height: 100vh;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: #198FFF;
  text-decoration: none;
  transition: color 0.2s;
}
a:focus {
  outline: 2px solid #FFBA08;
}
a:hover {
  color: #FF416C;
}
ul, ol {
  list-style: none;
}

/* BRAND COLOR VARIABLES (with fallbacks) */
:root {
  --primary: #274560;
  --primary-dark: #17263c;
  --secondary: #80A789;
  --secondary-dark: #548267;
  --accent: #F9F6F2;
  --electric-blue: #198FFF;
  --electric-lime: #E6FF3C;
  --vibrant-orange: #FFBA08;
  --hot-pink: #FF416C;
  --white: #ffffff;
  --black: #181818;
  --gray: #EDEDED;
  --shadow: rgba(30,49,70,0.10);
  --feature-card: #F5FCFF;
}

/* TYPOGRAPHY =============================== */
h1, h2, h3, h4 {
  font-family: 'Roboto Slab', 'Times New Roman', serif;
  color: var(--primary, #274560);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 20px;
}
h1 {
  font-size: 2.8rem;
  letter-spacing: -1px;
}
h2 {
  font-size: 2rem;
  letter-spacing: -0.5px;
}
h3 {
  font-size: 1.3rem;
  letter-spacing: 0.1px;
}
h4 {
  font-size: 1.1rem;
}

p, li, td, th, a, input, textarea, label {
  font-family: 'Open Sans', Arial, sans-serif;
  color: var(--primary-dark, #132136);
  font-size: 1rem;
  line-height: 1.7;
}
strong, b {
  font-weight: 700;
}

/* General spacing for vibrant energetic feeling */
.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 18px;
}
.content-wrapper {
  width: 100%;
  max-width: 880px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
@media (max-width: 600px) {
  .section {
    padding: 28px 8px;
    margin-bottom: 36px;
  }
}

/* ========== HEADER + NAVIGATION ========== */
header {
  background: var(--primary, #274560);
  color: var(--white, #fff);
  width: 100%;
  box-shadow: 0 2px 14px var(--shadow);
  position: relative;
  z-index: 100;
}
.header-wrapper {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px 0;
}
header img {
  height: 44px;
}
nav.main-nav {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 28px;
  justify-content: center;
}
nav.main-nav a {
  color: var(--white, #fff);
  font-weight: 700;
  letter-spacing: 0.01em;
  font-size: 1.08rem;
  position: relative;
  padding: 6px 10px;
  border-radius: 4px;
  transition: background 0.18s, color 0.2s;
}
nav.main-nav a:hover,
nav.main-nav a:focus {
  background: var(--electric-blue);
  color: var(--black, #181818);
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 164px;
  font-family: 'Roboto Slab', serif;
  font-weight: 700;
  font-size: 1.1rem;
  padding: 12px 32px;
  background: linear-gradient(90deg, var(--electric-blue), var(--vibrant-orange));
  box-shadow: 0 2px 10px rgba(30,60,100,0.18);
  color: var(--white, #fff);
  text-transform: uppercase;
  border: none;
  border-radius: 36px;
  margin-left: 18px;
  cursor: pointer;
  letter-spacing: 0.04em;
  transition: background 0.21s, transform 0.19s, box-shadow 0.2s;
  position: relative;
  z-index: 1;
}
.btn-primary:hover, .btn-primary:focus {
  background: linear-gradient(90deg, var(--hot-pink), var(--electric-lime));
  color: #181818;
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 5px 20px rgba(30,60,100,0.22);
}

/* Mobile menu trigger */
.mobile-menu-toggle {
  display: none;
  position: absolute;
  top: 22px;
  right: 20px;
  z-index: 120;
  background: var(--electric-blue);
  color: #fff;
  border: none;
  border-radius: 8px;
  width: 44px;
  height: 44px;
  font-size: 2rem;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  box-shadow: 0 2px 9px rgba(40,60,130,0.08);
}
.mobile-menu-toggle:focus {
  outline: 2px solid var(--vibrant-orange);
}

/* Mobile off-canvas menu */
.mobile-menu {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 0;
  right: 0;
  width: 320px;
  max-width: 100vw;
  height: 100vh;
  background: var(--primary, #274560);
  box-shadow: -2px 0 14px var(--shadow);
  z-index: 200;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(.85,.01,.55,1);
  padding: 30px 22px 14px 22px;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  background: var(--hot-pink);
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  font-size: 1.6rem;
  cursor: pointer;
  margin-bottom: 8px;
  transition: background 0.2s, color 0.2s;
}
.mobile-menu-close:focus {
  outline: 2px solid var(--white, #fff);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 14px;
}
.mobile-nav a {
  color: var(--white, #fff);
  font-family: 'Roboto Slab', serif;
  font-size: 1.15rem;
  padding: 12px 2px;
  border-radius: 6px;
  font-weight: 700;
  letter-spacing: 0.02em;
  transition: background 0.18s, color 0.2s;
  text-align: left;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--electric-blue);
  color: var(--vibrant-orange);
}

@media (max-width: 950px) {
  nav.main-nav {
    display: none;
  }
  .btn-primary {
    margin-left: 0;
  }
  .mobile-menu-toggle {
    display: block;
  }
}
@media (max-width: 500px) {
  .mobile-menu {
    width: 98vw;
    padding: 12px 8px 8px 8px;
  }
}


/* ========== HERO SECTION ========== */
.hero-section {
  background: linear-gradient(96deg, var(--electric-blue) 2%, var(--vibrant-orange) 95%);
  color: var(--white, #fff);
  box-shadow: 0 7px 32px 0 rgba(30,60,100,0.12);
  border-radius: 0 0 40px 40px;
  margin-bottom: 42px;
  padding: 64px 0 54px 0;
  position: relative;
  overflow: hidden;
}
.hero-section h1 {
  text-shadow: 0 3px 16px rgba(30,70,120,0.17);
  color: #fff;
  font-size: 2.2rem;
  margin-bottom: 16px;
}
.hero-section p {
  color: #fff;
  font-size: 1.18rem;
  margin-bottom: 26px;
}
.hero-section .btn-primary {
  background: linear-gradient(90deg, var(--electric-lime), var(--hot-pink));
  color: #181818;
  box-shadow: 0 2px 16px rgba(40,60,180,0.12);
}
.hero-section .btn-primary:hover {
  background: linear-gradient(90deg, var(--electric-blue), var(--vibrant-orange));
  color: #fff;
}

@media (max-width: 600px) {
  .hero-section {
    padding: 36px 0 30px 0;
    border-radius: 0 0 24px 24px;
  }
  .hero-section h1 {
    font-size: 1.32rem;
  }
}

/* ========== FEATURE LIST / GRID ========== */
.feature-grid,
.service-list,
.service-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  justify-content: space-between;
  margin: 24px 0;
}
.feature-card,
.service-item {
  background: var(--feature-card);
  border-radius: 20px;
  box-shadow: 0 2px 14px var(--shadow);
  padding: 28px 20px 24px 20px;
  min-width: 220px;
  flex: 1 1 240px;
  max-width: 320px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
  transition: box-shadow 0.2s, transform 0.18s;
  border: 2px solid transparent;
}
.feature-card:hover,
.service-item:hover {
  box-shadow: 0 7px 28px var(--shadow);
  border: 2px solid var(--electric-lime);
  transform: scale(1.025) translateY(-2px);
}
.feature-card img,
.service-item img {
  width: 44px;
  height: 44px;
  margin-bottom: 6px;
}
.feature-card h3, .service-item h3 {
  color: var(--primary, #274560);
  font-size: 1.22rem;
  margin-bottom: 6px;
}
.feature-card p, .service-item p {
  font-size: 1rem;
  color: var(--primary-dark, #17263c);
}

@media (max-width: 900px) {
  .feature-grid, .service-list, .service-grid {
    justify-content: flex-start;
    gap: 18px;
  }
  .feature-card, .service-item {
    max-width: 98vw;
    flex: 1 1 100%;
  }
}
@media (max-width: 600px) {
  .feature-grid, .service-list, .service-grid {
    flex-direction: column;
    gap: 14px;
  }
}


/* ========== TESTIMONIALS ========== */
.testimonial-slider {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 18px;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
  background: var(--white, #fff);
  border-radius: 18px;
  box-shadow: 0 2px 14px var(--shadow);
  padding: 20px 24px;
  min-width: 220px;
  max-width: 350px;
  flex: 1 1 250px;
  margin-bottom: 20px;
  transition: box-shadow 0.2s, border 0.2s, transform 0.15s;
  border: 2px solid transparent;
}
.testimonial-card:hover {
  box-shadow: 0 8px 28px rgba(90,60,180,0.15);
  border: 2px solid var(--vibrant-orange);
  transform: scale(1.01);
}
.testimonial-card p {
  color: var(--primary-dark, #132136);
  font-size: 1.08rem;
  line-height: 1.5;
  font-style: italic;
}
.testimonial-meta {
  color: var(--electric-blue);
  font-weight: 800;
  font-family: 'Roboto Slab', serif;
  font-size: 1rem;
}
@media (max-width: 900px) {
  .testimonial-slider {
    gap: 14px;
  }
}
@media (max-width: 600px) {
  .testimonial-slider {
    flex-direction: column;
    gap: 12px;
  }
}

/* ========== WITH ICONS IN LISTS ========== */
ul li, .feature-list li, .benefits-list li, .contact-info-list li, .short-faq-list li {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-bottom: 8px;
  font-size: 1.01rem;
}
ul li img, .feature-list li img, .benefits-list li img, .contact-info-list li img {
  width: 28px;
  min-width: 24px;
  height: 28px;
}


/* ========== LINK WITH ARROW ========== */
.link-arrow {
  font-family: 'Roboto Slab', serif;
  color: var(--electric-blue);
  font-weight: 700;
  font-size: 1.05rem;
  padding: 6px 0;
  border-bottom: 2px solid var(--electric-blue);
  transition: color 0.18s, border-color 0.18s;
  position: relative;
  cursor: pointer;
  display: inline-block;
}
.link-arrow:after {
  content: '→';
  display: inline-block;
  margin-left: 8px;
  font-weight: bold;
  transition: transform 0.27s cubic-bezier(.88,0,.21,1.1);
}
.link-arrow:hover,
.link-arrow:focus {
  color: var(--hot-pink);
  border-color: var(--hot-pink);
}
.link-arrow:hover:after {
  transform: translateX(5px) scale(1.13);
}

/* ========== PRICING TABLE ========== */
.pricing-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0 9px;
  margin-top: 16px;
  margin-bottom: 18px;
  font-size: 1.06rem;
  background: var(--accent, #F9F6F2);
  box-shadow: 0 1px 8px var(--shadow);
  border-radius: 15px;
  overflow: hidden;
}
.pricing-table th {
  background: var(--electric-blue);
  color: #fff;
  font-size: 1.10rem;
  font-family: 'Roboto Slab', serif;
  font-weight: 700;
  padding: 16px 8px;
}
.pricing-table td {
  background: #fff;
  color: var(--primary-dark);
  padding: 15px 8px;
  border-top: 1px solid #f7eefc;
}
.pricing-table tr {
  transition: background 0.17s;
}
.pricing-table tr:hover {
  background: var(--electric-lime);
  color: #1d1f24;
}
.pricing-notes {
  margin-top: 14px;
  font-size: 0.97rem;
  color: var(--primary-dark);
  background: #F7FFDB;
  padding: 12px 18px;
  border-radius: 7px;
}

/* ========== ACCORDION FAQS ========== */
.accordion-faq-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.faq-item {
  background: var(--white);
  border-radius: 15px;
  box-shadow: 0 2px 10px var(--shadow);
  padding: 18px 20px;
  cursor: pointer;
  transition: box-shadow 0.21s;
  margin-bottom: 10px;
}
.faq-item h3 {
  color: var(--hot-pink);
  font-size: 1.09rem;
  cursor: pointer;
  margin-bottom: 6px;
}
.faq-answer {
  display: block;
  color: var(--primary-dark);
  font-size: 0.98rem;
  padding-left: 2px;
}
.faq-item.active {
  box-shadow: 0 7px 22px rgba(90,60,120,0.12);
  border: 2px solid var(--electric-blue);
}

/* ========== MAP & CTA SECTIONS ========== */
.map-section {
  align-items: flex-start;
}
.map-placeholder {
  background: var(--gray);
  border-radius: 16px;
  padding: 28px 18px;
  box-shadow: 0 2px 10px rgba(200,200,220,0.08);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.map-placeholder img {
  width: 60px;
  margin-bottom: 8px;
}
.contact-cta {
  align-items: center;
  background: linear-gradient(104deg, var(--electric-blue), var(--vibrant-orange));
  color: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 24px rgba(40,80,180,0.10);
  padding: 32px 10px;
  margin-top: 24px;
}
.contact-cta h2 { color: #fff;}
.contact-cta p { color: #fff; font-size: 1.07rem;}
.contact-cta img { vertical-align: middle; height: 24px; margin-bottom: -5px;}

@media (max-width: 600px) {
  .map-placeholder { padding: 12px 6px; }
  .contact-cta { padding: 18px 5px; }
}

/* ========== THANK-YOU SECTION ========== */
.thank-you-section .content-wrapper {
  align-items: center;
  text-align: center;
  background: var(--electric-lime);
  border-radius: 20px;
  padding: 54px 24px 56px 24px;
  box-shadow: 0 2px 22px rgba(50,140,0,0.06);
  margin-top: 42px;
  margin-bottom: 45px;
}
.thank-you-section h1 {
  font-size: 2rem;
  color: var(--primary, #274560);
}
.thank-you-section p {
  color: var(--primary-dark);
  font-size: 1.11rem;
  margin-bottom: 18px;
}

/* ========== FOOTER ========== */
footer {
  background: var(--primary, #274560);
  color: #fff;
  width: 100%;
  margin-top: 70px;
  padding: 0 0 0 0;
}
.footer-wrapper {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 38px;
  padding: 32px 0;
}
footer img {
  height: 54px;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 13px;
}
.footer-nav a {
  color: #fff;
  font-size: 1rem;
  font-family: 'Roboto Slab', serif;
  font-weight: 700;
  margin-bottom: 2px;
  border-bottom: 2px solid transparent;
  transition: color 0.17s, border-bottom-color 0.17s;
}
.footer-nav a:hover,
.footer-nav a:focus {
  color: var(--vibrant-orange);
  border-bottom: 2px solid var(--vibrant-orange);
}
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 9px;
  font-size: 1rem;
  color: #fff;
}
.footer-contact img {
  width: 22px;
  height: 22px;
  margin-right: 9px;
  vertical-align: text-bottom;
}

@media (max-width: 900px) {
  .footer-wrapper {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }
}

/* ========== LEGAL/TEXT PAGE SECTIONS ========== */
.legal-section {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 1px 10px var(--shadow);
  padding: 36px 24px;
  margin-bottom: 24px;
}
@media (max-width:650px) {
  .legal-section { padding: 16px 3px; }
}

/* ========== COOKIE CONSENT BANNER & MODAL ========== */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;
  background: rgba(255, 255, 255, 0.98);
  color: var(--primary-dark, #17263c);
  z-index: 3000;
  box-shadow: 0 -4px 22px rgba(20,30,60,0.12);
  padding: 21px 14px 21px 14px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
  justify-content: center;
  font-size: 1.01rem;
  animation: cookie-slideup 0.51s cubic-bezier(.67,0,.24,1.01);
}
@keyframes cookie-slideup {
  0% { transform: translateY(110%); opacity: 0; }
  80% { transform: translateY(-6%); }
  100% { transform: translateY(0); opacity: 1; }
}
.cookie-banner .cookie-btn {
  min-width: 108px;
  padding: 10px 17px;
  border-radius: 30px;
  border: none;
  font-size: 1.08rem;
  margin-left: 8px;
  margin-top: 4px;
  cursor: pointer;
  font-family: 'Roboto Slab', serif;
  font-weight: 700;
  transition: background 0.17s, color 0.16s, box-shadow 0.18s;
}
.cookie-banner .accept {
  background: linear-gradient(90deg, var(--electric-lime), var(--electric-blue));
  color: #151818;
}
.cookie-banner .accept:hover {
  background: linear-gradient(90deg, var(--hot-pink), var(--electric-lime));
  color: #fff;
}
.cookie-banner .reject {
  background: var(--hot-pink);
  color: #fff;
}
.cookie-banner .reject:hover {
  background: var(--primary-dark);
  color: #fff;
}
.cookie-banner .settings {
  background: var(--white);
  color: var(--electric-blue);
  border: 2px solid var(--electric-blue);
}
.cookie-banner .settings:hover {
  background: var(--electric-blue);
  color: var(--white);
}

/* Cookie Modal */
.cookie-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(30,40,54,0.61);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 4000;
  animation: fadein .25s;
}
@keyframes fadein {
  from { opacity: 0; }
  to { opacity: 1; }
}
.cookie-modal {
  background: #fff;
  border-radius: 17px;
  max-width: 398px;
  width: 93vw;
  padding: 38px 26px 26px 26px;
  box-shadow: 0 9px 38px rgba(60,80,150,0.16);
  position: relative;
  font-size: 1.07rem;
  display: flex;
  flex-direction: column;
  gap: 24px;
  animation: modalPop .37s;
}
@keyframes modalPop {
  0% { transform: scale(0.7) translateY(90px); opacity: 0; }
  60% { transform: scale(1.05) translateY(-21px); opacity: 1; }
  100% { transform: scale(1) translateY(0); }
}
.cookie-modal-close {
  position: absolute;
  right: 13px;
  top: 14px;
  width: 32px;
  height: 32px;
  font-size: 1.4rem;
  background: var(--hot-pink);
  border: none;
  color: #fff;
  border-radius: 50%;
  cursor: pointer;
  z-index: 1;
  transition: background 0.18s;
}
.cookie-modal-close:hover {
  background: var(--electric-blue);
}
.cookie-modal h3 {
  font-size: 1.21rem;
  color: var(--primary);
  margin-bottom: 9px;
}
.cookie-cat {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 12px;
  font-size: 1.03rem;
}
.cookie-cat label {
  flex: 1;
  font-weight: 600;
  font-size: 1.06rem;
}
.cookie-toggle {
  width: 44px;
  height: 24px;
  border-radius: 18px;
  background: var(--gray);
  position: relative;
  cursor: pointer;
  transition: background 0.17s;
  border: 1px solid #dadada;
  margin-right: 8px;
  display: inline-flex;
}
.cookie-toggle input {
  display: none;
}
.cookie-toggle-slider {
  position: absolute;
  left: 2px;
  top: 2px;
  width: 20px;
  height: 20px;
  background: var(--electric-blue);
  border-radius: 50%;
  transition: left 0.18s, background 0.16s;
}
.cookie-toggle input:checked + .cookie-toggle-slider {
  left: 22px;
  background: var(--vibrant-orange);
}
.cookie-cat .locked {
  color: var(--hot-pink);
  font-size: 1.04rem;
  margin-left: 9px;
}
.cookie-modal .cookie-modal-btn {
  margin-top: 16px;
  background: linear-gradient(90deg, var(--electric-lime), var(--electric-blue));
  color: #181818;
  padding: 12px 0;
  border-radius: 30px;
  border: none;
  width: 100%;
  font-weight: 700;
  font-family: 'Roboto Slab', serif;
  font-size: 1.1rem;
  cursor: pointer;
  transition: background 0.18s, color 0.16s;
}
.cookie-modal .cookie-modal-btn:hover {
  background: linear-gradient(90deg, var(--hot-pink), var(--electric-lime));
  color: #fff;
}

/* Hide scrollbar for overlays */
.cookie-modal, .mobile-menu {
  scrollbar-width: none;
}
.cookie-modal::-webkit-scrollbar, .mobile-menu::-webkit-scrollbar {
  display: none;
}

/* ========== RESPONSIVE FLEXBOX LAYOUTS ========== */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: var(--white);
  border-radius: 16px;
  box-shadow: 0 2px 14px var(--shadow);
  padding: 20px 22px;
}
.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;
}

@media (max-width: 900px) {
  .content-grid,
  .card-container {
    gap: 12px;
  }
}
@media (max-width: 768px) {
  .content-grid,
  .card-container {
    flex-direction: column;
  }
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
}

/* General spacing for sections, cards, containers */
section, .section {
  margin-bottom: 60px;
}
@media (max-width: 600px) {
  section, .section {
    margin-bottom: 28px;
    padding-top: 0;
    padding-bottom: 0;
  }
}

/* Extra micro-interactions & hover/active states */
input, textarea, select {
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 1rem;
  border-radius: 8px;
  background: #FAFAFA;
  border: 1.5px solid #dadada;
  padding: 10px 12px;
  margin-top: 4px;
  margin-bottom: 12px;
  outline: none;
  transition: border 0.16s, box-shadow 0.18s;
}
input:focus, textarea:focus, select:focus {
  border: 1.5px solid var(--electric-blue);
  box-shadow: 0 2px 8px rgba(50,180,230,0.16);
}

::-webkit-input-placeholder { color: #a6a6b4; }
::-moz-placeholder          { color: #a6a6b4; }
:-ms-input-placeholder      { color: #a6a6b4; }
::placeholder              { color: #a6a6b4; }

/* Misc utility classes */
.text-center { text-align: center; }
.align-center { align-items: center; justify-content: center; }
.bg-accent { background: var(--accent, #F9F6F2); }
.bg-secondary { background: var(--secondary, #80A789); }
.text-highlight { color: var(--electric-blue); font-weight: 700; }

/* Scrollbar styling for vibrancy */
body::-webkit-scrollbar {
  width: 10px;
  background: var(--gray);
}
body::-webkit-scrollbar-thumb {
  background: var(--electric-blue);
  border-radius: 8px;
}

/* Animations for vibrance */
@media (prefers-reduced-motion: no-preference) {
  .feature-card, .service-item, .testimonial-card, .faq-item {
    transition: transform 0.16s cubic-bezier(.55,-0.07,.47,1), box-shadow 0.17s, border 0.12s;
  }
}

/* Hide visually only (for a11y scripting, if needed) */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}
