:root {
  --cyan: #00aeef;
  --cyan-dark: #0095cc;
  --cyan-soft: #e8f7fd;
  --ink: #1a1d21;
  --muted: #6b7280;
  --line: #e8ecf1;
  --bg-soft: #f4f7fa;
  --footer: #121619;
  --radius: 18px;
  --radius-pill: 999px;
  --shadow-soft: 0 10px 30px rgba(18, 22, 25, 0.06);
  --shadow-card: 0 12px 28px rgba(18, 22, 25, 0.08);
  --header-h: 84px;
  --font: "Plus Jakarta Sans", system-ui, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: #fff;
  line-height: 1.6;
  overflow-x: hidden;
  /* padding-bottom: calc(96px + env(safe-area-inset-bottom, 0px)); */
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.container.narrow {
  max-width: 760px;
}

/* Buttons */
.btn-pill {
  border-radius: var(--radius-pill) !important;
  padding: 0.7rem 1.45rem;
  font-weight: 700;
  border: none;
}

.btn-primary-cyan {
  background: var(--cyan) !important;
  color: #fff !important;
  transition: transform 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
  box-shadow: 0 8px 20px rgba(0, 174, 239, 0.28);
}

.btn-primary-cyan:hover {
  background: var(--cyan-dark) !important;
  color: #fff !important;
  transform: translateY(-2px);
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1030;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(232, 236, 241, 0.9);
}

.site-nav {
  min-height: var(--header-h);
  padding: 0;
}

.site-nav-inner {
  min-height: var(--header-h);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  text-decoration: none;
}

.brand-logo {
  /* Kaynak logo 350×100; header’da okunaklı yükseklik */
  height: 60px;
  width: auto;
  max-width: min(220px, 58vw);
  display: block;
  object-fit: contain;
}

.brand-logo-footer {
  height: 56px;
  width: auto;
  max-width: min(210px, 65vw);
}

.brand-mark {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  object-fit: cover;
  display: block;
  box-shadow: 0 6px 14px rgba(0, 174, 239, 0.35);
}

.brand-text {
  font-size: 1.2rem;
  color: var(--ink);
}

.brand-text span,
.brand-text.light span {
  color: var(--cyan);
}

.brand-text.light {
  color: #fff;
}

.site-menu .nav-link {
  font-weight: 600;
  color: var(--ink) !important;
  padding: 0.5rem 0.9rem !important;
}

.site-menu .nav-link.active,
.site-menu .nav-link:hover {
  color: var(--cyan) !important;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.lang-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-pill);
  padding: 0.45rem 0.9rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--muted);
  background: #fff;
}

.lang-switch {
  position: relative;
}

.lang-switch-btn {
  cursor: pointer;
  appearance: none;
  font: inherit;
}

.lang-switch-caret {
  font-size: 0.75rem;
  opacity: 0.7;
}

.lang-switch-menu {
  position: absolute;
  top: calc(100% + 0.4rem);
  right: 0;
  z-index: 40;
  min-width: 9.5rem;
  margin: 0;
  padding: 0.35rem;
  list-style: none;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: 0 14px 36px rgba(15, 23, 42, 0.12);
}

.lang-switch-menu button {
  width: 100%;
  display: block;
  border: 0;
  background: transparent;
  text-align: start;
  padding: 0.55rem 0.75rem;
  border-radius: 10px;
  font: inherit;
  font-weight: 600;
  color: var(--ink);
  cursor: pointer;
}

.lang-switch-menu button:hover,
.lang-switch-menu button.is-active {
  background: rgba(0, 174, 239, 0.1);
  color: #0284c7;
}

html[dir="rtl"] .lang-switch-menu {
  right: auto;
  left: 0;
}

html[dir="rtl"] .lang-switch-menu button {
  text-align: end;
}

/* Google Translate: widget gizli, banner yok */
.google-translate-host,
.goog-te-banner-frame,
.goog-te-balloon-frame,
#goog-gt-tt,
.goog-te-spinner-pos,
.skiptranslate > iframe {
  display: none !important;
}

body {
  top: 0 !important;
}

.goog-text-highlight {
  background: transparent !important;
  box-shadow: none !important;
}

font font {
  background-color: transparent !important;
  box-shadow: none !important;
  vertical-align: inherit !important;
}

/* Hero — panel afiş boyutu: web 1920×640 (3:1), mobil 1080×1200 (9:10) */
.hero-slider {
  position: relative;
}

.hero-slide {
  width: 100%;
  aspect-ratio: 1920 / 640;
  min-height: 0;
  background-image: var(--hero-image);
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.82) 0%, rgba(255, 255, 255, 0.42) 40%, rgba(255, 255, 255, 0.08) 68%, rgba(0, 0, 0, 0.06) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-block: 4.5rem;
  max-width: 640px;
  margin-left: 0;
  animation: riseIn 0.7s ease both;
}

.hero-title {
  font-size: clamp(2rem, 4.4vw, 3.4rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin-bottom: 1rem;
  color: var(--ink);
}

.hero-title span {
  color: var(--cyan);
}

.hero-subtitle {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 34rem;
  margin-bottom: 1.6rem;
}

.hero-arrow {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  color: var(--cyan);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-soft);
}

.carousel-control-prev,
.carousel-control-next {
  width: 8%;
  opacity: 1;
}

.hero-dots {
  margin-bottom: 1.25rem;
}

.hero-dots [data-bs-target] {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.75);
  border: 0;
  opacity: 1;
}

.hero-dots .active {
  width: 28px;
  border-radius: 999px;
  background: var(--cyan);
}

/* Search bridge */
.search-bridge {
  margin-top: -34px;
  position: relative;
  z-index: 40;
  padding-inline: 1rem;
}

.search-bridge--services {
  margin-top: -1.25rem;
}

.search-result-meta {
  margin: 0.85rem 0 0;
  text-align: center;
  color: #64748b;
  font-size: 0.95rem;
}

.search-result-meta a {
  color: #00aeef;
  font-weight: 700;
}

.search-empty {
  color: #64748b;
}

.search-bar {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: #fff;
  border-radius: var(--radius-pill);
  padding: 0.55rem 0.55rem 0.55rem 1.25rem;
  box-shadow: 0 16px 40px rgba(18, 22, 25, 0.12);
  border: 1px solid #eef2f6;
  position: relative;
}

.search-bar--autocomplete {
  z-index: 20;
}

.search-field {
  flex: 1;
  position: relative;
  min-width: 0;
}

.search-bar i {
  color: var(--muted);
  font-size: 1.15rem;
  flex-shrink: 0;
}

.search-bar input {
  width: 100%;
  border: 0;
  outline: none;
  font-size: 16px;
  color: var(--ink);
  background: transparent;
  min-width: 0;
}

.search-bar input::placeholder {
  color: #9aa3af;
}

.search-suggest {
  position: absolute;
  left: -2.5rem;
  right: -0.25rem;
  top: calc(100% + 0.65rem);
  background: #fff;
  border: 1px solid #e8edf3;
  border-radius: 16px;
  box-shadow: 0 18px 48px rgba(18, 22, 25, 0.14);
  overflow: hidden;
  z-index: 50;
  padding: 0.35rem;
  max-height: min(70vh, 420px);
  overflow-y: auto;
}

.search-suggest[hidden] {
  display: none !important;
}

.search-suggest-item {
  display: grid;
  grid-template-columns: 44px 1fr auto;
  gap: 0.75rem;
  align-items: center;
  padding: 0.55rem 0.65rem;
  border-radius: 12px;
  text-decoration: none;
  color: inherit;
  transition: background 0.15s ease;
  cursor: pointer;
}

.search-suggest-item:hover,
.search-suggest-item.is-active {
  background: #f3f8fc;
}

.search-suggest-thumb {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  object-fit: cover;
  background: #eef2f6;
}

.search-suggest-thumb--empty {
  display: grid;
  place-items: center;
  color: #94a3b8;
  font-size: 1.1rem;
}

.search-suggest-text {
  min-width: 0;
}

.search-suggest-title {
  display: block;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--ink);
  line-height: 1.25;
}

.search-suggest-desc {
  display: block;
  margin-top: 0.15rem;
  font-size: 0.8rem;
  color: #64748b;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.search-suggest-go {
  color: #00aeef;
  font-size: 0.95rem;
  opacity: 0.7;
}

.search-suggest-empty,
.search-suggest-footer {
  padding: 0.7rem 0.85rem;
  font-size: 0.85rem;
  color: #64748b;
}

.search-suggest-footer {
  border-top: 1px solid #eef2f6;
  margin-top: 0.2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
}

.search-suggest-footer kbd {
  font-size: 0.72rem;
  font-family: inherit;
  background: #f1f5f9;
  border: 1px solid #e2e8f0;
  border-radius: 6px;
  padding: 0.1rem 0.35rem;
  color: #64748b;
}

.search-suggest-loading {
  padding: 0.85rem;
  text-align: center;
  color: #94a3b8;
  font-size: 0.85rem;
}

/* Services */
.services-section {
  padding: 4.5rem 0 3.5rem;
  background: var(--bg-soft);
}

.section-heading {
  margin-bottom: 2rem;
}

.section-heading h2,
.section-title {
  font-weight: 800;
  letter-spacing: -0.03em;
  font-size: clamp(1.7rem, 3vw, 2.2rem);
  margin-bottom: 0.5rem;
}

.section-heading p {
  color: var(--muted);
  margin: 0;
}

.section-title.underlined {
  position: relative;
  display: inline-block;
  margin-bottom: 1rem;
}

.section-title.underlined::after {
  content: "";
  display: block;
  width: 56px;
  height: 3px;
  background: var(--cyan);
  border-radius: 999px;
  margin: 0.65rem auto 0;
}

.service-card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  height: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 36px rgba(18, 22, 25, 0.12);
}

.service-card-media {
  display: block;
  aspect-ratio: 16 / 11;
  overflow: hidden;
}

.service-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.service-card:hover .service-card-media img {
  transform: scale(1.05);
}

.service-card-body {
  padding: 1.25rem 1.3rem 1.45rem;
}

.service-card-body h3 {
  font-size: 1.15rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
}

.service-card-body p {
  color: var(--muted);
  margin: 0;
  font-size: 0.95rem;
}

/* Testimonials */
.testimonials-section {
  padding: 4.5rem 0 4rem;
  background: #fff;
}

.testimonial-card {
  max-width: 820px;
  margin: 1.5rem auto 2.5rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 2.4rem 2rem;
  text-align: center;
  box-shadow: var(--shadow-soft);
}

.stars {
  color: #f5b301;
  margin-bottom: 1rem;
  letter-spacing: 0.15rem;
}

.quote-marks {
  position: relative;
  padding-inline: 1.5rem;
}

.quote-marks .q-left,
.quote-marks .q-right {
  position: absolute;
  top: -0.4rem;
  font-size: 3rem;
  line-height: 1;
  color: var(--cyan);
  opacity: 0.55;
  font-family: Georgia, serif;
}

.quote-marks .q-left { left: 0; }
.quote-marks .q-right { right: 0; }

.quote-marks p {
  font-size: 1.08rem;
  color: var(--ink);
  margin: 0 0 1.1rem;
}

.author {
  color: var(--cyan);
  font-weight: 700;
}

.testimonial-nav {
  width: auto;
  opacity: 1;
}

.testimonial-nav .nav-circle {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--cyan);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.testimonial-dots [data-bs-target] {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #d5dbe3;
  border: 0;
}

.testimonial-dots .active {
  width: 26px;
  border-radius: 999px;
  background: var(--cyan);
}

/* FAQ */
.faq-section {
  padding: 2rem 0 4.5rem;
  background: var(--bg-soft);
}

.faq-lead {
  color: var(--muted);
  margin-bottom: 1.75rem;
}

.faq-accordion .accordion-item {
  border: 1px solid var(--line);
  border-radius: 14px !important;
  overflow: hidden;
  margin-bottom: 0.75rem;
  background: #fff;
}

.faq-accordion .accordion-button {
  font-weight: 700;
  box-shadow: none !important;
  background: #fff;
}

.faq-accordion .accordion-button:not(.collapsed) {
  color: var(--cyan);
  background: #fff;
}

.faq-accordion .accordion-body {
  color: var(--muted);
}

/* CTA */
.cta-band {
  padding: 3.5rem 0;
  background: linear-gradient(120deg, #e8f7fd, #ffffff 45%, #eef9ff);
  text-align: center;
}

.cta-band h2 {
  font-weight: 800;
  margin-bottom: 0.6rem;
}

.cta-band p {
  color: var(--muted);
  margin-bottom: 1.25rem;
}

/* Footer */
.site-footer {
  background: var(--footer);
  color: #d7dde3;
  position: relative;
}

.footer-accent {
  height: 3px;
  background: var(--cyan);
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.footer-text {
  color: #b7c0c9;
  max-width: 28rem;
}

.social-row {
  display: flex;
  gap: 0.6rem;
  margin-top: 1.1rem;
}

.social-row a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #1d2328;
  color: #c9d1d8;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease, color 0.2s ease;
}

.social-row a:hover {
  background: var(--cyan);
  color: #fff;
}

.footer-title {
  color: #fff;
  font-size: 1.05rem;
  font-weight: 800;
  margin-bottom: 1rem;
  position: relative;
  display: inline-block;
}

.footer-title::after {
  content: "";
  display: block;
  width: 36px;
  height: 2px;
  background: var(--cyan);
  margin-top: 0.45rem;
}

.footer-links,
.footer-contact {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li,
.footer-contact li {
  margin-bottom: 0.7rem;
}

.footer-links a,
.footer-links.checks li {
  color: #b7c0c9;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-links a:hover {
  color: var(--cyan);
}

.footer-links.checks i {
  color: var(--cyan);
}

.footer-contact li {
  display: flex;
  gap: 0.75rem;
}

.footer-contact i {
  color: var(--cyan);
  font-size: 1.1rem;
  margin-top: 0.15rem;
}

.footer-contact span {
  display: block;
  color: #fff;
  font-weight: 700;
  font-size: 0.92rem;
}

.footer-contact a,
.footer-contact p {
  color: #b7c0c9;
  margin: 0;
}

.footer-bottom {
  border-top: 1px solid #242b31;
  padding: 1rem 0 1.25rem;
  font-size: 0.88rem;
  color: #8d98a3;
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}

.footer-legal a:hover {
  color: var(--cyan);
}

/* Motion */
@keyframes riseIn {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.reveal.in {
  opacity: 1;
  transform: none;
}

/* Inner pages */
.page-hero {
  padding: 4.5rem 0 2.5rem;
  background:
    radial-gradient(circle at 10% 20%, rgba(0, 174, 239, 0.12), transparent 40%),
    linear-gradient(180deg, #f7fbff 0%, #ffffff 100%);
}

.page-hero h1 {
  font-weight: 800;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  margin-bottom: 0.75rem;
}

.page-hero .lead {
  max-width: 42rem;
  color: #5b6b7c;
}

.page-hero .eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.75rem;
  font-weight: 700;
  color: #00aeef;
}

.breadcrumb-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  align-items: center;
  font-size: 0.9rem;
  margin-bottom: 1rem;
  color: #7a8a9a;
}

.breadcrumb-nav a {
  color: #00aeef;
  text-decoration: none;
}

.content-section {
  padding: 2rem 0 4.5rem;
}

.content-figure img {
  width: 100%;
  border-radius: 18px;
  object-fit: cover;
  max-height: 420px;
}

.rich-content {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  max-width: 100%;
  line-height: 1.7;
  color: #334155;
}

.rich-content img {
  max-width: 100%;
  height: auto;
}

.rich-content table {
  display: block;
  width: 100%;
  max-width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.rich-content pre,
.rich-content iframe,
.rich-content video {
  max-width: 100%;
}

.side-panel {
  background: #f4f9fc;
  border-radius: 18px;
  padding: 1.5rem;
}

.link-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.link-list li {
  margin-bottom: 0.45rem;
}

.link-list a {
  color: #0f172a;
  text-decoration: none;
}

.link-list a:hover {
  color: #00aeef;
}

.chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.chip-link {
  display: inline-flex;
  align-items: center;
  padding: 0.55rem 0.95rem;
  border-radius: 999px;
  background: #eef8fd;
  color: #0f172a;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.92rem;
}

.chip-link:hover {
  background: #00aeef;
  color: #fff;
}

.container.narrow {
  max-width: 820px;
}

.service-card-body h3 a {
  color: inherit;
  text-decoration: none;
}

/* Inspection form */
.inspection-section {
  padding: 0 0 4.5rem;
}

.inspection-card {
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.06);
  border-radius: 22px;
  padding: 1.75rem;
  box-shadow: 0 18px 50px rgba(15, 23, 42, 0.06);
}

.inspection-card-head h2 {
  font-weight: 800;
  margin-bottom: 0.35rem;
}

.inspection-card-head p {
  color: #64748b;
  margin-bottom: 1.25rem;
}

.inspection-fee-note {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  background: #f0f9ff;
  border: 1px solid #cfeaf8;
  border-radius: 14px;
  padding: 0.9rem 1rem;
  margin-bottom: 1.25rem;
  color: #0f4c63;
}

.inspection-fee-note i {
  color: #00aeef;
  font-size: 1.15rem;
  margin-top: 0.1rem;
  flex-shrink: 0;
}

.inspection-fee-note p {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.5;
}

.aside-fee-hint {
  margin: 0.85rem 0 0;
  font-size: 0.85rem;
  color: #64748b;
  line-height: 1.45;
}

.inspection-form .form-label {
  font-weight: 600;
  color: #0f172a;
}

.inspection-form .form-control,
.inspection-form .form-select {
  border-radius: 12px;
  border-color: #dbe4ee;
  padding: 0.7rem 0.9rem;
  font-size: 16px; /* iOS zoom engeli */
}

.inspection-form .form-control:focus,
.inspection-form .form-select:focus {
  border-color: #00aeef;
  box-shadow: 0 0 0 0.2rem rgba(0, 174, 239, 0.15);
}

.inspection-form .optional {
  color: #94a3b8;
  font-weight: 500;
  font-size: 0.85em;
}

.inspection-form .form-hint {
  font-size: 0.8rem;
  color: #94a3b8;
  margin-top: 0.25rem;
}

.inspection-form .form-meta {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 0.75rem;
  margin-top: 0.25rem;
}

.inspection-form .char-count {
  font-size: 0.78rem;
  color: #94a3b8;
  white-space: nowrap;
  margin-left: auto;
}

.inspection-form .field-validation-valid {
  display: none !important;
}

.inspection-form .field-validation-error,
.inspection-form .field-feedback.field-validation-error {
  display: block !important;
  margin-top: 0.35rem;
  font-size: 0.875rem;
  font-weight: 600;
}

.inspection-form .field-feedback:empty {
  display: none !important;
}

.inspection-form .input-validation-error,
.inspection-form .form-control.is-invalid,
.inspection-form .form-select.is-invalid {
  border-color: #ef4444;
  background-color: #fff8f8;
}

.inspection-form .input-validation-error:focus,
.inspection-form .form-control.is-invalid:focus {
  border-color: #ef4444;
  box-shadow: 0 0 0 0.2rem rgba(239, 68, 68, 0.15);
}

.inspection-alert:empty,
.inspection-alert.d-none {
  display: none !important;
}

.inspection-alert:not(:empty) {
  display: block;
  border-radius: 14px;
  margin-bottom: 1rem;
}

.btn-submit-insp.is-loading {
  opacity: 0.85;
  cursor: wait;
}

.btn-submit-insp .btn-loading {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
}

.hp-field {
  position: absolute;
  left: -10000px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.inspection-aside {
  display: grid;
  gap: 1rem;
}

.aside-block {
  background: #f4f9fc;
  border-radius: 20px;
  padding: 1.35rem 1.4rem;
}

.aside-block h3 {
  font-size: 1.1rem;
  font-weight: 800;
  margin-bottom: 0.85rem;
}

.aside-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.65rem;
}

.aside-list li {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  color: #334155;
  font-weight: 600;
}

.aside-list i {
  color: #00aeef;
  font-size: 1.15rem;
}

.aside-block.contact {
  background: linear-gradient(160deg, #07263a 0%, #0b3b57 100%);
  color: #fff;
}

.aside-block.contact h3 {
  color: #fff;
}

.aside-phone {
  display: block;
  color: #fff;
  font-size: 1.35rem;
  font-weight: 800;
  text-decoration: none;
  margin-bottom: 0.9rem;
}

.btn-whatsapp {
  background: #25d366;
  color: #fff;
  border: none;
}

.btn-whatsapp:hover {
  background: #1ebe5d;
  color: #fff;
}

.btn-outline-soft {
  border: 1px solid rgba(15, 23, 42, 0.15);
  color: #0f172a;
  background: #fff;
}

.btn-outline-soft:hover {
  border-color: #00aeef;
  color: #00aeef;
}

.contact-section {
  padding: 2.5rem 0 4.5rem;
}

.contact-info-grid {
  display: grid;
  gap: 1rem;
}

.contact-info-card {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.15rem 1.25rem;
  border-radius: 18px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  background: #fff;
  box-shadow: 0 12px 36px rgba(15, 23, 42, 0.05);
  text-decoration: none;
  color: inherit;
  transition: border-color .2s ease, transform .2s ease;
}

.contact-info-card:hover {
  border-color: rgba(0, 174, 239, 0.45);
  transform: translateY(-2px);
  color: inherit;
}

.contact-info-card-static {
  cursor: default;
}

.contact-info-card-static:hover {
  transform: none;
}

.contact-info-card i {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 174, 239, 0.12);
  color: #00aeef;
  flex-shrink: 0;
  font-size: 1.15rem;
}

.contact-info-card span {
  display: block;
  font-size: 0.8rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #64748b;
  margin-bottom: 0.2rem;
}

.contact-info-card strong {
  font-weight: 600;
  color: #0f172a;
  line-height: 1.45;
}

.contact-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.contact-side-card {
  height: 100%;
}

.thanks-icon {
  font-size: 3rem;
  color: #00aeef;
  margin-bottom: 0.75rem;
}

.thanks-section {
  padding: 2.5rem 0 4.5rem;
}

.thanks-card {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.06);
  border-radius: 24px;
  padding: 2.25rem 1.75rem;
  box-shadow: 0 18px 50px rgba(15, 23, 42, 0.06);
}

.thanks-card h1 {
  font-weight: 800;
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin-bottom: 0.75rem;
}

.thanks-card .lead {
  color: #64748b;
  margin-bottom: 0.75rem;
}

.thanks-ref {
  display: inline-block;
  background: #e8f7fd;
  color: #0b3b57;
  border-radius: 999px;
  padding: 0.35rem 0.9rem;
  font-size: 0.92rem;
  margin-bottom: 1.5rem;
}

.thanks-steps {
  list-style: none;
  padding: 0;
  margin: 0 0 1.75rem;
  text-align: left;
  display: grid;
  gap: 0.85rem;
}

.thanks-steps li {
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
  background: #f8fafc;
  border-radius: 14px;
  padding: 0.85rem 1rem;
}

.thanks-steps .step-num {
  flex: 0 0 28px;
  height: 28px;
  border-radius: 50%;
  background: #00aeef;
  color: #fff;
  font-weight: 800;
  font-size: 0.85rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.thanks-steps strong {
  display: block;
  color: #0f172a;
}

.thanks-steps span {
  display: block;
  color: #64748b;
  font-size: 0.92rem;
}

.thanks-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.thanks-note {
  color: #94a3b8;
  font-size: 0.9rem;
  margin: 0;
}

.thanks-note a {
  color: #00aeef;
  font-weight: 700;
}

.btn-submit-insp {
  min-height: 48px;
}

/* Sağ sabit hızlı iletişim — kompakt */
.float-contact {
  position: fixed;
  right: max(12px, env(safe-area-inset-right, 0px));
  bottom: max(18px, env(safe-area-inset-bottom, 0px));
  z-index: 1040;
  display: flex;
  flex-direction: column;
  gap: 8px;
  pointer-events: none;
}

.float-contact__btn {
  pointer-events: auto;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-decoration: none;
  box-shadow: 0 6px 16px rgba(15, 23, 42, 0.18);
  transition: transform 0.15s ease, box-shadow 0.15s ease, filter 0.15s ease;
  font-size: 1.15rem;
  line-height: 1;
}

.float-contact__btn:hover,
.float-contact__btn:focus-visible {
  color: #fff;
  transform: scale(1.06);
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.22);
  outline: none;
}

.float-contact__btn:focus-visible {
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.9), 0 8px 20px rgba(15, 23, 42, 0.22);
}

.float-contact__btn--phone {
  background: #0b3b57;
}

.float-contact__btn--phone:hover {
  background: #07263a;
}

.float-contact__btn--wa {
  background: #25d366;
}

.float-contact__btn--wa:hover {
  background: #1ebe5d;
}

@media (prefers-reduced-motion: reduce) {
  .float-contact__btn {
    transition: none;
  }

  .float-contact__btn:hover,
  .float-contact__btn:focus-visible {
    transform: none;
  }
}

/* ========== Responsive (must stay last) ========== */
@media (max-width: 991.98px) {
  .nav-actions {
    margin-top: 1rem;
    margin-bottom: 0.75rem;
    flex-wrap: wrap;
    width: 100%;
  }

  .nav-actions .btn {
    width: 100%;
  }

  .hero-slide {
    aspect-ratio: 1920 / 640;
    min-height: 0;
  }

  .hero-content {
    padding-block: 3rem;
  }

  .hero-overlay {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.88) 0%, rgba(255, 255, 255, 0.55) 55%, rgba(255, 255, 255, 0.2) 100%);
  }

  .carousel-control-prev,
  .carousel-control-next {
    width: 12%;
  }

  .search-bridge {
    margin-top: -28px;
  }

  .search-bar {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 0.55rem 0.65rem;
    align-items: center;
    border-radius: 22px;
    padding: 0.75rem;
  }

  .search-bar i {
    grid-column: 1;
    grid-row: 1;
  }

  .search-field {
    grid-column: 2;
    grid-row: 1;
  }

  .search-bar input {
    width: 100%;
    min-width: 0;
    padding-left: 0;
  }

  .search-suggest {
    left: -2.75rem;
    right: 0;
    top: calc(100% + 0.55rem);
    max-height: min(58vh, 360px);
    overflow-y: auto;
  }

  .search-suggest-item {
    grid-template-columns: 40px 1fr auto;
    gap: 0.6rem;
  }

  .search-suggest-footer span:last-child {
    display: none;
  }

  .search-bar .btn {
    grid-column: 1 / -1;
    width: 100%;
  }

  .aside-block.contact .btn {
    width: 100%;
  }

  .inspection-card {
    padding: 1.25rem;
  }

  .inspection-section {
    padding-bottom: 5.5rem;
  }
}

@media (max-width: 767.98px) {
  .hero-slide {
    aspect-ratio: 1080 / 1200;
    min-height: 0;
    background-image: var(--hero-image-mobile, var(--hero-image));
    align-items: flex-end;
  }

  .hero-content {
    padding-block: 2.4rem 2.8rem;
  }

  .hero-overlay {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.55) 40%, rgba(255, 255, 255, 0.92) 100%);
  }

  .hero-title {
    font-size: clamp(1.65rem, 7vw, 2.2rem);
  }

  .hero-subtitle {
    font-size: 0.98rem;
    margin-bottom: 1.2rem;
  }

  .hero-arrow {
    width: 40px;
    height: 40px;
  }

  .page-hero {
    padding: 2.75rem 0 1.5rem;
  }

  .services-section,
  .testimonials-section,
  .faq-section,
  .content-section {
    padding-top: 2.75rem;
    padding-bottom: 2.75rem;
  }

  .cta-band {
    padding: 2.5rem 0;
  }

  .testimonial-card {
    padding: 1.5rem 1.15rem;
  }

  .q-left,
  .q-right {
    display: none;
  }

  .inspection-form .btn-submit-insp {
    min-height: 50px;
  }

  .thanks-card {
    padding: 1.5rem 1.15rem;
  }

  .site-footer .container.py-5 {
    padding-top: 2.5rem !important;
    padding-bottom: 2.5rem !important;
  }
}

@media (max-width: 575.98px) {
  :root {
    --header-h: 72px;
  }

  .brand-logo {
    height: 48px;
    max-width: min(180px, 55vw);
  }

  .hero-slide {
    aspect-ratio: 1080 / 1200;
    min-height: 0;
  }

  .hero-content {
    padding-block: 2rem;
  }

  .carousel-control-prev,
  .carousel-control-next {
    display: none;
  }

  .search-bridge {
    margin-top: -22px;
    padding-inline: 0.75rem;
  }

  .inspection-card {
    padding: 1rem;
    border-radius: 16px;
  }

  .inspection-card-head h2 {
    font-size: 1.25rem;
  }

  .float-contact {
    right: max(10px, env(safe-area-inset-right, 0px));
    bottom: max(14px, env(safe-area-inset-bottom, 0px));
    gap: 7px;
  }

  .float-contact__btn {
    width: 42px;
    height: 42px;
    font-size: 1.05rem;
  }

  .footer-bottom {
    font-size: 0.85rem;
  }
}



