:root {
  --pf-black: #080a0b;
  --pf-ink: #0d1112;
  --pf-card: #121719;
  --pf-card-2: #171e21;
  --pf-line: rgba(255,255,255,.10);
  --pf-line-soft: rgba(255,255,255,.065);
  --pf-text: #f7faf8;
  --pf-muted: #aab5b0;
  --pf-green: #63d12f;
  --pf-green-2: #37aa18;
  --pf-orange: #ff8b2e;
  --pf-radius-xl: 34px;
  --pf-radius-lg: 24px;
  --pf-radius-md: 16px;
  --pf-shadow: 0 26px 70px rgba(0,0,0,.34);
  --pf-container: 1300px;
}

body {
  margin: 0;
  font-family: "Inter Tight", sans-serif;
  color: var(--pf-text);
  background:
    radial-gradient(circle at 12% 4%, rgba(99,209,47,.12), transparent 25%),
    radial-gradient(circle at 88% 8%, rgba(255,139,46,.10), transparent 27%),
    linear-gradient(180deg, #080a0b 0%, #0b0f10 45%, #090b0c 100%);
}

a {
  color: inherit;
  text-decoration: none;
}

.logo-top {
  width:195px;
  height: auto;
}
.swiper-wrapper {
  height: auto;
}
.pf-container {
  width: min(var(--pf-container), calc(100% - 48px));
  margin-inline: auto;
}

.pf-section {
  padding: 92px 0;
  position: relative;
}

.pf-section-light {
  color: #101414;
  background: #f5f7f4;
}

.pf-section-head {
  max-width: 780px;
  margin-bottom: 38px;
}

.pf-section-head.center {
  margin-inline: auto;
  text-align: center;
}

.pf-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  color: var(--pf-green);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.pf-kicker::before {
  content: "";
  width: 26px;
  height: 2px;
  border-radius: 99px;
  background: currentColor;
}

.pf-section-head h2 {
  margin: 0 0 14px;
  font-family: "Playfair Display", serif;
  font-size: clamp(34px, 4vw, 56px);
  line-height: 1.02;
  letter-spacing: -.045em;
}

.pf-section-head p {
  margin: 0;
  color: var(--pf-muted);
  font-size: 18px;
  line-height: 1.68;
}

.pf-section-light .pf-section-head p {
  color: #5d6661;
}

.pf-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 15px;
  font-weight: 900;
  transition: .24s ease;
}

.pf-btn:hover {
  transform: translateY(-3px);
}

.pf-btn-primary {
  color: #071006;
  background: linear-gradient(135deg, var(--pf-green), #9bf05f);
  box-shadow: 0 18px 40px rgba(99,209,47,.26);
}

.pf-btn-primary:hover {
  color: #071006;
  box-shadow: 0 24px 48px rgba(99,209,47,.36);
}

.pf-btn-dark {
  color: #fff;
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.13);
  backdrop-filter: blur(14px);
}

.pf-btn-dark:hover {
  color: #fff;
  border-color: rgba(99,209,47,.38);
  background: rgba(99,209,47,.12);
}

.pf-navbar {
  position: sticky;
  top: 0;
  z-index: 80;
  background: rgba(8,10,11,.84);
  border-bottom: 1px solid rgba(255,255,255,.08);
  backdrop-filter: blur(18px);
}

.pf-navbar-inner {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.pf-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 900;
  letter-spacing: -.03em;
  white-space: nowrap;
  width: 150px;
  height: auto;
}

.pf-logo-mark {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--pf-green), var(--pf-orange));
  box-shadow: 0 14px 34px rgba(99,209,47,.22);
  position: relative;
  overflow: hidden;
}

.pf-logo-mark::before {
  content: "";
  width: 28px;
  height: 24px;
  border: 2px solid rgba(8,10,11,.88);
  background:
    repeating-linear-gradient(90deg, rgba(8,10,11,.82) 0 2px, transparent 2px 8px);
}

.pf-logo small {
  display: block;
  margin-top: 2px;
  color: var(--pf-green);
  font-size: 11px;
  letter-spacing: .12em;
}

.pf-logo span:last-child {
  line-height: 1.05;
  font-size: 19px;
}

.pf-menu {
  display: flex;
  align-items: center;
  gap: 4px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.pf-menu a {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 12px;
  border-radius: 999px;
  color: rgba(255,255,255,.76);
  font-size: 14px;
  font-weight: 800;
  transition: .2s ease;
}

.pf-menu a:hover {
  color: #fff;
  background: rgba(255,255,255,.075);
}

.pf-nav-cta {
  display: flex;
  align-items: center;
  gap: 10px;
}

.pf-phone {
  display: grid;
  line-height: 1.05;
  font-weight: 900;
  font-size: 15px;
}

.pf-phone small {
  color: var(--pf-muted);
  font-size: 12px;
  font-weight: 600;
}

.pf-menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 15px;
  color: #fff;
  background: rgba(255,255,255,.065);
}

.pf-hero {
  position: relative;
  padding: 76px 0 54px;
  overflow: hidden;
}

.pf-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(8,10,11,.94) 0%, rgba(8,10,11,.78) 46%, rgba(8,10,11,.18) 100%),
    linear-gradient(135deg, #1f292d, #0b0f10);
  z-index: 0;
}

.pf-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(90deg, rgba(8,10,11,.96) 0%, rgba(8,10,11,.78) 42%, rgba(8,10,11,.28) 74%, rgba(8,10,11,0) 100%),    url('../../assets/img/bg/panel-cit-golden-kopekli-bahce.jpg');
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  opacity: .75;
  z-index: 1;
}

.pf-hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(360px, .72fr);
  align-items: flex-start;
  gap: 52px;
}

.pf-hero-content h1 {
  margin: 18px 0 20px;
  font-family: "Playfair Display", serif;
  font-size: cclamp(36px, 7vw, 54px);
  line-height: .92;
  letter-spacing: -.06em;
}

.pf-hero-content h1 span {
  color: var(--pf-green);
}

.pf-hero-content p {
  max-width: 640px;
  margin: 0;
  color: #c0c9c5;
  font-size: 20px;
  line-height: 1.72;
}

.pf-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.pf-hero-panel {
  position: relative;
  padding: 5px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--pf-radius-xl);
  background: rgba(255,255,255,.06);
  box-shadow: var(--pf-shadow);
  backdrop-filter: blur(2px);
}

.pf-hero-media {
  display: block;
  height: 430px;
  border-radius: 26px;
  background:
    linear-gradient(145deg, rgba(99,209,47,.2), transparent 42%),
    linear-gradient(135deg, #263236, #111719);
  border: 1px solid rgba(255,255,255,.09);
  position: relative;
  overflow: hidden;
}

.pf-hero-media img {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pf-hero-chip {
  position: absolute;
  left: 0;
  bottom: 34px;
  transform: translateX(-22px);
  max-width: 260px;
  padding: 20px;
  border-radius: 22px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(10,13,14,.9);
  box-shadow: 0 20px 48px rgba(0,0,0,.34);
}

.pf-hero-chip b {
  display: block;
  margin-bottom: 7px;
  font-size: 18px;
}

.pf-hero-chip span {
  display: block;
  color: var(--pf-muted);
  font-size: 14px;
  line-height: 1.5;
}

.pf-trust-strip {
  position: relative;
  z-index: 3;
  margin-top: -28px;
}

.pf-trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 26px;
  background: rgba(13,17,18,.95);
  box-shadow: var(--pf-shadow);
  overflow: hidden;
}

.pf-trust-item {
  padding: 24px;
  border-right: 1px solid rgba(255,255,255,.08);
}

.pf-trust-item:last-child {
  border-right: 0;
}

.pf-trust-item b {
  display: block;
  margin-bottom: 7px;
  font-size: 18px;
  letter-spacing: -.02em;
}

.pf-trust-item span {
  display: block;
  color: var(--pf-muted);
  font-size: 14px;
  line-height: 1.45;
}

.pf-products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.pf-product-card {
  min-height: 100%;
  padding: 14px;
  border-radius: 24px;
  background: #fff;
  border: 1px solid #e4e9e2;
  box-shadow: 0 16px 34px rgba(17,24,20,.075);
  transition: .25s ease;
}

.pf-product-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 24px 48px rgba(17,24,20,.14);
  border-color: rgba(99,209,47,.55);
}

.pf-media {
  display: block;
  min-height: 170px;
  border-radius: 18px;
  background:
    linear-gradient(145deg, rgba(99,209,47,.18), transparent 48%),
    linear-gradient(135deg, #dfe7df, #a9b3ad);
  position: relative;
  overflow: hidden;
}

.pf-media::after {
  content: "";
  position: absolute;
  inset: 22px;
  border-radius: 14px;
  border: 1px dashed rgba(0,0,0,.16);
}

.pf-product-card h3 {
  margin: 17px 0 8px;
  color: #111614;
  font-size: 20px;
  font-weight: 900;
  letter-spacing: -.025em;
}

.pf-product-card p {
  margin: 0 0 14px;
  color: #68716b;
  font-size: 14px;
  line-height: 1.55;
}

.pf-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--pf-green-2);
  font-size: 14px;
  font-weight: 900;
}

.pf-why {
  background:
    radial-gradient(circle at 16% 0%, rgba(99,209,47,.12), transparent 26%),
    var(--pf-ink);
}

.pf-why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 28px;
  background: rgba(255,255,255,.10);
  overflow: hidden;
}

.pf-why-card {
  padding: 32px 26px;
  background: rgba(18,23,25,.96);
  transition: .24s ease;
}

.pf-why-card:hover {
  background: rgba(25,32,35,.98);
}

.pf-why-icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  margin-bottom: 22px;
  border-radius: 18px;
  background: rgba(99,209,47,.12);
  color: var(--pf-green);
  font-weight: 900;
}

.pf-why-card h3 {
  margin: 0 0 10px;
  font-size: 21px;
  font-weight: 900;
  letter-spacing: -.025em;
  color:#fff;
}

.pf-why-card p {
  margin: 0;
  color: var(--pf-muted);
  line-height: 1.62;
}

.pf-projects {
  overflow: hidden;
}

.pf-project-slider-wrap {
  position: relative;
}

.pf-project-card {
  height: auto;
  padding: 14px;
  border-radius: 28px;
  background: rgba(255,255,255,.055);
  border: 1px solid rgba(255,255,255,.10);
  transition: .25s ease;
}

.pf-project-card:hover {
  transform: translateY(-6px);
  border-color: rgba(99,209,47,.35);
  background: rgba(255,255,255,.075);
}

.pf-project-card .pf-media {
  min-height: 285px;
  background:
    linear-gradient(145deg, rgba(99,209,47,.16), transparent 42%),
    linear-gradient(135deg, #263033, #101516);
}

.pf-project-body {
  padding: 20px 6px 6px;
}

.pf-project-body h3 {
  margin: 0 0 8px;
  font-size: 23px;
  font-weight: 900;
  letter-spacing: -.03em;
}

.pf-project-body p {
  margin: 0;
  color: var(--pf-muted);
  line-height: 1.55;
}

.pf-slider-actions {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin-top: 24px;
}

.pf-slider-btn {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 16px;
  color: #fff;
  background: rgba(255,255,255,.07);
  transition: .2s ease;
  cursor: pointer;
}

.pf-slider-btn:hover {
  background: var(--pf-green);
  color: #081008;
  transform: translateY(-2px);
}

.pf-reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.pf-review-card {
  padding: 28px;
  border-radius: 26px;
  background: #fff;
  border: 1px solid #e4e9e2;
  box-shadow: 0 16px 34px rgba(17,24,20,.075);
}

.pf-stars {
  margin-bottom: 16px;
  color: #ffb02e;
  letter-spacing: 2px;
}

.pf-review-card p {
  margin: 0;
  color: #4c5650;
  line-height: 1.65;
}

.pf-review-author {
  margin-top: 20px;
  padding-top: 18px;
  border-top: 1px solid #e8ede6;
  color: #111614;
  font-weight: 900;
}

.pf-review-author span {
  display: block;
  margin-top: 3px;
  color: #78817b;
  font-size: 14px;
  font-weight: 600;
}

.pf-regions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.pf-region {
  padding: 13px 18px;
  border-radius: 999px;
  color: #152016;
  background: #fff;
  border: 1px solid #e2e9df;
  font-weight: 900;
  box-shadow: 0 12px 28px rgba(17,24,20,.06);
}

.pf-faq-contact {
  background: #f5f7f4;
  color: #101414;
}

.pf-faq-contact-grid {
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  gap: 24px;
  align-items: start;
}

.pf-faq-box,
.pf-contact-box {
  border-radius: 30px;
  background: #fff;
  border: 1px solid #e2e8df;
  box-shadow: 0 18px 42px rgba(17,24,20,.08);
  overflow: hidden;
}

.accordion {
  --bs-accordion-border-color: #e4e9e2;
  --bs-accordion-btn-focus-box-shadow: none;
  --bs-accordion-active-bg: #f1faed;
  --bs-accordion-active-color: #101414;
}

.accordion-button {
  padding: 20px 24px;
  color: #101414;
  font-weight: 900;
  letter-spacing: -.015em;
}

.accordion-body {
  padding: 0 24px 22px;
  color: #5d6661;
  line-height: 1.65;
}

.pf-contact-box {
  padding: 28px;
}

.pf-contact-box h3 {
  margin: 0 0 8px;
  font-size: 30px;
  font-weight: 900;
  letter-spacing: -.04em;
}

.pf-contact-box p {
  margin: 0 0 22px;
  color: #5d6661;
  line-height: 1.6;
}

.pf-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.pf-field-full {
  grid-column: 1 / -1;
}

.pf-field label {
  display: block;
  margin-bottom: 7px;
  color: #222927;
  font-size: 13px;
  font-weight: 900;
}

.pf-field input,
.pf-field select,
.pf-field textarea {
  width: 100%;
  min-height: 52px;
  padding: 0 15px;
  border: 1px solid #dfe6dc;
  border-radius: 15px;
  outline: 0;
  background: #f8faf7;
  color: #101414;
  font: inherit;
  transition: .2s ease;
}

.pf-field textarea {
  min-height: 118px;
  padding-top: 15px;
  resize: vertical;
}

.pf-field input:focus,
.pf-field select:focus,
.pf-field textarea:focus {
  border-color: rgba(99,209,47,.85);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(99,209,47,.12);
}

.pf-contact-box .pf-btn {
  width: 100%;
  border: 0;
}

.pf-footer {
  padding: 46px 0 28px;
  background: #080a0b;
  border-top: 1px solid rgba(255,255,255,.08);
}

.pf-footer-grid {
  display: grid;
  grid-template-columns: 1.3fr .8fr .8fr 1fr;
  gap: 34px;
}

.pf-footer h4 {
  margin: 0 0 16px;
  font-size: 16px;
  font-weight: 900;
}

.pf-footer p,
.pf-footer a,
.pf-footer li {
  color: var(--pf-muted);
  font-size: 14px;
  line-height: 1.7;
}

.pf-footer ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.pf-footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-top: 34px;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,.08);
  color: var(--pf-muted);
  font-size: 13px;
}

.pf-floating {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 90;
  display: grid;
  gap: 10px;
}

.pf-floating a {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  color: #071006;
  background: var(--pf-green);
  box-shadow: 0 18px 40px rgba(0,0,0,.28);
  font-weight: 900;
}

.pf-floating a:last-child {
  background: var(--pf-orange);
}
.pf-floating a i {
  font-size: 24px;
}

@media (max-width: 1199px) {
  .pf-products-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .pf-hero-inner {
    grid-template-columns: 1fr .72fr;
    gap: 32px;
  }

  .pf-menu a {
    padding-inline: 8px;
  }
}

@media (max-width: 991px) {
  .pf-container {
    width: min(100% - 32px, var(--pf-container));
  }

  .pf-menu,
  .pf-nav-cta {
    display: none;
  }

  .pf-menu-toggle {
    display: grid;
    place-items: center;
  }

  .pf-navbar.is-open .pf-menu {
    position: absolute;
    left: 16px;
    right: 16px;
    top: 82px;
    display: grid;
    gap: 6px;
    padding: 14px;
    border-radius: 22px;
    background: rgba(13,17,18,.98);
    border: 1px solid rgba(255,255,255,.12);
    box-shadow: var(--pf-shadow);
  }

  .pf-navbar.is-open .pf-menu a {
    width: 100%;
    justify-content: flex-start;
  }

  .pf-hero {
    padding-top: 48px;
  }

  .pf-hero-inner {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .pf-hero-panel {
    max-width: 680px;
  }

  .pf-trust-grid,
  .pf-why-grid,
  .pf-reviews-grid,
  .pf-faq-contact-grid,
  .pf-footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .pf-trust-item:nth-child(2) {
    border-right: 0;
  }

  .pf-trust-item:nth-child(1),
  .pf-trust-item:nth-child(2) {
    border-bottom: 1px solid rgba(255,255,255,.08);
  }

  .pf-products-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 767px) {
  .pf-section {
    padding: 68px 0;
  }

  .pf-navbar-inner {
    min-height: 74px;
  }

  .pf-navbar.is-open .pf-menu {
    top: 76px;
  }

  .pf-logo span:last-child {
    font-size: 17px;
  }

  .pf-hero {
    padding: 38px 0 42px;
  }

  .pf-hero::after {
    background-image:
      linear-gradient(180deg, rgba(8,10,11,.96) 0%, rgba(8,10,11,.78) 44%, rgba(8,10,11,.28) 76%, rgba(8,10,11,0) 100%),
      url('../../assets/img/bg/file-rayli-kapi-eve-donus.jpg');
  }

  .pf-hero-content h1 {
    font-size: 45px;
    line-height: .98;
  }

  .pf-hero-content p {
    font-size: 17px;
    line-height: 1.62;
  }

  .pf-hero-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .pf-btn {
    width: 100%;
  }

  .pf-hero-panel {
    padding: 12px;
    border-radius: 24px;
  }

  .pf-hero-media {
    height: 330px;
    border-radius: 20px;
  }

  .pf-hero-chip {
    left: 12px;
    right: 12px;
    bottom: 12px;
    transform: none;
    max-width: none;
  }

  .pf-trust-strip {
    margin-top: 0;
  }

  .pf-trust-grid,
  .pf-why-grid,
  .pf-reviews-grid,
  .pf-faq-contact-grid,
  .pf-footer-grid,
  .pf-products-grid {
    grid-template-columns: 1fr;
  }

  .pf-trust-item,
  .pf-trust-item:nth-child(2) {
    border-right: 0;
    border-bottom: 1px solid rgba(255,255,255,.08);
  }

  .pf-trust-item:last-child {
    border-bottom: 0;
  }

  .pf-section-head h2 {
    font-size: 37px;
  }

  .pf-section-head p {
    font-size: 16px;
  }

  .pf-media {
    min-height: 220px;
  }

  .pf-project-card .pf-media {
    min-height: 250px;
  }

  .pf-slider-actions {
    justify-content: stretch;
  }

  .pf-slider-btn {
    width: 100%;
  }

  .pf-form-grid {
    grid-template-columns: 1fr;
  }

  .pf-footer-bottom {
    display: grid;
  }

  .pf-floating {
    right: 14px;
    bottom: 14px;
  }

  .pf-floating a {
    width: 52px;
    height: 52px;
  }
}




/*############################################################
-> XXXX
############################################################*/


/*############################################################
<- XXXX
############################################################*/

@media (min-width: 1200px) and (max-width: 1599.98px) {
}/*@media (min-width: 1200px) and (max-width: 1599.98px)*/

@media (min-width: 992px) and (max-width: 1199.98px) {
}/*@media (min-width: 992px) and (max-width: 1199.98px)*/

@media (max-width: 991.98px) {
}/*@media (max-width: 991.98px)*/

@media (min-width: 768px) and (max-width: 991.98px) {
}/*@media (min-width: 768px) and (max-width: 991.98px)*/

@media (max-width: 767.98px) {
}/*@media (max-width: 767.98px)*/
