﻿:root {
}

@font-face {
  font-family: "Plus Jakarta Sans";
  src: url("../fonts/PlusJakartaSans-Regular.woff2") format("woff2");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Plus Jakarta Sans";
  src: url("../fonts/PlusJakartaSans-Medium.woff2") format("woff2");
  font-style: normal;
  font-weight: 500;
  font-display: swap;
}

@font-face {
  font-family: "Plus Jakarta Sans";
  src: url("../fonts/PlusJakartaSans-SemiBold.woff2") format("woff2");
  font-style: normal;
  font-weight: 600;
  font-display: swap;
}

@font-face {
  font-family: "Plus Jakarta Sans";
  src: url("../fonts/PlusJakartaSans-Bold.woff2") format("woff2");
  font-style: normal;
  font-weight: 700 800;
  font-display: swap;
}

:root {
  --text: #151515;
  --muted: #8f8f8f;
  --line: #e7e7e7;
  --soft: #f7f7f7;
  --white: #ffffff;
  --black: #111111;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  font-family: "Plus Jakarta Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  color: var(--text);
  background: var(--white);
  font-size: 14px;
  font-weight: 400;
  overflow-x: hidden;
}

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

img {
  max-width: 100%;
}

.site-shell {
  width: min(100%, 1680px);
  margin-left: auto;
  margin-right: auto;
  padding-left: clamp(24px, 4vw, 72px);
  padding-right: clamp(24px, 4vw, 72px);
}

/* ── Shared breadcrumb — used on every page ── */
.site-breadcrumb {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 24px;
  font-size: 13px;
  color: #717171;
}

.site-breadcrumb a {
  color: #222222;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.site-breadcrumb a:hover { color: #e8a50f; }
.site-breadcrumb i { font-size: 11px; color: #b0b0b0; }

/* Header */
.top-header {
  height: 66px;
  border-bottom: 1px solid #eeeeee;
  display: flex;
  align-items: center;
  background: #ffffff;
}

.header-inner {
  position: relative;
}

.nav-left,
.nav-right {
  display: flex;
  align-items: center;
  gap: 26px;
  font-size: 12px;
}

.nav-left a,
.nav-right a {
  color: #909090;
  transition: 0.2s ease;
  white-space: nowrap;
}

.nav-left a.active,
.nav-left a:hover,
.nav-right a:hover {
  color: #111111;
}

.brand {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: 14px;
  color: #111111;
}

.brand img {
  display: block;
  height: auto;
}

.brand-icon {
  width: 25px;
  height: 25px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 25px;
  line-height: 1;
}

.mobile-menu-toggle,
.mobile-menu-close {
  width: 44px;
  height: 44px;
  border: 1px solid #e8e8e8;
  border-radius: 50%;
  background: #ffffff;
  color: #111111;
  display: none;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
}

.mobile-menu-close {
  display: inline-flex;
  font-size: 18px;
}

.mobile-menu-backdrop {
  position: fixed;
  inset: 0;
  z-index: 998;
  background: rgba(0, 0, 0, 0.46);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.22s ease, visibility 0.22s ease;
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 999;
  width: min(88vw, 390px);
  height: 100dvh;
  padding: 20px;
  background: #ffffff;
  box-shadow: -24px 0 50px rgba(0, 0, 0, 0.16);
  transform: translateX(100%);
  transition: transform 0.25s ease;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
}

.mobile-menu-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 18px;
  border-bottom: 1px solid #eeeeee;
}

.mobile-menu-brand {
  display: inline-flex;
  align-items: center;
}

.mobile-menu-brand img {
  display: block;
  height: auto;
}

.mobile-menu-nav {
  display: grid;
  gap: 8px;
  padding: 22px 0;
}

.mobile-menu-nav a {
  min-height: 48px;
  padding: 0 14px;
  border-radius: 8px;
  border: 1px solid #eeeeee;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  color: #151515;
  font-size: 15px;
  font-weight: 500;
  background: #ffffff;
}

.mobile-menu-nav a.active,
.mobile-menu-nav a:hover {
  border-color: #111111;
  background: #111111;
  color: #ffffff;
}

.mobile-menu-nav i {
  font-size: 16px;
  flex: 0 0 auto;
}

.mobile-menu-actions {
  margin-top: auto;
  display: grid;
  gap: 10px;
  padding-top: 18px;
  border-top: 1px solid #eeeeee;
}

.mobile-call-btn,
.mobile-offer-btn {
  min-height: 52px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 600;
}

.mobile-call-btn {
  background: #8a5a00;
  color: #ffffff;
}

.mobile-offer-btn {
  background: #111111;
  color: #ffffff;
}

body.mobile-menu-open {
  overflow: hidden;
}

body.mobile-menu-open .mobile-menu {
  transform: translateX(0);
}

body.mobile-menu-open .mobile-menu-backdrop {
  opacity: 1;
  visibility: visible;
}

.promo-bar {
  height: 42px;
  background: #171717;
  color: #d6d6d6;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  letter-spacing: -0.01em;
  text-align: center;
  padding: 0 15px;
}

.promo-bar a {
  color: #ffffff;
  margin-left: 6px;
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* Form Defaults */
.filter-control {
  height: 47px;
  border: 1px solid #e5e5e5;
  border-radius: 8px;
  background: #ffffff;
  width: 100%;
  padding: 0 17px;
  font-size: 13px;
  color: #2b2b2b;
  outline: none;
  display: flex;
  align-items: center;
  gap: 10px;
}

.filter-control::placeholder {
  color: #9e9e9e;
}

.filter-control:focus {
  border-color: #cfcfcf;
  box-shadow: none;
}

.filter-control select {
  border: 0;
  outline: 0;
  width: 100%;
  background: transparent;
  color: #222222;
}

.filter-label {
  display: block;
  font-size: 13px;
  margin-bottom: 9px;
  color: #161616;
  font-weight: 400;
}

.filter-btn {
  height: 47px;
  border: 1px solid #e5e5e5;
  border-radius: 8px;
  background: #ffffff;
  padding: 0 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-size: 13px;
  color: #222222;
  width: 100%;
  transition: 0.2s ease;
}

.filter-btn:hover {
  background: #f8f8f8;
}

/* Responsive Global */
@media (max-width: 991px) {
  .site-shell {
    padding-left: 18px;
    padding-right: 18px;
  }

  .top-header {
    height: 66px;
    padding: 0;
    position: sticky;
    top: 0;
    z-index: 990;
  }

  .header-inner {
    min-height: 66px;
  }

  .brand {
    left: 18px;
    transform: none;
  }

  .brand img {
    display: block;
  }

  .nav-left,
  .nav-right {
    display: none;
  }

  .mobile-menu-toggle {
    display: inline-flex;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
  }
}

@media (max-width: 575px) {
  .site-shell {
    padding-left: 14px;
    padding-right: 14px;
  }

  .promo-bar {
    min-height: 42px;
    height: auto;
    padding: 12px 15px;
    line-height: 1.5;
  }

  .brand img {
    width: 126px;
  }

  .mobile-menu {
    width: min(92vw, 360px);
    padding: 18px;
  }

  .mobile-menu-nav a {
    min-height: 50px;
  }
}


/* Footer */
.site-footer {
  background: #fafafb;
  margin-top: 48px;
  padding-top: 72px;
  padding-bottom: 28px;
  border-top: 1px solid #eeeeee;
  position: relative;
  z-index: 950;
}

.footer-main {
  padding-bottom: 46px;
}

.footer-brand-area {
  max-width: 420px;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 22px;
  color: #111111;
  font-size: 20px;
  line-height: 1;
  font-weight: 600;
  letter-spacing: -0.7px;
}

.footer-brand:hover {
  color: #111111;
}

.footer-brand-icon {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: #111111;
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
}

.footer-brand-area p {
  max-width: 380px;
  margin: 0 0 28px;
  color: #6f6f75;
  font-size: 15px;
  line-height: 1.75;
  letter-spacing: -0.25px;
}

.footer-social {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-social a {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid #e7e7ea;
  background: #ffffff;
  color: #111111;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  transition: 0.2s ease;
}

.footer-social a:hover {
  background: #111111;
  border-color: #111111;
  color: #ffffff;
  transform: translateY(-2px);
}

.footer-menu h3,
.footer-contact-card h3 {
  margin: 0 0 20px;
  color: #111111;
  font-size: 15px;
  line-height: 1.2;
  font-weight: 600;
  letter-spacing: -0.35px;
}

.footer-menu ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-menu li + li {
  margin-top: 13px;
}

.footer-menu a {
  color: #707077;
  font-size: 14px;
  line-height: 1.35;
  letter-spacing: -0.2px;
  transition: 0.2s ease;
}

.footer-menu a:hover {
  color: #111111;
  padding-left: 3px;
}

.footer-contact-card {
  padding: 22px;
 
  border-radius: 24px;
  background: #ffffff;
}

.footer-contact-link,
.footer-address {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  color: #65656b;
  font-size: 14px;
  line-height: 1.45;
  letter-spacing: -0.2px;
}

.footer-contact-link {
  margin-bottom: 14px;
  transition: 0.2s ease;
}

.footer-contact-link:hover {
  color: #111111;
}

.footer-contact-link i,
.footer-address i {
  color: #111111;
  font-size: 17px;
  line-height: 1.2;
  flex: 0 0 auto;
}

.footer-address {
  margin-top: 14px;
  margin-bottom: 22px;
}

.footer-cta {
  width: 100%;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 999px;
  background: #111111;
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-size: 14px;
  font-weight: 500;
  transition: 0.2s ease;
}

.footer-cta:hover {
  color: #ffffff;
  transform: translateY(-2px);
}

.footer-branches {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  overflow: hidden;
  border-radius: 28px;
  background: #eeeeef;
  margin-bottom: 28px;
}

.branch-item {
  min-height: 112px;
  padding: 24px;
  background: #ffffff;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.branch-item strong {
  display: block;
  margin-bottom: 8px;
  color: #111111;
  font-size: 18px;
  line-height: 1.15;
  font-weight: 600;
  letter-spacing: -0.55px;
}

.branch-item span {
  display: block;
  color: #76767d;
  font-size: 14px;
  line-height: 1.45;
  letter-spacing: -0.2px;
}

.footer-bottom {
  padding-top: 26px;
  border-top: 1px solid #eeeeef;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.footer-bottom p {
  margin: 0;
  color: #68686e;
  font-size: 13px;
  line-height: 1.4;
}

.footer-legal {
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
}

.footer-legal a {
  color: #68686e;
  font-size: 13px;
  line-height: 1.4;
  transition: 0.2s ease;
}

.footer-legal a:hover {
  color: #111111;
}

/* Footer Responsive */
@media (max-width: 991px) {
  .site-footer {
    padding-top: 52px;
  }

  .footer-main {
    padding-bottom: 36px;
  }

  .footer-branches {
    grid-template-columns: repeat(2, 1fr);
    border-radius: 24px;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 575px) {
  .site-footer {
    padding-top: 42px;
    padding-bottom: 24px;
  }

  .footer-brand {
    font-size: 18px;
  }

  .footer-brand-icon {
    width: 38px;
    height: 38px;
    border-radius: 12px;
    font-size: 20px;
  }

  .footer-contact-card {
    border-radius: 20px;
    padding: 20px;
  }

  .footer-branches {
    grid-template-columns: 1fr;
    border-radius: 22px;
  }

  .branch-item {
    min-height: auto;
    padding: 22px;
  }

  .footer-legal {
    gap: 14px;
  }
}

/* ── Fixed call button ── */
@keyframes fixed-call-glow {
  0%, 100% { box-shadow: 0 4px 20px rgba(232, 165, 15, 0.45); }
  50%       { box-shadow: 0 4px 32px rgba(232, 165, 15, 0.85), 0 0 0 8px rgba(232, 165, 15, 0.12); }
}

.fixed-call-btn {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 900;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 0 24px 0 7px;
  height: 60px;
  border-radius: 999px;
  background: #8a5a00;
  color: #ffffff;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(138, 90, 0, 0.35);
  transition: transform 0.18s, box-shadow 0.18s, opacity 0.25s, visibility 0.25s;
}

.fixed-call-btn:hover {
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(138, 90, 0, 0.48);
}

.fixed-call-btn.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.fixed-call-btn__icon {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(0,0,0,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 20px;
}

.fixed-call-btn__text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.fixed-call-btn__text small {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  opacity: 0.85;
}

.fixed-call-btn__text strong {
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 0.5px;
}

@media (max-width: 767px) {
  .fixed-call-btn {
    bottom: 20px;
    right: 16px;
    height: 56px;
    padding: 0 18px 0 6px;
    gap: 11px;
    animation: none;
  }

  .fixed-call-btn:hover {
    animation: none;
  }

  .fixed-call-btn__icon {
    width: 42px;
    height: 42px;
    font-size: 18px;
  }

  .fixed-call-btn__text small {
    font-size: 9.5px;
  }

  .fixed-call-btn__text strong {
    font-size: 16px;
  }
}

/* Performance denemesi geri alındı: mevcut tasarım değerleri korunur. */
.mobile-call-btn,
.fixed-call-btn {
  background: #e8a50f;
}

.footer-bottom p,
.footer-legal a {
  color: #77777d;
}

.fixed-call-btn {
  box-shadow: 0 4px 20px rgba(232, 165, 15, 0.45);
}

.fixed-call-btn:hover {
  box-shadow: 0 8px 28px rgba(232, 165, 15, 0.6);
}

@media (max-width: 767px) {
  .fixed-call-btn {
    animation: fixed-call-glow 2s ease-in-out infinite;
  }
}
