/* Slider ve hizmet görselleri oranları bozulmadan ayrılan alanı tamamen doldurur. */
.slide {
  background-color: #17231d;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.service-card.has-image::before {
  display: none !important;
}

.service-card.has-image {
  background-color: #d9ddd6;
}

.service-card.has-image:nth-child(2n) {
  background-color: #e5e2da;
}

.service-image {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform .5s ease;
}

.service-card.has-image::after {
  z-index: 1;
}

.service-card.has-image .card-number,
.service-card.has-image .card-content,
.service-card.has-image .card-arrow {
  z-index: 3;
}

.service-card:hover .service-image {
  transform: scale(1.03);
}

.brand-logo {
  display: block;
  width: 62px;
  height: 62px;
  object-fit: contain;
}

.brand-name {
  display: block;
}

.footer-logo {
  width: 88px;
  height: 88px;
}

.social-float svg {
  display: block;
  width: 23px;
  height: 23px;
  fill: currentColor;
}

.social-float .google-maps {
  background: linear-gradient(145deg, #4285f4 0 52%, #34a853 52% 100%);
}

.social-float .google-maps svg {
  width: 25px;
  height: 25px;
  filter: drop-shadow(0 1px 1px rgba(0, 0, 0, .16));
}

.works {
  background: #101813;
  color: #fff;
}

.works-heading {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 40px;
  margin-bottom: 52px;
}

.works-heading h2 {
  font-size: clamp(42px, 5vw, 74px);
  margin: 20px 0 0;
}

.works-heading h2 em {
  color: #d7bda1;
}

.works-heading p {
  max-width: 410px;
  margin: 0;
  color: rgba(255, 255, 255, .62);
  line-height: 1.8;
}

.works .eyebrow.dark {
  color: #a8b6a6;
}

.works-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.work-card {
  position: relative;
  min-width: 0;
  aspect-ratio: .78;
  padding: 0;
  overflow: hidden;
  border: 0;
  background: #253129;
  color: #fff;
  cursor: zoom-in;
}

.work-card:nth-child(5n + 1),
.work-card:nth-child(5n + 4) {
  grid-row: span 2;
  aspect-ratio: auto;
}

.work-card img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform .65s ease, filter .4s ease;
}

.work-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(8, 15, 11, .72), transparent 45%);
  pointer-events: none;
}

.work-card > span {
  position: absolute;
  z-index: 1;
  left: 20px;
  right: 20px;
  bottom: 18px;
  display: flex;
  justify-content: space-between;
  align-items: end;
}

.work-card small {
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: 9px;
}

.work-card b {
  font: 600 11px Manrope, sans-serif;
}

.work-card:hover img {
  transform: scale(1.045);
  filter: saturate(1.08);
}

.work-card:focus-visible {
  outline: 3px solid #d7bda1;
  outline-offset: 3px;
}

.work-lightbox {
  width: min(1050px, 92vw);
  max-width: none;
  height: min(88vh, 900px);
  padding: 0;
  overflow: hidden;
  border: 0;
  background: #101813;
  box-shadow: 0 30px 100px rgba(0, 0, 0, .45);
}

.work-lightbox::backdrop {
  background: rgba(7, 12, 9, .82);
  backdrop-filter: blur(8px);
}

.work-lightbox img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
}

.work-lightbox-close {
  position: absolute;
  z-index: 2;
  top: 14px;
  right: 14px;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 50%;
  background: rgba(16, 24, 19, .82);
  color: #fff;
  font-size: 27px;
  line-height: 1;
  cursor: pointer;
}

@media (max-width: 1000px) {
  .works-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (max-width: 650px) {
  .works-heading { align-items: flex-start; flex-direction: column; gap: 22px; margin-bottom: 34px; }
  .works-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 7px; }
  .work-card, .work-card:nth-child(5n + 1), .work-card:nth-child(5n + 4) { grid-row: auto; aspect-ratio: .78; }
  .work-card > span { left: 13px; right: 13px; bottom: 12px; }
  .work-card small { font-size: 8px; }
  .work-lightbox { width: 94vw; height: 82vh; }
}

.service-card.has-gallery {
  cursor: pointer;
}

.service-card.has-gallery:focus-visible {
  outline: 3px solid #bd6843;
  outline-offset: 3px;
}

.card-gallery-hint {
  position: absolute;
  z-index: 3;
  top: 18px;
  right: 18px;
  padding: 7px 9px;
  border: 1px solid rgba(255, 255, 255, .38);
  background: rgba(12, 20, 16, .48);
  backdrop-filter: blur(8px);
  color: #fff;
  font-size: 8px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.service-gallery-dialog {
  width: min(1120px, 94vw);
  max-width: none;
  height: min(900px, 92vh);
  padding: 0;
  overflow: hidden;
  border: 0;
  background: #101813;
  color: #fff;
  box-shadow: 0 35px 110px rgba(0, 0, 0, .52);
}

.service-gallery-dialog::backdrop {
  background: rgba(7, 12, 9, .84);
  backdrop-filter: blur(9px);
}

.service-gallery-head {
  height: 92px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px 18px 30px;
  border-bottom: 1px solid rgba(255, 255, 255, .12);
}

.service-gallery-head small {
  display: block;
  margin-bottom: 5px;
  color: #a8b6a6;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.service-gallery-head h2 {
  margin: 0;
  font: 600 clamp(21px, 3vw, 31px) Manrope, sans-serif;
}

.service-gallery-close {
  width: 46px;
  height: 46px;
  flex: 0 0 auto;
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 50%;
  background: transparent;
  color: #fff;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
}

.service-gallery-stage {
  position: relative;
  height: calc(100% - 198px);
  min-height: 300px;
  display: grid;
  place-items: center;
  background: #0a0f0c;
}

.service-gallery-stage > img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
}

.service-gallery-prev,
.service-gallery-next {
  position: absolute;
  z-index: 2;
  top: 50%;
  width: 48px;
  height: 48px;
  transform: translateY(-50%);
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 50%;
  background: rgba(16, 24, 19, .78);
  color: #fff;
  font-size: 19px;
  cursor: pointer;
}

.service-gallery-prev { left: 18px; }
.service-gallery-next { right: 18px; }

.service-gallery-foot {
  height: 106px;
  display: grid;
  grid-template-columns: 62px 1fr;
  align-items: center;
  gap: 18px;
  padding: 12px 24px;
  border-top: 1px solid rgba(255, 255, 255, .12);
}

.service-gallery-foot > span {
  font: 600 10px Manrope, sans-serif;
  letter-spacing: .12em;
  color: #a8b6a6;
}

.service-gallery-thumbs {
  min-width: 0;
  display: flex;
  gap: 9px;
  overflow-x: auto;
  scrollbar-width: thin;
}

.service-gallery-thumbs button {
  width: 62px;
  height: 76px;
  flex: 0 0 auto;
  padding: 0;
  overflow: hidden;
  border: 2px solid transparent;
  background: #253129;
  opacity: .58;
  cursor: pointer;
  transition: opacity .2s, border-color .2s;
}

.service-gallery-thumbs button.active {
  border-color: #d7bda1;
  opacity: 1;
}

.service-gallery-thumbs img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

@media (max-width: 650px) {
  .card-gallery-hint { top: 12px; right: 10px; padding: 6px 7px; font-size: 7px; }
  .service-gallery-dialog { width: 100vw; height: 100dvh; max-height: none; margin: 0; }
  .service-gallery-head { height: 82px; padding: 14px 16px 14px 20px; }
  .service-gallery-stage { height: calc(100% - 178px); }
  .service-gallery-foot { height: 96px; grid-template-columns: 50px 1fr; gap: 10px; padding: 10px 14px; }
  .service-gallery-thumbs button { width: 54px; height: 68px; }
  .service-gallery-prev, .service-gallery-next { width: 42px; height: 42px; }
  .service-gallery-prev { left: 10px; }
  .service-gallery-next { right: 10px; }
}

body {
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, "Segoe UI", Arial, sans-serif;
}

body.preloading {
  overflow: hidden;
}

@font-face {
  font-family: "Poppins Preloader";
  src: url("../fonts/poppins-semibold.ttf?v=1") format("truetype");
  font-style: normal;
  font-weight: 600;
  font-display: swap;
}

.page-preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-content: center;
  justify-items: center;
  gap: 24px;
  background: #f4f4f4;
  color: #232121;
  opacity: 1;
  visibility: visible;
  transition: opacity .2s ease, visibility .2s ease;
}

.page-preloader::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: url("../images/furniture-pattern.webp");
  background-repeat: repeat;
  background-size: 350px 350px;
  background-position: center;
  opacity: .3;
  filter: contrast(1.2);
  mix-blend-mode: multiply;
}

.page-preloader::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: min(330px, 86vw);
  height: 130px;
  transform: translate(-50%, -50%);
  pointer-events: none;
  background:
    radial-gradient(circle 43px at 50% 25%, #f4f4f4 0 58%, rgba(244,244,244,.92) 72%, transparent 100%),
    radial-gradient(ellipse 158px 36px at 50% 72%, #f4f4f4 0 68%, rgba(244,244,244,.9) 80%, transparent 100%);
}

.page-preloader.is-leaving {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader {
  --color-1: #232121;
  --size: .58px;
  color: var(--color-1);
  font-size: calc(45 * var(--size));
  text-indent: -9999em;
  overflow: hidden;
  width: 1em;
  height: 1em;
  border-radius: 50%;
  position: relative;
  transform: translateZ(0);
  will-change: transform, box-shadow;
  animation: mltShdSpin 1.7s infinite ease, loaderRound 1.7s infinite ease;
}

.loader-text {
  color: #232121;
  font-family: "Poppins Preloader", Poppins, ui-sans-serif, system-ui, sans-serif;
  font-size: clamp(18px, 2.4vw, 27px);
  font-weight: 600;
  letter-spacing: .08em;
  text-shadow: 0 5px 22px rgba(35,33,33,.08);
  animation: loaderTextReveal .62s cubic-bezier(.22, 1, .36, 1) both;
}

.loader,
.loader-text {
  z-index: 2;
}

@keyframes mltShdSpin {
  0%, 5%, 95%, 100% {
    box-shadow: 0 -.83em 0 -.4em, 0 -.83em 0 -.42em, 0 -.83em 0 -.44em, 0 -.83em 0 -.46em, 0 -.83em 0 -.477em;
  }
  10%, 59% {
    box-shadow: 0 -.83em 0 -.4em, -.087em -.825em 0 -.42em, -.173em -.812em 0 -.44em, -.256em -.789em 0 -.46em, -.297em -.775em 0 -.477em;
  }
  20% {
    box-shadow: 0 -.83em 0 -.4em, -.338em -.758em 0 -.42em, -.555em -.617em 0 -.44em, -.671em -.488em 0 -.46em, -.749em -.34em 0 -.477em;
  }
  38% {
    box-shadow: 0 -.83em 0 -.4em, -.377em -.74em 0 -.42em, -.645em -.522em 0 -.44em, -.775em -.297em 0 -.46em, -.82em -.09em 0 -.477em;
  }
}

@keyframes loaderRound {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

@keyframes loaderTextReveal {
  0% { opacity: .12; filter: blur(3px); transform: translateY(4px); }
  38% { opacity: .72; filter: blur(.7px); }
  65%, 100% { opacity: 1; filter: blur(0); transform: translateY(0); }
}

.brand,
.brand-mark,
.hero h1,
.section h2,
.card-content h3,
.stats strong,
.process-grid h3,
.contact-details a,
.contact-details p,
.slide-count {
  font-family: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Arial, sans-serif;
}

.services,
.about,
.process,
.local-seo,
.contact,
footer {
  content-visibility: auto;
  contain-intrinsic-size: auto 800px;
}

.wood-panel {
  overflow: hidden;
}

.wood-panel img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 48%;
  transition: transform .8s ease;
}

.about-visual:hover .wood-panel img {
  transform: scale(1.025);
}

.experience {
  z-index: 2;
}

.contact-details address,
footer address {
  margin: 0;
  font-style: normal;
}

.local-seo {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  gap: 8vw;
  background: #f4f0e7;
  align-items: start;
}

.local-seo h2 {
  font-size: clamp(38px, 4.5vw, 68px);
  margin: 22px 0 28px;
}

.local-seo-intro p,
.faq-list p {
  color: #657069;
  line-height: 1.8;
}

.faq-list {
  border-top: 1px solid var(--line);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
  padding: 0;
}

.faq-list summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  padding: 25px 0;
  cursor: pointer;
  list-style: none;
  font-weight: 700;
}

.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary span { font-size: 24px; transition: transform .25s; }
.faq-list details[open] summary span { transform: rotate(45deg); }
.faq-list p { margin: -4px 45px 25px 0; }
.faq-list a { text-decoration: underline; text-underline-offset: 3px; }

.process-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.process {
  padding-top: 96px;
  padding-bottom: 96px;
}

.process > h2 {
  margin-top: 22px;
  margin-bottom: 46px;
  line-height: .96;
}

.process-grid > div {
  min-height: 185px;
  padding-top: 28px;
  padding-bottom: 18px;
  transition: background .3s ease;
}

.process-grid > div:hover {
  background: rgba(255,255,255,.025);
}

.process-icon {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 50%;
  color: #d7bda1;
  background: rgba(255,255,255,.035);
  transition: color .3s ease, background .3s ease, border-color .3s ease, transform .3s ease;
}

.process-icon svg {
  width: 23px;
  height: 23px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.55;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.process-grid > div:hover .process-icon {
  color: #17231d;
  background: #d7bda1;
  border-color: #d7bda1;
  transform: translateY(-4px) rotate(3deg);
}

.process-grid > div h3 {
  margin-top: 28px;
}

.hero-call {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  min-height: 58px;
  color: #fff;
  isolation: isolate;
}

.call-pulse {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  flex: 0 0 50px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(145deg, #43d86b, #1ea84a);
  box-shadow: 0 10px 28px rgba(37, 211, 102, .32), inset 0 1px 0 rgba(255,255,255,.3);
  transition: transform .25s ease, box-shadow .25s ease;
}

.call-pulse::before,
.call-pulse::after {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  border: 1px solid rgba(80, 232, 128, .8);
  border-radius: inherit;
  animation: call-ring 2.2s ease-out infinite;
}

.call-pulse::after { animation-delay: .65s; }

.call-pulse svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.call-copy {
  display: grid;
  gap: 3px;
}

.call-copy small {
  color: rgba(255,255,255,.64);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.call-copy strong {
  font-size: 14px;
  letter-spacing: .02em;
}

.hero-call:hover .call-pulse {
  transform: scale(1.07);
  box-shadow: 0 12px 34px rgba(37, 211, 102, .48), inset 0 1px 0 rgba(255,255,255,.3);
}

@keyframes call-ring {
  0% { opacity: .85; transform: scale(.92); }
  75%, 100% { opacity: 0; transform: scale(1.65); }
}

@media (prefers-reduced-motion: reduce) {
  .call-pulse::before,
  .call-pulse::after { animation: none; }

  .page-preloader { transition-duration: .01ms; }
  .loader-text { animation: none; }
}

@media (max-width: 800px) {
  .local-seo { grid-template-columns: 1fr; gap: 45px; }

  .process {
    padding-top: 72px;
    padding-bottom: 72px;
  }

  .process > h2 {
    margin: 18px 0 34px;
    font-size: clamp(39px, 10.5vw, 58px);
    line-height: .98;
  }

  .process-grid {
    grid-template-columns: 1fr;
  }

  .process-grid > div,
  .process-grid > div + div {
    display: grid;
    grid-template-columns: 52px minmax(0, 1fr);
    grid-template-rows: auto auto;
    column-gap: 18px;
    min-height: 0;
    padding: 22px 0;
    border-right: 0;
    border-bottom: 1px solid rgba(255,255,255,.14);
  }

  .process-grid > div:last-child {
    border-bottom: 0;
  }

  .process-top {
    grid-column: 1;
    grid-row: 1 / 3;
    flex-direction: column;
    justify-content: flex-start;
    gap: 10px;
  }

  .process-icon {
    width: 44px;
    height: 44px;
  }

  .process-icon svg {
    width: 20px;
    height: 20px;
  }

  .process-grid > div h3 {
    grid-column: 2;
    grid-row: 1;
    margin: 1px 0 7px;
    font-size: 18px;
    line-height: 1.25;
  }

  .process-grid > div p {
    grid-column: 2;
    grid-row: 2;
    margin: 0;
    max-width: 34rem;
    line-height: 1.6;
  }
}

.contact-details address {
  font-weight: 600;
  line-height: 1.55;
}

footer address {
  color: #9ca49f;
  font-size: 12px;
  line-height: 1.55;
  text-align: center;
}

@media (max-width: 650px) {
  .brand-logo {
    width: 52px;
    height: 52px;
  }

  .footer-logo {
    width: 78px;
    height: 78px;
  }
}
