/* ============================================================
   PAWS OF WISDOM — SHARED STYLESHEET
   Design tokens extracted from 0c52c83d.pawshome.pages.dev
   Colours:
     Navy:       #0B1F4B  (primary dark / dark sections)
     Lime Green: #8FE400  (accent / CTA / highlights)
     Off-white:  #F7F8FA  (light section backgrounds)
     Near-black: #1a1a19  (body text on light)
     White:      #ffffff
   Fonts: Fraunces (serif headings), Plus Jakarta Sans (body)
   ============================================================ */

/* ---------- Reset & Base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  background: #ffffff;
  color: #1a1a19;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1rem;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }

/* ---------- Typography ---------- */
h1, h2, h3, h4 {
  font-family: 'Fraunces', serif;
  line-height: 1.15;
  color: #0B1F4B;
}

/* ---------- Utility ---------- */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ---------- Section Label ---------- */
.section-label {
  display: inline-block;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #8FE400;
  margin-bottom: 1rem;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.8rem 1.75rem;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s ease;
  border-radius: 999px;
  text-decoration: none;
  white-space: nowrap;
}

.btn-lime {
  background: #8FE400;
  border: 2px solid #8FE400;
  color: #0B1F4B;
}
.btn-lime:hover { background: #7dcc00; border-color: #7dcc00; }

.btn-outline-white {
  background: transparent;
  border: 2px solid rgba(255,255,255,0.7);
  color: #ffffff;
}
.btn-outline-white:hover { background: rgba(255,255,255,0.12); }

.btn-outline-navy {
  background: transparent;
  border: 2px solid #0B1F4B;
  color: #0B1F4B;
}
.btn-outline-navy:hover { background: #0B1F4B; color: #fff; }

.btn-navy {
  background: #0B1F4B;
  border: 2px solid #0B1F4B;
  color: #ffffff;
}
.btn-navy:hover { background: #09183b; }

/* ---------- Navigation ---------- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: #0B1F4B;
  padding: 0.75rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.nav-logo-wrap {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  text-decoration: none;
  flex-shrink: 0;
}
.nav-logo-icon {
  width: 36px;
  height: 36px;
  background: #8FE400;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.nav-logo-text {
  font-family: 'Fraunces', serif;
  font-size: 1rem;
  font-weight: 600;
  color: #ffffff;
}

.nav-links {
  display: none;
  align-items: center;
  gap: 0.25rem;
  list-style: none;
}
.nav-links a {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.82rem;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  padding: 0.4rem 0.6rem;
  border-radius: 4px;
  transition: color 0.2s, background 0.2s;
}
.nav-links a:hover { color: #ffffff; background: rgba(255,255,255,0.08); }

.nav-cta {
  flex-shrink: 0;
}
.btn-nav-cta {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 1.1rem;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  border-radius: 999px;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
  background: #8FE400;
  border: 2px solid #8FE400;
  color: #0B1F4B;
}
.btn-nav-cta:hover { background: #7dcc00; border-color: #7dcc00; }

/* Mobile nav toggle */
.nav-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: #ffffff;
  transition: all 0.3s;
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 58px; left: 0; right: 0;
  background: #0B1F4B;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 1.25rem 1.5rem;
  z-index: 99;
  flex-direction: column;
  gap: 0.25rem;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  padding: 0.6rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.mobile-menu a:last-of-type { border-bottom: none; }
.mobile-menu a:hover { color: #8FE400; }
.mobile-menu .btn { width: 100%; text-align: center; margin-top: 0.75rem; }

@media (min-width: 960px) {
  .nav-links { display: flex; }
  .nav-toggle { display: none; }
}

/* ---------- Section Spacing ---------- */
.section { padding: 5rem 1.5rem; }
.section-sm { padding: 3rem 1.5rem; }

/* ---------- Section Backgrounds ---------- */
.bg-navy  { background: #0B1F4B; }
.bg-white { background: #ffffff; }
.bg-light { background: #F7F8FA; }
.bg-navy-dark { background: #09183b; }

/* ---------- Fade Animations ---------- */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }
.fade-in { opacity: 0; transition: opacity 0.65s ease; }
.fade-in.visible { opacity: 1; }
.stagger-1 { transition-delay: 0.1s; }
.stagger-2 { transition-delay: 0.2s; }
.stagger-3 { transition-delay: 0.3s; }
.stagger-4 { transition-delay: 0.4s; }
.stagger-5 { transition-delay: 0.5s; }
.stagger-6 { transition-delay: 0.6s; }

/* ---------- Hero ---------- */
.hero {
  padding-top: 58px;
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
}
.hero-bg-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(11,31,75,0.92) 0%, rgba(11,31,75,0.75) 50%, rgba(11,31,75,0.4) 100%);
}
.hero-bg-overlay-bottom {
  position: absolute; bottom: 0; left: 0; right: 0; height: 25%;
  background: linear-gradient(to top, #0B1F4B 0%, transparent 100%);
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 620px;
  padding: 4rem 1.5rem 5rem;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 1rem;
  background: rgba(143,228,0,0.12);
  border: 1px solid rgba(143,228,0,0.4);
  border-radius: 999px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #8FE400;
  margin-bottom: 1.5rem;
}
.hero-title {
  font-family: 'Fraunces', serif;
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 700;
  line-height: 1.1;
  color: #ffffff;
  margin-bottom: 1.25rem;
}
.hero-title .text-lime { color: #8FE400; }
.hero-sub {
  color: rgba(255,255,255,0.8);
  font-size: 1.05rem;
  line-height: 1.7;
  max-width: 500px;
  margin-bottom: 2rem;
}
.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.875rem;
  margin-bottom: 2rem;
}
.hero-trust {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}
.hero-stars { color: #8FE400; font-size: 1rem; letter-spacing: 0.05em; }
.hero-trust-text {
  color: rgba(255,255,255,0.7);
  font-size: 0.85rem;
}
.hero-trust-sep {
  width: 1px; height: 18px;
  background: rgba(255,255,255,0.25);
}
.hero-location {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  color: rgba(255,255,255,0.7);
  font-size: 0.85rem;
}

/* Mobile hero */
.hero-mobile-img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  object-position: center top;
}
@media (max-width: 767px) {
  .hero { min-height: auto; display: block; }
  .hero-bg { display: none; }
  .hero-content { max-width: 100%; padding: 2.5rem 1.25rem 3rem; }
}
@media (min-width: 768px) {
  .hero-mobile-img { display: none; }
}

/* ---------- Feature Cards (Why Choose Me) ---------- */
.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  margin-top: 2.5rem;
}
@media (min-width: 640px) { .features-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .features-grid { grid-template-columns: repeat(4, 1fr); } }

.feature-card {
  background: #ffffff;
  border: 1px solid rgba(11,31,75,0.08);
  border-radius: 12px;
  padding: 1.75rem;
  box-shadow: 0 2px 12px rgba(11,31,75,0.06);
}
.feature-card.dark {
  background: #0B1F4B;
  border-color: rgba(255,255,255,0.08);
}
.feature-icon {
  width: 44px; height: 44px;
  background: #0B1F4B;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  font-size: 1.1rem;
}
.feature-card.dark .feature-icon {
  background: rgba(143,228,0,0.15);
}
.feature-card-title {
  font-family: 'Fraunces', serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: #0B1F4B;
  margin-bottom: 0.625rem;
}
.feature-card.dark .feature-card-title { color: #ffffff; }
.feature-card-text {
  color: #858481;
  font-size: 0.9rem;
  line-height: 1.7;
}
.feature-card.dark .feature-card-text { color: rgba(255,255,255,0.65); }

/* ---------- Regulation Section ---------- */
.regulation-section {
  background: #0B1F4B;
  padding: 5rem 1.5rem;
}
.regulation-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}
@media (min-width: 768px) {
  .regulation-inner { grid-template-columns: 1fr 1fr; }
}
.regulation-img-wrap {
  position: relative;
}
.regulation-img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  border-radius: 12px;
}
.regulation-badge {
  position: absolute;
  bottom: 1.5rem;
  right: 1.5rem;
  background: #8FE400;
  color: #0B1F4B;
  font-family: 'Fraunces', serif;
  font-size: 1.1rem;
  font-weight: 700;
  padding: 1rem 1.25rem;
  border-radius: 8px;
  text-align: center;
  line-height: 1.2;
}
.regulation-badge span {
  display: block;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: 0.2rem;
}

/* ---------- How It Works Steps ---------- */
.steps-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  margin-top: 2.5rem;
}
@media (min-width: 640px) { .steps-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .steps-grid { grid-template-columns: repeat(4, 1fr); } }

.step-card {
  background: #ffffff;
  border: 1px solid rgba(11,31,75,0.08);
  border-radius: 12px;
  padding: 1.75rem;
  box-shadow: 0 2px 12px rgba(11,31,75,0.06);
}
.step-number {
  font-family: 'Fraunces', serif;
  font-size: 2rem;
  font-weight: 700;
  color: #8FE400;
  margin-bottom: 0.875rem;
}
.step-title {
  font-family: 'Fraunces', serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: #0B1F4B;
  margin-bottom: 0.625rem;
}
.step-text {
  color: #858481;
  font-size: 0.9rem;
  line-height: 1.7;
}

/* ---------- Services Cards ---------- */
.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: 2.5rem;
}
@media (min-width: 640px) { .services-grid { grid-template-columns: repeat(2, 1fr); gap: 1.75rem; } }
@media (min-width: 1024px) { .services-grid { grid-template-columns: repeat(4, 1fr); gap: 1.75rem; } }

.service-card {
  border-radius: 14px;
  overflow: hidden;
  position: relative;
  min-height: 340px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  box-shadow: 0 4px 24px rgba(11,31,75,0.15);
}
.service-card-img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.service-card:hover .service-card-img { transform: scale(1.04); }
.service-card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(11,31,75,0.95) 0%, rgba(11,31,75,0.5) 55%, rgba(11,31,75,0.15) 100%);
}
.service-card-content {
  position: relative;
  z-index: 1;
  padding: 1.5rem;
}
.service-card-tag {
  display: inline-block;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #8FE400;
  margin-bottom: 0.5rem;
}
.service-card-title {
  font-family: 'Fraunces', serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.2;
  margin-bottom: 0.625rem;
}
.service-card-desc {
  color: rgba(255,255,255,0.75);
  font-size: 0.85rem;
  line-height: 1.65;
  margin-bottom: 1rem;
}
.service-card-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.55rem 1.1rem;
  background: #8FE400;
  border: none;
  border-radius: 999px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  color: #0B1F4B;
  cursor: pointer;
  transition: background 0.2s;
}
.service-card-btn:hover { background: #7dcc00; }

/* ---------- Testimonials ---------- */
.testimonials-section { background: #0B1F4B; }
.testimonial-carousel {
  max-width: 760px;
  margin: 2.5rem auto 0;
  text-align: center;
}
.testimonial-slide { display: none; }
.testimonial-slide.active { display: block; }
.testimonial-quote {
  font-family: 'Fraunces', serif;
  font-size: clamp(1.1rem, 2.5vw, 1.35rem);
  font-style: italic;
  color: rgba(255,255,255,0.9);
  line-height: 1.75;
  margin-bottom: 1.75rem;
}
.testimonial-author-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.875rem;
}
.testimonial-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: #8FE400;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Fraunces', serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: #0B1F4B;
  flex-shrink: 0;
}
.testimonial-author-name {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  color: #ffffff;
}
.testimonial-author-sub {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.55);
}
.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 2rem;
}
.testimonial-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.25);
  border: none;
  cursor: pointer;
  transition: background 0.2s;
  padding: 0;
}
.testimonial-dot.active { background: #8FE400; }
.testimonial-view-all {
  display: block;
  text-align: center;
  margin-top: 1.75rem;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  color: rgba(255,255,255,0.6);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.2s;
}
.testimonial-view-all:hover { color: #8FE400; }

/* ---------- Guarantee ---------- */
.guarantee-box {
  max-width: 680px;
  margin: 2rem auto 0;
  background: #F7F8FA;
  border: 1px solid rgba(11,31,75,0.1);
  border-radius: 16px;
  padding: 2.5rem;
  text-align: center;
  box-shadow: 0 2px 16px rgba(11,31,75,0.06);
}
.guarantee-icon { font-size: 2.5rem; margin-bottom: 1rem; }
.guarantee-title {
  font-family: 'Fraunces', serif;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  color: #0B1F4B;
  margin-bottom: 1rem;
}
.guarantee-text {
  color: #858481;
  font-size: 0.975rem;
  line-height: 1.8;
}

/* ---------- FAQ ---------- */
.faq-section { background: #F7F8FA; }
.faq-list {
  max-width: 760px;
  margin: 2.5rem auto 0;
}
.faq-item {
  border-bottom: 1px solid rgba(11,31,75,0.1);
}
.faq-item:first-child { border-top: 1px solid rgba(11,31,75,0.1); }
.faq-question {
  width: 100%;
  background: none;
  border: none;
  color: #0B1F4B;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.975rem;
  font-weight: 600;
  text-align: left;
  padding: 1.25rem 0;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  transition: color 0.2s;
}
.faq-question:hover { color: #8FE400; }
.faq-icon {
  font-size: 1.1rem;
  flex-shrink: 0;
  transition: transform 0.3s;
  color: #8FE400;
}
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer {
  display: none;
  padding: 0 0 1.25rem;
  color: #858481;
  font-size: 0.925rem;
  line-height: 1.8;
}
.faq-item.open .faq-answer { display: block; }
.faq-cta-link {
  text-align: center;
  margin-top: 2rem;
}
.faq-cta-link a {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  color: #0B1F4B;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.2s;
}
.faq-cta-link a:hover { color: #8FE400; }

/* ---------- CTA Section ---------- */
.cta-section {
  background: #0B1F4B;
  position: relative;
  overflow: hidden;
  padding: 5rem 1.5rem;
  text-align: center;
}
.cta-bg {
  position: absolute; inset: 0;
  z-index: 0;
}
.cta-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.18;
}
.cta-content { position: relative; z-index: 1; max-width: 700px; margin: 0 auto; }
.cta-title {
  font-family: 'Fraunces', serif;
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.15;
  margin-bottom: 1rem;
}
.cta-title .text-lime { color: #8FE400; }
.cta-sub {
  color: rgba(255,255,255,0.7);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 2rem;
}
.cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

/* ---------- Footer ---------- */
.footer {
  background: #0B1F4B;
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 3.5rem 1.5rem 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  max-width: 1100px;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .footer-grid { grid-template-columns: 1.5fr 1fr 1fr 1fr; }
}
.footer-logo-wrap {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  margin-bottom: 0.875rem;
}
.footer-logo-icon {
  width: 34px; height: 34px;
  background: #8FE400;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}
.footer-logo-text {
  font-family: 'Fraunces', serif;
  font-size: 1rem;
  font-weight: 600;
  color: #ffffff;
}
.footer-tagline {
  color: rgba(255,255,255,0.55);
  font-size: 0.875rem;
  line-height: 1.65;
  margin-bottom: 0.5rem;
}
.footer-location {
  color: rgba(255,255,255,0.4);
  font-size: 0.8rem;
}
.footer-col-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 1rem;
}
.footer-nav-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}
.footer-nav-list a {
  color: rgba(255,255,255,0.7);
  font-size: 0.875rem;
  transition: color 0.2s;
}
.footer-nav-list a:hover { color: #8FE400; }
.footer-social {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.25rem;
}
.footer-social a {
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
  transition: background 0.2s, color 0.2s;
}
.footer-social a:hover { background: #8FE400; color: #0B1F4B; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  margin-top: 2.5rem;
  padding-top: 1.25rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 0.75rem;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}
.footer-bottom-text {
  color: rgba(255,255,255,0.4);
  font-size: 0.8rem;
}
.footer-bottom-links {
  display: flex;
  gap: 1.25rem;
}
.footer-bottom-links a {
  color: rgba(255,255,255,0.4);
  font-size: 0.8rem;
  transition: color 0.2s;
}
.footer-bottom-links a:hover { color: rgba(255,255,255,0.7); }

/* ---------- About Page ---------- */
.about-hero {
  padding-top: 58px;
  background: #0B1F4B;
  position: relative;
  overflow: hidden;
}
.about-hero-bg {
  position: absolute; inset: 0;
  z-index: 0;
}
.about-hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.2;
}
.about-hero-content {
  position: relative;
  z-index: 1;
  max-width: 760px;
  padding: 5rem 1.5rem 4rem;
}
.about-hero-title {
  font-family: 'Fraunces', serif;
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.1;
  margin-bottom: 1rem;
}
.about-hero-title .text-lime { color: #8FE400; }
.about-hero-sub {
  color: rgba(255,255,255,0.7);
  font-size: 1.05rem;
  line-height: 1.7;
}

/* Vision/Mission cards */
.vm-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  margin-top: 3rem;
}
@media (min-width: 640px) { .vm-grid { grid-template-columns: 1fr 1fr; } }
.vm-card {
  border-radius: 12px;
  padding: 2rem;
}
.vm-card-dark {
  background: #0B1F4B;
  border: 1px solid rgba(255,255,255,0.08);
}
.vm-card-light {
  background: #ffffff;
  border: 1px solid rgba(11,31,75,0.1);
  box-shadow: 0 2px 12px rgba(11,31,75,0.06);
}
.vm-icon {
  width: 40px; height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  font-size: 1rem;
}
.vm-icon-dark { background: rgba(143,228,0,0.15); }
.vm-icon-light { background: rgba(11,31,75,0.08); }
.vm-title {
  font-family: 'Fraunces', serif;
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.625rem;
}
.vm-card-dark .vm-title { color: #ffffff; }
.vm-card-light .vm-title { color: #0B1F4B; }
.vm-text { font-size: 0.9rem; line-height: 1.7; }
.vm-card-dark .vm-text { color: rgba(255,255,255,0.65); }
.vm-card-light .vm-text { color: #858481; }

/* Bio section */
.bio-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: start;
  max-width: 1100px;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .bio-grid { grid-template-columns: 1fr 1.4fr; }
}
.bio-img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  object-position: top center;
  border-radius: 12px;
}
.bio-text h2 {
  font-family: 'Fraunces', serif;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #0B1F4B;
  margin-bottom: 1.5rem;
}
.bio-text p {
  color: #858481;
  font-size: 0.975rem;
  line-height: 1.85;
  margin-bottom: 1.1rem;
}
.bio-text strong { color: #0B1F4B; font-weight: 600; }
.bio-heading {
  font-family: 'Fraunces', serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: #0B1F4B;
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
}
.bio-creds {
  display: flex;
  flex-wrap: wrap;
  gap: 0.625rem;
  margin: 1.5rem 0;
}
.bio-cred-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.35rem 0.875rem;
  background: rgba(11,31,75,0.06);
  border: 1px solid rgba(11,31,75,0.12);
  border-radius: 999px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  color: #0B1F4B;
}
.bio-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.875rem;
  margin-top: 1.75rem;
}

/* ---------- Contact Page ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  max-width: 1000px;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .contact-grid { grid-template-columns: 1.1fr 1fr; }
}
.contact-form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 1.1rem;
}
.contact-form-group label {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  color: #0B1F4B;
}
.contact-form-group input,
.contact-form-group textarea,
.contact-form-group select {
  background: #F7F8FA;
  border: 1.5px solid rgba(11,31,75,0.15);
  border-radius: 8px;
  padding: 0.75rem 1rem;
  color: #1a1a19;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.925rem;
  outline: none;
  transition: border-color 0.2s;
  width: 100%;
}
.contact-form-group input:focus,
.contact-form-group textarea:focus {
  border-color: #8FE400;
}
.contact-form-group textarea { resize: vertical; min-height: 130px; }
.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 0.875rem;
  margin-bottom: 1.5rem;
}
.contact-info-icon {
  width: 40px; height: 40px;
  background: rgba(11,31,75,0.06);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}
.contact-info-label {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #858481;
  margin-bottom: 0.2rem;
}
.contact-info-value {
  color: #0B1F4B;
  font-size: 0.95rem;
  font-weight: 500;
}
.contact-info-value a { color: #0B1F4B; text-decoration: underline; text-underline-offset: 3px; }
.contact-info-value a:hover { color: #8FE400; }

/* ---------- Contact Form (new classes) ---------- */
.contact-form { display: flex; flex-direction: column; gap: 0; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; margin-bottom: 1.1rem; }
.form-label {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  color: #0B1F4B;
}
.form-input,
.form-textarea {
  background: #F7F8FA;
  border: 1.5px solid rgba(11,31,75,0.15);
  border-radius: 8px;
  padding: 0.75rem 1rem;
  color: #1a1a19;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.925rem;
  outline: none;
  transition: border-color 0.2s;
  width: 100%;
}
.form-input:focus, .form-textarea:focus { border-color: #8FE400; }
.form-textarea { resize: vertical; min-height: 130px; }

/* ---------- Contact Info Cards ---------- */
.contact-info-cards { display: flex; flex-direction: column; gap: 1.25rem; }
.contact-info-card {
  display: flex;
  align-items: flex-start;
  gap: 0.875rem;
  padding: 1.25rem;
  background: #F7F8FA;
  border: 1px solid rgba(11,31,75,0.08);
  border-radius: 10px;
}
.contact-info-icon {
  width: 40px; height: 40px;
  background: rgba(11,31,75,0.06);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}
.contact-info-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #858481;
  margin-bottom: 0.3rem;
}
.contact-info-text {
  color: #0B1F4B;
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 0.4rem;
}

/* ---------- Utility colour helpers ---------- */
.text-lime  { color: #8FE400; }
.text-red   { color: #ef4444; }
.text-navy  { color: #0B1F4B; }
.text-white { color: #ffffff; }

/* ---------- Flat Service Cards (no background images) ---------- */
.service-card-flat {
  border-radius: 14px;
  padding: 2.25rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 0;
  box-shadow: 0 4px 20px rgba(11,31,75,0.1);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.service-card-flat:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(11,31,75,0.18);
}
.service-card-flat-tag {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}
.service-card-flat-title {
  font-family: 'Fraunces', serif;
  font-size: 1.15rem;
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 0.875rem;
}
.service-card-flat-desc {
  font-size: 0.875rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  flex: 1;
}

/* ---------- Legal Pages ---------- */
.legal-content {
  max-width: 800px;
  margin: 0 auto;
}
.legal-intro {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1rem;
  color: #444;
  line-height: 1.8;
  margin-bottom: 1.25rem;
}
.legal-section {
  margin-bottom: 2.5rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(11,31,75,0.08);
}
.legal-section:last-child {
  border-bottom: none;
}
.legal-h2 {
  font-family: 'Fraunces', serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: #0B1F4B;
  margin-bottom: 0.875rem;
}
.legal-p {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.95rem;
  color: #555;
  line-height: 1.8;
  margin-bottom: 0.875rem;
}
.legal-list {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.95rem;
  color: #555;
  line-height: 1.8;
  padding-left: 1.5rem;
  margin-bottom: 0.875rem;
}
.legal-list li {
  margin-bottom: 0.4rem;
}
