:root {
  --color-accent: #64faa2;
  --color-accent-dark: #2ecc71;
  --color-primary: #3498db;
  --color-secondary: #2c3e50;
  --color-accent-hover: #50e68e;
}

body {
  font-family: 'Segoe UI', Roboto, sans-serif;
  background: linear-gradient(135deg, var(--color-secondary), var(--color-accent));
  color: #333;
  line-height: 1.6;
  transition: background-color 0.4s ease, color 0.4s ease, background 0.4s ease;
}

h1, h2, h3, h4, h5 {
  color: #222;
}

a {
  text-decoration: none;
  transition: color 0.3s;
}

a:hover {
  color: var(--color-accent);
}

button:focus,
a:focus,
input:focus {
  outline: 2px solid var(--color-accent);
  outline-offset: 3px;
}

/* ========== Header ========== */
.nav-link{
  color: #ffffff;
}
.navlink:hover{
  color: #64faa2;
}
.custom-header {
  background: transparent;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
  overflow: hidden;
}

.custom-header h1,
.custom-header p {
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4);
}

.custom-header .highlight {
  color: var(--color-accent-dark);
}

.custom-header .btn {
  transition: all 0.3s ease;
}

.custom-header .btn:hover {
  transform: translateY(-2px);
  background-color: #f8f9fa;
  color: #000;
}

/* ========== Hero Slider ========== */

.slick-slider {
  max-height: 400px;
}

.slick-slide img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  object-fit: cover;
  max-height: 400px;
}

/* Ensure all slides are uniform */
.slick-slide {
  display: flex !important;
  justify-content: center;
  align-items: center;
  max-height: 400px;
}


/* Prevent any image overflow on smaller screens */
@media (max-width: 768px) {
  .slick-slider,
  .slick-slide,
  .slick-slide img {
    max-height: 250px;
    height: 250px;
  }
}

.main-nav {
  display: flex;
  justify-content: center;
  padding: 15px 0;
  background: transparent;
}

.main-nav ul {
  list-style: none;
  display: flex;
  gap: 30px;
  margin: 0;
  padding: 0;
}

.main-nav ul li {
  position: relative;
}

.main-nav a.nav-link {
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  color: white;
  padding: 8px 0;
  transition: color 0.3s ease;
  border-bottom: 2px solid transparent;
}

.main-nav a.nav-link:hover,
.main-nav a.nav-link:focus {
  color: var(--color-accent);
  border-bottom-color: var(--color-accent);
}

@media (max-width: 600px) {
  .main-nav ul {
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
  }
}
/* ========== Card Styles ========== */

.card {
  background-color: #f8f9fa;
  border: none;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  height: 100%;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: box-shadow 0.3s ease, transform 0.2s ease;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.card img {
  height: 200px;
  width: 100%;
  object-fit: cover;
}

.card-body h5 {
  font-weight: 600;
  color: var(--color-secondary);
}
/* ========== contact form  ========== */

.contact-section {
  max-width: 600px;
  margin: 3rem auto;
  padding: 0 1rem;
  text-align: center;
}

.contact-section h2 {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
  color: var(--color-secondary);
}

.contact-section p {
  color: #555;
  margin-bottom: 2rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  text-align: left;
}

.contact-form label {
  font-weight: 600;
  color: var(--color-secondary);
}

.contact-form input,
.contact-form textarea {
  padding: 12px 15px;
  border-radius: 8px;
  border: 1px solid #ccc;
  font-size: 1rem;
  transition: border-color 0.3s ease;
  width: 100%;
  box-sizing: border-box;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--color-accent);
  outline: none;
}

.btn-main {
  align-self: center;
  max-width: 200px;
  font-weight: 700;
  cursor: pointer;
}

.form-status {
  margin-top: 1rem;
  font-weight: 600;
  color: var(--color-accent-dark); /* success green */
  text-align: center;
}

/* ========== Buttons ========== */

.btn-main {
  background-color: var(--color-accent);
  color: white;
  border: none;
  font-size: 1.2rem;
  padding: 10px 20px;
  border-radius: 50px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.btn-main:hover {
  background-color: #2bc41788;
}

.cta-button {
  background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
  color: white;
  padding: 10px 30px;
  border: none;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 500;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.cta-button:hover {
  transform: translateY(-5px);
  background: linear-gradient(135deg, var(--color-accent), var(--color-primary));
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.cta-button:active {
  transform: translateY(0);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* ========== Sections ========== */

.section-header {
  margin-bottom: 3rem;
  text-align: center;
}

.our-story {
  max-width: 900px;
  margin: 3rem auto;
  text-align: center;
  padding: 0 1rem;
}

.our-story h2 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
  color: #64faa2;
}

.icon-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
}
.dark-card.dark-mode{
  color: #000;
}
.icon-item {
  background: #f0f9f7;
  border-radius: 12px;
  padding: 2rem 1.5rem;
  box-shadow: 0 4px 10px rgba(44, 196, 23, 0.15);
  transition: transform 0.3s ease;
}

.icon-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 20px rgba(44, 196, 23, 0.25);
}

.icon-item i {
  font-size: 3rem;
  color: #64faa2;
  margin-bottom: 1rem;
}

.icon-item h3 {
  font-size: 1.4rem;
  margin-bottom: 0.8rem;
  color: #1a6e13;
}

.icon-item p {
  font-size: 1rem;
  color: #444;
  line-height: 1.4;
}

.section-header h2 {
  font-size: 2rem;
  font-weight: bold;
}

.section-header p {
  color: #64faa2;
  font-size: 1.1rem;
}

.feature-icon {
  font-size: 2.5rem;
  color: var(--color-primary);
  margin-bottom: 15px;
}

.hero-section {
  background-size: cover;
  background-position: center;
  color: white;
  padding: 80px 0;
  text-align: center;
}

.hero-section h1 {
  font-size: 3.5rem;
  font-weight: bold;
}

.core-values {
  gap: 2.5rem;
}

.core-value-item {
  max-width: 320px;
}

.core-value-icon {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 15px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  margin: 0 auto;
  font-size: 4.5rem;
  color: var(--color-accent); /* matching your accent color */
}

.core-value-item h4 {
  margin-top: 1rem;
  font-weight: 600;
  color: var(--color-secondary);
}
.dark-mode .core-value-item h4{
  margin-top: 1rem;
  font-weight: 600;
  color: whitesmoke;
}
.core-value-item p {
  margin-top: 0.5rem;
  color: #000000;
  font-size: 1rem;
  line-height: 1.5;
}
.dark-mode .core-value-item p{
    margin-top: 0.5rem;
  color: #ffffff;
  font-size: 1rem;
  line-height: 1.5;
}
.core-values i {
  background: none !important;
  box-shadow: none !important;
}
.testimonials-section {
  text-align: center;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

.testimonial-item blockquote {
  font-style: italic;
  font-size: 1.1rem;
  color: #444;
  background: #f8f9fa;
  padding: 1.5rem 2rem;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.testimonial-item footer {
  margin-top: 1rem;
  font-weight: 600;
  color: var(--color-secondary);
}
.meet-the-pets-icons {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-top: 30px;
  flex-wrap: wrap;
}

.pet-icon {
  text-align: center;
  font-size: 3rem;
  color: var(--color-accent);
  cursor: default;
  min-width: 80px;
}

.pet-icon p {
  margin-top: 10px;
  font-weight: 600;
  color: #333;
  font-size: 1.1rem;
}
.dark-mode p{
  color: whitesmoke;
}
/* ========== Footer ========== */

.footer {
  background: linear-gradient(135deg, var(--color-secondary), #1c2c3b);
  color: #ffffff;
  padding: 60px 0 30px;
  font-size: 0.95rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer h5 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 1.2rem;
  color: #ffffff;
}

.footer p {
  color: #cccccc;
}

.footer a {
  color: #a8e6cf;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer a:hover {
  color: var(--color-accent);
}

.footer .logo {
  font-size: 1.6rem;
  font-weight: bold;
  color: var(--color-accent);
  margin-bottom: 10px;
}

.footer iframe {
  width: 100%;
  border: none;
  border-radius: 10px;
  margin-top: 10px;
}

/* Bottom copyright */
.footer .text-center {
  margin-top: 40px;
  font-size: 0.875rem;
  color: #bbb;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
}

.view-map-link {
  display: none;
  font-size: 0.95rem;
  color: var(--color-accent);
  text-decoration: underline;
}

@media (max-width: 768px) {
  .view-map-link {
    display: inline-block;
    margin-top: 10px;
  }
}

@media (max-width: 768px) {
  .footer iframe {
    display: none;
  }
}

/* Responsive layout tweaks */
@media (max-width: 768px) {
  .footer .row > div {
    margin-bottom: 30px;
    text-align: center;
  }
}

/* ========== Logo & Branding Animations ========== */

.logo {
  width: 100px;
  height: 100px;
  background-color: #2cc417;
  border-radius: 50%;
  color: white;
  font-size: 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
  opacity: 0;
  transform: scale(0.5);
  animation: logoAnimation 1s forwards;
}

.business-name {
  font-size: 2rem;
  font-weight: bold;
  color: #2cc417;
  opacity: 0;
  transform: translateY(30px);
  animation: nameAnimation 1s 0.5s forwards;
}

@keyframes logoAnimation {
  0% {
    opacity: 0;
    transform: scale(0.5);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes nameAnimation {
  0% {
    opacity: 0.5;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.animated-subtitle {
  animation: fadeInUp 0.8s ease-in-out both;
  animation-delay: 0.2s;
  opacity: 0;
}

@keyframes fadeInUp {
  0% {
    transform: translateY(10px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

/* ========== Back to Top & Dark Mode Buttons ========== */

.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background-color: var(--color-accent);
  color: #000;
  border: none;
  padding: 12px 16px;
  border-radius: 50%;
  font-size: 20px;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 1000;
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background-color: var(--color-accent-hover);
}

.dark-toggle {
  position: fixed;
  bottom: 30px;
  left: 30px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: none;
  background-color: var(--color-accent);
  color: #000;
  font-size: 20px;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  z-index: 1001;
  display: flex;
  align-items: center;
  justify-content: center;
}

.dark-toggle:hover {
  background-color: var(--color-accent-hover);
  transform: scale(1.05);
}
/* Dark Mode Styles */
/* ===== Dark mode (vibrant + readable) ===== */
body.dark-mode {
  --ink:            #e9fff3;  /* main text */
  --ink-soft:       #bdebd4;  /* secondary text */
  --bg:             #0e1612;  /* page bg */
  --bg-soft:        #0f1d16;  /* section bg */
  --brand:          #22e07c;  /* bright brand */
  --brand-2:        #13d57b;
  --cta:            #12c068;
  --cta-dark:       #0faa5b;

  color: var(--ink);
  background: var(--bg);
}

/* base text & links */
body.dark-mode a        { color: #22e07c; }
body.dark-mode a:hover  { color: #19c86d; text-decoration: underline; }

/* navbar */
body.dark-mode .navbar{
  background: #0f1d16;
  border-bottom: 1px solid #163626;
}
body.dark-mode .navbar .nav-link{
  color: var(--ink);
}
body.dark-mode .navbar .nav-link:hover{
  background: #0d2a1e;
  color: #6cffb2;
}

/* hero */
body.dark-mode .hero{
  background: radial-gradient(1200px 600px at 70% -20%, rgba(34,224,124,.12), transparent),
              linear-gradient(120deg, #0f1d16, #0e1612);
}
body.dark-mode .hero .lead{ color: var(--ink-soft); }

/* cards, step boxes, generic panels */
body.dark-mode .card,
body.dark-mode .how .step,
body.dark-mode .custom-autocomplete-list {
  background: #0f1d16;
  border-color: #163626;
  color: var(--ink);
  box-shadow: 0 8px 22px rgba(0,0,0,.35);
}
body.dark-mode .card p,
body.dark-mode .how .step p { color: var(--ink-soft); }

/* trust band / soft sections */
body.dark-mode .trust,
body.dark-mode .cta-band {
  background: linear-gradient(0deg, #0e1612, #0f1d16);
  color: var(--ink);
}

/* buttons */
body.dark-mode .btn-cta{
  background: var(--cta);
  color:#05110b;
  box-shadow: 0 10px 24px rgba(34,224,124,.18);
}
body.dark-mode .btn-cta:hover{ background: var(--cta-dark); color:#031108; }

body.dark-mode .btn-outline-success{
  border-color: var(--cta); color: var(--cta); background: transparent;
}
body.dark-mode .btn-outline-success:hover{
  background: var(--cta); color:#04140c;
}

/* forms */
body.dark-mode .form-control,
body.dark-mode input[type="text"],
body.dark-mode input[type="email"],
body.dark-mode textarea,
body.dark-mode select{
  background: #0f1d16 !important;
  border: 1px solid #1a3e2b !important;
  color: var(--ink) !important;
}
body.dark-mode .form-control::placeholder{ color:#6aa78d !important; }

/* lists / muted text */
body.dark-mode .text-muted,
body.dark-mode .small{ color:#527a69 !important; }

/* footer */
body.dark-mode .footer{
  background:#0b120e; color:#c6ffe5;
}
body.dark-mode .footer h5{ color:#eafff6; }

/* slick dots/arrows (if used) */
body.dark-mode .slick-dots li button:before{ color:#6cffb2; opacity:.5; }
body.dark-mode .slick-dots li.slick-active button:before{ color:#22e07c; opacity:1; }

/* subtle transitions for theme switch */
html, body, .navbar, .card, .how .step, .hero, .trust, .cta-band, .footer,
.btn, .form-control { transition: background-color .25s ease, color .25s ease, border-color .25s ease, box-shadow .25s ease; }


.footer .social-icons {
  margin-top: 20px;
}

.footer .social-icons a {
  color: #ffffff;
  font-size: 1.5rem;
  margin: 0 10px;
  transition: color 0.3s ease;
}

.footer .social-icons a:hover {
  color: var(--color-accent);
}

body.dark-mode .footer .social-icons a {
  color: #ccc;
}

body.dark-mode .footer .social-icons a:hover {
  color: var(--color-accent-dark);
}

body.dark-mode .cta-button {
  background: linear-gradient(135deg, var(--color-accent), var(--color-accent-dark));
  color: #000;
}

body.dark-mode .cta-button:hover {
  background: linear-gradient(135deg, var(--color-accent-dark), var(--color-accent));
}

body.dark-mode .back-to-top {
  background-color: var(--color-accent);
  color: #000;
}

body.dark-mode .back-to-top:hover {
  background-color: var(--color-accent-hover);
}

body.dark-mode .dark-toggle {
  background-color: var(--color-accent);
  color: #000;
}

body.dark-mode .dark-toggle:hover {
  background-color: var(--color-accent-hover);
  transform: scale(1.05);
}
body.dark-mode h1{
  color: whitesmoke;
}
/* ===== FAQ Styling ===== */
.faq {
  padding: 4rem 1rem;
  background: var(--bg-soft, #f9f9f9);
}

.faq h2 {
  text-align: center;
  font-weight: 700;
  margin-bottom: 2.5rem;
  color: var(--brand, #006400);
}

/* FAQ accordion container */
.faq .accordion-item {
  border: none;
  margin-bottom: 1rem;
  border-radius: 0.5rem;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
  background: var(--bs-white, #fff);
  transition: all 0.25s ease;
}

.faq .accordion-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.12);
}

/* Accordion header */
.faq .accordion-button {
  background: var(--brand, #22e07c);
  color: #04140c;
  font-weight: 600;
  padding: 1rem 1.25rem;
  border: none;
  outline: none;
  box-shadow: none !important;
  transition: background 0.25s ease;
}

.faq .accordion-button:not(.collapsed) {
  background: var(--cta-dark, #0faa5b);
  color: #fff;
}

.faq .accordion-button::after {
  filter: brightness(0.2) invert(1); /* style the arrow */
}

/* Accordion body */
.faq .accordion-body {
  padding: 1.25rem 1.5rem;
  background: var(--bg, #fff);
  color: var(--ink-soft, #444);
  line-height: 1.6;
}

/* ===== Dark mode FAQ ===== */
body.dark-mode .faq {
  background: var(--bg, #0e1612);
}

body.dark-mode .faq h2 {
  color: var(--brand, #22e07c);
}

body.dark-mode .faq .accordion-item {
  background: #0f1d16;
  border: 1px solid #163626;
  box-shadow: 0 4px 15px rgba(0,0,0,0.25);
}

body.dark-mode .faq .accordion-button {
  background: var(--cta, #12c068);
  color: #04140c;
}

body.dark-mode .faq .accordion-button:not(.collapsed) {
  background: var(--cta-dark, #0faa5b);
  color: #fff;
}

body.dark-mode .faq .accordion-body {
  background: #0e1612;
  color: var(--ink-soft, #bdebd4);
}

/* ========== Navbar Shrink & Transparency ========== */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1050;
  transition: padding 0.3s ease, background-color 0.3s ease;
  background-color: transparent; /* transparent at top */
}

.navbar-brand img#site-logo {
  height: 125px;
  transition: height 0.3s ease;
}

.navbar.scrolled {
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
  background-color: rgba(44, 62, 80, 0.95); /* visible after scroll */
}

.navbar.scrolled .navbar-brand img#site-logo {
  height: 40px;
}
.custom-autocomplete-list {
  position: absolute;
  top: 100%;
  left: 0; right: 0;
  z-index: 20000; /* above navs/modals */
  background: #fff;
  border: 1px solid rgba(0,0,0,.125);
  border-radius: .375rem;
  box-shadow: 0 .5rem 1rem rgba(0,0,0,.15);
  display: none;
  max-height: 300px;
  overflow: auto;
}

.custom-ac-item {
  display: block;
  width: 100%;
  text-align: left;
  padding: .5rem .75rem;
  border: 0;
  background: #fff;
  font-size: .95rem;
  cursor: pointer;
}

.custom-ac-item.active,
.custom-ac-item:hover {
  background: #f1f3f5;
}

.custom-ac-item small {
  font-size: .8rem;
  opacity: .8;
}
.cc-badge{
  margin-left:.5rem;
  padding:.1rem .35rem;
  border-radius:.35rem;
  background:#eef3ff;
  color:#2a4cff;
  font-size:.72rem;
  font-weight:600;
  letter-spacing:.02em;
}
.custom-autocomplete-list{
  position:absolute; z-index:1000; left:0; right:0;
  background:#fff; border:1px solid #ddd; border-radius:8px;
  box-shadow:0 6px 24px rgba(0,0,0,.08); margin-top:4px; overflow:hidden;
}
.custom-ac-item{
  display:block; width:100%; text-align:left; padding:.6rem .75rem;
  border:0; background:#fff; cursor:pointer; font-size:.95rem;
}
.custom-ac-item:hover, .custom-ac-item.active{ background:#f3f6ff; }
.cc-badge{
  margin-left:.35rem; padding:.05rem .35rem; border-radius:.35rem;
  background:#eef3ff; color:#2a4cff; font-size:.72rem; font-weight:600;
  letter-spacing:.02em;
}
/* ===== Readability pass (overrides) ===== */
:root{
  --ink:#0a1a13;              /* slightly darker text */
  --ink-soft:#2f4238;         /* darker subtext for contrast */
  --bg:#ffffff;
  --bg-soft:#f3fff7;          /* very pale green */
  --brand:#18c964;
  --brand-2:#0cc16a;
  --cta:#0aa84f;
  --cta-dark:#078c41;
}

/* Base type */
html { font-size: 17px; }     /* + 6% for legibility */
@media (max-width: 480px){ html{ font-size: 16px; } }
body { line-height: 1.65; color: var(--ink); }

/* Headings: clearer hierarchy */
h1, .display-5 { letter-spacing: -0.015em; line-height: 1.15; }
h2, .h2, .h3 { color: #0b1b13; font-weight: 800; }

/* Links & buttons */
a { color: #0a8a46; }
a:hover { color: #066e38; text-decoration: underline; }

.btn-cta{
  background: #0aa84f; color:#fff; border: none; font-weight: 800;
  padding: 0.95rem 1.2rem; border-radius: .75rem;
  box-shadow: 0 6px 18px rgba(10,168,79,.18);
}
.btn-cta:hover{ background:#078c41; }

.btn-outline-success{
  border-color:#0aa84f; color:#0aa84f; font-weight: 700;
}
.btn-outline-success:hover{
  background:#0aa84f; color:#fff;
}

/* Navbar: keep bright but solid for contrast */
.navbar{
  background: #ffffff; border-bottom: 1px solid #e6f6eb;
}
.navbar .nav-link{
  padding: .6rem .9rem; border-radius: .5rem;
}
.navbar .nav-link:hover{
  background: #e8fbf0; color:#087f3c;
}

/* Hero readability */
.hero{ background: linear-gradient(120deg, #edfff4, #ffffff); }
.hero .lead{ color: var(--ink-soft); }
@media (max-width: 992px){
  /* Put hero copy on a soft card on small screens */
  .hero .container > div:first-child{
    background: rgba(255,255,255,.85);
    border:1px solid #eaf7f0; border-radius: 16px;
    padding: 1rem 1.1rem;
  }
}

/* Trust row + cards */
.trust{ background: var(--bg-soft); }
.card{
  border: 1px solid #eaf7f0; border-radius: 14px;
  box-shadow: 0 6px 18px rgba(24,201,100,.06);
}
.card h3{ margin-top: .25rem; font-weight: 800; }
.card p{ color: var(--ink-soft); }

/* Steps */
.how .step{
  border: 1px solid #e8f6ee; background:#fff; border-radius: 16px;
}
.how .step p{ color: var(--ink-soft); }

/* CTA band: stronger contrast for the button */
.cta-band{ color:#fff; }
.cta-band .btn{ box-shadow: 0 6px 18px rgba(0,0,0,.15); }

/* Footer contrast */
.footer{ background:#0f1a14; color:#d0f0db; }
.footer h5{ color:#f2fff8; }

/* Utilities */
.small, .text-muted{ color:#4a5b53 !important; }

/* Optional: boost container width slightly on xl for cleaner line lengths */
@media (min-width: 1200px){
  .container{ max-width: 1160px; }
}
.card { background:#fff; border-radius:12px; box-shadow:0 8px 24px rgba(0,0,0,.08); margin:16px 0; }
.card-compact .card-body { padding:16px 18px; }
.dark-mode .card { background:#0e1a13; box-shadow:0 8px 24px rgba(0,0,0,.35); }
.card-title { font-size:1.05rem; color:#0b3b26; }
.dark-mode .card-title { color:#9ee7c6; }
.dark-mode.card-header{background:#0e1a13; box-shadow:0 8px 24px rgba(0,0,0,.35);}

.dark-mode h2{color: whitesmoke;}
/* Shared card style */
.result-card {
  border-radius: 12px;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  background: var(--bs-light);
  color: var(--bs-dark);
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.result-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

/* Headings inside cards */
.result-card h5 {
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: #12c068; /* theme green */
}

/* Breakdown list */
#breakdown-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

#breakdown-list li {
  padding: 0.35rem 0;
  border-bottom: 1px solid rgba(0,0,0,0.08);
}

#breakdown-list li:last-child {
  border-bottom: none;
  font-weight: 700;
  color: #12c068;
}

/* Dark mode adjustments */
body.dark-mode .result-card {
  background: #1e1e1e;
  color: #eaeaea;
  box-shadow: 0 4px 15px rgba(0,0,0,0.4);
}

body.dark-mode .result-card h5 {
  color: #12c068;
}

body.dark-mode #breakdown-list li {
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
/* Floating skip link (hidden by default) */
.skip-bottom-link {
  position: fixed;
  bottom: calc(75px + env(safe-area-inset-bottom, 0));
  position-area: bottom;
  background: #12c068;           /* theme green */
  color: #fff;
  padding: 0.8rem 1.1rem;
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
  letter-spacing: .2px;
  box-shadow: 0 8px 24px rgba(0,0,0,.18);
  z-index: 1100;

  opacity: 0;
  transform: translateY(10px);
  pointer-events: none;
  transition: opacity .25s ease, transform .25s ease, box-shadow .25s ease;
}

/* Visible once scrolled */
.skip-bottom-link.show {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

/* Hover / active */
.skip-bottom-link:hover { box-shadow: 0 10px 28px rgba(0,0,0,.22); }
.skip-bottom-link:active { transform: translateY(1px); }

/* Keyboard focus */
.skip-bottom-link:focus-visible {
  outline: 3px solid #0ea65a;
  outline-offset: 3px;
}

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
  .skip-bottom-link { transition: none; }
}
.lang-switcher {
  position: relative;
  z-index: 5;
}
@media (min-width: 992px){
  .lang-switcher { margin-left: 12px; }
}

