/* ============================================================
   Bilgin Hukuk ve Danışmanlık — Production Stylesheet
   Converted from design-component template
   ============================================================ */

/* --- Design System Tokens (from classical styles.css) --- */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;600&display=swap');

:root {
  --color-bg: #f3f2f2;
  --color-surface: #eae9e9;
  --color-text: #201f1d;
  --color-accent: #b68235;
  --color-accent-2: #ac803e;
  --color-divider: color-mix(in srgb, #201f1d 16%, transparent);

  --color-neutral-100: #f8f4f4;
  --color-neutral-200: #eae7e7;
  --color-neutral-300: #d7d3d3;
  --color-neutral-400: #bab6b6;
  --color-neutral-500: #9b9797;
  --color-neutral-600: #7d7979;
  --color-neutral-700: #605d5d;
  --color-neutral-800: #444141;
  --color-neutral-900: #2d2b2b;

  --color-accent-100: #fff3e4;
  --color-accent-200: #ffe3bf;
  --color-accent-300: #facb8d;
  --color-accent-400: #e1ad66;
  --color-accent-500: #c28d41;
  --color-accent-600: #a06f24;
  --color-accent-700: #7d5411;
  --color-accent-800: #5a3b0a;
  --color-accent-900: #3a270d;

  --font-heading: "Cormorant Garamond", system-ui, sans-serif;
  --font-body: 'Source Sans 3', 'Segoe UI', system-ui, sans-serif;

  --space-1: 4.6px;
  --space-2: 9.2px;
  --space-3: 13.8px;
  --space-4: 18.4px;
  --space-6: 27.6px;
  --space-8: 36.8px;

  --radius-sm: 2px;
  --radius-md: 4px;
  --radius-lg: 7px;

  --shadow-sm: 0 1px 2px color-mix(in srgb, #2d2b2b 14%, transparent);
  --shadow-md: 0 3px 10px color-mix(in srgb, #2d2b2b 16%, transparent);
  --shadow-lg: 0 12px 32px color-mix(in srgb, #2d2b2b 22%, transparent);
}


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

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: #16130f;
  color: var(--color-bg);
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.55;
  font-weight: 400;
  text-wrap: pretty;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -0.015em;
  margin: 0 0 var(--space-2);
}

p { margin: 0 0 var(--space-3); }

a {
  color: var(--color-accent-400);
  text-underline-offset: 3px;
}
a:hover { color: var(--color-accent-300); }

img { display: block; max-width: 100%; }
figure { margin: 0; }

figcaption {
  font-size: 11px;
  margin-top: var(--space-1);
  color: color-mix(in srgb, var(--color-text) 55%, transparent);
}

:focus { outline: none; }
:focus-visible { outline: 2px solid var(--color-accent); outline-offset: 2px; }
::selection { background: color-mix(in srgb, var(--color-accent) 30%, transparent); }


/* --- Film Grain Overlay --- */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 40;
  opacity: 0.55;
  background-image: url("data:image/svg+xml,%3Csvg xmlns=%27http://www.w3.org/2000/svg%27 width=%27140%27 height=%27140%27%3E%3Cfilter id=%27n%27%3E%3CfeTurbulence type=%27fractalNoise%27 baseFrequency=%270.85%27 numOctaves=%272%27/%3E%3C/filter%3E%3Crect width=%27140%27 height=%27140%27 filter=%27url(%23n)%27 opacity=%270.05%27/%3E%3C/svg%3E");
}


/* --- Plate (sepia filter for images) --- */
.plate {
  filter: sepia(0.22) saturate(0.82) contrast(1.05);
  box-sizing: border-box;
  border: 6px solid var(--color-surface);
  outline: 1px solid var(--color-divider);
}


/* --- Reveal & Stagger Animations --- */
body.bh-js .bh-reveal {
  opacity: 0;
  transform: translateY(26px);
}
.bh-reveal {
  transition: opacity 0.85s cubic-bezier(0.22, 0.61, 0.36, 1),
              transform 0.85s cubic-bezier(0.22, 0.61, 0.36, 1);
}
body.bh-js .bh-reveal.bh-in {
  opacity: 1;
  transform: none;
}

body.bh-js .bh-stagger > * {
  opacity: 0;
  transform: translateY(22px);
}
.bh-stagger > * {
  transition: opacity 0.7s cubic-bezier(0.22, 0.61, 0.36, 1),
              transform 0.7s cubic-bezier(0.22, 0.61, 0.36, 1);
}
body.bh-js .bh-stagger.bh-in > * {
  opacity: 1;
  transform: none;
}
.bh-stagger.bh-in > *:nth-child(2) { transition-delay: 0.08s; }
.bh-stagger.bh-in > *:nth-child(3) { transition-delay: 0.16s; }
.bh-stagger.bh-in > *:nth-child(4) { transition-delay: 0.24s; }
.bh-stagger.bh-in > *:nth-child(5) { transition-delay: 0.32s; }
.bh-stagger.bh-in > *:nth-child(6) { transition-delay: 0.4s; }

.bh-d1 { transition-delay: 0.15s !important; }

@media (prefers-reduced-motion: reduce) {
  body.bh-js .bh-reveal,
  body.bh-js .bh-stagger > * {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}


/* --- Gold Gradient Bar --- */
.bh-gold-bar {
  height: 3px;
  background: linear-gradient(90deg, var(--color-accent-700), var(--color-accent-400) 50%, var(--color-accent-700));
}


/* --- Navigation --- */
.bh-nav {
  display: flex;
  align-items: center;
  gap: 40px;
  padding: 24px max(clamp(20px, 5vw, 72px), calc((100% - 1240px) / 2 + clamp(20px, 5vw, 72px)));
  background: #16130f;
  border-bottom: 1px solid color-mix(in srgb, #f3f2f2 10%, transparent);
}

.bh-nav-logo {
  margin-right: auto;
  display: flex;
  text-decoration: none;
}
.bh-nav-logo img {
  height: 46px;
  width: auto;
  display: block;
  filter: brightness(0) invert(1);
}

.bh-navlink {
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  color: color-mix(in srgb, #f3f2f2 72%, transparent);
  white-space: nowrap;
  padding-bottom: 4px;
  border-bottom: 1px solid transparent;
}
.bh-navlink:hover {
  color: var(--color-accent-300);
}
.bh-navlink.active {
  color: var(--color-accent-300);
  border-bottom-color: var(--color-accent);
}

.bh-nav-phone {
  font-size: 13.5px;
  font-feature-settings: 'tnum' 1;
  letter-spacing: 0.04em;
  text-decoration: none;
  color: #16130f;
  background: var(--color-accent-400);
  white-space: nowrap;
  padding: 11px 22px;
}
.bh-nav-phone:hover {
  background: var(--color-accent-300);
  color: #16130f;
}

/* Hamburger */
.bh-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  z-index: 101;
}
.bh-hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: #f3f2f2;
  transition: transform 0.3s, opacity 0.3s;
}
.bh-hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.bh-hamburger.active span:nth-child(2) { opacity: 0; }
.bh-hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav overlay */
.bh-mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(22, 19, 15, 0.97);
  z-index: 100;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
}
.bh-mobile-nav.active {
  display: flex;
}
.bh-mobile-nav a {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 400;
  text-decoration: none;
  color: #f3f2f2;
  letter-spacing: 0.04em;
}
.bh-mobile-nav a:hover,
.bh-mobile-nav a.active {
  color: var(--color-accent-300);
}


/* --- Ghost Typography --- */
.bh-ghost {
  position: absolute;
  font-family: var(--font-heading);
  font-weight: 400;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px color-mix(in srgb, var(--color-accent) 14%, transparent);
  pointer-events: none;
  user-select: none;
}


/* --- Section Padding --- */
.bh-section-pad {
  padding: clamp(84px, 11vh, 132px) clamp(20px, 5vw, 72px);
}
.bh-section-pad-sm {
  padding: clamp(72px, 10vh, 120px) clamp(20px, 5vw, 72px);
}

.bh-container {
  max-width: 1240px;
  margin: 0 auto;
}


/* --- Section Header Row --- */
.bh-section-header {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px 24px;
  padding-bottom: 18px;
  margin-bottom: clamp(48px, 7vh, 72px);
}
.bh-section-header--light {
  border-bottom: 1px solid var(--color-divider);
}
.bh-section-header--dark {
  border-bottom: 1px solid color-mix(in srgb, #f3f2f2 14%, transparent);
}

.bh-section-num {
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-feature-settings: 'tnum' 1;
}
.bh-section-num--light { color: var(--color-accent-700); }
.bh-section-num--dark { color: var(--color-accent-300); }

.bh-section-sub {
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.bh-section-sub--light { color: color-mix(in srgb, var(--color-text) 50%, transparent); }
.bh-section-sub--dark { color: color-mix(in srgb, #f3f2f2 45%, transparent); }


/* --- Accent Line + Label --- */
.bh-accent-line {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 30px;
}
.bh-accent-line span:first-child {
  display: block;
  width: 56px;
  height: 1px;
  background: var(--color-accent);
}
.bh-accent-label {
  font-size: 12px;
  line-height: 14px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-accent-300);
  font-feature-settings: 'tnum' 1;
}


/* --- Split Grid --- */
.bh-split {
  display: grid;
  gap: 48px clamp(48px, 6vw, 110px);
  align-items: center;
}
.bh-split--hero { grid-template-columns: minmax(0, 7fr) minmax(0, 5fr); }
.bh-split--about { grid-template-columns: minmax(0, 5fr) minmax(0, 7fr); align-items: start; }
.bh-split--services { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); align-items: end; }
.bh-split--footer { grid-template-columns: minmax(0, 5fr) minmax(0, 4fr) minmax(0, 3fr); align-items: start; }
.bh-split--cta { grid-template-columns: minmax(0, 1fr) auto; align-items: center; }


/* --- Hero Section --- */
.bh-hero {
  background: #16130f;
  position: relative;
  overflow: hidden;
}
.bh-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('/assets/images/hero-law.webp') center/cover no-repeat;
  opacity: 0.10;
  z-index: 0;
  pointer-events: none;
}
.bh-hero .bh-ghost {
  top: -0.18em;
  right: -0.06em;
  font-size: clamp(340px, 42vw, 640px);
}
.bh-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 1240px;
  margin: 0 auto;
  padding: clamp(72px, 11vh, 130px) clamp(20px, 5vw, 72px) 0;
}

.bh-hero-title {
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: clamp(46px, 5.6vw, 86px);
  line-height: 1.06;
  letter-spacing: -0.012em;
  margin: 0 0 0 -0.042em;
  color: #f3f2f2;
}
.bh-hero-title span { display: block; }
.bh-hero-title .bh-accent-text { color: var(--color-accent-300); }

.bh-hero-desc {
  font-size: 16.5px;
  line-height: 30px;
  max-width: 50ch;
  margin: 34px 0 0;
  color: color-mix(in srgb, #f3f2f2 74%, transparent);
}

.bh-hero-actions {
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
  margin-top: 44px;
}


/* --- Buttons --- */
.bh-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 12.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-decoration: none;
  color: #16130f;
  background: var(--color-accent-400);
  padding: 17px 38px;
}
.bh-btn-primary:hover {
  background: var(--color-accent-300);
  color: #16130f;
}

.bh-btn-outline-light {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-decoration: none;
  color: #f3f2f2;
  padding: 17px 4px;
  border-bottom: 1px solid color-mix(in srgb, #f3f2f2 35%, transparent);
}
.bh-btn-outline-light:hover {
  color: var(--color-accent-300);
  border-color: var(--color-accent-400);
}

.bh-btn-outline-accent {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--color-accent-700);
  border: 1px solid var(--color-accent);
  padding: 14px 30px;
  white-space: nowrap;
}
.bh-btn-outline-accent:hover {
  color: var(--color-accent-800);
  background: color-mix(in srgb, var(--color-accent) 8%, transparent);
}

.bh-btn-outline-dark {
  display: inline-flex;
  align-items: center;
  font-size: 13.5px;
  font-feature-settings: 'tnum' 1;
  text-decoration: none;
  color: #f3f2f2;
  border: 1px solid color-mix(in srgb, #f3f2f2 35%, transparent);
  padding: 16px 40px;
}
.bh-btn-outline-dark:hover {
  border-color: var(--color-accent-400);
  color: var(--color-accent-300);
}


/* --- Hero Image Frame --- */
.bh-hero-image-wrap {
  position: relative;
  justify-self: end;
  width: min(400px, 100%);
  padding: 0 18px 18px 0;
}
.bh-hero-image-wrap .bh-frame-border {
  position: absolute;
  inset: 18px 0 0 18px;
  border: 1px solid color-mix(in srgb, var(--color-accent) 55%, transparent);
  pointer-events: none;
}
.bh-hero-image-wrap .bh-frame-corner {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 44px;
  height: 44px;
  border-right: 2px solid var(--color-accent);
  border-bottom: 2px solid var(--color-accent);
  pointer-events: none;
}
.bh-hero-image-wrap .plate img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  display: block;
}


/* --- Stats Bar --- */
.bh-stats-wrap {
  position: relative;
  z-index: 1;
  max-width: 1240px;
  margin: clamp(64px, 9vh, 100px) auto 0;
  padding: 0 clamp(20px, 5vw, 72px);
}
.bh-stats-inner {
  border-top: 1px solid color-mix(in srgb, #f3f2f2 12%, transparent);
  overflow: hidden;
  padding: 34px 0 clamp(48px, 7vh, 72px);
}
.bh-stats-track {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px clamp(28px, 4vw, 72px);
}

.bh-stat {
  display: flex;
  align-items: baseline;
  gap: 16px;
}
.bh-stat-number {
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: 44px;
  line-height: 1;
  font-feature-settings: 'tnum' 1;
  color: #f3f2f2;
}
.bh-stat-number--accent { color: var(--color-accent-400); }
.bh-stat-label {
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: color-mix(in srgb, #f3f2f2 58%, transparent);
  line-height: 18px;
}
.bh-stat-dup {
  display: none;
}


/* --- About Section (on homepage) --- */
.bh-about-image-wrap {
  position: relative;
  width: min(420px, 100%);
  padding: 18px 0 0 18px;
}
.bh-about-image-wrap .bh-frame-border {
  position: absolute;
  inset: 0 18px 18px 0;
  border: 1px solid color-mix(in srgb, var(--color-accent) 45%, transparent);
  pointer-events: none;
}
.bh-about-image-wrap .plate img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  display: block;
}
.bh-about-caption {
  font-size: 12.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: color-mix(in srgb, var(--color-text) 60%, transparent);
  margin-top: 14px;
  font-feature-settings: 'tnum' 1;
}

.bh-heading-display {
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: clamp(32px, 3.4vw, 48px);
  line-height: 1.14;
  letter-spacing: -0.01em;
  margin: 0 0 0 -0.042em;
}

.bh-body-text {
  font-size: 16px;
  line-height: 30px;
  color: color-mix(in srgb, var(--color-text) 80%, transparent);
  margin: 30px 0 0;
  max-width: 58ch;
  text-align: justify;
  hyphens: auto;
}
.bh-body-text + .bh-body-text { margin-top: 18px; }

.bh-dropcap {
  font-family: var(--font-heading);
  font-size: 200%;
  line-height: 0;
  color: var(--color-accent-700);
  vertical-align: -0.12em;
  padding-right: 2px;
}


/* --- Value Rows (I./II./III.) --- */
.bh-values-grid {
  margin-top: 40px;
  display: grid;
  gap: 0;
}
.bh-valrow {
  display: grid;
  grid-template-columns: 44px 220px 1fr;
  gap: 18px;
  align-items: baseline;
  border-top: 1px solid var(--color-divider);
  padding: 20px 0;
}
.bh-valrow:last-child {
  border-bottom: 1px solid var(--color-divider);
}
.bh-valrow-num {
  font-family: var(--font-heading);
  font-size: 19px;
  color: var(--color-accent);
}
.bh-valrow h3 {
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: 21px;
  margin: 0;
}
.bh-valrow p {
  font-size: 14.5px;
  line-height: 25px;
  color: color-mix(in srgb, var(--color-text) 72%, transparent);
  margin: 0;
}


/* --- Mission & Vision --- */
.bh-mv-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 56px clamp(48px, 7vw, 120px);
}

/* Accordion toggle (hidden on desktop) */
.bh-valrow-toggle { display: none; }

.bh-mv-card {
  border-left: 1px solid var(--color-accent);
  padding-left: clamp(24px, 3vw, 40px);
}
.bh-mv-kicker {
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-accent-300);
}
.bh-mv-card h2 {
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: clamp(27px, 2.6vw, 36px);
  line-height: 1.28;
  letter-spacing: -0.005em;
  margin: 18px 0 0;
  color: #f3f2f2;
}
.bh-mv-card p {
  font-size: 15.5px;
  line-height: 28px;
  color: color-mix(in srgb, #f3f2f2 68%, transparent);
  margin: 20px 0 0;
  max-width: 50ch;
  text-align: justify;
  hyphens: auto;
}


/* --- Services 3x2 Grid --- */
.bh-heading-large {
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: clamp(36px, 4vw, 56px);
  line-height: 1.1;
  letter-spacing: -0.012em;
  margin: 0 0 0 -0.042em;
}

.bh-services-desc {
  font-size: 15.5px;
  line-height: 28px;
  color: color-mix(in srgb, var(--color-text) 74%, transparent);
  margin: 0;
  max-width: 46ch;
  text-align: justify;
  hyphens: auto;
}

.bh-grid3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}

.bh-service-scroll-wrap { position: relative; }

.bh-service-card {
  position: relative;
  padding: 36px clamp(24px, 2.6vw, 38px) 40px;
  transition: all 0.4s cubic-bezier(0.22, 0.61, 0.36, 1);
  background:
    var(--color-bg)
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='80' height='80'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='80' height='80' filter='url(%23n)' opacity='0.018'/%3E%3C/svg%3E");
  border: 1px solid var(--color-divider);
  margin: -0.5px;
  overflow: hidden;
}
.bh-service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 0% 0%, color-mix(in srgb, var(--color-accent) 6%, transparent), transparent 70%);
  opacity: 0;
  transition: opacity 0.4s;
  pointer-events: none;
}
.bh-service-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 40px;
  height: 40px;
  border-right: 1px solid color-mix(in srgb, var(--color-accent) 18%, transparent);
  border-bottom: 1px solid color-mix(in srgb, var(--color-accent) 18%, transparent);
  pointer-events: none;
  transition: border-color 0.3s;
}
.bh-service-card:hover {
  border-color: color-mix(in srgb, var(--color-accent) 40%, transparent);
  transform: translateY(-4px);
  box-shadow: 0 16px 48px color-mix(in srgb, var(--color-accent) 10%, transparent);
  z-index: 1;
}
.bh-service-card:hover::before { opacity: 1; }
.bh-service-card:hover::after {
  border-color: color-mix(in srgb, var(--color-accent) 45%, transparent);
}

/* Scroll indicator (hidden on desktop) */
.bh-scroll-indicator { display: none; }

.bh-service-card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}
.bh-service-card-num {
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: 42px;
  line-height: 1;
  font-feature-settings: 'tnum' 1;
  color: color-mix(in srgb, var(--color-accent) 25%, transparent);
  flex-shrink: 0;
  transition: color 0.3s;
}
.bh-service-card:hover .bh-service-card-num {
  color: var(--color-accent);
}
.bh-service-card-line {
  display: block;
  flex: 1;
  height: 1px;
  background: var(--color-divider);
}
.bh-service-card-icon {
  flex-shrink: 0;
}
.bh-service-card-icon svg {
  width: 26px;
  height: 26px;
  transition: transform 0.3s;
}
.bh-service-card:hover .bh-service-card-icon svg {
  transform: translateY(-2px);
}
.bh-service-card h3 {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 23px;
  line-height: 1.25;
  letter-spacing: -0.005em;
  margin: 0 0 10px;
}
.bh-service-card p {
  font-size: 14px;
  line-height: 24px;
  color: color-mix(in srgb, var(--color-text) 68%, transparent);
  margin: 0;
  hyphens: auto;
}

.bh-services-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 40px;
}
.bh-services-footer p {
  font-size: 14.5px;
  line-height: 26px;
  color: color-mix(in srgb, var(--color-text) 64%, transparent);
  margin: 0;
  max-width: 56ch;
}


/* --- Latin Quote Section --- */
.bh-quote-section {
  background: var(--color-bg);
  color: var(--color-text);
  padding: 0 clamp(20px, 5vw, 72px) clamp(84px, 11vh, 132px);
}
.bh-quote-inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  border-top: 1px solid var(--color-divider);
  padding-top: clamp(64px, 9vh, 96px);
}
.bh-quote-line {
  display: inline-block;
  width: 56px;
  height: 1px;
  background: var(--color-accent);
  margin-bottom: 34px;
}
.bh-quote-inner blockquote {
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: clamp(26px, 3vw, 40px);
  line-height: 1.35;
  letter-spacing: -0.005em;
  margin: 0;
  color: var(--color-text);
}
.bh-quote-translation {
  font-size: 15px;
  line-height: 26px;
  color: color-mix(in srgb, var(--color-text) 62%, transparent);
  margin: 24px auto 0;
  max-width: 52ch;
}
.bh-quote-source {
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-accent-700);
  margin: 18px 0 0;
}


/* --- Video CTA Section --- */
.bh-video-cta {
  position: relative;
  padding: clamp(100px, 14vh, 160px) clamp(20px, 5vw, 72px);
  overflow: hidden;
  background: #16130f;
}
.bh-video-cta-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}
.bh-video-cta-bg iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 200%;
  height: 200%;
  transform: translate(-50%, -50%);
  border: none;
  pointer-events: none;
}
.bh-video-cta-overlay {
  position: absolute;
  inset: 0;
  background: rgba(22, 19, 15, 0.72);
  z-index: 1;
}
@media (max-width: 940px) {
  .bh-video-cta-bg iframe {
    width: 300%;
    height: 300%;
  }
}
@media (max-width: 640px) {
  .bh-video-cta-bg iframe {
    width: 400%;
    height: 400%;
  }
}


/* --- CTA / Contact Section (homepage) --- */
.bh-cta-center {
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
}
.bh-cta-icon {
  font-family: var(--font-heading);
  font-size: 44px;
  color: var(--color-accent-400);
  line-height: 1;
}
.bh-cta-title {
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: clamp(38px, 4.6vw, 66px);
  line-height: 1.12;
  letter-spacing: -0.01em;
  margin: 26px 0 0;
  color: #f3f2f2;
}
.bh-cta-desc {
  font-size: 16px;
  line-height: 29px;
  color: color-mix(in srgb, #f3f2f2 70%, transparent);
  margin: 22px auto 0;
  max-width: 46ch;
}
.bh-cta-actions {
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 40px;
}

/* Homepage contact cards (04 — İletişim) */
.bh-contact-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}
.bh-contact-card {
  border-top: 2px solid var(--color-accent);
  padding: clamp(24px, 3vw, 36px) clamp(16px, 2vw, 28px) 0 0;
}
.bh-contact-card-num {
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: 18px;
  color: color-mix(in srgb, var(--color-accent) 50%, transparent);
  display: block;
  margin-bottom: 16px;
}
.bh-contact-card-label {
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-accent-300);
  margin: 0 0 10px;
}
.bh-contact-card-value {
  font-family: var(--font-heading);
  font-size: 22px;
  line-height: 30px;
  font-feature-settings: 'tnum' 1;
  text-decoration: none;
  color: #f3f2f2;
  margin: 0;
  display: block;
}
a.bh-contact-card-value:hover { color: var(--color-accent-300); }
.bh-contact-card-value--wrap { overflow-wrap: anywhere; font-size: 18px; }


/* --- Footer --- */
.bh-footer {
  background: #100d09;
  color: #f3f2f2;
  padding: clamp(56px, 8vh, 88px) clamp(20px, 5vw, 72px) 40px;
  border-top: 1px solid color-mix(in srgb, var(--color-accent) 30%, transparent);
}
.bh-footer-logo {
  height: 60px;
  width: auto;
  display: block;
  filter: brightness(0) invert(1);
}
.bh-footer-desc {
  font-size: 14px;
  line-height: 25px;
  color: color-mix(in srgb, #f3f2f2 58%, transparent);
  margin: 24px 0 0;
  max-width: 44ch;
}
.bh-footer-heading {
  font-size: 11.5px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-accent-300);
  margin: 0 0 16px;
}
.bh-footer-links {
  display: grid;
  gap: 10px;
}
.bh-footer-link {
  font-size: 14px;
  text-decoration: none;
  color: color-mix(in srgb, #f3f2f2 72%, transparent);
}
.bh-footer-link:hover { color: var(--color-accent-300); }
.bh-footer-link--tnum { font-feature-settings: 'tnum' 1; }
.bh-footer-link--wrap { overflow-wrap: anywhere; }

.bh-footer-bottom {
  margin-top: 48px;
  border-top: 1px solid color-mix(in srgb, #f3f2f2 10%, transparent);
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.bh-footer-copy {
  font-size: 12.5px;
  color: color-mix(in srgb, #f3f2f2 46%, transparent);
  font-feature-settings: 'tnum' 1;
}
.bh-footer-copy a {
  color: color-mix(in srgb, #f3f2f2 46%, transparent);
  text-decoration: none;
}
.bh-footer-copy a:hover { color: var(--color-accent-300); }
.bh-footer-baro {
  font-size: 12.5px;
  color: color-mix(in srgb, #f3f2f2 46%, transparent);
}

.bh-footer-social {
  display: flex;
  gap: 14px;
  margin-top: 20px;
}
.bh-footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 1px solid color-mix(in srgb, #f3f2f2 20%, transparent);
  color: color-mix(in srgb, #f3f2f2 72%, transparent);
  text-decoration: none;
  transition: border-color 0.2s, color 0.2s;
}
.bh-footer-social a:hover {
  border-color: var(--color-accent-400);
  color: var(--color-accent-300);
}
.bh-footer-social svg { width: 16px; height: 16px; }


/* --- WhatsApp Float Button --- */
.bh-whatsapp {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 60px;
  height: 60px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 50;
  text-decoration: none;
  box-shadow: 0 4px 16px rgba(0,0,0,0.25);
  transition: transform 0.2s, box-shadow 0.2s;
}
.bh-whatsapp:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 24px rgba(0,0,0,0.3);
}
.bh-whatsapp svg { width: 30px; height: 30px; fill: #fff; }


/* --- Page Hero (About, Contact) --- */
.bh-page-hero {
  background: #16130f;
  padding: clamp(64px, 9vh, 110px) clamp(20px, 5vw, 72px) clamp(56px, 8vh, 96px);
  position: relative;
  overflow: hidden;
}
.bh-page-hero--about::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('/assets/images/about-hero.webp') center/cover no-repeat;
  opacity: 0.08;
  z-index: 0;
  pointer-events: none;
}
.bh-page-hero--contact::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('/assets/images/contact-hero.webp') center/cover no-repeat;
  opacity: 0.08;
  z-index: 0;
  pointer-events: none;
}
.bh-page-hero .bh-ghost {
  top: -0.16em;
  right: -0.05em;
  font-size: clamp(220px, 26vw, 400px);
  -webkit-text-stroke: 1px color-mix(in srgb, var(--color-accent) 13%, transparent);
}
.bh-page-hero-inner {
  max-width: 1240px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.bh-page-hero h1 {
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: clamp(42px, 5.4vw, 76px);
  line-height: 1.08;
  letter-spacing: -0.012em;
  margin: 0 0 0 -0.042em;
  color: #f3f2f2;
}
.bh-page-hero p {
  font-size: 17px;
  line-height: 30px;
  max-width: 56ch;
  margin: 28px 0 0;
  color: color-mix(in srgb, #f3f2f2 78%, transparent);
}


/* --- About Page: Profile Section --- */
.bh-profile-label {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 22px;
}
.bh-profile-label span:first-child {
  display: block;
  width: 44px;
  height: 1px;
  background: var(--color-accent);
}
.bh-profile-label-text {
  font-size: 13px;
  line-height: 14px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-accent-700);
}

.bh-profile-name {
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: clamp(32px, 3.4vw, 46px);
  line-height: 1.15;
  letter-spacing: -0.008em;
  margin: 0 0 0 -0.042em;
}

.bh-profile-bio {
  font-size: 16px;
  line-height: 29px;
  color: color-mix(in srgb, var(--color-text) 80%, transparent);
  margin: 26px 0 0;
  max-width: 58ch;
  text-align: justify;
  hyphens: auto;
}
.bh-profile-bio + .bh-profile-bio { margin-top: 16px; }

/* --- Değerler Grid (hakkımızda) --- */
.bh-degerler-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.bh-deger-card {
  border-top: 2px solid var(--color-accent);
  padding: clamp(24px, 3vw, 36px) clamp(20px, 2.5vw, 32px) 0 0;
}
.bh-deger-num {
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: 20px;
  color: var(--color-accent);
  display: block;
  margin-bottom: 16px;
}
.bh-deger-card h3 {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 22px;
  line-height: 1.2;
  margin: 0 0 12px;
}
.bh-deger-card p {
  font-size: 14.5px;
  line-height: 25px;
  color: color-mix(in srgb, var(--color-text) 72%, transparent);
  margin: 0;
  max-width: 36ch;
}


/* --- Timeline --- */
.bh-timeline-section {
  background: var(--color-bg);
  color: var(--color-text);
  padding: 0 clamp(20px, 5vw, 72px) clamp(72px, 10vh, 110px);
}
.bh-timeline-inner {
  max-width: 1240px;
  margin: 0 auto;
  border-top: 1px solid var(--color-divider);
  padding-top: clamp(48px, 7vh, 72px);
}
.bh-timeline-label {
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-accent-700);
  font-feature-settings: 'tnum' 1;
}
.bh-timeline-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 36px clamp(28px, 4vw, 72px);
  margin-top: 36px;
}
.bh-timeline-item {
  border-top: 2px solid var(--color-accent);
  padding-top: 20px;
}
.bh-timeline-year {
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: 38px;
  line-height: 1;
  font-feature-settings: 'tnum' 1;
  color: var(--color-text);
}
.bh-timeline-year--accent { color: var(--color-accent-700); }
.bh-timeline-item p {
  font-size: 14.5px;
  line-height: 26px;
  color: color-mix(in srgb, var(--color-text) 72%, transparent);
  margin: 12px 0 0;
}


/* --- Expertise Areas (dark bg, numbered rows) --- */
.bh-expertise-heading {
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: clamp(32px, 3.6vw, 48px);
  line-height: 1.12;
  letter-spacing: -0.008em;
  margin: 0 0 0 -0.042em;
  color: #f3f2f2;
  max-width: 24ch;
}
.bh-expertise-grid {
  margin-top: 48px;
  display: grid;
  grid-template-columns: 1fr;
}
.bh-expertise-row {
  display: grid;
  grid-template-columns: 64px minmax(160px, 300px) 1fr;
  gap: 24px;
  padding: 26px 0;
  border-top: 1px solid color-mix(in srgb, #f3f2f2 14%, transparent);
  align-items: baseline;
}
.bh-expertise-num {
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: 20px;
  font-feature-settings: 'tnum' 1;
  color: var(--color-accent-400);
}
.bh-expertise-row h3 {
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: 26px;
  line-height: 31px;
  letter-spacing: -0.005em;
  margin: 0;
  color: #f3f2f2;
}
.bh-expertise-row p {
  font-size: 15px;
  line-height: 27px;
  margin: 0;
  color: color-mix(in srgb, #f3f2f2 70%, transparent);
  max-width: 58ch;
}


/* --- Case Process (4 steps) --- */
.bh-process-heading {
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: clamp(32px, 3.6vw, 48px);
  line-height: 1.12;
  letter-spacing: -0.008em;
  margin: 0 0 0 -0.042em;
}
.bh-process-desc {
  font-size: 15.5px;
  line-height: 28px;
  color: color-mix(in srgb, var(--color-text) 76%, transparent);
  margin: 0;
  max-width: 48ch;
  text-align: justify;
  hyphens: auto;
}
.bh-process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 40px clamp(28px, 3vw, 48px);
}
.bh-process-step {
  border-top: 1px solid var(--color-divider);
  padding-top: 22px;
}
.bh-process-num {
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: 42px;
  line-height: 46px;
  font-feature-settings: 'tnum' 1;
  color: var(--color-accent);
}
.bh-process-step h3 {
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: 24px;
  line-height: 29px;
  margin: 16px 0 0;
}
.bh-process-step p {
  font-size: 15px;
  line-height: 27px;
  color: color-mix(in srgb, var(--color-text) 76%, transparent);
  margin: 12px 0 0;
  hyphens: auto;
}


/* --- About page CTA bar --- */
.bh-cta-bar {
  background: #16130f;
  padding: clamp(64px, 9vh, 100px) clamp(20px, 5vw, 72px);
}
.bh-cta-bar h2 {
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.2;
  letter-spacing: -0.005em;
  margin: 0 0 0 -0.042em;
  color: #f3f2f2;
  max-width: 26ch;
}
.bh-cta-bar-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.bh-btn-cta {
  display: inline-flex;
  align-items: center;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  color: #16130f;
  background: var(--color-accent-400);
  padding: 15px 34px;
  white-space: nowrap;
}
.bh-btn-cta:hover { background: var(--color-accent-300); color: #16130f; }
.bh-btn-cta-outline {
  display: inline-flex;
  align-items: center;
  font-size: 14px;
  font-feature-settings: 'tnum' 1;
  text-decoration: none;
  color: #f3f2f2;
  border: 1px solid color-mix(in srgb, #f3f2f2 40%, transparent);
  padding: 14px 34px;
  white-space: nowrap;
}
.bh-btn-cta-outline:hover { border-color: var(--color-accent-400); color: var(--color-accent-300); }


/* --- Contact Page --- */
.bh-contact-info-label {
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-accent-700);
  margin: 0 0 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.bh-contact-info-label svg { width: 15px; height: 15px; flex: none; }
.bh-contact-info-card {
  border-top: 1px solid var(--color-divider);
  padding-top: 22px;
}
.bh-contact-info-value {
  font-family: var(--font-heading);
  font-size: 24px;
  font-feature-settings: 'tnum' 1;
  text-decoration: none;
  color: var(--color-text);
}
.bh-contact-info-value:hover { color: var(--color-accent-700); }
.bh-contact-info-text {
  font-family: var(--font-heading);
  font-size: 20px;
  line-height: 29px;
  color: var(--color-text);
  margin: 0;
}
.bh-contact-info-email {
  font-family: var(--font-heading);
  font-size: 20px;
  text-decoration: none;
  color: var(--color-text);
  overflow-wrap: anywhere;
}
.bh-contact-info-email:hover { color: var(--color-accent-700); }


/* --- Contact Form --- */
.bh-form-heading {
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1.15;
  letter-spacing: -0.008em;
  margin: 0 0 0 -0.042em;
}
.bh-form-desc {
  font-size: 15.5px;
  line-height: 28px;
  color: color-mix(in srgb, var(--color-text) 76%, transparent);
  margin: 18px 0 0;
  max-width: 56ch;
}
.bh-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-top: 30px;
}
.bh-form .field > label {
  display: block;
  font-size: 12px;
  letter-spacing: 0.06em;
  margin-bottom: 7px;
  color: color-mix(in srgb, var(--color-text) 70%, transparent);
}
.bh-form .input {
  width: 100%;
  min-height: 44px;
  padding: 10px 14px;
  font: inherit;
  font-size: 15px;
  color: var(--color-text);
  caret-color: var(--color-accent);
  background: transparent;
  border: 1px solid var(--color-divider);
  border-radius: var(--radius-md);
}
.bh-form .input:hover {
  border-color: color-mix(in srgb, var(--color-text) 45%, transparent);
}
.bh-form .input:focus-visible {
  border-color: var(--color-accent);
  outline-offset: 0;
}
textarea.input {
  min-height: 120px;
  resize: vertical;
  font-family: var(--font-body);
}
.bh-form-full { grid-column: 1 / -1; }
.bh-form-actions {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 24px;
  flex-wrap: wrap;
}
.bh-btn-submit {
  display: inline-flex;
  align-items: center;
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--color-bg);
  background: var(--color-accent-600);
  padding: 16px 40px;
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
  transition: background 0.3s;
}
.bh-btn-submit:hover { background: var(--color-accent-700); color: var(--color-bg); }
.bh-form-note {
  font-size: 13px;
  color: color-mix(in srgb, var(--color-text) 60%, transparent);
}


/* --- Map Section --- */
.bh-map-section {
  background: var(--color-bg);
  padding: 0 clamp(20px, 5vw, 72px) clamp(72px, 10vh, 120px);
}
.bh-map-inner {
  max-width: 1240px;
  margin: 0 auto;
}
.bh-map-frame { margin: 0; width: 100%; }
.bh-map-frame iframe {
  display: block;
  width: 100%;
  aspect-ratio: 21 / 9;
  border: 0;
  filter: sepia(0.15) saturate(0.75);
}
.bh-map-footer {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 14px;
}
.bh-map-address {
  font-size: 13px;
  line-height: 22px;
  color: color-mix(in srgb, var(--color-text) 60%, transparent);
  margin: 0;
  font-feature-settings: 'tnum' 1;
}
.bh-map-link {
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--color-accent-700);
  border-bottom: 1px solid var(--color-accent);
  padding-bottom: 3px;
}
.bh-map-link:hover { color: var(--color-accent-800); }


/* --- Trust Section (Contact page, dark bg, 2 col) --- */
.bh-trust-grid {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 42px clamp(36px, 6vw, 96px);
}
.bh-trust-label {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
}
.bh-trust-label span:first-child {
  display: block;
  width: 44px;
  height: 1px;
  background: var(--color-accent);
}
.bh-trust-label-text {
  font-size: 13px;
  line-height: 14px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-accent-300);
}
.bh-trust-text {
  font-size: 15.5px;
  line-height: 28px;
  color: color-mix(in srgb, #f3f2f2 72%, transparent);
  margin: 0;
  max-width: 52ch;
  text-align: justify;
  hyphens: auto;
}


/* ============================================================
   Responsive Breakpoints
   ============================================================ */

@media (max-width: 1000px) {
  .bh-grid3 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 940px) {
  .bh-split { grid-template-columns: 1fr !important; }
  .bh-ghost { display: none !important; }
  .bh-start { justify-self: start !important; }
  .bh-valrow { grid-template-columns: 44px 1fr !important; }
  .bh-valrow > p { grid-column: 2 !important; }
  .bh-expertise-row { grid-template-columns: 44px 1fr !important; }
  .bh-expertise-row > p { grid-column: 2 !important; }

  .bh-degerler-grid { grid-template-columns: 1fr 1fr; }
  .bh-contact-cards { grid-template-columns: repeat(3, 1fr); }

  /* Tighter section spacing on tablet */
  .bh-section-pad { padding: clamp(56px, 8vh, 84px) clamp(20px, 5vw, 48px); }
  .bh-section-pad-sm { padding: clamp(48px, 7vh, 72px) clamp(20px, 5vw, 48px); }
  .bh-section-header { margin-bottom: clamp(32px, 5vh, 48px); }
}

@media (max-width: 820px) {
  .bh-navlink { display: none !important; }
  .bh-nav { gap: 20px !important; }
  .bh-hamburger { display: flex; }
}

@media (max-width: 640px) {
  /* --- Service cards: horizontal swipe carousel --- */
  .bh-service-scroll-wrap {
    margin: 0 -16px;
  }
  .bh-grid3 {
    display: flex !important;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    gap: 0 !important;
    padding: 0 16px 4px;
  }
  .bh-grid3::-webkit-scrollbar { display: none; }
  .bh-service-card {
    flex: 0 0 78vw;
    max-width: 320px;
    scroll-snap-align: center;
    margin: 0 6px !important;
    padding: 28px 22px 32px !important;
    border: 1px solid var(--color-divider) !important;
  }
  .bh-service-card::before { opacity: 1 !important; }
  .bh-service-card::after { width: 32px; height: 32px; }
  .bh-service-card-line { display: block !important; }
  .bh-service-card-num { font-size: 32px; }
  .bh-service-card-icon svg { width: 22px; height: 22px; }
  .bh-service-card h3 { font-size: 20px; margin: 16px 0 8px; }
  .bh-service-card p { font-size: 13.5px; line-height: 22px; }
  .bh-scroll-indicator {
    display: block;
    padding: 16px 16px 0;
  }
  .bh-scroll-indicator-track {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--color-divider);
    position: relative;
  }
  .bh-scroll-indicator-thumb {
    display: block;
    width: 16.66%;
    height: 2px;
    background: var(--color-accent);
    transition: transform 0.12s ease-out;
  }

  /* --- Section padding on mobile --- */
  .bh-section-pad { padding: 64px 20px; }
  .bh-section-pad-sm { padding: 56px 20px; }
  .bh-section-header { margin-bottom: 36px; }

  /* --- Values grid: accordion on mobile --- */
  .bh-values-grid { margin-top: 28px !important; }
  .bh-valrow { padding: 18px 0 !important; cursor: pointer; }
  .bh-valrow h3 { font-size: 19px !important; position: relative; }
  .bh-valrow-toggle {
    display: inline-block !important;
    float: right;
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 400;
    color: var(--color-accent);
    transition: transform 0.3s;
    line-height: 1;
  }
  .bh-valrow.bh-val-open .bh-valrow-toggle { transform: rotate(45deg); }
  .bh-valrow > p {
    max-height: 0 !important;
    overflow: hidden !important;
    opacity: 0;
    margin: 0 !important;
    padding: 0 !important;
    transition: max-height 0.35s ease, opacity 0.25s ease;
    font-size: 15px !important;
    line-height: 26px !important;
  }
  .bh-valrow.bh-val-open > p {
    max-height: 300px !important;
    opacity: 1;
    margin-top: 10px !important;
  }

  /* --- Mission/Vision on mobile --- */
  .bh-mv-grid { gap: 44px !important; }
  .bh-mv-card h2 { font-size: 24px !important; }
  .bh-mv-card p { font-size: 15px !important; line-height: 26px !important; text-align: left !important; }

  /* --- About image: hide duplicate on homepage mobile (hero already shows it) --- */
  .bh-hero ~ .bh-section-pad .bh-about-image-wrap { display: none !important; }

  /* --- Profile section (hakkımızda page) --- */
  .bh-profile-name { font-size: clamp(28px, 8vw, 40px) !important; }
  .bh-profile-bio { font-size: 15.5px !important; line-height: 27px !important; text-align: left !important; }

  /* --- Değerler grid on mobile --- */
  .bh-degerler-grid { grid-template-columns: 1fr 1fr !important; gap: 28px 20px !important; }
  .bh-deger-card p { font-size: 14px !important; line-height: 24px !important; }

  /* --- Quote section --- */
  .bh-quote-section { padding: 0 20px 48px !important; }
  .bh-quote-inner { padding-top: 40px !important; }
  .bh-quote-inner blockquote { font-size: clamp(22px, 5.5vw, 32px) !important; }

  /* --- Video CTA --- */
  .bh-video-cta { padding: 64px 20px !important; }
  .bh-cta-title { font-size: clamp(28px, 7vw, 44px) !important; }
  .bh-cta-desc { font-size: 15px !important; }

  /* --- Homepage contact cards --- */
  .bh-contact-cards { grid-template-columns: 1fr !important; gap: 28px !important; }
  .bh-contact-card-value { font-size: 20px !important; }
  .bh-contact-card-value--wrap { font-size: 16px !important; }

  /* --- Stats bar marquee --- */
  .bh-stats-track {
    display: flex !important;
    width: max-content;
    gap: 0 !important;
    animation: bh-marquee 16s linear infinite;
  }
  .bh-stat { flex: none; margin-right: 56px; }
  .bh-stat-dup { display: flex !important; }
  .bh-stat-number { font-size: 32px !important; }

  /* --- Hero on mobile --- */
  .bh-hero-title { font-size: clamp(34px, 9vw, 48px) !important; }
  .bh-hero-desc { font-size: 15px !important; line-height: 26px !important; }
  .bh-hero-actions { margin-top: 32px !important; }
  .bh-hero-image-wrap { width: min(280px, 80%) !important; margin: 0 auto; }

  /* --- Page hero on mobile --- */
  .bh-page-hero { padding: 56px 20px 48px !important; }
  .bh-page-hero h1 { font-size: clamp(36px, 9vw, 52px) !important; }

  /* --- About image on mobile --- */
  .bh-about-image-wrap { width: min(300px, 85%) !important; margin: 0 auto; }

  /* --- Services header --- */
  .bh-heading-large { font-size: clamp(30px, 8vw, 44px) !important; }
  .bh-services-desc { font-size: 15px !important; line-height: 26px !important; }
  .bh-services-footer { margin-top: 28px !important; }

  /* --- Expertise rows (hakkımızda) --- */
  .bh-expertise-heading { font-size: clamp(26px, 7vw, 40px) !important; }
  .bh-expertise-grid { margin-top: 32px !important; }
  .bh-expertise-row { padding: 20px 0 !important; gap: 10px !important; }
  .bh-expertise-row h3 { font-size: 22px !important; }
  .bh-expertise-row p { font-size: 14.5px !important; line-height: 25px !important; }

  /* --- Process steps (hakkımızda) 2x2 --- */
  .bh-process-grid { gap: 28px 20px !important; grid-template-columns: repeat(2, 1fr) !important; }
  .bh-process-num { font-size: 36px !important; }
  .bh-process-step h3 { font-size: 20px !important; }
  .bh-process-step p { font-size: 14px !important; line-height: 24px !important; }

  /* --- Timeline (hakkımızda) --- */
  .bh-timeline-year { font-size: 32px !important; }
  .bh-timeline-item p { font-size: 14px !important; line-height: 25px !important; }

  /* --- Trust section (iletişim) --- */
  .bh-trust-text { font-size: 15px !important; line-height: 26px !important; }

  /* --- Contact info cards (iletişim page) --- */
  .bh-contact-info-value { font-size: 20px !important; }
  .bh-contact-info-email { font-size: 15px !important; }
  .bh-contact-info-text { font-size: 16px !important; }

  /* --- Map compact --- */
  .bh-map-frame iframe { aspect-ratio: 16 / 9 !important; }

  /* --- Forms --- */
  .bh-form { grid-template-columns: 1fr !important; }

  /* --- CTA bar (hakkımızda) compact --- */
  .bh-cta-bar { padding: 48px 16px !important; }
  .bh-cta-bar h2 { font-size: clamp(22px, 6vw, 32px) !important; }
  .bh-cta-bar-actions { width: 100%; }
  .bh-btn-cta, .bh-btn-cta-outline { width: 100% !important; text-align: center !important; justify-content: center; padding: 14px 24px !important; }

  /* --- Badge grid (hakkımızda değerler) compact --- */
  .bh-badge-desc { font-size: 13px !important; line-height: 21px !important; }

  /* --- Footer compact --- */
  .bh-footer { padding: 48px 20px 32px !important; }
  .bh-footer-bottom { margin-top: 36px !important; flex-direction: column !important; gap: 8px !important; }

  /* --- CTA bar on mobile --- */
  .bh-cta-bar { padding: 56px 20px !important; }
  .bh-cta-bar h2 { font-size: clamp(24px, 7vw, 36px) !important; }
  .bh-cta-bar-actions { width: 100%; }
  .bh-btn-cta, .bh-btn-cta-outline { width: 100% !important; text-align: center !important; justify-content: center; }
}

/* --- Extra small (< 400px) --- */
@media (max-width: 400px) {
  .bh-service-card { flex: 0 0 85vw !important; }
  .bh-cta-actions { flex-direction: column !important; }
  .bh-cta-actions a { width: 100% !important; text-align: center !important; justify-content: center; }
}

@keyframes bh-marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) {
  .bh-stats-track { animation: none !important; }
}
