/*
Theme Name: Greenix
Theme URI: https://example.com/greenix
Author: Greenix Team
Author URI: https://example.com
Description: Minimal başlangıç (sıfır şablon) WordPress teması.
Version: 0.1.0
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 7.4
Text Domain: greenix
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
*/

/* ============================================
   COLOR SYSTEM - Greenix WordPress Theme
   ============================================ */
:root {
  /* Theme Colors */
  --color-gray-dark: #4d4c4d;
  --color-gray-light: #f7f9fc;
  --color-medium-gray: #f1f1f1;
  --color-green: #3bb44a;
  --color-light-green: #84ce8b;
  --color-blue: #36a1d6;
  --color-orange: #fbac6b;
  --color-pink: #f38989;
  --color-brown: #d9a6a6;
  --color-purple: #a97ead;
  --color-red: #ff0000;

  /* Legacy Support (Backward Compatibility) */
  --greenix-primary: var(--color-green);

  /* Typography */
  --font-family-primary: "Barlow", -apple-system, BlinkMacSystemFont, "Segoe UI",
    Roboto, "Helvetica Neue", Arial, sans-serif;
}

.color-red {
  color: #e53935;
}

.is-hidden {
  display: none !important;
}

/* ============================================
   IMAGE PLACEHOLDER - Global Reusable
   ============================================ */
.greenix-image-placeholder {
  position: relative;
  width: 100%;
  height: 100%;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.greenix-image-placeholder__icon {
  width: 183px;
  height: 183px;
  object-fit: contain;
  display: block;
}

/* Background Image Placeholder */
.greenix-bg-placeholder {
  background: linear-gradient(135deg, #e0e0e0 0%, #bdbdbd 50%, #9e9e9e 100%);
  position: relative;
}

.greenix-bg-placeholder::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(59, 180, 74, 0.3);
  z-index: 1;
}

* {
  box-sizing: border-box;
  font-family: var(--font-family-primary);
}

html {
  margin: 0;
  padding: 0;
  width: 100%;
}

body {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: var(--font-family-primary) !important;
  list-style-type: none;
  background-color: var(--color-gray-light);
  width: 100%;
}

/* Tüm text elementleri için Barlow fontu */
h1,
h2,
h3,
h4,
h5,
h6,
p,
span,
div,
a,
button,
input,
textarea,
select,
li,
ul,
ol,
dl,
dt,
dd,
table,
th,
td,
label,
legend,
fieldset {
  font-family: var(--font-family-primary);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
}

a {
  text-decoration: none;
}

.flexbox {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ============================================
   FIXED CONTACT BAND - "Bize Ulaşın"
   ============================================ */
.greenix-fixed-contact {
  position: fixed;
  right: 0;
  top: 50%;
  --webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 100002;
  background: var(--color-green);
  --webkit-transition: top 220ms ease, transform 220ms ease,
    background-color 220ms ease;
  -moz-transition: top 220ms ease, transform 220ms ease,
    background-color 220ms ease;
  -ms-transition: top 220ms ease, transform 220ms ease,
    background-color 220ms ease;
  -o-transition: top 220ms ease, transform 220ms ease,
    background-color 220ms ease;
  transition: top 220ms ease, transform 220ms ease, background-color 220ms ease;
  border-radius: 28px 0 0 28px;
  width: 48px;
  height: 240px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
  /* Button reset */
  border: none;
  padding: 0;
  margin: 0;
  cursor: pointer;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
  text-decoration: none;
  outline: none;
}

.greenix-fixed-contact:hover {
  background: #2fa53e;
}

/* Modal açılınca buton rengi mavi olsun */
body.greenix-contact-modal-open .greenix-fixed-contact {
  background: var(--color-blue);
}

body.greenix-contact-modal-open .greenix-fixed-contact:hover {
  background: #2b8ec0;
}

/* Mobil menü açıldığında fixed contact'ı gizle */
body.mobile-menu-open .greenix-fixed-contact {
  display: none !important;
}

.greenix-fixed-contact__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.greenix-fixed-contact__text {
  writing-mode: vertical-rl;
  --webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -o-transform: rotate(180deg);
  transform: rotate(180deg);
  color: #fff;
  font-weight: 600;
  letter-spacing: 0.3px;
  line-height: 1;
}

.greenix-fixed-contact__icon {
  width: 28px;
  height: 28px;
  display: block;
  opacity: 0.95;
}

/* Mobile - Fixed Contact Band Yatay */
@media (max-width: 1023px) {
  .greenix-fixed-contact {
    right: auto;
    left: 50%;
    top: auto;
    bottom: 0;
    --webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
    width: auto;
    min-width: 200px;
    width: 100%;
    height: 40px;
    padding: 0 20px;
    box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.2);
    border-radius: 32px 32px 0px 0px;
  }

  .greenix-fixed-contact__inner {
    flex-direction: row;
    gap: 12px;
  }

  .greenix-fixed-contact__text {
    writing-mode: horizontal-tb;
    --webkit-transform: none;
    -moz-transform: none;
    -ms-transform: none;
    -o-transform: none;
    transform: none;
  }
  .greenix-fixed-contact__icon {
    -webkit-transform: rotate(90deg);
    -moz-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    -o-transform: rotate(90deg);
    transform: rotate(90deg);
    order: -1;
  }
}

/* ============================================
   SCROLL TO TOP BUTTON
   ============================================ */
.scroll-to-top {
  position: fixed;
  left: 40px;
  top: 50%;
  --webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 56px;
  height: 56px;
  background: var(--color-green, #3bb44a);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  --webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.scroll-to-top.is-visible {
  opacity: 1;
  visibility: visible;
}

.scroll-to-top:hover {
  --webkit-box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
  -ms-box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
  -o-box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.scroll-to-top:active {
  --webkit-transform: translateY(-50%) scale(0.95);
  -moz-transform: translateY(-50%) scale(0.95);
  -ms-transform: translateY(-50%) scale(0.95);
  -o-transform: translateY(-50%) scale(0.95);
  transform: translateY(-50%) scale(0.95);
}

.scroll-to-top__icon {
  width: 24px;
  height: 24px;
  display: block;
  pointer-events: none;
}

/* Mobile - Scroll to Top */
@media (max-width: 1023px) {
  .scroll-to-top {
    left: auto;
    right: 20px;
    width: 44px;
    height: 44px;
  }

  .scroll-to-top:active {
    --webkit-transform: translateY(-50%) scale(0.95);
    -moz-transform: translateY(-50%) scale(0.95);
    -ms-transform: translateY(-50%) scale(0.95);
    -o-transform: translateY(-50%) scale(0.95);
    transform: translateY(-50%) scale(0.95);
  }

  .scroll-to-top__icon {
    width: 20px;
    height: 20px;
  }
}

/* ============================================
   HEADER OVERLAY (for search and lang bars)
   ============================================ */
.greenix-header-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  z-index: 98;
  opacity: 0;
  visibility: hidden;
  will-change: opacity;
  transition: opacity 160ms ease, visibility 160ms ease;
}

.greenix-header-overlay.is-open {
  opacity: 1;
  visibility: visible;
}

/* ============================================
   FIXED CONTACT MODAL (UI ONLY)
   ============================================ */
.greenix-contact-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.32);
  backdrop-filter: blur(2px);
  z-index: 100000;
  opacity: 0;
  visibility: hidden;
  will-change: opacity;
  transition: opacity 160ms ease, visibility 160ms ease;
}

.greenix-contact-overlay.is-open {
  opacity: 1;
  visibility: visible;
}

.greenix-contact-modal {
  position: fixed;
  z-index: 100001;
  width: 800px;
  max-width: calc(800px - 96px);
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.22);
  opacity: 0;
  visibility: hidden;
  transform: translateX(10px);
  will-change: opacity, transform;
  transition: opacity 160ms ease, transform 160ms ease, visibility 160ms ease;
  background-color: var(--color-gray-light);
  overflow: auto;
}

.greenix-contact-modal.is-open {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

.greenix-contact-modal.is-centered {
  top: 50% !important;
  left: 50% !important;
  right: auto !important;
  transform: translate(-50%, -50%) !important;
  max-width: calc(100vw - 32px);
}

.greenix-contact-modal__inner {
  padding: 26px 28px 22px;
  position: relative;
}

.greenix-contact-modal__close {
  display: none;
  position: absolute;
  top: 16px;
  right: 16px;
  width: 32px;
  height: 32px;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
  z-index: 10;
  transition: opacity 0.2s ease;
}

.greenix-contact-modal__close:hover {
  opacity: 0.7;
}

.greenix-contact-modal__close img {
  width: 100%;
  height: 100%;
  display: block;
}

.greenix-contact-modal__view--success {
  padding: 20px 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  text-align: left;
}

.greenix-contact-success__icon {
  width: 96px;
  height: 96px;
  display: block;
  margin-bottom: 18px;
  align-self: flex-start;
}

.greenix-contact-success__title {
  font-size: 40px;
  font-weight: 300;
  color: #0c0c0c;
  margin: 0 0 14px;
  line-height: 1.15;
}

.greenix-contact-success__desc {
  color: rgba(45, 45, 45, 0.7);
  margin: 0 0 22px;
  font-weight: 300;
  font-size: 18px;
}

.greenix-contact-success__actions {
  margin-top: 22px;
  width: 100%;
}

.greenix-contact-success__close {
  width: 100%;
  min-height: 56px;
  border-radius: 48px;
}

.greenix-contact-modal__title {
  font-size: 48px;
  font-weight: 300;
  color: #000;
  margin: 0 0 18px;
}

.greenix-contact-form {
  display: block;
}

.greenix-contact-form__grid {
  display: grid;
  gap: 16px;
  margin-bottom: 16px;
}

.greenix-contact-field {
  width: 100%;
}

.greenix-contact-input,
.greenix-contact-textarea {
  width: 100%;
  border: none;
  border-radius: 48px;
  padding: 22px 20px;
  font-size: 16px;
  outline: none;
  background: #fff;
  color: #2d2d2d;
}

.greenix-contact-textarea {
  border-radius: 24px !important;
}

/* .greenix-contact-input {
  min-height: 64px;
} */

.greenix-contact-textarea {
  min-height: 160px;
  resize: none;
  padding-top: 18px;
}

.greenix-contact-input::placeholder,
.greenix-contact-textarea::placeholder {
  color: rgba(59, 180, 74, 0.6);
  font-weight: 500;
}

.greenix-contact-input:focus,
.greenix-contact-textarea:focus {
  border-color: rgba(59, 180, 74, 0.55);
  box-shadow: 0 0 0 4px rgba(59, 180, 74, 0.12);
}

.greenix-contact-consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 14px 0 14px;
  color: rgba(45, 45, 45, 0.86);
  font-size: 13px;
  line-height: 1.35;
  user-select: none;
}

.greenix-contact-consent__checkbox {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--color-green);
}

/* Checkbox hata mesajı (label sonrası) */
.greenix-contact-consent .greenix-field-error {
  margin-left: 28px;
}

.greenix-contact-input.is-invalid,
.greenix-contact-textarea.is-invalid,
.greenix-contact-consent__checkbox.is-invalid {
  box-shadow: 0 0 0 2px rgba(229, 57, 53, 0.45);
}

.greenix-field-error {
  font-size: 12px;
  line-height: 1.35;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  --webkit-transform: translateY(-4px);
  -moz-transform: translateY(-4px);
  -ms-transform: translateY(-4px);
  -o-transform: translateY(-4px);
  transform: translateY(-4px);
  margin-top: 0;
  transition: max-height 180ms ease, opacity 180ms ease, transform 180ms ease,
    margin-top 180ms ease;
}

.greenix-field-error.is-visible {
  max-height: 64px;
  opacity: 1;
  --webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  -o-transform: translateY(0);
  transform: translateY(0);
  margin-top: 8px;
}

.greenix-form-notice {
  margin-top: 14px;
  border-radius: 12px;
  padding: 12px 14px;
  font-size: 13px;
  line-height: 1.35;
  opacity: 0;
  --webkit-transform: translateY(-6px);
  -moz-transform: translateY(-6px);
  -ms-transform: translateY(-6px);
  -o-transform: translateY(-6px);
  transform: translateY(-6px);
  max-height: 0;
  overflow: hidden;
  --webkit-transition: opacity 180ms ease, transform 180ms ease,
    max-height 180ms ease;
  -moz-transition: opacity 180ms ease, transform 180ms ease,
    max-height 180ms ease;
  -ms-transition: opacity 180ms ease, transform 180ms ease,
    max-height 180ms ease;
  -o-transition: opacity 180ms ease, transform 180ms ease, max-height 180ms ease;
  transition: opacity 180ms ease, transform 180ms ease, max-height 180ms ease;
}

.greenix-form-notice.is-visible {
  opacity: 1;
  --webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  -o-transform: translateY(0);
  transform: translateY(0);
  max-height: 80px;
}

.greenix-contact-recaptcha {
  margin: 10px 0 16px;
  display: flex;
  justify-content: flex-start;
}

.greenix-contact-recaptcha .g-recaptcha {
  transform-origin: left top;
}

.greenix-contact-recaptcha__box {
  height: 74px;
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 18px;
  background: #fafafa;
}

.greenix-contact-recaptcha__text {
  font-weight: 700;
  color: #2d2d2d;
}

.greenix-contact-recaptcha__sub {
  color: rgba(45, 45, 45, 0.72);
  font-size: 13px;
}

.greenix-contact-submit {
  width: 100%;
  border: 0;
  border-radius: 28px;
  min-height: 52px;
  background: var(--color-green);
  color: #fff;
  font-weight: bold;
  cursor: pointer;
  box-shadow: 0 12px 24px rgba(59, 180, 74, 0.22);
  font-size: 20px;
}

.greenix-contact-submit:hover {
  background: #2fa53e;
}

body.greenix-contact-modal-open {
  overflow: hidden;
}

/* ============================================
   CONTACT MODAL - RESPONSIVE
   ============================================ */

/* Tablet (768px - 1023px) */
@media (min-width: 768px) and (max-width: 1023px) {
  .greenix-contact-modal {
    width: 90%;
    max-width: 90%;
    max-height: 90vh;
  }

  .greenix-contact-modal.is-centered {
    max-width: calc(100vw - 32px);
  }

  .greenix-contact-modal__inner {
    padding: 24px 24px 20px;
  }

  .greenix-contact-modal__title {
    font-size: 36px;
    margin: 0 0 16px;
  }

  .greenix-contact-success__title {
    font-size: 32px;
  }

  .greenix-contact-success__icon {
    width: 80px;
    height: 80px;
    margin-bottom: 16px;
  }

  .greenix-contact-success__desc {
    font-size: 16px;
    margin: 0 0 20px;
  }

  .greenix-contact-form__grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .greenix-contact-input,
  .greenix-contact-textarea {
    padding: 20px 18px;
    font-size: 15px;
  }

  .greenix-contact-textarea {
    min-height: 140px;
  }

  .greenix-contact-submit {
    font-size: 18px;
    min-height: 50px;
  }

  .greenix-contact-recaptcha .g-recaptcha {
    --webkit-transform: scale(0.9);
    -moz-transform: scale(0.9);
    -ms-transform: scale(0.9);
    -o-transform: scale(0.9);
    transform: scale(0.9);
    transform-origin: left top;
  }
}

/* Mobile (767px ve altı) */
@media (max-width: 767px) {
  .greenix-contact-modal {
    width: calc(100% - 32px);
    max-width: calc(100% - 32px);
    max-height: calc(100vh - 32px);
    border-radius: 16px;
    top: 50% !important;
    left: 50% !important;
    right: auto !important;
    bottom: auto !important;
    --webkit-transform: translate(-50%, -50%) translateY(20px) !important;
    -moz-transform: translate(-50%, -50%) translateY(20px) !important;
    -ms-transform: translate(-50%, -50%) translateY(20px) !important;
    -o-transform: translate(-50%, -50%) translateY(20px) !important;
    transform: translate(-50%, -50%) translateY(20px) !important;
    opacity: 0;
  }

  .greenix-contact-modal.is-open {
    --webkit-transform: translate(-50%, -50%) translateY(0) !important;
    -moz-transform: translate(-50%, -50%) translateY(0) !important;
    -ms-transform: translate(-50%, -50%) translateY(0) !important;
    -o-transform: translate(-50%, -50%) translateY(0) !important;
    transform: translate(-50%, -50%) translateY(0) !important;
    opacity: 1;
  }

  .greenix-contact-modal.is-centered {
    top: 50% !important;
    left: 50% !important;
    right: auto !important;
    --webkit-transform: translate(-50%, -50%) translateY(20px) !important;
    -moz-transform: translate(-50%, -50%) translateY(20px) !important;
    -ms-transform: translate(-50%, -50%) translateY(20px) !important;
    -o-transform: translate(-50%, -50%) translateY(20px) !important;
    transform: translate(-50%, -50%) translateY(20px) !important;
    max-width: calc(100vw - 32px);
    max-height: calc(100vh - 32px);
    border-radius: 16px;
    opacity: 0;
  }

  .greenix-contact-modal.is-centered.is-open {
    --webkit-transform: translate(-50%, -50%) translateY(0) !important;
    -moz-transform: translate(-50%, -50%) translateY(0) !important;
    -ms-transform: translate(-50%, -50%) translateY(0) !important;
    -o-transform: translate(-50%, -50%) translateY(0) !important;
    transform: translate(-50%, -50%) translateY(0) !important;
    opacity: 1;
  }

  .greenix-contact-modal__inner {
    padding: 20px 16px 20px;
    max-height: calc(100vh - 32px);
    overflow-y: auto;
  }

  .greenix-contact-modal__close {
    display: block;
    top: 12px;
    right: 12px;
  }

  .greenix-contact-modal__title {
    font-size: 28px;
    margin: 0 0 14px;
    line-height: 1.2;
  }

  .greenix-contact-modal__view--success {
    padding: 16px 0;
  }

  .greenix-contact-success__icon {
    width: 64px;
    height: 64px;
    margin-bottom: 14px;
  }

  .greenix-contact-success__title {
    font-size: 24px;
    margin: 0 0 12px;
    line-height: 1.25;
  }

  .greenix-contact-success__desc {
    font-size: 15px;
    margin: 0 0 18px;
    line-height: 1.4;
  }

  .greenix-contact-success__actions {
    margin-top: 18px;
  }

  .greenix-contact-success__close {
    min-height: 50px;
    font-size: 16px;
  }

  .greenix-contact-form__grid {
    grid-template-columns: 1fr;
    gap: 12px;
    margin-bottom: 12px;
  }

  .greenix-contact-input,
  .greenix-contact-textarea {
    padding: 18px 16px;
    font-size: 15px;
    border-radius: 40px;
  }

  .greenix-contact-textarea {
    border-radius: 20px !important;
    min-height: 120px;
    padding-top: 16px;
  }

  .greenix-contact-consent {
    margin: 12px 0 12px;
    font-size: 12px;
    gap: 8px;
  }

  .greenix-contact-consent__checkbox {
    width: 16px;
    height: 16px;
    margin-top: 1px;
    flex-shrink: 0;
  }

  .greenix-contact-consent .greenix-field-error {
    margin-left: 24px;
  }

  .greenix-contact-recaptcha {
    margin: 8px 0 14px;
    justify-content: center;
  }

  .greenix-contact-recaptcha .g-recaptcha {
    --webkit-transform: scale(0.77);
    -moz-transform: scale(0.77);
    -ms-transform: scale(0.77);
    -o-transform: scale(0.77);
    transform: scale(0.77);
    transform-origin: center top;
  }

  .greenix-contact-submit {
    font-size: 16px;
    min-height: 48px;
    border-radius: 24px;
  }

  .greenix-field-error {
    font-size: 11px;
  }

  .greenix-form-notice {
    font-size: 12px;
    padding: 10px 12px;
    margin-top: 12px;
  }
}

/* ============================================
   CONTAINER SYSTEM - Greenix WordPress Theme
   Desktop: 1920x1080 optimized
   ============================================ */

/* Container Base Styles */
.container {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  max-width: 1530px !important;
}

/* Wide Container - Geniş içerik alanları için */
.container-wide {
  max-width: 1600px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}

/* Narrow Container - Dar içerik alanları için */
.container-narrow {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}

/* Full Width Container - Tam genişlik için */
.container-full {
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 0;
  padding-right: 0;
}

/* Container with Side Padding - Yan boşluklu tam genişlik */
.container-padded {
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 40px;
  padding-right: 40px;
}

/* ============================================
   RESPONSIVE BREAKPOINTS
   ============================================ */

/* Large Desktop (1920px ve üzeri) */
@media (min-width: 1920px) {
  .container {
    max-width: 1530px;
  }

  .container-wide {
    max-width: 1600px;
  }

  .container-narrow {
    max-width: 1200px;
  }
}

/* Desktop (1440px - 1919px) */
@media (min-width: 1440px) and (max-width: 1919px) {
  .container {
    padding-left: 32px;
    padding-right: 32px;
  }

  .container-wide {
    max-width: 1500px;
    padding-left: 32px;
    padding-right: 32px;
  }

  .container-narrow {
    max-width: 1140px;
    padding-left: 32px;
    padding-right: 32px;
  }

  .container-padded {
    padding-left: 48px;
    padding-right: 48px;
  }
}

/* Laptop (1024px - 1439px) */
@media (min-width: 1024px) and (max-width: 1439px) {
  .container {
    padding-right: 24px;
    padding-left: 24px;
  }

  .container-wide {
    max-width: 1320px;
    padding-left: 24px;
    padding-right: 24px;
  }

  .container-narrow {
    max-width: 1000px;
    padding-left: 24px;
    padding-right: 24px;
  }

  .container-padded {
    padding-left: 32px;
    padding-right: 32px;
  }
}

/* Tablet (768px - 1023px) */
@media (min-width: 768px) and (max-width: 1023px) {
  .container,
  .container-wide,
  .container-narrow {
    max-width: 100%;
    padding-left: 32px;
    padding-right: 32px;
  }

  .container-padded {
    padding-left: 32px;
    padding-right: 32px;
  }
}

/* Mobile (767px ve altı) */
@media (max-width: 767px) {
  .container,
  .container-wide,
  .container-narrow {
    max-width: 100%;
    padding-left: 16px;
    padding-right: 16px;
  }

  .container-padded {
    padding-left: 20px;
    padding-right: 20px;
  }
}

/* ============================================
   CONTAINER UTILITY CLASSES
   ============================================ */

/* Container Alignment */
.container-center {
  margin-left: auto;
  margin-right: auto;
}

.container-left {
  margin-left: 0;
  margin-right: auto;
}

.container-right {
  margin-left: auto;
  margin-right: 0;
}

/* Container Spacing */
.container-spacing-none {
  padding-left: 0;
  padding-right: 0;
}

.container-spacing-sm {
  padding-left: 16px;
  padding-right: 16px;
}

.container-spacing-md {
  padding-left: 24px;
  padding-right: 24px;
}

.container-spacing-lg {
  padding-left: 40px;
  padding-right: 40px;
}

.container-spacing-xl {
  padding-left: 60px;
  padding-right: 60px;
}

.site-description {
  margin: 4px 0 0;
  color: #666;
}

.entry-title {
  margin-bottom: 8px;
}
.entry-content {
  margin: 8px 0 16px;
}

/* Erişilebilirlik yardımı */
.screen-reader-text {
  position: absolute !important;
  height: 1px;
  width: 1px;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
  white-space: nowrap;
}

/* Barlow font yardımcı sınıfları */
.barlow-thin {
  font-family: "Barlow", sans-serif;
  font-weight: 100;
  font-style: normal;
}
.barlow-extralight {
  font-family: "Barlow", sans-serif;
  font-weight: 200;
  font-style: normal;
}
.barlow-light {
  font-family: "Barlow", sans-serif;
  font-weight: 300;
  font-style: normal;
}
.barlow-regular {
  font-family: "Barlow", sans-serif;
  font-weight: 400;
  font-style: normal;
}
.barlow-medium {
  font-family: "Barlow", sans-serif;
  font-weight: 500;
  font-style: normal;
}
.barlow-semibold {
  font-family: "Barlow", sans-serif;
  font-weight: 600;
  font-style: normal;
}
.barlow-bold {
  font-family: "Barlow", sans-serif;
  font-weight: 900;
  font-style: normal;
}
.barlow-extrabold {
  font-family: "Barlow", sans-serif;
  font-weight: 800;
  font-style: normal;
}
.barlow-black {
  font-family: "Barlow", sans-serif;
  font-weight: 900;
  font-style: normal;
}
.barlow-thin-italic {
  font-family: "Barlow", sans-serif;
  font-weight: 100;
  font-style: italic;
}
.barlow-extralight-italic {
  font-family: "Barlow", sans-serif;
  font-weight: 200;
  font-style: italic;
}
.barlow-light-italic {
  font-family: "Barlow", sans-serif;
  font-weight: 300;
  font-style: italic;
}
.barlow-regular-italic {
  font-family: "Barlow", sans-serif;
  font-weight: 400;
  font-style: italic;
}
.barlow-medium-italic {
  font-family: "Barlow", sans-serif;
  font-weight: 500;
  font-style: italic;
}
.barlow-semibold-italic {
  font-family: "Barlow", sans-serif;
  font-weight: 600;
  font-style: italic;
}
.barlow-bold-italic {
  font-family: "Barlow", sans-serif;
  font-weight: 700;
  font-style: italic;
}
.barlow-extrabold-italic {
  font-family: "Barlow", sans-serif;
  font-weight: 800;
  font-style: italic;
}
.barlow-black-italic {
  font-family: "Barlow", sans-serif;
  font-weight: 900;
  font-style: italic;
}

/* ============================================
   RESPONSIVE HEADER STYLES
   Desktop stillerini koruyarak responsive hale getirir
   ============================================ */

/* Base Header Styles - Değişiklik yok */
.site-header {
  background: #fff;
  height: 120px;
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  --webkit-transition: height 0.3s cubic-bezier(0.4, 0, 0.2, 1),
    box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1),
    background-color 0.3s cubic-bezier(0.4, 0, 0.2, 1),
    overflow 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  -moz-transition: height 0.3s cubic-bezier(0.4, 0, 0.2, 1),
    box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1),
    background-color 0.3s cubic-bezier(0.4, 0, 0.2, 1),
    overflow 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  -ms-transition: height 0.3s cubic-bezier(0.4, 0, 0.2, 1),
    box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1),
    background-color 0.3s cubic-bezier(0.4, 0, 0.2, 1),
    overflow 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  -o-transition: height 0.3s cubic-bezier(0.4, 0, 0.2, 1),
    box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1),
    background-color 0.3s cubic-bezier(0.4, 0, 0.2, 1),
    overflow 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transition: height 0.3s cubic-bezier(0.4, 0, 0.2, 1),
    box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1),
    background-color 0.3s cubic-bezier(0.4, 0, 0.2, 1),
    overflow 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: height, box-shadow;
}

.site-header.is-sticky {
  height: 90px;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
  background: rgba(255, 255, 255, 0.98);
  -webkit-backdrop-filter: blur(10px);
  -moz-backdrop-filter: blur(10px);
  -ms-backdrop-filter: blur(10px);
  -o-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}

.site-header .container {
  display: flex;
  align-items: center;
  position: relative;
  gap: 60px;
  overflow: visible;
  --webkit-transition: gap 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  -moz-transition: gap 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  -ms-transition: gap 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  -o-transition: gap 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transition: gap 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: visible;
  height: 100%;
}

.site-header.is-sticky .container {
  gap: 40px;
}

.site-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  margin-bottom: -40px;
  --webkit-transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  -moz-transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  -ms-transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  -o-transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  flex-shrink: 0;
}

.site-logo img {
  --webkit-transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  -moz-transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  -ms-transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  -o-transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.site-header.is-sticky .site-logo {
  --webkit-transform: scale(0.8);
  -moz-transform: scale(0.8);
  -ms-transform: scale(0.8);
  -o-transform: scale(0.8);
  transform: scale(0.8);
  margin-bottom: -34px;
  overflow: hidden;
}

.site-header.is-sticky .site-logo img {
  --webkit-transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  -moz-transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  -ms-transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  -o-transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.site-navigation {
  display: flex;
  align-items: center;
  gap: 18px;
  height: 100%;
  max-width: 80%;
}

.main-menu {
  display: flex;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 40px;
  height: 100%;
  flex: 1;
  min-width: 0;
}

.main-menu li {
  position: relative;
  white-space: nowrap;
  height: 100%;
  display: flex;
  align-items: center;
}

.main-menu a {
  color: var(--color-gray-dark);
  font-size: 20px;
  font-weight: 400;
  --webkit-transition: color 0.2s, font-size 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  -moz-transition: color 0.2s, font-size 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  -ms-transition: color 0.2s, font-size 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  -o-transition: color 0.2s, font-size 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transition: color 0.2s, font-size 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.site-header.is-sticky .main-menu a {
  font-size: 18px;
}

.main-menu a:hover {
  color: var(--color-green);
}

.main-menu .menu-item-has-children > a {
  position: relative;
}

.main-menu > .menu-item:not(:first-child) > a::before {
  content: "";
  background-color: var(--color-green);
  width: 6px;
  height: 6px;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: -18px;
  --webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
}

.header-utils {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}

/* Mobile Header Utils - Hidden by default, visible on 1023px and below */
.header-utils-mobile {
  display: none;
}

/* Mobile Menu Icon - Hidden by default */
.mobile-menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  padding: 0;
  border: none;
  outline: none;
  background: transparent;
  cursor: pointer;
  border-radius: 8px;
  --webkit-transition: background-color 0.2s ease;
  -moz-transition: background-color 0.2s ease;
  -ms-transition: background-color 0.2s ease;
  -o-transition: background-color 0.2s ease;
  transition: background-color 0.2s ease;
  flex-shrink: 0;
}

.mobile-menu-toggle:hover {
  background: rgba(0, 0, 0, 0.05);
}

.search-icon {
  cursor: pointer;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.search-icon img {
  width: 30px;
  height: 30px;
  display: block;
}

/* Language Selector Toggle Button */
.lang-selector-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  padding: 0;
  border: none;
  outline: none;
  background: transparent;
  cursor: pointer;
  border-radius: 50%;
  --webkit-transition: background-color 0.2s ease, box-shadow 0.2s ease;
  -moz-transition: background-color 0.2s ease, box-shadow 0.2s ease;
  -ms-transition: background-color 0.2s ease, box-shadow 0.2s ease;
  -o-transition: background-color 0.2s ease, box-shadow 0.2s ease;
  transition: background-color 0.2s ease, box-shadow 0.2s ease;
}

.lang-selector-toggle:hover,
.lang-selector-toggle:focus-visible {
  background: rgba(0, 0, 0, 0.05);
}

.lang-selector-toggle img {
  width: 30px;
  height: 30px;
  display: block;
  border-radius: 50%;
  object-fit: cover;
}

/* ============================================
   HEADER SEARCH BAR
   ============================================ */
.header-search-bar {
  position: fixed;
  top: 120px;
  left: 0;
  right: 0;
  width: 100%;
  background: var(--color-gray-light);
  z-index: 99;
  --webkit-transform: translateY(-100%);
  -moz-transform: translateY(-100%);
  -ms-transform: translateY(-100%);
  -o-transform: translateY(-100%);
  transform: translateY(-100%);
  opacity: 0;
  visibility: hidden;
  --webkit-transition: transform 220ms ease, opacity 220ms ease,
    visibility 220ms ease, top 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  -moz-transition: transform 220ms ease, opacity 220ms ease,
    visibility 220ms ease, top 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  -ms-transition: transform 220ms ease, opacity 220ms ease,
    visibility 220ms ease, top 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  -o-transition: transform 220ms ease, opacity 220ms ease, visibility 220ms ease,
    top 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transition: transform 220ms ease, opacity 220ms ease, visibility 220ms ease,
    top 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform, opacity, top;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Sticky durumunda search bar pozisyonu güncellenir */
.site-header.is-sticky ~ .header-search-bar {
  top: 85px;
}

.header-search-bar.is-open {
  --webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  -o-transform: translateY(0);
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}

.header-search-form {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  padding-right: 50px;
}

.header-search-input {
  flex: 1;
  min-width: 0;
  border: none;
  outline: none;
  background: #ffffff;
  border-radius: 48px;
  padding: 14px 20px;
  font-size: 16px;
  color: #2d2d2d;
  font-family: var(--font-family-primary);
  caret-color: var(--color-green);
  --webkit-transition: box-shadow 200ms ease;
  -moz-transition: box-shadow 200ms ease;
  -ms-transition: box-shadow 200ms ease;
  -o-transition: box-shadow 200ms ease;
  transition: box-shadow 200ms ease;
}

.header-search-input::placeholder {
  color: rgba(59, 180, 74, 0.6);
  font-weight: 500;
}

.header-search-input:focus {
  --webkit-box-shadow: 0 0 0 3px rgba(59, 180, 74, 0.2);
  -moz-box-shadow: 0 0 0 3px rgba(59, 180, 74, 0.2);
  -ms-box-shadow: 0 0 0 3px rgba(59, 180, 74, 0.2);
  -o-box-shadow: 0 0 0 3px rgba(59, 180, 74, 0.2);
  box-shadow: 0 0 0 3px rgba(59, 180, 74, 0.2);
  outline: none;
}

.header-search-submit {
  border: none;
  outline: none;
  background: var(--color-green);
  color: #ffffff;
  border-radius: 48px;
  padding: 16px 20px;
  font-weight: 700;
  cursor: pointer;
}

/* ============================================
   HEADER LANGUAGE BAR
   ============================================ */
.header-lang-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  top: 120px;
  left: 0;
  right: 0;
  width: 100%;
  height: 120px;
  background: var(--color-gray-light);
  z-index: 99;
  --webkit-transform: translateY(-100%);
  -moz-transform: translateY(-100%);
  -ms-transform: translateY(-100%);
  -o-transform: translateY(-100%);
  transform: translateY(-100%);
  opacity: 0;
  visibility: hidden;
  --webkit-transition: transform 220ms ease, opacity 220ms ease,
    visibility 220ms ease, top 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  -moz-transition: transform 220ms ease, opacity 220ms ease,
    visibility 220ms ease, top 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  -ms-transition: transform 220ms ease, opacity 220ms ease,
    visibility 220ms ease, top 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  -o-transition: transform 220ms ease, opacity 220ms ease, visibility 220ms ease,
    top 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transition: transform 220ms ease, opacity 220ms ease, visibility 220ms ease,
    top 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform, opacity, top;
}

/* Sticky durumunda lang bar pozisyonu güncellenir */
.site-header.is-sticky ~ .header-lang-bar {
  top: 90px;
  height: 90px;
}

.header-lang-bar.is-open {
  --webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  -o-transform: translateY(0);
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}

.header-lang-list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}

.header-lang-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  text-decoration: none;
  color: var(--color-gray-dark);
  background: #ffffff;
  border-radius: 24px;
  --webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -ms-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
  border: 1px solid #e5e7eb;
  font-size: 16px;
  font-weight: 500;
}

.header-lang-item:hover {
  background: #f7f9fb;
  border-color: #cbd2d9;
}

.header-lang-item.is-active {
  background: #ffffff;
  color: var(--color-green);
  border-color: var(--color-green);
  border-width: 2px;
}

.header-lang-item img {
  width: 24px;
  height: 24px;
  display: block;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.header-lang-label {
  font-size: 16px;
  font-weight: 500;
  white-space: nowrap;
}

.header-search-submit:hover {
  background: #2fa53e;
}

.header-search-submit:focus {
  outline: none;
  --webkit-box-shadow: 0 0 0 3px rgba(59, 180, 74, 0.2);
  -moz-box-shadow: 0 0 0 3px rgba(59, 180, 74, 0.2);
  -ms-box-shadow: 0 0 0 3px rgba(59, 180, 74, 0.2);
  -o-box-shadow: 0 0 0 3px rgba(59, 180, 74, 0.2);
  box-shadow: 0 0 0 3px rgba(59, 180, 74, 0.2);
}

/* ============================================
   RESPONSIVE BREAKPOINTS
   ============================================ */

/* Large Desktop (1920px+) - Default styles yukarıda */

/* Desktop (1440px - 1919px) */
@media (min-width: 1440px) and (max-width: 1919px) {
  .site-header.is-sticky .container {
    gap: 32px;
  }

  .main-menu a {
    font-size: 18px;
  }

  .site-header.is-sticky .main-menu a {
    font-size: 16px;
  }

  .main-menu > .menu-item:not(:first-child) > a::before {
    left: -14px;
  }
}
@media (max-width: 1503px) {
  .site-header {
    padding-left: 20px;
  }
  .site-header .container {
    gap: 30px;
  }
  .main-menu {
    gap: 30px;
  }
}

@media (max-width: 1337px) {
  .main-menu {
    gap: 15px;
  }
}
/* Laptop Large (1280px - 1439px) */
@media (min-width: 1280px) and (max-width: 1439px) {
  .site-header.is-sticky .container {
    gap: 16px;
  }

  .main-menu a {
    font-size: 17px;
  }

  .site-header.is-sticky .main-menu a {
    font-size: 15px;
  }

  .main-menu > .menu-item:not(:first-child) > a::before {
    left: -12px;
    width: 5px;
    height: 5px;
  }

  .site-logo {
    --webkit-transform: scale(0.8);
    -moz-transform: scale(0.8);
    -ms-transform: scale(0.8);
    -o-transform: scale(0.8);
    transform: scale(0.8);
  }

  .site-header.is-sticky .site-logo {
    --webkit-transform: scale(0.85);
    -moz-transform: scale(0.85);
    -ms-transform: scale(0.85);
    -o-transform: scale(0.85);
    transform: scale(0.85);
  }
}

@media (max-width: 1079px) {
  .main-menu .menu-item-has-mega-menu > a,
  .main-menu a {
    font-size: 14px !important;
  }
  .hero-title {
    font-size: 56px !important;
  }
}

@media (max-width: 1106px) {
  .site-navigation {
    gap: 0;
  }
}

/* Laptop Medium (1024px - 1279px) */
@media (min-width: 1024px) and (max-width: 1279px) {
  .site-header {
    height: 90px;
  }
  .site-header .container {
    gap: 10px;
  }

  .header-lang-bar.is-open,
  .header-search-bar.is-open {
    top: 75px;
    height: 100px;
  }
  .header-utils {
    margin-left: 10px;
  }

  /* Hide mobile header-utils on desktop */
  .header-utils-mobile {
    display: none;
  }
  .site-header.is-sticky .container {
    gap: 0;
  }

  .main-menu {
    gap: 5px;
  }

  .main-menu a {
    font-size: 16px;
  }

  .site-header.is-sticky .main-menu a {
    font-size: 16px;
  }

  .main-menu > .menu-item:not(:first-child) > a::before {
    left: -10px;
    width: 4px;
    height: 4px;
  }
  .site-header {
    padding-left: 0;
  }
  .site-logo {
    --webkit-transform: scale(0.6);
    -moz-transform: scale(0.6);
    -ms-transform: scale(0.6);
    -o-transform: scale(0.6);
    transform: scale(0.6);
    margin-bottom: -35px;
  }

  .site-header.is-sticky .site-logo {
    --webkit-transform: scale(0.6);
    -moz-transform: scale(0.6);
    -ms-transform: scale(0.6);
    -o-transform: scale(0.6);
    transform: scale(0.6);
    margin-bottom: -35px;
  }

  .header-utils {
    gap: 3px;
  }

  .search-icon,
  .lang-selector-toggle {
    width: 36px;
    height: 36px;
  }

  .search-icon img,
  .lang-selector-toggle img {
    width: 26px;
    height: 26px;
  }
}

@media (max-width: 1157px) {
  .site-header {
    height: 80px;
  }
  .main-menu {
    gap: 0;
  }
  .main-menu .menu-item-has-mega-menu > a {
    gap: 3px;
  }
  .main-menu > .menu-item:not(:first-child) > a::before {
    display: none;
  }
  .site-header .container {
    gap: 0;
    padding: 0;
  }
  .site-logo {
    --webkit-transform: scale(0.6);
    -moz-transform: scale(0.6);
    -ms-transform: scale(0.6);
    -o-transform: scale(0.6);
    transform: scale(0.6);
    margin-bottom: -35px;
  }
}

/* Tablet & Mobile - Hide Desktop Menu, Show Mobile Toggle */
@media (max-width: 1023px) {
  .site-header {
    height: 48px;
    padding: 0;
  }

  .site-header.is-sticky {
    height: 48px;
  }

  .site-header.is-sticky .container {
    gap: inherit;
  }

  .site-header .container {
    gap: 20px;
    justify-content: space-between;
    align-items: center;
  }

  /* Mobile menu toggle - Sol */
  .mobile-menu-toggle {
    display: flex;
    order: 1;
    flex-shrink: 0;
  }

  /* Logo - Ortada */
  .site-logo {
    order: 2;
    --webkit-transform: scale(0.55);
    -moz-transform: scale(0.55);
    -ms-transform: scale(0.55);
    -o-transform: scale(0.55);
    transform: scale(0.55);
    margin-bottom: -20px;
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }

  .site-header.is-sticky .site-logo {
    --webkit-transform: scale(0.55);
    -moz-transform: scale(0.55);
    -ms-transform: scale(0.55);
    -o-transform: scale(0.55);
    transform: scale(0.55);
    margin-bottom: -20px;
  }

  .site-navigation {
    display: none;
  }

  /* Hide header-utils inside nav on mobile */
  .site-navigation .header-utils {
    display: none;
  }

  /* Show mobile header-utils on mobile */
  .header-utils-mobile {
    display: flex;
    align-items: center;
    gap: 8px;
    order: 3;
    flex-shrink: 0;
  }

  .lang-selector-toggle {
    display: none;
  }

  .search-icon {
    width: 36px;
    height: 36px;
  }

  .header-search-bar {
    top: 45px;
    height: auto;
    padding: 20px 0;
  }

  .header-search-form {
    flex-direction: column;
    padding-right: 0px;
    height: auto;
  }

  .header-search-submit,
  .header-search-input {
    font-size: 14px;
    padding: 14px 16px;
    width: 100%;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .header-search-input {
    caret-color: var(--color-green);
  }
  .site-header.is-sticky ~ .header-search-bar {
    top: 45px;
  }
  .header-lang-bar {
    top: 80px;
    height: 80px;
  }

  .header-lang-list {
    gap: 12px;
  }

  .header-lang-item {
    padding: 8px 16px;
    font-size: 14px;
  }

  .header-lang-item img {
    width: 20px;
    height: 20px;
  }
}

/* Mobile Small (767px ve altı) */
@media (max-width: 767px) {
  .site-header .container {
    gap: 12px;
    padding: 0 6px;
  }

  .header-utils {
    gap: 6px;
  }

  .search-icon,
  .mobile-menu-toggle {
    width: 32px;
    height: 32px;
  }

  .lang-selector-toggle {
    display: none;
  }

  .header-lang-bar {
    top: 70px;
    height: auto;
    min-height: 70px;
    padding: 12px 0;
  }

  .header-lang-list {
    gap: 8px;
    padding: 0 10px;
  }

  .header-lang-item {
    padding: 6px 12px;
    font-size: 13px;
  }
}

.post-sep {
  border: 0;
  border-top: 1px solid #eee;
  margin: 24px 0;
}

/* ============================================
   SEARCH RESULTS PAGE
   ============================================ */
.search-results-page {
  background: var(--color-gray-light);
  padding: 40px 0;
  padding-top: 165px;
}

/* ============================================
   GLOBAL PAGE HERO BANNER
   ============================================ */
.page-hero {
  position: relative;
  width: 100%;
  height: 400px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.page-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0) -67.87%, #3bb44a 100%);
  --webkit-transform: rotate(-180deg);
  -moz-transform: rotate(-180deg);
  -ms-transform: rotate(-180deg);
  -o-transform: rotate(-180deg);
  transform: rotate(-180deg);
  z-index: 1;
  pointer-events: none;
}

.page-hero__content {
  width: 100%;
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.page-hero__title-wrapper {
  position: relative;
  z-index: 2;
  align-self: flex-end;
  padding-bottom: 56px;
  max-width: 65%;
}

.hero-title {
  color: white;
  font-size: 96px;
  font-weight: 300;
  margin: 0;
  line-height: 1.2;
}

.page-hero__image-wrapper {
  position: relative;
  z-index: 2;
  align-self: flex-end;
  max-width: 500px;
  height: 400px;
  display: flex;
  flex-shrink: 0;
}

.page-hero__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  flex-shrink: 0;
}

.page-hero__image-wrapper .greenix-image-placeholder {
  width: 100%;
  height: 100%;
  border-radius: 0;
}

/* ============================================
   PAGE HERO - RESPONSIVE
   ============================================ */

@media (max-width: 1103px) {
  .hero-title {
    font-size: 54px !important;
  }
}

@media (max-width: 1023px) {
  .page-hero__title-wrapper {
    max-width: none;
  }
}
/* Tablet (768px - 1023px) */
@media (min-width: 768px) and (max-width: 1023px) {
  .page-hero {
    height: 350px;
  }

  .page-hero__title-wrapper {
    padding-bottom: 30px;
    width: 100%;
  }

  .page-hero__image-wrapper {
    max-width: 100%;
    height: 250px;
    align-self: flex-end;
  }
}

/* Mobile (767px ve altı) */
@media (max-width: 767px) {
  .page-hero {
    height: auto;
  }

  .page-hero__content {
    flex-direction: column;
    align-items: flex-start;
  }

  .page-hero__title-wrapper {
    padding-bottom: 20px;
    width: 100%;
  }

  .hero-title {
    font-size: 28px !important;
    line-height: 1.2;
    margin-top: 15px;
  }

  .page-hero__image-wrapper {
    max-width: 100%;
    height: 180px;
    align-self: flex-end;
  }
}

/* ============================================
   ALTERNATING CONTENT SECTION
   Global reusable component for image-text alternating layouts
   ============================================ */
.content-page {
  padding: 0;
}

.content-page .breadcrumb {
  margin-top: 40px;
}

.alternating-content-section {
  margin: 40px 0;
}

.alternating-content-section:first-of-type {
  margin-top: 40px;
}

.alternating-content-section__content {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 40px;
  align-items: center;
}

/* Accordion ile birlikte kullanıldığında */
.alternating-content-section--with-accordion
  .alternating-content-section__content {
  align-items: flex-start;
}

.alternating-content-section__right {
  display: flex;
  flex-direction: column;
  gap: 0;
  align-self: flex-start;
}

.alternating-content-section--image-right
  .alternating-content-section__content {
  grid-template-columns: 1fr auto;
}

.alternating-content-section--image-right .alternating-content-section__text {
  order: 1;
}

.alternating-content-section--image-right .alternating-content-section__image {
  order: 2;
}

.alternating-content-section__image {
  width: 500px;
  max-width: 500px;
  height: 400px;
  border-radius: 24px;
  overflow: hidden;
  position: relative;
}

/* Accordion ile birlikte kullanıldığında görsel yüksekliğini text'e göre ayarla */
.alternating-content-section--with-accordion
  .alternating-content-section__image {
  height: auto;
  max-height: fit-content;
  align-self: flex-start;
  width: 350px;
  max-width: 350px;
  min-height: auto;
}

.alternating-content-section--with-accordion
  .alternating-content-section__image
  img,
.alternating-content-section--with-accordion
  .alternating-content-section__image
  .greenix-image-placeholder {
  height: auto;
  width: 100%;
  object-fit: contain;
  display: block;
}

/* Gerçek görsel için - tam genişlik ve yükseklik */
.alternating-content-section__image img:not(.greenix-image-placeholder__icon) {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Placeholder icon için - sabit boyut */
.alternating-content-section__image .greenix-image-placeholder__icon {
  width: 182px;
  height: 182px;
  object-fit: contain;
  display: block;
}

.alternating-content-section__image .greenix-image-placeholder {
  width: 100%;
  height: 100%;
  border-radius: 12px;
}

.alternating-content-section__text {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.alternating-content-section__title {
  color: var(--color-green);
  font-family: var(--font-family-primary);
  font-size: 48px;
  font-weight: 700;
  line-height: 1.2;
  margin: 0;
}

.alternating-content-section__paragraph {
  color: var(--color-gray-dark);
  font-family: var(--font-family-primary);
  font-size: 20px;
  font-weight: 400;
  line-height: 1.6;
  margin: 0;
}

/* Responsive - Alternating Content Section */
/* Tablet (768px - 1023px) */
@media (min-width: 768px) and (max-width: 1023px) {
  .alternating-content-section {
    margin: 60px 0;
  }

  .alternating-content-section:first-of-type {
    margin-top: 30px;
  }

  .alternating-content-section .container {
    padding-left: 16px;
    padding-right: 16px;
  }

  .alternating-content-section__content {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .alternating-content-section--image-right
    .alternating-content-section__content {
    grid-template-columns: 1fr;
  }

  .alternating-content-section--image-right .alternating-content-section__text {
    order: 2;
  }

  .alternating-content-section--image-right
    .alternating-content-section__image {
    order: 1;
  }

  .alternating-content-section__image {
    width: 100%;
    max-width: 100%;
    height: 350px;
  }

  .alternating-content-section--with-accordion
    .alternating-content-section__image {
    width: 100%;
    max-width: 100%;
    height: auto;
  }

  .alternating-content-section--with-accordion
    .alternating-content-section__content {
    grid-template-columns: 1fr;
  }

  .alternating-content-section__title {
    font-size: 36px;
  }

  .alternating-content-section__paragraph {
    font-size: 18px;
  }
}

/* Mobile (max-width: 767px) */
@media (max-width: 767px) {
  .alternating-content-section {
    margin: 0;
  }

  .alternating-content-section:first-of-type {
    margin-top: 20px;
  }

  .alternating-content-section .container {
    padding-left: 16px;
    padding-right: 16px;
  }

  .alternating-content-section__content {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .alternating-content-section--image-right
    .alternating-content-section__content {
    grid-template-columns: 1fr;
  }

  .alternating-content-section--image-right .alternating-content-section__text {
    order: 2;
  }

  .alternating-content-section--image-right
    .alternating-content-section__image {
    order: 1;
  }

  .alternating-content-section__image {
    width: 100%;
    max-width: 100%;
    height: 250px;
    border-radius: 16px;
  }

  .alternating-content-section--with-accordion
    .alternating-content-section__image {
    width: 100%;
    max-width: 100%;
    height: auto;
  }

  .alternating-content-section__image .greenix-image-placeholder__icon {
    width: 120px;
    height: 120px;
  }

  .alternating-content-section__text {
    gap: 16px;
  }

  .alternating-content-section__title {
    font-size: 24px;
    line-height: 1.3;
  }

  .alternating-content-section__paragraph {
    font-size: 16px;
    line-height: 1.5;
  }

  .content-page .breadcrumb {
    padding: 0 16px;
    margin-top: 20px;
    margin-bottom: 20px;
  }
}

.search-results-page .what-did-say-wrapper {
  padding-top: 100px;
}

.header-search-bar.is-on-search-results {
  background: var(--color-medium-gray);
}

.breadcrumb {
  background: #ffffff;
  border-radius: 48px;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 40px 0;
  font-size: 16px;
}

.breadcrumb a {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: rgba(45, 45, 45, 0.7);
  --webkit-transition: color 0.3s;
  transition: color 0.3s;
}

.breadcrumb a:hover {
  color: #3bb44a;
}

.breadcrumb a img {
  width: 24px;
  height: 24px;
  display: block;
}

.breadcrumb .separator,
.breadcrumb__separator {
  color: rgba(45, 45, 45, 0.4);
}

.breadcrumb .current,
.breadcrumb__item {
  color: rgba(45, 45, 45, 0.7);
}

.breadcrumb .current,
.breadcrumb__item--current {
  color: #2d2d2d;
  font-weight: 600;
}

.search-results {
  background: #ffffff;
  border-radius: 24px;
  padding-bottom: 20px;
}

.search-result-item {
  margin-bottom: 32px;
  padding: 20px;
}

.search-result-item:last-child {
  margin-bottom: 0;
}

.search-result-item__text {
  font-size: 16px;
  line-height: 1.6;
  color: #2d2d2d;
  margin: 0 0 16px;
}

.search-result-item__text:last-child {
  margin-bottom: 0;
}

.search-result-item__highlight {
  color: var(--color-green);
}

.search-results__empty {
  text-align: center;
  padding: 60px 20px;
  color: rgba(45, 45, 45, 0.7);
}

/* ============================================
   PAGINATION STYLES
   ============================================ */

/* Genel pagination container */
.pagination,
.search-results__pagination {
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid #e0e0e0;
}

/* WordPress paginate_links() list yapısı */
.page-numbers {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.page-numbers li {
  margin: 0;
  padding: 0;
  list-style: none;
}

/* Pagination linkleri ve sayfa numaraları */
.page-numbers a,
.page-numbers span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  height: 44px;
  padding: 0 16px;
  font-size: 15px;
  font-weight: 500;
  color: var(--color-gray-dark);
  text-decoration: none;
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  transition: all 0.3s ease;
  font-family: var(--font-family-primary);
}

/* Hover durumu */
.page-numbers a:hover {
  background: var(--color-light-green);
  border-color: var(--color-green);
  color: var(--color-green);
  box-shadow: 0 4px 8px rgba(59, 180, 74, 0.15);
}

/* Aktif sayfa */
.page-numbers .current {
  background: var(--color-green);
  border-color: var(--color-green);
  color: #fff;
  font-weight: 600;
  cursor: default;
}

/* Önceki/Sonraki butonları */
.page-numbers .prev,
.page-numbers .next {
  min-width: auto;
  padding: 0 20px;
  font-weight: 600;
  background: var(--color-green);
  border-color: var(--color-green);
  color: #fff;
}

.page-numbers .prev:hover,
.page-numbers .next:hover {
  background: var(--color-green);
  border-color: var(--color-green);
  color: #fff;
  box-shadow: 0 4px 12px rgba(59, 180, 74, 0.25);
}

/* Devre dışı butonlar (dots) */
.page-numbers .dots,
.page-numbers .page-numbers.dots {
  background: transparent;
  border: none;
  color: #999;
  cursor: default;
  min-width: auto;
  padding: 0 8px;
}

.page-numbers .dots:hover {
  background: transparent;
  border: none;
  transform: none;
  box-shadow: none;
}

/* Responsive - Tablet */
@media (max-width: 1023px) {
  .pagination,
  .search-results__pagination {
    margin-top: 32px;
    padding-top: 20px;
  }

  .page-numbers {
    gap: 6px;
  }

  .page-numbers a,
  .page-numbers span {
    min-width: 40px;
    height: 40px;
    padding: 0 12px;
    font-size: 14px;
  }

  .page-numbers .prev,
  .page-numbers .next {
    padding: 0 16px;
    font-size: 14px;
  }
}

/* Responsive - Mobile */
@media (max-width: 767px) {
  .pagination,
  .search-results__pagination {
    margin-top: 24px;
    padding-top: 16px;
    border-top: 1px solid #e0e0e0;
  }

  .page-numbers {
    gap: 4px;
  }

  .page-numbers a,
  .page-numbers span {
    min-width: 36px;
    height: 36px;
    padding: 0 10px;
    font-size: 13px;
    border-radius: 6px;
  }

  .page-numbers .prev,
  .page-numbers .next {
    padding: 0 12px;
    font-size: 13px;
    min-width: auto;
  }

  /* Mobilde çok sayfa varsa bazılarını gizle */
  .page-numbers
    li:not(:first-child):not(:last-child):not(.current):not(.prev):not(
      .next
    ):not(.dots) {
    display: none;
  }

  /* İlk, son, önceki, sonraki ve aktif sayfayı göster */
  .page-numbers li:first-child,
  .page-numbers li:last-child,
  .page-numbers li.current,
  .page-numbers li.prev,
  .page-numbers li.next,
  .page-numbers li.dots {
    display: list-item;
  }

  /* Aktif sayfanın yanındaki sayfaları da göster */
  .page-numbers li.current + li:not(.next):not(.dots),
  .page-numbers li.current + li + li:not(.next):not(.dots),
  .page-numbers li:not(.prev):not(.dots) + li.current,
  .page-numbers
    li:not(.prev):not(.dots)
    + li:not(.prev):not(.dots)
    + li.current {
    display: list-item;
  }
}

/* Çok küçük ekranlar */
@media (max-width: 480px) {
  .page-numbers a,
  .page-numbers span {
    min-width: 32px;
    height: 32px;
    padding: 0 8px;
    font-size: 12px;
  }

  .page-numbers .prev,
  .page-numbers .next {
    padding: 0 10px;
    font-size: 12px;
  }
}

@media (max-width: 1023px) {
  .search-results-page {
    padding-top: 140px;
  }
  .breadcrumb {
    margin: 20px 0;
    height: 40px;
    font-size: 12px;
  }
}

/* Tablet (768px - 1023px) */
@media (min-width: 768px) and (max-width: 1023px) {
  .search-results-page .breadcrumb {
    padding: 14px 20px;
    margin: 32px 0;
    font-size: 15px;
  }

  .search-result-item {
    padding: 18px;
    margin-bottom: 24px;
  }

  .search-result-item__text {
    font-size: 15px;
  }
}

/* Mobile (767px ve altı) */
@media (max-width: 767px) {
  .search-results-page .breadcrumb {
    padding: 12px 16px;
    margin: 24px 0;
    font-size: 14px;
  }

  .search-results {
    border-radius: 16px;
  }

  .search-result-item {
    padding: 16px;
    margin-bottom: 20px;
  }

  .search-result-item__text {
    font-size: 14px;
  }

  .search-results__empty {
    padding: 40px 16px;
    font-size: 14px;
  }

  /* Breadcrumb current item truncate */
  .breadcrumb {
    min-height: 40px;
  }

  .breadcrumb__item--current {
    max-width: calc(100vw - 120px);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    display: inline-block;
    vertical-align: middle;
    flex-shrink: 1;
    min-width: 0;
  }
}

.single-product-social-media-banner {
  background-color: #fff;
  border-radius: 12px;
  margin-top: 50px;
}

@media (max-width: 345px) {
  .site-logo {
    width: auto;
    height: auto;
  }
  .site-logo img {
    width: 100%;
    height: 100%;
  }
}

@media (max-width: 1285px) {
  .site-navigation {
    gap: 8px;
  }
}
@media (max-width: 1133px) {
  .site-navigation {
    margin-left: -30px;
  }
  .main-menu > a {
    font-size: 14px;
    gap: 2px !important;
  }
}
