:root {
  --bg: #f6f1e7;
  --bg-soft: #fcf8f1;
  --surface: rgba(255, 255, 255, 0.84);
  --surface-strong: #fffdf8;
  --line: rgba(38, 67, 61, 0.12);
  --line-strong: rgba(38, 67, 61, 0.2);
  --text: #18332f;
  --muted: #5b6d69;
  --accent: #184a45;
  --accent-2: #c97c4a;
  --accent-3: #87a89a;
  --white: #ffffff;
  --shadow-lg: 0 28px 60px rgba(39, 56, 52, 0.12);
  --shadow-md: 0 16px 36px rgba(39, 56, 52, 0.08);
  --shadow-sm: 0 10px 20px rgba(39, 56, 52, 0.05);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-sm: 14px;
  --container: 1180px;
  --header-height: 88px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 16px;
}

body {
  margin: 0;
  color: var(--text);
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  background:
    radial-gradient(circle at top left, rgba(201, 124, 74, 0.16), transparent 26%),
    radial-gradient(circle at top right, rgba(24, 74, 69, 0.14), transparent 24%),
    linear-gradient(180deg, #f8f4ec 0%, #f4eee4 100%);
  line-height: 1.72;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  padding-top: 0;
  padding-bottom: 0;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

.container {
  width: min(100%, var(--container));
  margin: 0 auto;
  padding: 0 20px;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: auto;
}

.skip-link:focus {
  left: 16px;
  top: 16px;
  z-index: 2000;
  padding: 10px 14px;
  border-radius: 12px;
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.site-header {
  position: static;
  z-index: 1000;
  background: rgba(248, 244, 236, 0.82);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(24, 74, 69, 0.08);
}

.header-shell {
  min-height: var(--header-height);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 18px;
  padding: 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.brand-logo {
  width: 84px;
  height: 54px;
  object-fit: contain;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.88);
  padding: 6px 8px;
  box-shadow: var(--shadow-sm);
}

.brand-text {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.brand-title {
  font-weight: 800;
  font-size: 1.02rem;
  letter-spacing: -0.03em;
}

.brand-subtitle {
  font-size: 0.83rem;
  color: var(--muted);
}

.main-nav {
  display: flex;
  justify-content: center;
  gap: 4px;
  flex-wrap: nowrap;
  min-width: 0;
}

.main-nav a {
  padding: 9px 10px;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 700;
  color: rgba(24, 51, 47, 0.82);
  transition: background 0.2s ease, color 0.2s ease;
  white-space: nowrap;
}

.main-nav a:hover,
.main-nav a:focus-visible {
  background: rgba(24, 74, 69, 0.08);
  color: var(--accent);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.header-btn,
.hero-btn,
.estimate-cta,
.submit-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  cursor: pointer;
  transition: transform 0.18s ease, background 0.18s ease, border-color 0.18s ease;
}

.header-btn {
  min-height: 42px;
  padding: 0 15px;
  border-radius: 12px;
  font-weight: 800;
  white-space: nowrap;
  font-size: 0.92rem;
}

.header-btn.solid {
  background: var(--accent);
  color: var(--white);
  box-shadow: 0 14px 28px rgba(24, 74, 69, 0.18);
}

.header-btn.soft {
  background: rgba(255, 255, 255, 0.72);
  color: var(--accent);
  border: 1px solid rgba(24, 74, 69, 0.1);
}

.header-btn:hover,
.hero-btn:hover,
.estimate-cta:hover,
.submit-btn:hover {
  transform: translateY(-1px);
}

.hero-section {
  width: 100%;
  padding: 0;
}

.hero-wrap {
  width: 100%;
}

.hero-container {
  display: block;
  max-width: 1240px;
  margin: 0 auto;
  padding: 28px 20px 0;
}

.hero-copy,
.hero-panel,
.service-card,
.detail-card,
.route-card,
.step-card,
.estimator-card,
.quote-panel,
.quote-side-card,
.contact-card,
.bottom-cta,
.site-footer {
  border: 1px solid var(--line);
  box-shadow: var(--shadow-md);
}

.hero-copy {
  width: 100%;
  min-height: 540px;
  max-height: 600px;
  padding: 52px 42px 36px;
  border-radius: 28px;
  background:
    url("assets/img/hero-bozcaada-lojistik.jpg"),
    linear-gradient(135deg, rgba(24, 74, 69, 0.94) 0%, rgba(34, 87, 80, 0.88) 54%, rgba(65, 126, 108, 0.8) 100%);
  background-size: cover;
  background-position: center center;
  color: var(--white);
  position: relative;
  overflow: hidden;
  box-shadow: 0 28px 52px rgba(17, 44, 40, 0.2);
}

.hero-content,
.hero-copy {
  min-height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-content {
  max-width: 760px;
  position: relative;
  z-index: 2;
}

.hero-copy > * {
  position: relative;
  z-index: 1;
}

.hero-left::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(6, 48, 43, 0.88), rgba(6, 48, 43, 0.55), rgba(6, 48, 43, 0.18));
  z-index: 0;
}

.hero-copy::after {
  content: "";
  position: absolute;
  right: -44px;
  bottom: -44px;
  width: 168px;
  height: 168px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
}

.eyebrow {
  display: inline-block;
  margin: 0 0 14px;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-2);
}

.hero-copy .eyebrow {
  color: rgba(255, 235, 219, 0.9);
}

h1,
h2,
h3 {
  margin: 0;
  letter-spacing: -0.03em;
}

.hero h1,
.hero-title {
  max-width: 760px;
  font-size: clamp(38px, 3.4vw, 54px);
  line-height: 1.04;
  font-weight: 800;
  text-shadow: 0 12px 26px rgba(7, 29, 26, 0.25);
}

.hero-copy p,
.hero-description,
.hero-lead {
  max-width: 680px;
}

.hero-lead {
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 15px;
}

.hero-actions {
  position: relative;
  z-index: 5;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 20px;
  margin-bottom: 28px;
}

.hero-btn {
  min-height: 48px;
  padding: 0 18px;
  border-radius: 14px;
  font-weight: 800;
}

.hero-btn.primary {
  background: var(--white);
  color: var(--accent);
}

.hero-btn.secondary {
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-points {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  position: relative;
  z-index: 3;
  margin-top: 0;
  max-width: 700px;
}

.point-card {
  padding: 14px;
  border-radius: 16px;
  min-height: 96px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(4px);
}

.point-card strong {
  display: block;
  margin-bottom: 4px;
  font-size: 0.92rem;
  text-align: center;
}

.point-card span {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.84rem;
  text-align: center;
}

.hero-panel {
  padding: 28px;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255, 253, 248, 0.96) 0%, rgba(247, 241, 231, 0.92) 100%);
  box-shadow: 0 22px 44px rgba(34, 48, 45, 0.12);
}

.panel-badge {
  display: inline-flex;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(201, 124, 74, 0.12);
  color: #8c4d26;
  font-size: 0.82rem;
  font-weight: 800;
}

.hero-panel h2 {
  margin-top: 16px;
  font-size: clamp(1.75rem, 2.8vw, 2.35rem);
  line-height: 1.12;
  color: var(--accent);
}

.hero-panel p {
  margin: 14px 0 0;
  color: var(--muted);
}

.mini-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 18px;
}

.mini-stats div {
  padding: 14px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(24, 74, 69, 0.08);
}

.mini-stats strong,
.signal-item strong,
.route-note strong,
.quote-side-card strong {
  display: block;
  margin-bottom: 4px;
}

.mini-stats span,
.signal-item span,
.route-stop p,
.route-note p,
.contact-card p,
.contact-card a,
.quote-side-card p {
  color: var(--muted);
}

.contact-band {
  margin-top: 18px;
  padding: 16px;
  border-radius: 18px;
  background: var(--accent);
  color: var(--white);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.contact-band small {
  display: block;
  margin-bottom: 6px;
  color: rgba(255, 255, 255, 0.72);
}

.contact-band strong {
  font-size: 1.22rem;
}

.contact-band a {
  padding: 12px 18px;
  border-radius: 14px;
  background: var(--white);
  color: var(--accent);
  font-weight: 800;
}

.signal-strip,
.section-block {
  margin-top: 60px;
  padding: 0;
}

.hero-info {
  max-width: 1240px;
  margin: 18px auto 0;
  padding: 0 20px;
  position: relative;
  z-index: 2;
}

.hero-info-container {
  max-width: none;
  padding: 0;
}

.hero-info .card {
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.section-features {
  margin-top: 20px;
}

.signal-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.signal-item {
  padding: 18px 20px;
  border-radius: 18px;
  background: rgba(255, 253, 248, 0.88);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 18px;
}

.section-heading.left {
  margin-bottom: 18px;
}

.section-heading h2,
.coverage-copy h2,
.estimator-copy h2,
.quote-copy h2,
.bottom-cta h2 {
  font-size: clamp(1.9rem, 3.4vw, 2.7rem);
  line-height: 1.12;
  color: var(--accent);
}

.section-heading p,
.coverage-copy p,
.estimator-copy p,
.quote-copy p,
.bottom-cta p,
.footer-shell p,
.footer-meta span,
.service-card p,
.detail-card p,
.step-card p,
.estimate-result span,
.form-call-link,
.form-message {
  color: var(--muted);
}

.card-grid {
  display: grid;
  gap: 14px;
}

.card-grid.three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.card-grid.two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.card-grid.four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.card-grid.compact {
  margin-top: 18px;
}

.service-card,
.detail-card,
.step-card,
.contact-card,
.ops-card {
  padding: 20px;
  border-radius: var(--radius-lg);
  background: rgba(255, 253, 248, 0.9);
}

.service-media,
.quote-image-card,
.trust-image {
  width: 100%;
  overflow: hidden;
  border-radius: 18px;
  background: rgba(24, 74, 69, 0.08);
}

.service-media {
  margin-bottom: 14px;
  aspect-ratio: 16 / 9;
  max-height: 150px;
}

.service-media img,
.quote-image-card img,
.trust-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.service-media img {
  filter: contrast(1.06) brightness(0.96) saturate(0.95);
}

.service-card {
  box-shadow: var(--shadow-sm);
}

.card-index,
.contact-label {
  display: inline-flex;
  margin-bottom: 12px;
  padding: 7px 11px;
  border-radius: 999px;
  background: rgba(24, 74, 69, 0.08);
  color: var(--accent);
  font-size: 0.82rem;
  font-weight: 800;
}

.service-card h3,
.detail-card h3,
.step-card h3,
.contact-card h3,
.ops-card h3,
.quote-side-card a {
  color: var(--accent);
}

.service-card p,
.detail-card p,
.step-card p,
.contact-card p,
.ops-card p {
  margin-top: 8px;
}

.ops-grid {
  align-items: start;
}

.ops-card {
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}

.ferry-schedule {
  display: grid;
  gap: 12px;
  margin-top: 10px;
}

.ferry-block {
  padding: 14px;
  border-radius: 16px;
  background: rgba(24, 74, 69, 0.05);
  border: 1px solid rgba(24, 74, 69, 0.08);
}

.ferry-block strong,
.ops-data-row strong {
  color: var(--accent);
}

.ferry-block p {
  margin: 6px 0 4px;
  font-weight: 700;
  color: var(--text);
}

.ferry-block small,
.ops-note {
  display: block;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.6;
}

.ops-note {
  margin-top: 12px;
}

.ops-link {
  display: inline-flex;
  margin-top: 12px;
  color: var(--accent);
  font-weight: 800;
}

.ops-link:hover {
  text-decoration: underline;
}

.ops-data-list {
  display: grid;
  gap: 10px;
  margin-top: 12px;
}

.ops-data-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(24, 74, 69, 0.08);
}

.ops-data-row span {
  color: var(--muted);
  font-size: 0.92rem;
}

.ops-data-row strong {
  font-size: 1rem;
  text-align: right;
}

.warm-section .coverage-layout,
.estimator-layout,
.quote-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
  gap: 16px;
  align-items: start;
}

.coverage-copy,
.estimator-copy,
.quote-copy {
  padding: 10px 0;
}

.route-card {
  padding: 24px;
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, rgba(255, 253, 248, 0.95) 0%, rgba(241, 234, 221, 0.88) 100%);
}

.route-line {
  display: grid;
  gap: 12px;
}

.route-stop {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 16px;
}

.route-stop strong {
  color: var(--accent);
}

.route-dot {
  width: 18px;
  height: 18px;
  margin-top: 4px;
  border-radius: 50%;
  background: rgba(24, 74, 69, 0.18);
  border: 4px solid rgba(24, 74, 69, 0.1);
}

.route-stop.active .route-dot {
  background: var(--accent-2);
  border-color: rgba(201, 124, 74, 0.18);
}

.route-path {
  width: 2px;
  height: 76px;
  margin-left: 8px;
  background: linear-gradient(180deg, rgba(24, 74, 69, 0.15) 0%, rgba(201, 124, 74, 0.5) 100%);
}

.route-note {
  margin-top: 18px;
  padding: 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(24, 74, 69, 0.08);
}

.step-card {
  min-height: 0;
}

.step-no {
  display: inline-flex;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: var(--accent);
  color: var(--white);
  font-weight: 800;
}

.estimator-card {
  padding: 24px;
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, rgba(255, 253, 248, 0.98) 0%, rgba(247, 240, 228, 0.92) 100%);
}

.estimate-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.field label,
.form-group label {
  font-size: 0.92rem;
  font-weight: 800;
  color: var(--accent);
}

.field select,
.field input,
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  border-radius: 14px;
  border: 1px solid rgba(24, 74, 69, 0.15);
  background: rgba(255, 255, 255, 0.92);
  color: var(--text);
  padding: 13px 14px;
  outline: none;
  transition: border-color 0.18s ease, box-shadow 0.18s ease;
}

.field select:focus,
.field input:focus,
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: rgba(24, 74, 69, 0.42);
  box-shadow: 0 0 0 4px rgba(24, 74, 69, 0.08);
}

input[type="range"] {
  padding: 0;
  accent-color: var(--accent);
}

.range-labels {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--muted);
  font-size: 0.9rem;
}

.range-labels strong {
  color: var(--accent);
}

.estimate-result {
  margin-top: 18px;
  padding: 18px;
  border-radius: 18px;
  background: var(--accent);
  color: var(--white);
}

.estimate-kicker {
  margin: 0 0 10px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.84rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.estimate-result strong {
  display: block;
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  font-size: clamp(1.9rem, 3vw, 2.5rem);
  line-height: 1.12;
  letter-spacing: -0.03em;
  color: var(--white);
}

.estimate-result span {
  display: block;
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.78);
}

.estimate-cta {
  min-height: 48px;
  width: 100%;
  margin-top: 16px;
  border-radius: 14px;
  background: rgba(24, 74, 69, 0.08);
  color: var(--accent);
  font-weight: 800;
}

.estimator-notes {
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.estimator-notes li {
  position: relative;
  padding-left: 18px;
  margin-top: 8px;
  color: var(--muted);
}

.estimator-notes li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.7em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent-2);
}

.quote-panel {
  padding: 24px;
  border-radius: var(--radius-xl);
  background: rgba(255, 253, 248, 0.92);
}

.quote-side-card {
  margin-top: 18px;
  padding: 18px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.72);
}

.quote-image-card {
  margin-top: 14px;
  height: 140px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  max-width: 300px;
  border-radius: 14px;
}

.quote-side-card p {
  margin: 10px 0 0;
}

.quote-side-card a {
  display: inline-block;
  margin-top: 12px;
  font-weight: 800;
}

.form-message {
  display: none;
  margin-bottom: 16px;
  padding: 14px 16px;
  border-radius: 14px;
  font-weight: 800;
}

.form-message.success {
  display: block;
  background: #e8f7eb;
  color: #1c6a35;
  border: 1px solid #bfe2c5;
}

.form-message.error {
  display: block;
  background: #fff0ef;
  color: #95373a;
  border: 1px solid #f0c3c4;
}

.quote-form {
  margin-top: 8px;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group.full {
  grid-column: 1 / -1;
}

.form-group textarea {
  resize: vertical;
  min-height: 124px;
}

.form-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 16px;
}

.submit-btn {
  min-height: 50px;
  padding: 0 22px;
  border-radius: 14px;
  background: var(--accent);
  color: var(--white);
  font-weight: 800;
  box-shadow: 0 16px 28px rgba(24, 74, 69, 0.16);
}

.form-call-link {
  font-weight: 800;
  color: var(--accent);
}

.honeypot-wrap {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}

.contact-layout {
  display: grid;
  gap: 16px;
}

.trust-card {
  display: grid;
  grid-template-columns: minmax(280px, 0.92fr) minmax(0, 1.08fr);
  gap: 20px;
  padding: 24px;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255, 253, 248, 0.96) 0%, rgba(246, 239, 228, 0.92) 100%);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-md);
  align-items: start;
}

.trust-image {
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 22px;
  background: rgba(24, 74, 69, 0.08);
  box-shadow: var(--shadow-sm);
}

.trust-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: contrast(1.05) brightness(0.96) saturate(0.95);
}

.trust-content {
  padding: 8px 0;
}

.section-kicker {
  display: inline-block;
  margin-bottom: 12px;
  padding: 7px 11px;
  border-radius: 999px;
  background: rgba(24, 74, 69, 0.08);
  color: var(--accent);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.trust-content h2 {
  font-size: clamp(1.9rem, 3vw, 2.5rem);
  line-height: 1.1;
  color: var(--accent);
}

.trust-content p {
  margin-top: 12px;
  color: var(--muted);
}

.trust-points {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 18px;
}

.trust-points div {
  padding: 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid rgba(24, 74, 69, 0.08);
  box-shadow: 0 10px 18px rgba(38, 53, 50, 0.05);
}

.trust-points strong {
  display: block;
  margin-bottom: 6px;
  color: var(--accent);
}

.trust-points span {
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.6;
}

.contact-card a {
  font-weight: 800;
  color: var(--accent);
}

.bottom-cta {
  padding: 22px;
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, rgba(24, 74, 69, 0.96) 0%, rgba(53, 106, 94, 0.94) 100%);
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 16px;
  align-items: center;
}

.bottom-cta .eyebrow,
.bottom-cta h2 {
  color: var(--white);
}

.bottom-cta p {
  color: rgba(255, 255, 255, 0.72);
}

.bottom-cta-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px;
}

.instagram-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  padding: 24px;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255, 253, 248, 0.96) 0%, rgba(245, 238, 226, 0.92) 100%);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}

.instagram-copy h2 {
  font-size: clamp(1.7rem, 3vw, 2.3rem);
  line-height: 1.1;
  color: var(--accent);
}

.instagram-copy p {
  margin-top: 10px;
  color: var(--muted);
}

.instagram-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 14px;
  background: var(--accent);
  color: var(--white);
  font-weight: 800;
  white-space: nowrap;
  box-shadow: 0 14px 28px rgba(24, 74, 69, 0.16);
}

.floating-whatsapp {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 40;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 18px;
  border-radius: 999px;
  background: #1f4d43;
  color: #fff;
  font-weight: 800;
  box-shadow: 0 14px 28px rgba(20, 44, 39, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.14);
  transition: transform 0.18s ease;
}

.floating-whatsapp:hover,
.instagram-btn:hover,
.mobile-cta-btn:hover {
  transform: translateY(-1px);
}

.floating-whatsapp-label {
  line-height: 1;
}

.mobile-cta-bar {
  display: none;
}

.mobile-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 12px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--accent);
  font-size: 0.88rem;
  font-weight: 800;
  border: 1px solid rgba(24, 74, 69, 0.08);
}

.mobile-cta-btn.accent {
  background: var(--accent);
  color: var(--white);
}

.site-footer {
  margin: 18px auto 26px;
  border-radius: var(--radius-xl);
  background: rgba(255, 253, 248, 0.9);
}

.footer-shell {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr 0.9fr;
  gap: 16px;
  padding: 22px 20px;
}

.footer-shell h3 {
  color: var(--accent);
}

.footer-links,
.footer-meta {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-links a,
.footer-meta a {
  color: var(--muted);
}

.footer-links a:hover,
.footer-meta a:hover,
.form-call-link:hover,
.contact-card a:hover,
.quote-side-card a:hover {
  text-decoration: underline;
}

#hizmetler,
#kapsama,
#surec,
#hesaplama,
#teklif-formu,
#iletisim {
  scroll-margin-top: 16px;
}

@media (max-width: 1120px) {
  :root {
    --header-height: 88px;
  }

  .warm-section .coverage-layout,
  .estimator-layout,
  .quote-layout,
  .trust-card,
  .instagram-card,
  .footer-shell,
  .bottom-cta {
    grid-template-columns: 1fr;
  }

  .main-nav a {
    padding-inline: 8px;
    font-size: 0.86rem;
  }

  .hero-copy {
    min-height: 0;
    max-height: none;
  }

  .card-grid.four {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 820px) {
  :root {
    --header-height: 88px;
  }

  html {
    scroll-padding-top: 16px;
  }

  .hero-actions,
  .hero-points,
  .signal-grid,
  .card-grid.three,
  .card-grid.two,
  .card-grid.four,
  .estimate-grid,
  .form-grid,
  .trust-points {
    grid-template-columns: 1fr;
  }

  .main-nav {
    display: none;
  }

  .header-shell {
    grid-template-columns: 1fr auto;
    gap: 12px;
  }

  .header-actions,
  .hero-actions,
  .form-actions,
  .bottom-cta-actions {
    display: flex;
    flex-wrap: wrap;
  }

  .header-btn,
  .submit-btn,
  .estimate-cta {
    width: auto;
  }

  .hero-copy,
  .hero-panel,
  .route-card,
  .estimator-card,
  .quote-panel,
  .service-card,
  .detail-card,
  .step-card,
  .contact-card,
  .bottom-cta {
    padding: 22px;
  }

  .trust-image {
    aspect-ratio: 16 / 11;
  }

  .hero-copy {
    min-height: 0;
    max-height: none;
    padding: 24px 22px;
  }

  .hero-panel {
    padding: 24px 22px;
  }

  .hero-info {
    margin: 18px auto 0;
  }

  .mini-stats {
    grid-template-columns: 1fr;
  }

  .contact-band {
    flex-direction: column;
    align-items: flex-start;
  }

  .contact-band a {
    width: 100%;
  }

  .hero-copy h1 {
    max-width: none;
    font-size: clamp(2.125rem, 8vw, 2.5rem);
  }

  .section-heading h2,
  .coverage-copy h2,
  .estimator-copy h2,
  .quote-copy h2,
  .bottom-cta h2 {
    font-size: clamp(1.8rem, 9vw, 2.6rem);
  }

  #hizmetler,
  #kapsama,
  #surec,
  #hesaplama,
  #teklif-formu,
  #iletisim {
    scroll-margin-top: 16px;
  }
}

@media (max-width: 768px) {
  :root {
    --header-height: 68px;
  }

  .hero-container {
    padding: 18px 14px 0;
  }

  body {
    padding-bottom: 120px !important;
  }

  main {
    padding-bottom: 120px !important;
  }

  .quote-section,
  .quote-layout,
  .quote-copy,
  .quote-panel,
  .quote-side-card,
  .quote-image-card {
    position: relative !important;
    z-index: 1 !important;
  }

  .quote-section {
    padding-bottom: 120px !important;
  }

  .quote-layout {
    display: flex !important;
    flex-direction: column !important;
    gap: 28px !important;
  }

  .quote-copy,
  .quote-panel {
    width: 100% !important;
    max-width: 100% !important;
  }

  .quote-copy {
    margin-bottom: 24px !important;
  }

  .quote-panel,
  .quote-side-card,
  .quote-image-card {
    position: relative;
    z-index: 1;
    margin-top: 0;
  }

  .quote-side-card {
    margin-bottom: 24px !important;
  }

  .quote-image-card {
    margin-bottom: 32px !important;
  }

  .hero-left {
    background-position: 65% center;
    background-size: cover;
    min-height: auto;
    max-height: none;
    padding: 28px 22px 88px;
  }

  .hero-info {
    margin-top: 18px;
  }

  .hero-panel {
    background-position: 65% center;
    background-size: cover;
    min-height: auto;
    max-height: none;
    padding: 28px 22px 88px;
  }

  .hero-copy {
    max-width: 100%;
  }

  .hero h1 {
    font-size: 34px;
    line-height: 1.08;
  }

  .hero-micro-cards {
    grid-template-columns: 1fr;
  }

  .hero-content,
  .hero-copy,
  .hero h1,
  .hero-title {
    max-width: 100%;
  }

  .hero-points {
    grid-template-columns: 1fr;
  }

  .point-card {
    text-align: left;
    align-items: flex-start;
  }

  .point-card strong,
  .point-card span {
    text-align: left;
  }

  .floating-whatsapp {
    display: none;
  }

  .mobile-cta-bar {
    position: fixed;
    left: 12px !important;
    right: 12px !important;
    bottom: 10px !important;
    z-index: 9999 !important;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    padding: 10px 12px calc(10px + env(safe-area-inset-bottom, 0px));
    background: rgba(248, 244, 236, 0.96);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(24, 74, 69, 0.08);
    box-shadow: 0 -10px 24px rgba(21, 36, 33, 0.08);
  }

  .site-header {
    backdrop-filter: blur(10px);
  }

  .header-shell {
    min-height: var(--header-height);
    padding: 10px 12px;
    gap: 10px;
  }

  .brand {
    gap: 10px;
    min-width: auto;
  }

  .brand-logo {
    width: auto;
    height: 40px;
    max-height: 40px;
    padding: 4px 6px;
    border-radius: 12px;
    flex-shrink: 0;
  }

  .brand-text,
  .brand-title,
  .brand-subtitle {
    display: none;
  }

  .header-actions {
    gap: 6px;
    flex-shrink: 0;
  }

  .header-btn {
    min-height: 38px;
    padding: 0 10px;
    font-size: 0.82rem;
    border-radius: 10px;
  }
}

@media (max-width: 560px) {
  :root {
    --header-height: 84px;
  }

  html {
    scroll-padding-top: 12px;
  }

  .container {
    padding: 0 16px;
  }

  .header-shell {
    min-height: 64px;
  }

  .header-actions {
    gap: 6px;
  }

  .header-btn {
    min-height: 36px;
    padding: 0 9px;
    font-size: 0.78rem;
  }

  .hero-btn,
  .submit-btn,
  .estimate-cta {
    width: 100%;
  }

  .quote-image-card {
    max-width: none;
    height: 132px;
  }

  .hero-actions,
  .form-actions,
  .bottom-cta-actions {
    display: grid;
  }

  .brand {
    align-items: flex-start;
  }

  .brand-logo {
    width: 76px;
    height: 52px;
  }

  .site-footer {
    margin-bottom: 24px;
  }

  #hizmetler,
  #kapsama,
  #surec,
  #hesaplama,
  #teklif-formu,
  #iletisim {
    scroll-margin-top: 12px;
  }
}
