/* ============================================================
   Brooklyn Bookkeeping — Main Stylesheet
   Converted faithfully from Loveable/Tailwind source.
   ============================================================ */

/* ── Variables ─────────────────────────────────────────────── */
:root {
  --bk-background:         hsl(200, 18%, 97%);
  --bk-foreground:         hsl(200, 50%, 14%);
  --bk-card:               hsl(0, 0%, 100%);
  --bk-card-foreground:    hsl(200, 50%, 14%);
  --bk-primary:            hsl(200, 65%, 32%);
  --bk-primary-fg:         hsl(0, 0%, 100%);
  --bk-secondary:          hsl(195, 85%, 55%);
  --bk-secondary-fg:       hsl(0, 0%, 100%);
  --bk-accent:             hsl(197, 75%, 45%);
  --bk-accent-fg:          hsl(0, 0%, 100%);
  --bk-muted:              hsl(200, 20%, 93%);
  --bk-muted-fg:           hsl(200, 15%, 46%);
  --bk-border:             hsl(200, 20%, 85%);
  --bk-radius:             0.75rem;
  --bk-radius-xl:          1rem;
  --bk-radius-2xl:         1.5rem;

  --bk-gradient-primary:   linear-gradient(135deg, hsl(200, 65%, 32%) 0%, hsl(195, 85%, 55%) 100%);
  --bk-gradient-warm:      linear-gradient(135deg, hsl(197, 75%, 45%) 0%, hsl(195, 85%, 55%) 100%);
  --bk-gradient-subtle:    linear-gradient(180deg, hsl(200, 18%, 97%) 0%, hsl(200, 20%, 94%) 100%);

  --bk-shadow-sm:  0 1px 2px hsl(200 50% 14% / 0.05);
  --bk-shadow-md:  0 4px 12px hsl(200 50% 14% / 0.08);
  --bk-shadow-lg:  0 12px 40px hsl(200 50% 14% / 0.12);
  --bk-shadow-xl:  0 20px 60px hsl(200 50% 14% / 0.15);

  --bk-font-family: 'Quicksand', system-ui, sans-serif;
  --bk-max-w:       80rem; /* 1280px */
}

/* ── Reset & Base ───────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--bk-font-family);
  background-color: var(--bk-background);
  color: var(--bk-foreground);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img, svg { max-width: 100%; height: auto; display: block; }

a { color: inherit; text-decoration: none; }

ul { list-style: none; }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--bk-font-family);
  font-weight: 700;
  line-height: 1.2;
  color: var(--bk-foreground);
}

/* ── Utilities ──────────────────────────────────────────────── */
.bk-main { min-height: 100vh; }

.bk-section-container {
  max-width: var(--bk-max-w);
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}
.bk-contact-page .bk-section-container{max-width:900px;}

.bk-relative { position: relative; }

.bk-gradient-text {
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  background-image: var(--bk-gradient-primary);
}

.bk-w-full { width: 100%; }

/* ── Decorative Patterns ────────────────────────────────────── */
.bk-dot-pattern {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(hsl(200 15% 46% / 0.15) 1px, transparent 1px);
  background-size: 20px 20px;
  opacity: 0.4;
  pointer-events: none;
}

.bk-grid-pattern {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(hsl(200 20% 85% / 0.3) 1px, transparent 1px),
    linear-gradient(90deg, hsl(200 20% 85% / 0.3) 1px, transparent 1px);
  background-size: 40px 40px;
  opacity: 0.3;
  pointer-events: none;
}

/* ── Animations ─────────────────────────────────────────────── */
@keyframes bkFadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes bkFloat {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-10px); }
}

@keyframes bkPulseGlow {
  0%, 100% { opacity: 0.4; transform: scale(1); }
  50%       { opacity: 0.7; transform: scale(1.05); }
}

@keyframes bkDrift {
  0%, 100% { transform: translateX(0) translateY(0); }
  25%       { transform: translateX(10px) translateY(-5px); }
  50%       { transform: translateX(5px) translateY(10px); }
  75%       { transform: translateX(-5px) translateY(5px); }
}

@keyframes bkSpin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

.bk-animate-on-scroll {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.bk-animate-on-scroll.bk-in-view {
  opacity: 1;
  transform: translateY(0);
}

.bk-animate-delay-1 { transition-delay: 0.2s; }
.bk-animate-delay-2 { transition-delay: 0.4s; }

/* ── Buttons ────────────────────────────────────────────────── */
.bk-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--bk-font-family);
  font-weight: 600;
  border-radius: var(--bk-radius);
  cursor: pointer;
  border: none;
  transition: all 0.2s ease;
  text-decoration: none;
  white-space: nowrap;
}

.bk-btn:focus-visible { outline: 2px solid var(--bk-primary); outline-offset: 2px; }

.bk-btn-primary {
  background: var(--bk-gradient-primary);
  color: var(--bk-primary-fg);
  box-shadow: var(--bk-shadow-md);
}
.bk-btn-primary:hover {
  opacity: 0.92;
  transform: translateY(-1px);
  box-shadow: var(--bk-shadow-lg);
}

.bk-btn-outline {
  background: transparent;
  color: var(--bk-foreground);
  border: 1.5px solid var(--bk-border);
  box-shadow: var(--bk-shadow-sm);
}
.bk-btn-outline:hover {
  background: var(--bk-muted);
  border-color: var(--bk-primary);
  color: var(--bk-primary);
}

.bk-btn-sm  { padding: 0.5rem 1rem;  font-size: 0.875rem; }
.bk-btn-lg  { padding: 0.75rem 1.5rem; font-size: 1rem;   }
.bk-btn-xl  { padding: 0.875rem 2rem; font-size: 1rem;    }

/* ── Section Badge ──────────────────────────────────────────── */
.bk-section-badge {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: hsl(197 75% 45% / 0.1);
  color: var(--bk-accent);
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

/* ══════════════════════════════════════════════════════════════
   HEADER
   ══════════════════════════════════════════════════════════════ */
.bk-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: hsl(0 0% 100% / 0.8);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--bk-border);
}

.bk-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 4rem;
}

.bk-nav-logo { display: flex; align-items: center; gap: 0.75rem; }

.bk-logo-img { height: 2.5rem; width: auto; }

/* Desktop nav links */
.bk-nav-desktop {
  display: none;
  align-items: center;
  gap: 2rem;
}

@media (min-width: 768px) {
  .bk-nav-desktop { display: flex; }
}

.bk-nav-link {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--bk-muted-fg);
  transition: color 0.2s;
}
.bk-nav-link:hover { color: var(--bk-foreground); }

/* Desktop CTAs */
.bk-nav-ctas {
  display: none;
  align-items: center;
  gap: 0.75rem;
}
@media (min-width: 768px) { .bk-nav-ctas { display: flex; } }

/* ── Dropdown ──────────────────────────────────────────────── */
.bk-dropdown { position: relative; }

.bk-dropdown-trigger {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--bk-muted-fg);
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem 0.75rem;
  border-radius: var(--bk-radius);
  font-family: var(--bk-font-family);
  transition: all 0.2s;
}
.bk-dropdown-trigger:hover { color: var(--bk-foreground); background: hsl(200 20% 93% / 0.5); }

.bk-chevron { display: flex; align-items: center; transition: transform 0.2s; }
.bk-dropdown.bk-open .bk-chevron { transform: rotate(180deg); }

.bk-dropdown-menu {
  position: absolute;
  top: calc(100% + 0.5rem);
  left: 0;
  width: 18rem;
  background: hsl(0 0% 100% / 0.95);
  backdrop-filter: blur(12px);
  border: 1px solid hsl(200 20% 85% / 0.5);
  border-radius: 0.75rem;
  padding: 0.5rem;
  box-shadow: var(--bk-shadow-lg);
  opacity: 0;
  transform: translateY(-8px);
  pointer-events: none;
  transition: opacity 0.2s, transform 0.2s;
  z-index: 100;
}
.bk-dropdown.bk-open .bk-dropdown-menu {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.bk-dropdown-label {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--bk-muted-fg);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.5rem 0.75rem;
}

.bk-dropdown-divider {
  height: 1px;
  background: hsl(200 20% 85% / 0.5);
  margin: 0.25rem 0;
}

.bk-dropdown-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem;
  border-radius: 0.5rem;
  font-size: 0.9375rem;
  font-weight: 500;
  color: hsl(200 50% 14% / 0.8);
  border-left: 2px solid transparent;
  transition: all 0.2s;
}
.bk-dropdown-item:hover {
  color: var(--bk-foreground);
  background: hsl(200 20% 93% / 0.6);
  border-left-color: var(--bk-secondary);
}

.bk-dropdown-item-icon { display: flex; align-items: center; color: var(--bk-muted-fg); }
.bk-dropdown-item:hover .bk-dropdown-item-icon { color: var(--bk-secondary); }

/* ── Mobile Menu ────────────────────────────────────────────── */
.bk-mobile-toggle {
  display: flex;
  align-items: center;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--bk-muted-fg);
  padding: 0.5rem;
  transition: color 0.2s;
}
.bk-mobile-toggle:hover { color: var(--bk-foreground); }
@media (min-width: 768px) { .bk-mobile-toggle { display: none; } }

.bk-mobile-menu {
  padding: 1rem 0;
  border-top: 1px solid var(--bk-border);
}

.bk-mobile-services { margin-bottom: 1rem; }

.bk-mobile-label {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--bk-muted-fg);
  padding: 0.5rem 0.5rem;
}

.bk-mobile-service-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.625rem 0.75rem;
  border-radius: var(--bk-radius);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--bk-muted-fg);
  transition: all 0.2s;
}
.bk-mobile-service-link:hover { color: var(--bk-foreground); background: hsl(200 20% 93% / 0.5); }

.bk-mobile-link {
  display: block;
  padding: 0.5rem 0.25rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--bk-muted-fg);
  margin-bottom: 0.5rem;
  transition: color 0.2s;
}
.bk-mobile-link:hover { color: var(--bk-foreground); }

.bk-mobile-menu .bk-btn { margin-top: 0.5rem; }

/* ══════════════════════════════════════════════════════════════
   HERO SECTION
   ══════════════════════════════════════════════════════════════ */
.bk-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 4rem; /* header height */
  overflow: hidden;
}

.bk-hero-bg { position: absolute; inset: 0; pointer-events: none; }

.bk-hero-bg-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    var(--bk-background) 0%,
    var(--bk-background) 60%,
    hsl(200 20% 93% / 0.5) 100%
  );
}

/* Floating glow orbs */
.bk-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(64px);
  animation: bkPulseGlow 4s ease-in-out infinite;
}
.bk-orb-1 {
  top: 5rem; right: 2.5rem;
  width: 20rem; height: 20rem;
  background: hsl(195 85% 55% / 0.2);
}
.bk-orb-2 {
  bottom: 5rem; left: 2.5rem;
  width: 24rem; height: 24rem;
  background: hsl(197 75% 45% / 0.15);
  animation-delay: 2s;
}
.bk-orb-3 {
  top: 50%; left: 33%;
  width: 16rem; height: 16rem;
  background: hsl(200 65% 32% / 0.1);
  animation: bkDrift 8s ease-in-out infinite;
}

.bk-deco-line {
  position: absolute;
  width: 1px;
  background: linear-gradient(to bottom, transparent, hsl(195 85% 55% / 0.3), transparent);
}
.bk-deco-line-1 { top: 0; left: 25%; height: 8rem; }
.bk-deco-line-2 { top: 5rem; right: 25%; height: 12rem; background: linear-gradient(to bottom, transparent, hsl(197 75% 45% / 0.2), transparent); }

.bk-hero-container { padding-top: 5rem; padding-bottom: 5rem; position: relative; z-index: 1; }

.bk-hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .bk-hero-grid { grid-template-columns: 1fr 1fr; gap: 4rem; }
}

/* Left content */
.bk-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: hsl(200 65% 32% / 0.1);
  color: var(--bk-primary);
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
}

.bk-badge-dot {
  width: 0.5rem;
  height: 0.5rem;
  background: var(--bk-accent);
  border-radius: 50%;
  flex-shrink: 0;
}

.bk-hero-heading {
  font-size: clamp(2rem, 5vw, 3.75rem);
  font-weight: 400;
  color: var(--bk-foreground);
  line-height: 1.15;
  margin-bottom: 1.5rem;
}

.bk-hero-subtitle {
  font-size: 1.125rem;
  color: var(--bk-muted-fg);
  max-width: 36rem;
  line-height: 1.7;
  margin-bottom: 2rem;
}

.bk-hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.bk-trust-point {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--bk-muted-fg);
}

.bk-trust-icon { color: var(--bk-accent); flex-shrink: 0; }

.bk-hero-ctas { display: flex; flex-wrap: wrap; gap: 1rem; }

/* Right: Image + Stats */
.bk-hero-visual { display: flex; flex-direction: column; align-items: center; }

.bk-hero-image-wrap {
  position: relative;
  width: 100%;
  max-width: 32rem;
}

.bk-hero-image-glow {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, hsl(200 65% 32% / 0.2), hsl(197 75% 45% / 0.2));
  border-radius: calc(var(--bk-radius-2xl) + 0.5rem);
  transform: scale(1.05);
  filter: blur(32px);
}

.bk-hero-image {
  position: relative;
  z-index: 1;
  width: 100%;
  border-radius: var(--bk-radius-2xl);
  box-shadow: var(--bk-shadow-lg);
  object-fit: cover;
}

/* Stats grid */
.bk-stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 3rem;
  width: 100%;
  max-width: 25rem;
}

.bk-stat-card {
  background: var(--bk-card);
  border: 1px solid var(--bk-border);
  border-radius: 0.75rem;
  padding: 1rem;
  text-align: center;
  box-shadow: var(--bk-shadow-sm);
}

.bk-stat-value {
  font-family: var(--bk-font-family);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--bk-foreground);
  margin-bottom: 0.25rem;
}

.bk-stat-label { font-size: 0.75rem; color: var(--bk-muted-fg); }

/* ══════════════════════════════════════════════════════════════
   SERVICES SECTION
   ══════════════════════════════════════════════════════════════ */
.bk-services-section {
  position: relative;
  padding: 6rem 1.5rem;
  background: hsl(200 20% 93% / 0.3);
  overflow: hidden;
}

.bk-services-bg { position: absolute; inset: 0; pointer-events: none; }

.bk-services-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
}
.bk-services-orb-1 {
  top: 0; left: 0;
  width: 16rem; height: 16rem;
  background: hsl(197 75% 45% / 0.1);
  transform: translate(-50%, -50%);
}
.bk-services-orb-2 {
  bottom: 0; right: 0;
  width: 20rem; height: 20rem;
  background: hsl(195 85% 55% / 0.1);
  transform: translate(33%, 33%);
}

/* Section header */
.bk-services-header { text-align: center; margin-bottom: 4rem; }

.bk-services-heading {
  font-size: clamp(1.75rem, 4vw, 3rem);
  font-weight: 400;
  margin-bottom: 1rem;
}

.bk-services-subtitle {
  font-size: 1.125rem;
  color: var(--bk-muted-fg);
  max-width: 40rem;
  margin: 0 auto;
  line-height: 1.7;
}

/* Decorative divider */
.bk-services-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 2rem;
}

.bk-divider-line { height: 1px; }
.bk-divider-line-left  { width: 3rem; background: linear-gradient(to right, transparent, hsl(195 85% 55% / 0.5)); }
.bk-divider-line-right { width: 3rem; background: linear-gradient(to left, transparent, hsl(197 75% 45% / 0.5)); }
.bk-divider-line-center { width: 6rem; background: linear-gradient(to right, hsl(195 85% 55% / 0.5), hsl(197 75% 45% / 0.5), hsl(195 85% 55% / 0.5)); height: 1px; }
.bk-divider-dot { width: 0.5rem; height: 0.5rem; border-radius: 50%; flex-shrink: 0; }
.bk-divider-dot-secondary { background: var(--bk-secondary); }
.bk-divider-dot-accent    { background: var(--bk-accent); }

/* Services grid */
.bk-services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 768px)  { .bk-services-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .bk-services-grid { grid-template-columns: 1fr 1fr 1fr; } }

/* Service card */
.bk-service-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  position: relative;
  overflow: hidden;
  background: hsl(0 0% 100% / 0.8);
  backdrop-filter: blur(4px);
  border: 1px solid hsl(200 20% 85% / 0.5);
  border-radius: var(--bk-radius-2xl);
  padding: 2rem;
  text-decoration: none;
  transition: all 0.3s ease;
}
.bk-service-card:hover {
  box-shadow: var(--bk-shadow-xl);
  transform: translateY(-4px);
  border-color: hsl(200 65% 32% / 0.3);
}

/* Corner accents */
.bk-card-corner {
  position: absolute;
  width: 1.5rem;
  height: 1.5rem;
  transition: border-color 0.3s;
}
.bk-card-corner-tl { top: 1rem; left: 1rem; border-left: 2px solid; border-top: 2px solid; border-radius: 0.5rem 0 0 0; }
.bk-card-corner-br { bottom: 1rem; right: 1rem; border-right: 2px solid; border-bottom: 2px solid; border-radius: 0 0 0.5rem 0; }

.bk-service-card--primary .bk-card-corner { border-color: hsl(200 65% 32% / 0.3); }
.bk-service-card--secondary .bk-card-corner { border-color: hsl(195 85% 55% / 0.4); }
.bk-service-card--accent .bk-card-corner { border-color: hsl(197 75% 45% / 0.3); }

.bk-service-card--primary:hover .bk-card-corner  { border-color: hsl(200 65% 32% / 0.6); }
.bk-service-card--secondary:hover .bk-card-corner { border-color: hsl(195 85% 55% / 0.7); }
.bk-service-card--accent:hover .bk-card-corner    { border-color: hsl(197 75% 45% / 0.6); }

/* Icon */
.bk-service-icon-wrap {
  width: 4rem; height: 4rem;
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  outline: 2px solid transparent;
  transition: all 0.3s;
  position: relative;
}
.bk-service-icon-wrap--primary   { background: linear-gradient(135deg, hsl(200 65% 32% / 0.2), hsl(200 65% 32% / 0.05)); outline-color: hsl(200 65% 32% / 0.2); }
.bk-service-icon-wrap--secondary { background: linear-gradient(135deg, hsl(195 85% 55% / 0.25), hsl(195 85% 55% / 0.05)); outline-color: hsl(195 85% 55% / 0.2); }
.bk-service-icon-wrap--accent    { background: linear-gradient(135deg, hsl(197 75% 45% / 0.2), hsl(197 75% 45% / 0.05)); outline-color: hsl(197 75% 45% / 0.2); }

/* Use data-accent attribute for icon wraps */
.bk-service-icon--primary   { background: linear-gradient(135deg, hsl(200 65% 32% / 0.2), hsl(200 65% 32% / 0.05)); outline: 2px solid hsl(200 65% 32% / 0.2); }
.bk-service-icon--secondary { background: linear-gradient(135deg, hsl(195 85% 55% / 0.25), hsl(195 85% 55% / 0.05)); outline: 2px solid hsl(195 85% 55% / 0.2); }
.bk-service-icon--accent    { background: linear-gradient(135deg, hsl(197 75% 45% / 0.2), hsl(197 75% 45% / 0.05)); outline: 2px solid hsl(197 75% 45% / 0.2); }

.bk-service-icon { transition: transform 0.3s; }
.bk-service-card:hover .bk-service-icon { transform: scale(1.1); }

/* Title */
.bk-service-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--bk-foreground);
  margin-bottom: 0.5rem;
  transition: color 0.3s;
}
.bk-service-card:hover .bk-service-title { color: var(--bk-primary); }

/* Decorative divider line */
.bk-service-divider {
  width: 3rem;
  height: 2px;
  border-radius: 1px;
  margin-bottom: 1rem;
  transition: width 0.3s;
}
.bk-service-card:hover .bk-service-divider { width: 4rem; }
.bk-service-divider--primary   { background: linear-gradient(to right, hsl(200 65% 32% / 0.4), transparent); }
.bk-service-divider--secondary { background: linear-gradient(to right, hsl(195 85% 55% / 0.5), transparent); }
.bk-service-divider--accent    { background: linear-gradient(to right, hsl(197 75% 45% / 0.4), transparent); }

/* Description */
.bk-service-desc {
  font-size: 0.875rem;
  color: var(--bk-muted-fg);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  flex: 1;
}

/* Learn more */
.bk-service-learn-more {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: hsl(200 65% 32% / 0.7);
  margin-top: auto;
  transition: color 0.3s;
}
.bk-service-card:hover .bk-service-learn-more { color: var(--bk-primary); }

.bk-arrow-icon { transition: transform 0.3s; }
.bk-service-card:hover .bk-arrow-icon { transform: translateX(4px); }

/* ══════════════════════════════════════════════════════════════
   CTA SECTION
   ══════════════════════════════════════════════════════════════ */
.bk-cta-section {
  position: relative;
  padding: 6rem 1.5rem;
  background: hsl(200 20% 93% / 0.3);
  overflow: hidden;
}

.bk-cta-bg { position: absolute; inset: 0; pointer-events: none; }

.bk-cta-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
}
.bk-cta-orb-1 { top: 0; left: 25%; width: 24rem; height: 24rem; background: hsl(197 75% 45% / 0.1); }
.bk-cta-orb-2 { bottom: 0; right: 25%; width: 20rem; height: 20rem; background: hsl(195 85% 55% / 0.1); }

.bk-cta-card {
  position: relative;
  background: var(--bk-card);
  border: 1px solid var(--bk-border);
  border-radius: var(--bk-radius-2xl);
  padding: 2.5rem;
  text-align: center;
  box-shadow: var(--bk-shadow-lg);
  max-width: 56rem;
  margin: 0 auto;
}

@media (min-width: 768px) { .bk-cta-card { padding: 3.5rem; } }

/* Card corner accents */
.bk-cta-corner {
  position: absolute;
  width: 2rem;
  height: 2rem;
}
.bk-cta-corner-tl { top: 1rem; left: 1rem; border-left: 2px solid hsl(195 85% 55% / 0.3); border-top: 2px solid hsl(195 85% 55% / 0.3); border-radius: 0.5rem 0 0 0; }
.bk-cta-corner-tr { top: 1rem; right: 1rem; border-right: 2px solid hsl(195 85% 55% / 0.3); border-top: 2px solid hsl(195 85% 55% / 0.3); border-radius: 0 0.5rem 0 0; }
.bk-cta-corner-bl { bottom: 1rem; left: 1rem; border-left: 2px solid hsl(197 75% 45% / 0.3); border-bottom: 2px solid hsl(197 75% 45% / 0.3); border-radius: 0 0 0 0.5rem; }
.bk-cta-corner-br { bottom: 1rem; right: 1rem; border-right: 2px solid hsl(197 75% 45% / 0.3); border-bottom: 2px solid hsl(197 75% 45% / 0.3); border-radius: 0 0 0.5rem 0; }

.bk-cta-icon-wrap { display: flex; justify-content: center; margin-bottom: 2rem; }
.bk-cta-icon { width: 6rem; height: 6rem; object-fit: contain; }

.bk-cta-heading { font-size: clamp(1.5rem, 3vw, 2.25rem); font-weight: 700; margin-bottom: 1rem; }

.bk-cta-text {
  font-size: 1.125rem;
  color: var(--bk-muted-fg);
  max-width: 36rem;
  margin: 0 auto 2rem;
  line-height: 1.7;
}

.bk-cta-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 2.5rem;
}
@media (min-width: 640px) { .bk-cta-buttons { flex-direction: row; } }

.bk-cta-contact-info {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  font-size: 0.875rem;
  color: var(--bk-muted-fg);
}

.bk-cta-info-link, .bk-cta-info-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: color 0.2s;
}
.bk-cta-info-link:hover { color: var(--bk-foreground); }

/* ══════════════════════════════════════════════════════════════
   FOOTER
   ══════════════════════════════════════════════════════════════ */
.bk-footer {
  background: var(--bk-card);
  border-top: 1px solid var(--bk-border);
  padding: 4rem 1.5rem;
}

.bk-footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
@media (min-width: 768px) {
  .bk-footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; }
}

.bk-footer-logo-link { display: inline-flex; margin-bottom: 1rem; }

.bk-footer-tagline {
  font-size: 0.875rem;
  color: var(--bk-muted-fg);
  line-height: 1.7;
}

.bk-footer-col-heading {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--bk-foreground);
  margin-bottom: 1rem;
}

.bk-footer-links { display: flex; flex-direction: column; gap: 0.75rem; }

.bk-footer-link {
  font-size: 0.875rem;
  color: var(--bk-muted-fg);
  transition: color 0.2s;
}
.bk-footer-link:hover { color: var(--bk-foreground); }

.bk-footer-contact { display: flex; flex-direction: column; gap: 0.75rem; font-size: 0.875rem; color: var(--bk-muted-fg); }

.bk-footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid var(--bk-border);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
@media (min-width: 768px) {
  .bk-footer-bottom { flex-direction: row; justify-content: space-between; }
}

.bk-footer-copy { font-size: 0.875rem; color: var(--bk-muted-fg); }

.bk-footer-legal-links { display: flex; gap: 1.5rem; }

/* ══════════════════════════════════════════════════════════════
   SERVICE PAGES
   ══════════════════════════════════════════════════════════════ */
.bk-service-hero {
  padding-top: 8rem;
  padding-bottom: 5rem;
  background: linear-gradient(to bottom, hsl(200 20% 93% / 0.5), var(--bk-background));
}

.bk-service-hero-inner {
  max-width: 56rem;
  margin: 0 auto;
  text-align: center;
}

.bk-service-hero-heading {
  font-size: clamp(2rem, 4.5vw, 3.75rem);
  font-weight: 400;
  margin: 0.5rem 0 1.5rem;
}

.bk-service-hero-subtitle {
  font-size: 1.125rem;
  color: var(--bk-muted-fg);
  max-width: 40rem;
  margin: 0 auto 2rem;
  line-height: 1.7;
}

.bk-service-hero-cta { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; }

/* Service Detail */
.bk-service-detail {
  padding: 5rem 1.5rem;
  background: hsl(200 20% 93% / 0.3);
}

.bk-service-detail-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
  max-width: 75rem;
  margin: 0 auto;
}
@media (min-width: 768px) { .bk-service-detail-grid { grid-template-columns: 1fr 1fr; } }

.bk-service-detail-heading { font-size: clamp(1.5rem, 3vw, 2.25rem); font-weight: 400; margin-bottom: 1.5rem; }
.bk-service-detail-text { color: var(--bk-muted-fg); margin-bottom: 2rem; line-height: 1.7; }

/* Checklist */
.bk-service-checklist { display: flex; flex-direction: column; gap: 1rem; }
.bk-checklist-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--bk-foreground);
}
.bk-check-icon { color: var(--bk-primary); flex-shrink: 0; }

/* Feature cards */
.bk-service-features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.bk-feature-card {
  background: var(--bk-card);
  border: 1px solid var(--bk-border);
  border-radius: 0.75rem;
  padding: 1.5rem;
}

.bk-feature-icon { color: var(--bk-primary); margin-bottom: 1rem; }
.bk-feature-title { font-size: 1rem; font-weight: 600; margin-bottom: 0.5rem; }
.bk-feature-desc { font-size: 0.875rem; color: var(--bk-muted-fg); line-height: 1.6; }

/* Service bottom CTA */
.bk-service-bottom-cta { padding: 5rem 1.5rem; }

.bk-service-bottom-card {
  max-width: 48rem;
  margin: 0 auto;
  text-align: center;
  background: var(--bk-card);
  border: 1px solid var(--bk-border);
  border-radius: 1rem;
  padding: 3rem;
}

.bk-service-bottom-heading { font-size: clamp(1.5rem, 3vw, 2.25rem); font-weight: 400; margin-bottom: 1rem; }
.bk-service-bottom-text { color: var(--bk-muted-fg); margin-bottom: 2rem; line-height: 1.7; }

/* ══════════════════════════════════════════════════════════════
   CONTACT PAGE
   ══════════════════════════════════════════════════════════════ */
.bk-contact-header {
  text-align: center;
  margin-bottom: 3rem;
}

.bk-contact-heading { font-size: clamp(2rem, 4vw, 3rem); font-weight: 700; margin-bottom: 1rem; }
.bk-contact-subtitle { font-size: 1.125rem; color: var(--bk-muted-fg); max-width: 36rem; margin: 0 auto; line-height: 1.7; }

.bk-contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media (min-width: 768px) { .bk-contact-grid { grid-template-columns: 2fr 1fr; } }

.bk-contact-form-wrap {
  background: var(--bk-card);
  border: 1px solid var(--bk-border);
  border-radius: 0.75rem;
  padding: 1.5rem;
  min-height: 36rem;    position: relative;
    overflow: hidden;
}
.gform-theme--foundation .gfield textarea.large {
    min-block-size: 8rem!important;
}
p.gform_required_legend{display:none!Important;}

p.gform_required_legend{display:none!important;}.gform_fields {
    gap: 15px !important;
}.gform-footer.gform_footer.top_label {
    justify-content: center;
}
.bk-contact-form-wrap iframe{height:100%;width:100%;border:0;position: absolute;}

.bk-form-placeholder {
  padding: 2rem;
  color: var(--bk-muted-fg);
  font-size: 0.9375rem;
  text-align: center;
}

.bk-contact-sidebar { display: flex; flex-direction: column; gap: 1.5rem; }

.bk-contact-info-card,
.bk-office-hours-card {
  background: var(--bk-card);
  border: 1px solid var(--bk-border);
  border-radius: 0.75rem;
  padding: 1.5rem;
}

.bk-contact-info-heading { font-size: 1.0625rem; font-weight: 600; margin-bottom: 1rem; }

.bk-contact-info-items { display: flex; flex-direction: column; gap: 1rem; }

.bk-contact-info-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--bk-muted-fg);
  font-size: 0.9375rem;
  transition: color 0.2s;
}
a.bk-contact-info-item:hover { color: var(--bk-foreground); }

.bk-contact-info-icon { color: var(--bk-secondary); flex-shrink: 0; }

.bk-office-hours-list { display: flex; flex-direction: column; gap: 0.5rem; }

.bk-office-hours-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.875rem;
  color: var(--bk-muted-fg);
}

/* ══════════════════════════════════════════════════════════════
   LEGAL PAGES
   ══════════════════════════════════════════════════════════════ */
.bk-legal-content { max-width: 48rem; }

.bk-legal-heading { font-size: clamp(1.75rem, 3vw, 2.5rem); font-weight: 700; margin-bottom: 2rem; }

.bk-prose { color: var(--bk-muted-fg); line-height: 1.8; }
.bk-prose h2 { font-size: 1.5rem; font-weight: 700; color: var(--bk-foreground); margin-top: 2rem; margin-bottom: 1rem; }
.bk-prose p { margin-bottom: 1rem; }
.bk-prose a { color: var(--bk-primary); }
.bk-prose a:hover { text-decoration: underline; }

.bk-legal-date {
  font-size: 1.0625rem;
  color: var(--bk-muted-fg);
  margin-bottom: 2rem;
}

.bk-legal-section {
  margin-top: 2rem;
  margin-bottom: 2rem;
}

.bk-prose .bk-legal-section h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--bk-foreground);
  margin-top: 0;
  margin-bottom: 0.75rem;
}

.bk-prose .bk-legal-section p {
  margin-bottom: 0;
}

/* ══════════════════════════════════════════════════════════════
   404 PAGE
   ══════════════════════════════════════════════════════════════ */
.bk-404-heading { font-size: clamp(1.5rem, 3vw, 2rem); font-weight: 700; margin-bottom: 1rem; }
.bk-404-text { color: var(--bk-muted-fg); font-size: 1.125rem; }

/* ══════════════════════════════════════════════════════════════
   GRAVITY FORMS — base styling overrides
   ══════════════════════════════════════════════════════════════ */
.gform_wrapper {
  font-family: var(--bk-font-family) !important;
}
.gform_wrapper input[type="text"],
.gform_wrapper input[type="email"],
.gform_wrapper input[type="tel"],
.gform_wrapper input[type="number"],
.gform_wrapper textarea,
.gform_wrapper select {
  font-family: var(--bk-font-family) !important;
  border: 1.5px solid var(--bk-border) !important;
  border-radius: var(--bk-radius) !important;
  padding: 0.625rem 0.875rem !important;
  color: var(--bk-foreground) !important;
  background: var(--bk-background) !important;
  width: 100% !important;
  transition: border-color 0.2s !important;
}
.gform_wrapper input:focus,
.gform_wrapper textarea:focus,
.gform_wrapper select:focus {
  border-color: var(--bk-primary) !important;
  outline: none !important;
  box-shadow: 0 0 0 3px hsl(200 65% 32% / 0.12) !important;
}
.gform_wrapper .gform_submit_button,
.gform_wrapper input[type="submit"] {
  font-family: var(--bk-font-family) !important;
  background: var(--bk-gradient-primary) !important;
  color: var(--bk-primary-fg) !important;
  border: none !important;
  border-radius: var(--bk-radius) !important;
  padding: 0.75rem 2rem !important;
  font-weight: 600 !important;
  font-size: 1rem !important;
  cursor: pointer !important;
  transition: opacity 0.2s, transform 0.2s !important;
}
.gform_wrapper .gform_submit_button:hover,
.gform_wrapper input[type="submit"]:hover {
  opacity: 0.9 !important;
  transform: translateY(-1px) !important;
}

/* ══════════════════════════════════════════════════════════════
   POST GRID (blog fallback)
   ══════════════════════════════════════════════════════════════ */
.bk-post-grid { display: grid; gap: 2rem; }
@media (min-width: 768px) { .bk-post-grid { grid-template-columns: 1fr 1fr; } }

.bk-post-card { background: var(--bk-card); border: 1px solid var(--bk-border); border-radius: var(--bk-radius-xl); overflow: hidden; }
.bk-post-thumbnail img { width: 100%; height: 12rem; object-fit: cover; }
.bk-post-body { padding: 1.5rem; }
.bk-post-title { font-size: 1.25rem; font-weight: 700; margin-bottom: 0.5rem; }
.bk-post-title a { color: var(--bk-foreground); transition: color 0.2s; }
.bk-post-title a:hover { color: var(--bk-primary); }
.bk-post-meta { font-size: 0.8125rem; color: var(--bk-muted-fg); margin-bottom: 0.75rem; }
.bk-post-excerpt { font-size: 0.9375rem; color: var(--bk-muted-fg); margin-bottom: 1.25rem; line-height: 1.6; }

/* ══════════════════════════════════════════════════════════════
   RESPONSIVE HELPERS
   ══════════════════════════════════════════════════════════════ */
@media (max-width: 767px) {
  .bk-hero-grid { gap: 2.5rem; }
  .bk-hero-heading { font-size: 2rem; }
  .bk-service-features-grid { grid-template-columns: 1fr; }
  .bk-service-bottom-card { padding: 2rem 1.5rem; }
  .bk-cta-card { padding: 2rem 1.25rem; }
}

/* ── Search form ──────────────────────────────────────────────────── */
.bk-search-form { display: flex; gap: 0.5rem; align-items: center; }
.bk-search-input {
  border: 1.5px solid var(--bk-border);
  border-radius: var(--bk-radius);
  padding: 0.5rem 0.875rem;
  font-family: var(--bk-font-family);
  font-size: 0.9375rem;
  color: var(--bk-foreground);
  background: var(--bk-background);
  flex: 1;
}
.bk-search-input:focus { outline: none; border-color: var(--bk-primary); }

/* ── Accessibility ──────────────────────────────────────────────────── */
.screen-reader-text {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  clip: rect(0,0,0,0) !important;
  white-space: nowrap !important;
}
