/* =========================================================
   GEDİZ JERSEY SÜT ÇİFTLİĞİ
   Ana Stil Dosyası
========================================================= */

/* =========================================================
   1. ROOT / DEĞİŞKENLER
========================================================= */

:root {
  --green-950: #10291d;
  --green-900: #173b29;
  --green-800: #214d35;
  --green-700: #2b6142;
  --green-600: #397b54;
  --green-500: #4c9368;
  --green-200: #cfe3d5;
  --green-100: #e8f2eb;

  --cream-50: #fffdf8;
  --cream-100: #faf6ed;
  --cream-200: #f2eadc;
  --cream-300: #e8dcc9;

  --brown-900: #3e2d1f;
  --brown-700: #6f5741;
  --brown-500: #a08264;

  --gold-500: #c99a4d;
  --gold-400: #dcb66d;

  --white: #ffffff;
  --black: #121914;

  --text-dark: #1d2d24;
  --text-medium: #5d6b62;
  --text-light: #879189;

  --border-light: rgba(24, 61, 42, 0.12);
  --border-white: rgba(255, 255, 255, 0.18);

  --shadow-small: 0 10px 30px rgba(16, 41, 29, 0.08);
  --shadow-medium: 0 22px 55px rgba(16, 41, 29, 0.14);
  --shadow-large: 0 35px 90px rgba(8, 30, 20, 0.22);

  --radius-small: 12px;
  --radius-medium: 22px;
  --radius-large: 34px;
  --radius-full: 999px;

  --container-width: 1240px;

  --font-title: "DM Serif Display", Georgia, serif;
  --font-body: "Manrope", Arial, sans-serif;

  --transition-fast: 0.25s ease;
  --transition-normal: 0.4s ease;
  --transition-slow: 0.75s cubic-bezier(0.22, 1, 0.36, 1);
}

/* =========================================================
   2. RESET
========================================================= */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  min-height: 100vh;
  overflow-x: hidden;
  background: var(--cream-50);
  color: var(--text-dark);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

img,
video {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

button,
input,
textarea,
select {
  font: inherit;
}

button {
  border: 0;
  cursor: pointer;
}

::selection {
  color: var(--white);
  background: var(--green-700);
}

/* =========================================================
   3. GENEL SINIFLAR
========================================================= */

.container {
  width: min(calc(100% - 40px), var(--container-width));
  margin-inline: auto;
}

.section {
  position: relative;
  padding: 120px 0;
}

.section-heading {
  max-width: 680px;
}

.section-heading.centered {
  margin-inline: auto;
  text-align: center;
}

.section-subtitle {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: var(--green-700);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 2.2px;
  text-transform: uppercase;
}

.section-subtitle::before {
  width: 30px;
  height: 1px;
  content: "";
  background: currentColor;
}

.section-subtitle.light {
  color: rgba(255, 255, 255, 0.78);
}

.section-heading h2,
.stats-header h2 {
  color: var(--green-950);
  font-family: var(--font-title);
  font-size: clamp(42px, 5vw, 70px);
  font-weight: 400;
  line-height: 1.02;
  letter-spacing: -1.8px;
}

.section-heading h2 span,
.stats-header h2 span {
  color: var(--green-600);
  font-style: italic;
}

.section-heading > p {
  max-width: 590px;
  margin-top: 22px;
  color: var(--text-medium);
  font-size: 17px;
}

.section-heading.centered > p {
  margin-inline: auto;
}

/* =========================================================
   4. BUTONLAR
========================================================= */

.btn {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  padding: 14px 24px;
  border: 1px solid transparent;
  border-radius: var(--radius-full);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.2px;
  transition:
    transform var(--transition-fast),
    background var(--transition-fast),
    color var(--transition-fast),
    border-color var(--transition-fast),
    box-shadow var(--transition-fast);
}

.btn:hover {
  transform: translateY(-3px);
}

.btn i {
  transition: transform var(--transition-fast);
}

.btn:hover i {
  transform: translateX(4px);
}

.btn-primary {
  color: var(--white);
  background: var(--green-800);
  box-shadow: 0 15px 35px rgba(23, 59, 41, 0.2);
}

.btn-primary:hover {
  background: var(--green-950);
  box-shadow: 0 18px 42px rgba(23, 59, 41, 0.28);
}

.btn-light {
  color: var(--green-950);
  background: var(--white);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.15);
}

.btn-light:hover {
  background: var(--cream-100);
}

.btn-outline-light {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
}

.btn-outline-light:hover {
  color: var(--green-950);
  border-color: var(--white);
  background: var(--white);
}

.btn-whatsapp {
  color: var(--white);
  background: #1fa855;
  box-shadow: 0 18px 40px rgba(31, 168, 85, 0.25);
}

.btn-whatsapp:hover {
  background: #168845;
}

/* =========================================================
   5. SAYFA YÜKLEME
========================================================= */

.page-loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--cream-100);
  transition:
    opacity 0.6s ease,
    visibility 0.6s ease;
}

.page-loader.hidden {
  opacity: 0;
  visibility: hidden;
}

.loader-content {
  width: min(260px, calc(100% - 50px));
  text-align: center;
}

.loader-logo {
  width: 92px;
  height: 92px;
  margin: 0 auto 18px;
  object-fit: contain;
  animation: loaderPulse 1.5s ease-in-out infinite;
}

.loader-text {
  display: block;
  margin-bottom: 16px;
  color: var(--green-900);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 1.3px;
}

.loader-line {
  width: 100%;
  height: 3px;
  overflow: hidden;
  border-radius: var(--radius-full);
  background: var(--green-100);
}

.loader-line span {
  width: 50%;
  height: 100%;
  display: block;
  border-radius: inherit;
  background: var(--green-700);
  animation: loaderMove 1.2s ease-in-out infinite;
}

@keyframes loaderPulse {
  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.07);
  }
}

@keyframes loaderMove {
  from {
    transform: translateX(-110%);
  }

  to {
    transform: translateX(210%);
  }
}

/* =========================================================
   6. SCROLL PROGRESS
========================================================= */

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10000;
  width: 100%;
  height: 3px;
  pointer-events: none;
}

.scroll-progress span {
  width: 0;
  height: 100%;
  display: block;
  background: linear-gradient(
    90deg,
    var(--green-600),
    var(--gold-400)
  );
}

/* =========================================================
   7. TOPBAR
========================================================= */

.topbar {
  position: relative;
  z-index: 1002;
  color: rgba(255, 255, 255, 0.82);
  background: var(--green-950);
  font-size: 12px;
}

.topbar-content {
  min-height: 38px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.topbar-info,
.topbar-social {
  display: flex;
  align-items: center;
  gap: 16px;
}

.topbar-info a,
.topbar-info span,
.topbar-social a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.topbar-info a,
.topbar-social a {
  transition: color var(--transition-fast);
}

.topbar-info a:hover,
.topbar-social a:hover {
  color: var(--white);
}

.topbar-divider {
  width: 1px;
  height: 14px;
  background: rgba(255, 255, 255, 0.22);
}

/* =========================================================
   8. HEADER / NAVBAR
========================================================= */

.main-header {
  position: absolute;
  top: 38px;
  left: 0;
  z-index: 1001;
  width: 100%;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  transition:
    background var(--transition-normal),
    box-shadow var(--transition-normal),
    transform var(--transition-normal),
    top var(--transition-normal);
}

.main-header.scrolled {
  position: fixed;
  top: 0;
  background: rgba(255, 253, 248, 0.94);
  border-bottom-color: var(--border-light);
  box-shadow: 0 12px 35px rgba(16, 41, 29, 0.08);
  backdrop-filter: blur(18px);
}

.main-header.header-hidden {
  transform: translateY(-110%);
}

.navbar {
  min-height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  flex-shrink: 0;
}

.brand-logo {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
}

.brand-logo img {
  width: 88%;
  height: 88%;
  object-fit: contain;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}

.brand-text strong {
  color: var(--white);
  font-family: var(--font-title);
  font-size: 23px;
  font-weight: 400;
}

.brand-text span {
  margin-top: 5px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 2.4px;
  text-transform: uppercase;
}

.main-header.scrolled .brand-logo {
  border-color: var(--border-light);
  background: var(--green-100);
}

.main-header.scrolled .brand-text strong {
  color: var(--green-950);
}

.main-header.scrolled .brand-text span {
  color: var(--green-700);
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 31px;
}

.nav-link {
  position: relative;
  padding: 31px 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  font-weight: 700;
  transition: color var(--transition-fast);
}

.nav-link::after {
  position: absolute;
  left: 0;
  bottom: 24px;
  width: 0;
  height: 2px;
  content: "";
  background: var(--white);
  transition: width var(--transition-fast);
}

.nav-link:hover,
.nav-link.active {
  color: var(--white);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.main-header.scrolled .nav-link {
  color: var(--text-medium);
}

.main-header.scrolled .nav-link:hover,
.main-header.scrolled .nav-link.active {
  color: var(--green-900);
}

.main-header.scrolled .nav-link::after {
  background: var(--green-700);
}

.navbar-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.navbar-cta {
  min-height: 46px;
  padding: 11px 19px;
  font-size: 12px;
}

.main-header:not(.scrolled) .navbar-cta {
  color: var(--green-950);
  background: var(--white);
}

.menu-toggle {
  width: 47px;
  height: 47px;
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.13);
}

.menu-toggle span {
  width: 20px;
  height: 2px;
  display: block;
  border-radius: 2px;
  background: var(--white);
  transition:
    transform var(--transition-fast),
    opacity var(--transition-fast);
}

.main-header.scrolled .menu-toggle {
  background: var(--green-100);
}

.main-header.scrolled .menu-toggle span {
  background: var(--green-900);
}

.menu-toggle.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* =========================================================
   9. MOBİL MENÜ
========================================================= */

.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  z-index: -1;
  width: min(390px, 100%);
  height: 100vh;
  padding: 120px 36px 40px;
  opacity: 0;
  visibility: hidden;
  transform: translateX(100%);
  background: var(--cream-50);
  box-shadow: -20px 0 60px rgba(16, 41, 29, 0.16);
  transition:
    opacity var(--transition-normal),
    visibility var(--transition-normal),
    transform var(--transition-slow);
}

.mobile-menu.open {
  z-index: 1000;
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

.mobile-menu nav {
  display: flex;
  flex-direction: column;
}

.mobile-menu nav a {
  padding: 16px 0;
  border-bottom: 1px solid var(--border-light);
  color: var(--green-950);
  font-family: var(--font-title);
  font-size: 30px;
}

.mobile-menu nav a.active {
  color: var(--green-600);
}

.mobile-menu-contact {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 35px;
}

.mobile-menu-contact a {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-medium);
  font-size: 13px;
  font-weight: 700;
}

/* =========================================================
   10. HERO
========================================================= */

.hero {
  position: relative;
  min-height: 940px;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: var(--white);
  background: var(--green-950);
}

.hero-media {
  position: absolute;
  inset: 0;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.02);
  animation: heroZoom 14s ease-in-out infinite alternate;
}

@keyframes heroZoom {
  from {
    transform: scale(1.02);
  }

  to {
    transform: scale(1.09);
  }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      rgba(9, 29, 19, 0.92) 0%,
      rgba(9, 29, 19, 0.72) 47%,
      rgba(9, 29, 19, 0.3) 100%
    ),
    linear-gradient(
      180deg,
      rgba(7, 27, 17, 0.2) 0%,
      rgba(7, 27, 17, 0.15) 65%,
      rgba(7, 27, 17, 0.85) 100%
    );
}

.hero-grain {
  position: absolute;
  inset: 0;
  opacity: 0.06;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='.8'/%3E%3C/svg%3E");
}

.hero-decoration {
  position: absolute;
  z-index: 1;
  border-radius: 50%;
  filter: blur(2px);
  pointer-events: none;
}

.hero-decoration-one {
  top: 18%;
  right: -160px;
  width: 450px;
  height: 450px;
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.hero-decoration-two {
  right: 70px;
  bottom: -220px;
  width: 520px;
  height: 520px;
  border: 1px solid rgba(255, 255, 255, 0.09);
}

.hero-container {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 390px;
  align-items: center;
  gap: 90px;
  padding-top: 135px;
  padding-bottom: 100px;
}

.hero-content {
  max-width: 730px;
}

.hero-badge {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 11px;
  margin-bottom: 28px;
  padding: 7px 15px 7px 8px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.09);
  backdrop-filter: blur(12px);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.badge-icon {
  width: 31px;
  height: 31px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--green-950);
  background: var(--cream-100);
}

.hero-title {
  max-width: 770px;
  font-family: var(--font-title);
  font-size: clamp(65px, 7vw, 112px);
  font-weight: 400;
  line-height: 0.91;
  letter-spacing: -4px;
}

.hero-title span {
  display: block;
  color: var(--cream-300);
  font-style: italic;
}

.hero-description {
  max-width: 650px;
  margin-top: 30px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 17px;
  line-height: 1.85;
}

.hero-buttons {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.hero-features {
  display: flex;
  align-items: center;
  gap: 0;
  margin-top: 55px;
}

.hero-feature {
  min-width: 145px;
  display: flex;
  flex-direction: column;
  padding: 0 28px;
  border-left: 1px solid rgba(255, 255, 255, 0.18);
}

.hero-feature:first-child {
  padding-left: 0;
  border-left: 0;
}

.feature-number {
  font-family: var(--font-title);
  font-size: 28px;
  line-height: 1;
}

.feature-label {
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1.6px;
  text-transform: uppercase;
}

/* Hero ürün kartı */

.hero-card {
  align-self: end;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius-large);
  background: rgba(255, 255, 255, 0.12);
  box-shadow: var(--shadow-large);
  backdrop-filter: blur(20px);
}

.hero-card-image {
  position: relative;
  height: 330px;
  overflow: hidden;
}

.hero-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.hero-card:hover .hero-card-image img {
  transform: scale(1.07);
}

.hero-card-tag {
  position: absolute;
  top: 18px;
  left: 18px;
  padding: 8px 13px;
  border-radius: var(--radius-full);
  color: var(--green-950);
  background: var(--cream-100);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 1.4px;
  text-transform: uppercase;
}

.hero-card-content {
  padding: 28px;
}

.product-category,
.product-small-title {
  color: rgba(255, 255, 255, 0.58);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 1.7px;
  text-transform: uppercase;
}

.hero-card-content h2 {
  margin-top: 7px;
  font-family: var(--font-title);
  font-size: 38px;
  font-weight: 400;
}

.hero-card-content p {
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 13px;
  line-height: 1.7;
}

.hero-card-content a {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-top: 20px;
  color: var(--white);
  font-size: 12px;
  font-weight: 800;
}

.hero-card-content a i {
  transition: transform var(--transition-fast);
}

.hero-card-content a:hover i {
  transform: translate(3px, -3px);
}

.scroll-down {
  position: absolute;
  z-index: 3;
  left: 50%;
  bottom: 26px;
  display: flex;
  align-items: center;
  gap: 11px;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.62);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.scroll-mouse {
  width: 22px;
  height: 34px;
  display: flex;
  justify-content: center;
  padding-top: 7px;
  border: 1px solid rgba(255, 255, 255, 0.44);
  border-radius: 20px;
}

.scroll-mouse span {
  width: 3px;
  height: 7px;
  border-radius: 4px;
  background: var(--white);
  animation: mouseScroll 1.5s ease-in-out infinite;
}

@keyframes mouseScroll {
  0% {
    opacity: 0;
    transform: translateY(0);
  }

  40% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    transform: translateY(10px);
  }
}

/* =========================================================
   11. GÜVEN ŞERİDİ
========================================================= */

.trust-strip {
  position: relative;
  z-index: 4;
  background: var(--white);
  box-shadow: 0 20px 55px rgba(16, 41, 29, 0.06);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.trust-item {
  min-height: 150px;
  display: flex;
  align-items: center;
  gap: 17px;
  padding: 30px;
  border-left: 1px solid var(--border-light);
}

.trust-item:first-child {
  border-left: 0;
}

.trust-icon {
  width: 52px;
  height: 52px;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--green-700);
  background: var(--green-100);
  font-size: 19px;
}

.trust-item strong {
  display: block;
  color: var(--green-950);
  font-size: 14px;
}

.trust-item span {
  display: block;
  margin-top: 4px;
  color: var(--text-light);
  font-size: 11px;
  line-height: 1.55;
}

/* =========================================================
   12. HAKKIMIZDA
========================================================= */

.about-section {
  overflow: hidden;
  background:
    radial-gradient(
      circle at 100% 0%,
      rgba(76, 147, 104, 0.09),
      transparent 30%
    ),
    var(--cream-50);
}

.about-grid {
  display: grid;
  grid-template-columns: 0.93fr 1fr;
  align-items: center;
  gap: 100px;
}

.about-visual {
  position: relative;
  min-height: 690px;
}

.about-main-image {
  position: absolute;
  inset: 0 70px 0 0;
  overflow: hidden;
  border-radius: 180px 180px var(--radius-large) var(--radius-large);
  box-shadow: var(--shadow-large);
}

.about-main-image img,
.about-floating-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-floating-image {
  position: absolute;
  right: 0;
  bottom: 60px;
  width: 225px;
  height: 285px;
  overflow: hidden;
  border: 10px solid var(--cream-50);
  border-radius: 120px 120px var(--radius-medium) var(--radius-medium);
  box-shadow: var(--shadow-medium);
}

.about-experience {
  position: absolute;
  top: 90px;
  right: 0;
  width: 138px;
  height: 138px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  border-radius: 50%;
  color: var(--white);
  background: var(--green-800);
  box-shadow: var(--shadow-medium);
  animation: floatBadge 4s ease-in-out infinite;
}

@keyframes floatBadge {
  0%,
  100% {
    transform: translateY(0) rotate(-6deg);
  }

  50% {
    transform: translateY(-12px) rotate(-2deg);
  }
}

.about-experience strong {
  font-family: var(--font-title);
  font-size: 28px;
  font-weight: 400;
  line-height: 1;
}

.about-experience span {
  margin-top: 5px;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 1.8px;
  text-transform: uppercase;
}

.about-lead {
  margin-top: 28px;
  color: var(--green-900);
  font-size: 20px;
  font-weight: 600;
  line-height: 1.7;
}

.about-text {
  margin-top: 18px;
  color: var(--text-medium);
}

.about-list {
  display: grid;
  gap: 22px;
  margin: 32px 0 36px;
}

.about-list-item {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 15px;
}

.about-list-item > span {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--green-700);
  font-size: 12px;
}

.about-list-item strong {
  color: var(--green-950);
  font-size: 15px;
}

.about-list-item p {
  margin-top: 3px;
  color: var(--text-light);
  font-size: 13px;
  line-height: 1.55;
}

/* =========================================================
   13. İSTATİSTİK
========================================================= */

.stats-section {
  position: relative;
  overflow: hidden;
  padding: 105px 0;
  color: var(--white);
  background:
    radial-gradient(
      circle at 0% 0%,
      rgba(255, 255, 255, 0.08),
      transparent 28%
    ),
    var(--green-950);
}

.stats-section::before,
.stats-section::after {
  position: absolute;
  content: "";
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 50%;
}

.stats-section::before {
  top: -250px;
  right: -100px;
  width: 520px;
  height: 520px;
}

.stats-section::after {
  left: -140px;
  bottom: -320px;
  width: 600px;
  height: 600px;
}

.stats-header {
  position: relative;
  z-index: 1;
  max-width: 720px;
  margin-bottom: 60px;
}

.stats-header h2 {
  color: var(--white);
}

.stats-header h2 span {
  color: var(--cream-300);
}

.stats-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.stat-item {
  position: relative;
  padding: 22px 38px;
  border-left: 1px solid rgba(255, 255, 255, 0.14);
}

.stat-item:first-child {
  padding-left: 0;
  border-left: 0;
}

.stat-item strong,
.stat-symbol {
  display: inline;
  font-family: var(--font-title);
  font-size: clamp(54px, 5vw, 78px);
  font-weight: 400;
  line-height: 1;
}

.stat-symbol {
  color: var(--gold-400);
  font-size: 35px;
}

.stat-item p {
  margin-top: 13px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 1.8px;
  text-transform: uppercase;
}

/* =========================================================
   14. ÜRÜNLER
========================================================= */

.products-section {
  background: var(--cream-100);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  margin-top: 65px;
}

.product-card {
  overflow: hidden;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-medium);
  background: var(--white);
  box-shadow: var(--shadow-small);
  transition:
    transform var(--transition-slow),
    box-shadow var(--transition-normal);
}

.product-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-medium);
}

.product-card.featured {
  grid-column: span 2;
}

.product-image {
  position: relative;
  height: 310px;
  overflow: hidden;
  background: var(--green-100);
}

.product-card.featured .product-image {
  height: 370px;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.product-card:hover .product-image img {
  transform: scale(1.07);
}

.product-label {
  position: absolute;
  top: 18px;
  left: 18px;
  padding: 8px 13px;
  border-radius: var(--radius-full);
  color: var(--white);
  background: var(--green-800);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 1.3px;
  text-transform: uppercase;
}

.product-content {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 18px;
  padding: 26px;
}

.product-number {
  color: var(--green-500);
  font-family: var(--font-title);
  font-size: 18px;
}

.product-content .product-small-title {
  color: var(--green-600);
}

.product-content h3 {
  margin-top: 5px;
  color: var(--green-950);
  font-family: var(--font-title);
  font-size: 30px;
  font-weight: 400;
  line-height: 1.15;
}

.product-content p {
  margin-top: 11px;
  color: var(--text-medium);
  font-size: 13px;
  line-height: 1.7;
}

.product-content a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  color: var(--green-800);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.6px;
  text-transform: uppercase;
}

.product-content a i {
  transition: transform var(--transition-fast);
}

.product-content a:hover i {
  transform: translateX(5px);
}

.products-button {
  margin-top: 48px;
  text-align: center;
}

/* =========================================================
   15. FAYDALAR
========================================================= */

.benefits-section {
  overflow: hidden;
  min-height: 780px;
  display: flex;
  align-items: center;
  color: var(--white);
  background: var(--green-950);
}

.benefits-background {
  position: absolute;
  inset: 0;
}

.benefits-background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.benefits-background::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(
      90deg,
      rgba(7, 28, 18, 0.96) 0%,
      rgba(7, 28, 18, 0.88) 55%,
      rgba(7, 28, 18, 0.55) 100%
    ),
    linear-gradient(
      180deg,
      rgba(7, 28, 18, 0.25),
      rgba(7, 28, 18, 0.75)
    );
}

.benefits-container {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 370px;
  align-items: center;
  gap: 100px;
}

.benefits-content .section-heading h2 {
  color: var(--white);
}

.benefits-content .section-heading h2 span {
  color: var(--cream-300);
}

.benefits-content .section-heading p {
  color: rgba(255, 255, 255, 0.66);
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 17px;
  margin-top: 43px;
}

.benefit-card {
  display: grid;
  grid-template-columns: 50px 1fr;
  gap: 15px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: var(--radius-medium);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(14px);
  transition:
    transform var(--transition-fast),
    background var(--transition-fast);
}

.benefit-card:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.13);
}

.benefit-icon {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--green-950);
  background: var(--cream-200);
  font-size: 17px;
}

.benefit-card h3 {
  font-size: 14px;
}

.benefit-card p {
  margin-top: 5px;
  color: rgba(255, 255, 255, 0.59);
  font-size: 12px;
  line-height: 1.65;
}

.benefits-product-card {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: 200px 200px var(--radius-large) var(--radius-large);
  background:
    radial-gradient(
      circle at 50% 40%,
      rgba(255, 255, 255, 0.22),
      transparent 42%
    ),
    rgba(255, 255, 255, 0.09);
  box-shadow: var(--shadow-large);
  backdrop-filter: blur(18px);
}

.benefits-product-card img {
  width: 72%;
  max-height: 390px;
  object-fit: contain;
  filter: drop-shadow(0 30px 35px rgba(0, 0, 0, 0.32));
  animation: productFloat 4s ease-in-out infinite;
}

@keyframes productFloat {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-14px);
  }
}

.benefits-label {
  position: absolute;
  top: 35px;
  right: 25px;
  width: 78px;
  height: 78px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--green-950);
  background: var(--cream-200);
  font-size: 11px;
  font-weight: 900;
  text-align: center;
}

.benefits-product-info {
  position: absolute;
  right: 28px;
  bottom: 25px;
  left: 28px;
  padding: 17px;
  border-radius: var(--radius-medium);
  background: rgba(10, 36, 23, 0.55);
  backdrop-filter: blur(15px);
}

.benefits-product-info span {
  color: rgba(255, 255, 255, 0.55);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 1.3px;
  text-transform: uppercase;
}

.benefits-product-info strong {
  display: block;
  margin-top: 4px;
  font-family: var(--font-title);
  font-size: 29px;
  font-weight: 400;
}

/* =========================================================
   16. ÜRETİM SÜRECİ
========================================================= */

.process-section {
  background: var(--cream-50);
}

.process-line {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-top: 80px;
}

.process-line::before {
  position: absolute;
  top: 45px;
  right: 12%;
  left: 12%;
  height: 1px;
  content: "";
  background: var(--green-200);
}

.process-item {
  position: relative;
  z-index: 1;
  text-align: center;
}

.process-number {
  position: absolute;
  top: -10px;
  right: 50%;
  transform: translateX(60px);
  color: var(--green-200);
  font-family: var(--font-title);
  font-size: 18px;
}

.process-icon {
  width: 90px;
  height: 90px;
  display: grid;
  place-items: center;
  margin: 0 auto 25px;
  border: 10px solid var(--cream-50);
  border-radius: 50%;
  color: var(--white);
  background: var(--green-800);
  box-shadow:
    0 0 0 1px var(--green-200),
    var(--shadow-small);
  font-size: 25px;
  transition:
    transform var(--transition-normal),
    background var(--transition-normal);
}

.process-item:hover .process-icon {
  transform: translateY(-8px) rotate(5deg);
  background: var(--green-600);
}

.process-item h3 {
  color: var(--green-950);
  font-family: var(--font-title);
  font-size: 27px;
  font-weight: 400;
}

.process-item p {
  max-width: 230px;
  margin: 10px auto 0;
  color: var(--text-light);
  font-size: 12px;
  line-height: 1.7;
}

/* =========================================================
   17. GALERİ ÖNİZLEME
========================================================= */

.gallery-preview {
  background: var(--green-100);
}

.gallery-header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
}

.gallery-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 10px;
  color: var(--green-800);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.7px;
  text-transform: uppercase;
}

.gallery-link i {
  transition: transform var(--transition-fast);
}

.gallery-link:hover i {
  transform: translateX(5px);
}

.gallery-preview-grid {
  display: grid;
  grid-template-columns: 1.35fr 0.65fr;
  grid-template-rows: repeat(2, 270px);
  gap: 18px;
  margin-top: 55px;
}

.gallery-preview-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-medium);
  box-shadow: var(--shadow-small);
}

.gallery-preview-item.gallery-large {
  grid-row: span 2;
}

.gallery-preview-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.gallery-preview-item:hover img {
  transform: scale(1.08);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  justify-content: end;
  flex-direction: column;
  padding: 28px;
  color: var(--white);
  background: linear-gradient(
    180deg,
    transparent 30%,
    rgba(8, 29, 18, 0.8) 100%
  );
}

.gallery-overlay span {
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 1.8px;
  text-transform: uppercase;
}

.gallery-overlay strong {
  margin-top: 4px;
  font-family: var(--font-title);
  font-size: 25px;
  font-weight: 400;
}

/* =========================================================
   18. YORUMLAR
========================================================= */

.testimonials-section {
  overflow: hidden;
  background:
    radial-gradient(
      circle at 10% 50%,
      rgba(76, 147, 104, 0.08),
      transparent 28%
    ),
    var(--cream-50);
}

.testimonial-slider {
  position: relative;
  max-width: 840px;
  min-height: 410px;
  margin: 60px auto 0;
}

.testimonial-card {
  position: absolute;
  inset: 0;
  padding: 55px 60px;
  opacity: 0;
  visibility: hidden;
  transform: translateX(50px);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-large);
  background: var(--white);
  box-shadow: var(--shadow-medium);
  transition:
    opacity 0.55s ease,
    visibility 0.55s ease,
    transform 0.55s ease;
}

.testimonial-card.active {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

.testimonial-stars {
  display: flex;
  gap: 5px;
  color: var(--gold-500);
  font-size: 14px;
}

.testimonial-card blockquote {
  margin-top: 25px;
  color: var(--green-950);
  font-family: var(--font-title);
  font-size: clamp(28px, 4vw, 43px);
  font-style: italic;
  line-height: 1.35;
}

.testimonial-user {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-top: 32px;
}

.testimonial-avatar {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--green-800);
  font-family: var(--font-title);
  font-size: 22px;
}

.testimonial-user strong {
  display: block;
  color: var(--green-950);
  font-size: 13px;
}

.testimonial-user span {
  color: var(--text-light);
  font-size: 11px;
}

.testimonial-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  margin-top: 30px;
}

.testimonial-controls button {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border: 1px solid var(--border-light);
  border-radius: 50%;
  color: var(--green-900);
  background: var(--white);
  transition:
    color var(--transition-fast),
    background var(--transition-fast),
    transform var(--transition-fast);
}

.testimonial-controls button:hover {
  color: var(--white);
  background: var(--green-800);
  transform: translateY(-3px);
}

.testimonial-dots {
  display: flex;
  align-items: center;
  gap: 7px;
}

.testimonial-dots button {
  width: 7px;
  height: 7px;
  border: 0;
  border-radius: 50%;
  background: var(--green-200);
}

.testimonial-dots button.active {
  width: 24px;
  border-radius: var(--radius-full);
  background: var(--green-700);
}

/* =========================================================
   19. CTA
========================================================= */

.cta-section {
  padding: 20px 0 120px;
  background: var(--cream-50);
}

.cta-card {
  position: relative;
  min-height: 500px;
  display: flex;
  align-items: center;
  overflow: hidden;
  border-radius: var(--radius-large);
  box-shadow: var(--shadow-large);
}

.cta-background,
.cta-overlay {
  position: absolute;
  inset: 0;
}

.cta-background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cta-overlay {
  background: linear-gradient(
    90deg,
    rgba(7, 29, 18, 0.96) 0%,
    rgba(7, 29, 18, 0.78) 55%,
    rgba(7, 29, 18, 0.22) 100%
  );
}

.cta-content {
  position: relative;
  z-index: 2;
  max-width: 680px;
  padding: 70px;
  color: var(--white);
}

.cta-content h2 {
  font-family: var(--font-title);
  font-size: clamp(45px, 6vw, 76px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -2px;
}

.cta-content h2 span {
  color: var(--cream-300);
  font-style: italic;
}

.cta-content > p {
  max-width: 570px;
  margin-top: 22px;
  color: rgba(255, 255, 255, 0.67);
}

.cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
  margin-top: 32px;
}

/* =========================================================
   20. FOOTER
========================================================= */

.footer {
  color: rgba(255, 255, 255, 0.65);
  background: #0e261a;
}

.footer-top {
  padding: 85px 0 70px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 0.75fr 0.95fr 1.25fr;
  gap: 65px;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.footer-brand img {
  width: 65px;
  height: 65px;
  object-fit: contain;
  border-radius: 50%;
  background: var(--cream-100);
}

.footer-brand div {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}

.footer-brand strong {
  color: var(--white);
  font-family: var(--font-title);
  font-size: 25px;
  font-weight: 400;
}

.footer-brand span {
  margin-top: 6px;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 2.3px;
  text-transform: uppercase;
}

.footer-brand-column > p {
  max-width: 365px;
  margin-top: 22px;
  font-size: 12px;
  line-height: 1.85;
}

.footer-social {
  display: flex;
  gap: 9px;
  margin-top: 26px;
}

.footer-social a {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 50%;
  color: var(--white);
  background: rgba(255, 255, 255, 0.05);
  transition:
    transform var(--transition-fast),
    background var(--transition-fast);
}

.footer-social a:hover {
  transform: translateY(-4px);
  background: var(--green-600);
}

.footer-column h3 {
  margin-bottom: 24px;
  color: var(--white);
  font-family: var(--font-title);
  font-size: 21px;
  font-weight: 400;
}

.footer-column ul {
  display: grid;
  gap: 12px;
}

.footer-column ul a {
  font-size: 12px;
  transition:
    color var(--transition-fast),
    padding-left var(--transition-fast);
}

.footer-column ul a:hover {
  padding-left: 5px;
  color: var(--white);
}

.footer-contact ul {
  gap: 18px;
}

.footer-contact li {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 12px;
}

.footer-contact li > span {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}

.footer-contact strong {
  display: block;
  color: var(--white);
  font-size: 11px;
}

.footer-contact p,
.footer-contact a {
  margin-top: 2px;
  font-size: 11px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.09);
}

.footer-bottom-content {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  font-size: 10px;
}

.footer-bottom-content a {
  color: var(--white);
  font-weight: 800;
}

/* =========================================================
   21. SABİT BUTONLAR
========================================================= */

.floating-whatsapp {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 900;

  width: 56px;
  height: 56px;
  padding: 0;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 50%;
  color: var(--white);
  background: #1faa59;
  box-shadow: 0 18px 40px rgba(31, 170, 89, 0.34);

  transition:
    transform var(--transition-fast),
    background var(--transition-fast);
}

.floating-whatsapp:hover {
  transform: translateY(-5px);
  background: #168845;
}

.floating-whatsapp i{
    display:flex;
    align-items:center;
    justify-content:center;
    width:100%;
    height:100%;
    font-size:28px;
    color:#fff;
    line-height:1;
    flex-shrink:0;
}

.floating-whatsapp span{
    display:none;
}
.back-to-top {
  position: fixed;
  right: 34px;
  bottom: 185px;   /* 158 yerine bunu yap */

  z-index: 902;

  width: 47px;
  height: 47px;

  display: grid;
  place-items: center;

  opacity: 0;
  visibility: hidden;
  transform: none;      /* bunu değiştir */

  border-radius: 50%;
  color: var(--white);
  background: var(--green-900);
  box-shadow: var(--shadow-small);

  transition:
    opacity var(--transition-fast),
    visibility var(--transition-fast);
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: none;
}

/* =========================================================
   22. REVEAL ANİMASYONU
========================================================= */

.reveal {
  opacity: 0;
  transform: translateY(35px);
  transition:
    opacity 0.8s ease,
    transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* =========================================================
   23. TABLET
========================================================= */

@media (max-width: 1100px) {
  .desktop-nav {
    gap: 20px;
  }

  .navbar-cta {
    display: none;
  }

  .hero-container {
    grid-template-columns: minmax(0, 1fr) 330px;
    gap: 45px;
  }

  .hero-title {
    font-size: clamp(62px, 8vw, 92px);
  }

  .hero-card-image {
    height: 280px;
  }

  .about-grid {
    gap: 60px;
  }

  .about-visual {
    min-height: 600px;
  }

  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .product-card.featured {
    grid-column: span 2;
  }

  .benefits-container {
    grid-template-columns: 1fr 310px;
    gap: 50px;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* =========================================================
   24. MOBİL / TABLET
========================================================= */

@media (max-width: 900px) {
  .section {
    padding: 90px 0;
  }

  .topbar {
    display: none;
  }

  .main-header {
    top: 0;
  }

  .desktop-nav {
    display: none;
  }

  .menu-toggle {
    display: flex;
  }

  .hero {
    min-height: auto;
  }

  .hero-container {
    grid-template-columns: 1fr;
    gap: 45px;
    padding-top: 170px;
    padding-bottom: 105px;
  }

  .hero-content {
    max-width: 700px;
  }

  .hero-card {
    width: min(100%, 510px);
  }

  .hero-card-image {
    height: 330px;
  }

  .scroll-down {
    display: none;
  }

  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .trust-item:nth-child(3) {
    border-left: 0;
    border-top: 1px solid var(--border-light);
  }

  .trust-item:nth-child(4) {
    border-top: 1px solid var(--border-light);
  }

  .about-grid {
    grid-template-columns: 1fr;
  }

  .about-visual {
    width: min(100%, 640px);
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 35px;
  }

  .stat-item:nth-child(3) {
    padding-left: 0;
    border-left: 0;
  }

  .benefits-container {
    grid-template-columns: 1fr;
  }

  .benefits-product-card {
    width: min(100%, 420px);
    margin-inline: auto;
  }

  .process-line {
    grid-template-columns: repeat(2, 1fr);
    gap: 50px 30px;
  }

  .process-line::before {
    display: none;
  }

  .gallery-preview-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 360px 250px;
  }

  .gallery-preview-item.gallery-large {
    grid-column: span 2;
    grid-row: auto;
  }

  .cta-card {
    min-height: 540px;
  }

  .cta-content {
    padding: 55px;
  }
}

/* =========================================================
   25. MOBİL
========================================================= */

@media (max-width: 650px) {
  .container {
    width: min(calc(100% - 28px), var(--container-width));
  }

  .section {
    padding: 72px 0;
  }

  .section-heading h2,
  .stats-header h2 {
    font-size: 43px;
    letter-spacing: -1px;
  }

  .section-heading > p {
    font-size: 14px;
  }

  .navbar {
    min-height: 75px;
  }

  .brand {
    gap: 9px;
  }

  .brand-logo {
    width: 47px;
    height: 47px;
  }

  .brand-text strong {
    font-size: 19px;
  }

  .brand-text span {
    font-size: 7px;
    letter-spacing: 1.6px;
  }

  .menu-toggle {
    width: 43px;
    height: 43px;
  }

  .mobile-menu {
    padding: 100px 25px 35px;
  }

  .mobile-menu nav a {
    font-size: 26px;
  }

  .hero-container {
    padding-top: 135px;
    padding-bottom: 80px;
  }

  .hero-overlay {
    background:
      linear-gradient(
        180deg,
        rgba(8, 30, 19, 0.72) 0%,
        rgba(8, 30, 19, 0.82) 55%,
        rgba(8, 30, 19, 0.96) 100%
      );
  }

  .hero-badge {
    font-size: 9px;
    letter-spacing: 1px;
  }

  .hero-title {
    font-size: 59px;
    letter-spacing: -2.5px;
  }

  .hero-description {
    margin-top: 23px;
    font-size: 14px;
  }

  .hero-buttons {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-buttons .btn {
    width: 100%;
  }

  .hero-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    margin-top: 38px;
  }

  .hero-feature {
    min-width: 0;
    padding: 0 11px;
  }

  .feature-number {
    font-size: 23px;
  }

  .feature-label {
    font-size: 7px;
    letter-spacing: 1px;
  }

  .hero-card {
    width: 100%;
  }

  .hero-card-image {
    height: 275px;
  }

  .hero-card-content {
    padding: 22px;
  }

  .trust-grid {
    grid-template-columns: 1fr;
  }

  .trust-item {
    min-height: auto;
    padding: 23px 10px;
    border-top: 1px solid var(--border-light);
    border-left: 0;
  }

  .trust-item:first-child {
    border-top: 0;
  }

  .about-grid {
    gap: 55px;
  }

  .about-visual {
    min-height: 470px;
  }

  .about-main-image {
    right: 42px;
    border-radius: 120px 120px var(--radius-medium) var(--radius-medium);
  }

  .about-floating-image {
    bottom: 30px;
    width: 150px;
    height: 200px;
    border-width: 7px;
  }

  .about-experience {
    top: 40px;
    width: 105px;
    height: 105px;
  }

  .about-experience strong {
    font-size: 22px;
  }

  .about-lead {
    font-size: 17px;
  }

  .stats-section {
    padding: 75px 0;
  }

  .stats-grid {
    grid-template-columns: 1fr 1fr;
    row-gap: 28px;
  }

  .stat-item {
    padding: 15px 18px;
  }

  .stat-item strong,
  .stat-symbol {
    font-size: 48px;
  }

  .stat-symbol {
    font-size: 26px;
  }

  .stat-item p {
    font-size: 7px;
    letter-spacing: 1.1px;
  }

  .products-grid {
    grid-template-columns: 1fr;
    gap: 18px;
    margin-top: 45px;
  }

  .product-card.featured {
    grid-column: auto;
  }

  .product-image,
  .product-card.featured .product-image {
    height: 285px;
  }

  .product-content {
    grid-template-columns: 30px 1fr;
    gap: 12px;
    padding: 22px 18px;
  }

  .product-content h3 {
    font-size: 27px;
  }

  .benefits-section {
    min-height: auto;
  }

  .benefits-grid {
    grid-template-columns: 1fr;
  }

  .benefits-product-card {
    min-height: 450px;
  }

  .process-line {
    grid-template-columns: 1fr;
    gap: 45px;
  }

  .process-item p {
    max-width: 300px;
  }

  .gallery-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .gallery-preview-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .gallery-preview-item,
  .gallery-preview-item.gallery-large {
    grid-column: auto;
    height: 290px;
  }

  .testimonial-slider {
    min-height: 500px;
    margin-top: 42px;
  }

  .testimonial-card {
    padding: 35px 25px;
  }

  .testimonial-card blockquote {
    font-size: 29px;
  }

  .cta-section {
    padding-bottom: 75px;
  }

  .cta-card {
    min-height: 580px;
  }

  .cta-overlay {
    background: linear-gradient(
      180deg,
      rgba(7, 29, 18, 0.83),
      rgba(7, 29, 18, 0.96)
    );
  }

  .cta-content {
    padding: 35px 24px;
  }

  .cta-content h2 {
    font-size: 49px;
  }

  .cta-content > p {
    font-size: 14px;
  }

  .cta-buttons {
    align-items: stretch;
    flex-direction: column;
  }

  .cta-buttons .btn {
    width: 100%;
  }

  .footer-top {
    padding: 65px 0 50px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 45px;
  }

  .footer-bottom-content {
    min-height: 95px;
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
    padding: 20px 0;
  }

  .floating-whatsapp {
    right: 15px;
    bottom: 15px;
    width: 56px;
    padding: 0;
    justify-content: center;
  }

  .floating-whatsapp span {
    display: none !important;
  }

  .back-to-top {
    right: 19px;
    bottom: 82px;
  }
}

/* =========================================================
   26. ÇOK KÜÇÜK TELEFONLAR
========================================================= */

@media (max-width: 380px) {
  .hero-title {
    font-size: 50px;
  }

  .hero-features {
    gap: 0;
  }

  .feature-number {
    font-size: 20px;
  }

  .section-heading h2,
  .stats-header h2 {
    font-size: 38px;
  }

  .about-visual {
    min-height: 420px;
  }

  .about-floating-image {
    width: 135px;
    height: 175px;
  }
}

/* =========================================================
   27. HAREKET AZALTMA TERCİHİ
========================================================= */

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

/* =========================================================
   HAKKIMIZDA SAYFASI
   1. PARÇA
========================================================= */

/* =========================================================
   ALT SAYFA HERO
========================================================= */

.inner-header {
  position: absolute;
}

.subpage-hero {
  position: relative;
  min-height: 760px;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: var(--white);
  background: var(--green-950);
}

.subpage-hero-media {
  position: absolute;
  inset: 0;
}

.subpage-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  animation: subpageHeroZoom 16s ease-in-out infinite alternate;
}

@keyframes subpageHeroZoom {
  from {
    transform: scale(1.02);
  }

  to {
    transform: scale(1.09);
  }
}

.subpage-hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      rgba(8, 29, 19, 0.94) 0%,
      rgba(8, 29, 19, 0.78) 50%,
      rgba(8, 29, 19, 0.38) 100%
    ),
    linear-gradient(
      180deg,
      rgba(8, 29, 19, 0.25) 0%,
      rgba(8, 29, 19, 0.2) 55%,
      rgba(8, 29, 19, 0.88) 100%
    );
}

.subpage-hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  padding-top: 160px;
  padding-bottom: 90px;
}

.subpage-breadcrumb {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-bottom: 25px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 11px;
  font-weight: 700;
}

.subpage-breadcrumb a {
  transition: color var(--transition-fast);
}

.subpage-breadcrumb a:hover {
  color: var(--white);
}

.subpage-breadcrumb i {
  font-size: 8px;
}

.subpage-hero h1 {
  max-width: 900px;
  font-family: var(--font-title);
  font-size: clamp(62px, 8vw, 108px);
  font-weight: 400;
  line-height: 0.96;
  letter-spacing: -3.5px;
}

.subpage-hero h1 span {
  display: block;
  color: var(--cream-300);
  font-style: italic;
}

.subpage-hero-content > p {
  max-width: 680px;
  margin-top: 28px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 17px;
  line-height: 1.85;
}

.subpage-scroll {
  position: absolute;
  z-index: 3;
  right: 45px;
  bottom: 35px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 1.8px;
  text-transform: uppercase;
}

.subpage-scroll i {
  animation: subpageArrowMove 1.5s ease-in-out infinite;
}

@keyframes subpageArrowMove {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(7px);
  }
}

/* =========================================================
   HİKÂYEMİZ
========================================================= */

.about-story-section {
  overflow: hidden;
  background:
    radial-gradient(
      circle at 100% 0%,
      rgba(76, 147, 104, 0.09),
      transparent 32%
    ),
    var(--cream-50);
}

.about-story-grid {
  display: grid;
  grid-template-columns: 0.96fr 1fr;
  align-items: center;
  gap: 100px;
}

.about-story-content {
  position: relative;
  z-index: 2;
}

.about-story-lead {
  margin-top: 30px;
  color: var(--green-900);
  font-size: 20px;
  font-weight: 600;
  line-height: 1.75;
}

.about-story-content > p:not(.about-story-lead) {
  margin-top: 18px;
  color: var(--text-medium);
}

.about-signature {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-top: 34px;
  padding: 20px 22px;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-medium);
  background: var(--white);
  box-shadow: var(--shadow-small);
}

.about-signature-icon {
  width: 52px;
  height: 52px;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--green-700);
  font-size: 18px;
}

.about-signature strong {
  display: block;
  color: var(--green-950);
  font-size: 14px;
}

.about-signature span {
  display: block;
  margin-top: 4px;
  color: var(--text-light);
  font-size: 11px;
}

.about-story-visual {
  position: relative;
  min-height: 680px;
}

.about-story-main {
  position: absolute;
  inset: 0 75px 0 0;
  overflow: hidden;
  border-radius:
    var(--radius-large)
    180px
    var(--radius-large)
    var(--radius-large);
  box-shadow: var(--shadow-large);
}

.about-story-main img,
.about-story-small img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-story-small {
  position: absolute;
  right: 0;
  bottom: 65px;
  width: 230px;
  height: 290px;
  overflow: hidden;
  border: 10px solid var(--cream-50);
  border-radius:
    115px
    115px
    var(--radius-medium)
    var(--radius-medium);
  box-shadow: var(--shadow-medium);
}

.about-story-badge {
  position: absolute;
  top: 65px;
  right: 0;
  width: 145px;
  height: 145px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  border-radius: 50%;
  color: var(--white);
  background: var(--green-800);
  box-shadow: var(--shadow-medium);
  animation: storyBadgeFloat 4s ease-in-out infinite;
}

@keyframes storyBadgeFloat {
  0%,
  100% {
    transform: translateY(0) rotate(-5deg);
  }

  50% {
    transform: translateY(-12px) rotate(0deg);
  }
}

.about-story-badge i {
  margin-bottom: 7px;
  font-size: 20px;
}

.about-story-badge strong {
  font-family: var(--font-title);
  font-size: 31px;
  font-weight: 400;
  line-height: 1;
}

.about-story-badge span {
  margin-top: 6px;
  font-size: 8px;
  font-weight: 900;
  letter-spacing: 1.6px;
  text-transform: uppercase;
}

/* =========================================================
   DEĞERLERİMİZ
========================================================= */

.values-section {
  background: var(--cream-100);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  margin-top: 65px;
}

.value-card {
  position: relative;
  min-height: 360px;
  overflow: hidden;
  padding: 34px 28px;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-medium);
  background: var(--white);
  box-shadow: var(--shadow-small);
  transition:
    transform var(--transition-slow),
    box-shadow var(--transition-normal),
    background var(--transition-normal);
}

.value-card::before {
  position: absolute;
  inset: auto -60px -100px auto;
  width: 200px;
  height: 200px;
  content: "";
  border-radius: 50%;
  background: var(--green-100);
  transition:
    transform var(--transition-slow),
    background var(--transition-normal);
}

.value-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-medium);
  background: var(--green-950);
}

.value-card:hover::before {
  transform: scale(1.3);
  background: rgba(255, 255, 255, 0.06);
}

.value-card-number {
  position: relative;
  z-index: 1;
  color: var(--green-200);
  font-family: var(--font-title);
  font-size: 19px;
}

.value-card-icon {
  position: relative;
  z-index: 1;
  width: 66px;
  height: 66px;
  display: grid;
  place-items: center;
  margin-top: 42px;
  border-radius: 50%;
  color: var(--green-800);
  background: var(--green-100);
  font-size: 23px;
  transition:
    color var(--transition-normal),
    background var(--transition-normal),
    transform var(--transition-normal);
}

.value-card:hover .value-card-icon {
  color: var(--green-950);
  background: var(--cream-200);
  transform: rotate(8deg) scale(1.05);
}

.value-card h3 {
  position: relative;
  z-index: 1;
  margin-top: 28px;
  color: var(--green-950);
  font-family: var(--font-title);
  font-size: 30px;
  font-weight: 400;
  transition: color var(--transition-normal);
}

.value-card p {
  position: relative;
  z-index: 1;
  margin-top: 12px;
  color: var(--text-medium);
  font-size: 13px;
  line-height: 1.75;
  transition: color var(--transition-normal);
}

.value-card:hover h3 {
  color: var(--white);
}

.value-card:hover p,
.value-card:hover .value-card-number {
  color: rgba(255, 255, 255, 0.66);
}

/* =========================================================
   MİSYON VİZYON
========================================================= */

.mission-section {
  background: var(--cream-50);
}

.mission-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
}

.mission-card {
  position: relative;
  min-height: 560px;
  overflow: hidden;
  padding: 58px;
  border-radius: var(--radius-large);
  box-shadow: var(--shadow-medium);
}

.mission-card::after {
  position: absolute;
  right: -120px;
  bottom: -150px;
  width: 350px;
  height: 350px;
  content: "";
  border-radius: 50%;
  border: 1px solid currentColor;
  opacity: 0.08;
}

.mission-card-dark {
  color: var(--white);
  background:
    radial-gradient(
      circle at 10% 10%,
      rgba(255, 255, 255, 0.08),
      transparent 28%
    ),
    var(--green-950);
}

.mission-card-light {
  color: var(--green-950);
  border: 1px solid var(--border-light);
  background:
    radial-gradient(
      circle at 90% 10%,
      rgba(76, 147, 104, 0.13),
      transparent 30%
    ),
    var(--white);
}

.mission-card-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.mission-card-label::before {
  width: 27px;
  height: 1px;
  content: "";
  background: currentColor;
}

.mission-card-dark .mission-card-label {
  color: rgba(255, 255, 255, 0.65);
}

.mission-card-light .mission-card-label {
  color: var(--green-600);
}

.mission-card-icon {
  width: 75px;
  height: 75px;
  display: grid;
  place-items: center;
  margin-top: 58px;
  border-radius: 50%;
  font-size: 25px;
}

.mission-card-dark .mission-card-icon {
  color: var(--green-950);
  background: var(--cream-200);
}

.mission-card-light .mission-card-icon {
  color: var(--white);
  background: var(--green-800);
}

.mission-card h2 {
  max-width: 510px;
  margin-top: 32px;
  font-family: var(--font-title);
  font-size: clamp(38px, 4vw, 54px);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -1.2px;
}

.mission-card p {
  max-width: 540px;
  margin-top: 22px;
  font-size: 14px;
  line-height: 1.8;
}

.mission-card-dark p {
  color: rgba(255, 255, 255, 0.65);
}

.mission-card-light p {
  color: var(--text-medium);
}

.mission-card ul {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 14px;
  margin-top: 30px;
}

.mission-card li {
  display: flex;
  align-items: center;
  gap: 11px;
  font-size: 12px;
  font-weight: 700;
}

.mission-card li i {
  width: 27px;
  height: 27px;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  border-radius: 50%;
  font-size: 9px;
}

.mission-card-dark li {
  color: rgba(255, 255, 255, 0.82);
}

.mission-card-dark li i {
  color: var(--green-950);
  background: var(--cream-200);
}

.mission-card-light li {
  color: var(--green-900);
}

.mission-card-light li i {
  color: var(--white);
  background: var(--green-700);
}

/* =========================================================
   HAKKIMIZDA SAYFASI
   2. PARÇA
========================================================= */

/* =========================================================
   NEDEN JERSEY
========================================================= */

.why-jersey-section {
  position: relative;
  min-height: 850px;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: var(--white);
  background: var(--green-950);
}

.why-jersey-background {
  position: absolute;
  inset: 0;
}

.why-jersey-background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.why-jersey-background::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(
      90deg,
      rgba(7, 28, 18, 0.97) 0%,
      rgba(7, 28, 18, 0.91) 50%,
      rgba(7, 28, 18, 0.63) 100%
    ),
    linear-gradient(
      180deg,
      rgba(7, 28, 18, 0.2),
      rgba(7, 28, 18, 0.78)
    );
}

.why-jersey-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 460px;
  align-items: center;
  gap: 100px;
}

.why-jersey-content .section-heading h2 {
  color: var(--white);
}

.why-jersey-content .section-heading h2 span {
  color: var(--cream-300);
}

.why-jersey-content .section-heading p {
  color: rgba(255, 255, 255, 0.66);
}

.why-jersey-list {
  display: grid;
  gap: 18px;
  margin-top: 42px;
}

.why-jersey-item {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 17px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: var(--radius-medium);
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(14px);
  transition:
    transform var(--transition-fast),
    background var(--transition-fast),
    border-color var(--transition-fast);
}

.why-jersey-item:hover {
  transform: translateX(7px);
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.12);
}

.why-jersey-item > span {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--green-950);
  background: var(--cream-200);
  font-size: 19px;
}

.why-jersey-item h3 {
  font-size: 15px;
}

.why-jersey-item p {
  margin-top: 5px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 12px;
  line-height: 1.7;
}

.why-jersey-info {
  padding: 36px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius-large);
  background: rgba(255, 255, 255, 0.1);
  box-shadow: var(--shadow-large);
  backdrop-filter: blur(20px);
}

.why-jersey-info-head span {
  display: block;
  color: rgba(255, 255, 255, 0.55);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 1.8px;
  text-transform: uppercase;
}

.why-jersey-info-head strong {
  display: block;
  margin-top: 6px;
  font-family: var(--font-title);
  font-size: 40px;
  font-weight: 400;
}

.jersey-comparison {
  display: grid;
  gap: 25px;
  margin-top: 38px;
}

.comparison-row {
  display: grid;
  grid-template-columns: 105px 1fr 42px;
  align-items: center;
  gap: 13px;
}

.comparison-row > span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 10px;
  font-weight: 800;
}

.comparison-row > strong {
  color: var(--cream-200);
  font-size: 11px;
  text-align: right;
}

.comparison-bar {
  height: 6px;
  overflow: hidden;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.12);
}

.comparison-bar span {
  height: 100%;
  display: block;
  border-radius: inherit;
  background: linear-gradient(
    90deg,
    var(--green-500),
    var(--gold-400)
  );
  transform-origin: left;
  animation: comparisonGrow 1.8s ease forwards;
}

@keyframes comparisonGrow {
  from {
    transform: scaleX(0);
  }

  to {
    transform: scaleX(1);
  }
}

.why-jersey-note {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 11px;
  margin-top: 32px;
  padding-top: 25px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.why-jersey-note i {
  color: var(--cream-300);
  font-size: 15px;
}

.why-jersey-note p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 10px;
  line-height: 1.65;
}

/* =========================================================
   HAKKIMIZDA ÜRETİM ZAMAN ÇİZGİSİ
========================================================= */

.about-process-section {
  overflow: hidden;
  background: var(--cream-100);
}

.about-process-timeline {
  position: relative;
  display: grid;
  gap: 110px;
  margin-top: 80px;
}

.about-process-timeline::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 1px;
  content: "";
  transform: translateX(-50%);
  background: var(--green-200);
}

.about-process-step {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 90px;
}

.about-process-step::before {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  width: 18px;
  height: 18px;
  content: "";
  transform: translate(-50%, -50%);
  border: 5px solid var(--cream-100);
  border-radius: 50%;
  background: var(--green-700);
  box-shadow: 0 0 0 1px var(--green-300);
}

.about-process-step.reverse .about-process-image {
  order: 2;
}

.about-process-step.reverse .about-process-content {
  order: 1;
  text-align: right;
}

.about-process-image {
  position: relative;
  height: 390px;
  overflow: hidden;
  border-radius: var(--radius-large);
  box-shadow: var(--shadow-medium);
}

.about-process-image::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(
    180deg,
    transparent 55%,
    rgba(7, 28, 18, 0.25)
  );
}

.about-process-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.9s ease;
}

.about-process-step:hover .about-process-image img {
  transform: scale(1.06);
}

.about-process-content {
  padding: 40px;
}

.about-process-number {
  display: block;
  color: var(--green-200);
  font-family: var(--font-title);
  font-size: 56px;
  line-height: 1;
}

.about-process-label {
  display: block;
  margin-top: 15px;
  color: var(--green-600);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 1.8px;
  text-transform: uppercase;
}

.about-process-content h3 {
  margin-top: 7px;
  color: var(--green-950);
  font-family: var(--font-title);
  font-size: 41px;
  font-weight: 400;
  line-height: 1.1;
}

.about-process-content p {
  max-width: 470px;
  margin-top: 15px;
  color: var(--text-medium);
  font-size: 14px;
}

.about-process-step.reverse .about-process-content p {
  margin-left: auto;
}

/* =========================================================
   KALİTE POLİTİKASI
========================================================= */

.quality-section {
  background: var(--cream-50);
}

.quality-grid {
  display: grid;
  grid-template-columns: 0.95fr 1fr;
  align-items: center;
  gap: 95px;
}

.quality-visual {
  position: relative;
  min-height: 650px;
}

.quality-visual > img {
  width: 100%;
  height: 650px;
  object-fit: cover;
  border-radius:
    170px
    var(--radius-large)
    var(--radius-large)
    var(--radius-large);
  box-shadow: var(--shadow-large);
}

.quality-visual-card {
  position: absolute;
  right: -25px;
  bottom: 45px;
  display: flex;
  align-items: center;
  gap: 15px;
  min-width: 310px;
  padding: 20px 24px;
  border: 8px solid var(--cream-50);
  border-radius: var(--radius-medium);
  color: var(--white);
  background: var(--green-900);
  box-shadow: var(--shadow-medium);
}

.quality-visual-card > i {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--green-950);
  background: var(--cream-200);
  font-size: 18px;
}

.quality-visual-card strong {
  display: block;
  font-size: 13px;
}

.quality-visual-card span {
  display: block;
  margin-top: 3px;
  color: rgba(255, 255, 255, 0.56);
  font-size: 10px;
}

.quality-content > p {
  margin-top: 26px;
  color: var(--text-medium);
  font-size: 16px;
}

.quality-list {
  display: grid;
  gap: 14px;
  margin: 32px 0 38px;
}

.quality-list-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 15px 17px;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-small);
  background: var(--white);
  box-shadow: 0 8px 22px rgba(16, 41, 29, 0.05);
  color: var(--green-900);
  font-size: 13px;
  font-weight: 700;
  transition:
    transform var(--transition-fast),
    border-color var(--transition-fast);
}

.quality-list-item:hover {
  transform: translateX(6px);
  border-color: var(--green-200);
}

.quality-list-item i {
  width: 27px;
  height: 27px;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--green-700);
  font-size: 9px;
}

/* =========================================================
   HAKKIMIZDA SAYILAR
========================================================= */

.about-stats-section {
  position: relative;
  overflow: hidden;
  padding: 85px 0;
  color: var(--white);
  background: var(--green-950);
}

.about-stats-section::before {
  position: absolute;
  top: -250px;
  right: -100px;
  width: 520px;
  height: 520px;
  content: "";
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 50%;
}

.about-stats-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.about-stat {
  padding: 20px 35px;
  border-left: 1px solid rgba(255, 255, 255, 0.13);
  text-align: center;
}

.about-stat:first-child {
  border-left: 0;
}

.about-stat strong,
.about-stat > span {
  display: inline;
  font-family: var(--font-title);
  font-size: clamp(52px, 5vw, 74px);
  font-weight: 400;
  line-height: 1;
}

.about-stat > span {
  color: var(--gold-400);
  font-size: 31px;
}

.about-stat p {
  margin-top: 13px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

/* =========================================================
   HAKKIMIZDA CTA
========================================================= */

.about-cta-section {
  padding: 110px 0;
  background: var(--cream-100);
}

.about-cta-card {
  position: relative;
  min-height: 510px;
  display: flex;
  align-items: center;
  overflow: hidden;
  border-radius: var(--radius-large);
  box-shadow: var(--shadow-large);
}

.about-cta-media,
.about-cta-overlay {
  position: absolute;
  inset: 0;
}

.about-cta-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-cta-overlay {
  background: linear-gradient(
    90deg,
    rgba(7, 29, 18, 0.96) 0%,
    rgba(7, 29, 18, 0.79) 58%,
    rgba(7, 29, 18, 0.24) 100%
  );
}

.about-cta-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
  padding: 75px;
  color: var(--white);
}

.about-cta-content h2 {
  font-family: var(--font-title);
  font-size: clamp(46px, 6vw, 76px);
  font-weight: 400;
  line-height: 1.02;
  letter-spacing: -2px;
}

.about-cta-content h2 span {
  display: block;
  color: var(--cream-300);
  font-style: italic;
}

.about-cta-content > p {
  max-width: 590px;
  margin-top: 23px;
  color: rgba(255, 255, 255, 0.68);
}

.about-cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
  margin-top: 32px;
}

/* =========================================================
   HAKKIMIZDA RESPONSIVE
========================================================= */

@media (max-width: 1100px) {
  .about-story-grid {
    gap: 55px;
  }

  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .why-jersey-grid {
    grid-template-columns: 1fr 390px;
    gap: 55px;
  }

  .quality-grid {
    gap: 55px;
  }
}

@media (max-width: 900px) {
  .subpage-hero {
    min-height: 690px;
  }

  .subpage-hero-content {
    padding-top: 150px;
  }

  .about-story-grid,
  .why-jersey-grid,
  .quality-grid {
    grid-template-columns: 1fr;
  }

  .about-story-visual {
    width: min(100%, 650px);
  }

  .mission-grid {
    grid-template-columns: 1fr;
  }

  .why-jersey-info {
    width: min(100%, 600px);
  }

  .about-process-timeline::before {
    left: 18px;
  }

  .about-process-step {
    grid-template-columns: 1fr;
    gap: 28px;
    padding-left: 55px;
  }

  .about-process-step::before {
    top: 30px;
    left: 18px;
  }

  .about-process-step.reverse .about-process-image,
  .about-process-step.reverse .about-process-content {
    order: initial;
    text-align: left;
  }

  .about-process-step.reverse .about-process-content p {
    margin-left: 0;
  }

  .about-process-content {
    padding: 0 10px;
  }

  .quality-visual {
    width: min(100%, 650px);
  }

  .about-stats-grid {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 30px;
  }

  .about-stat:nth-child(3) {
    border-left: 0;
  }
}

@media (max-width: 650px) {
  .subpage-hero {
    min-height: 620px;
  }

  .subpage-hero-content {
    padding-top: 125px;
    padding-bottom: 70px;
  }

  .subpage-hero h1 {
    font-size: 56px;
    letter-spacing: -2px;
  }

  .subpage-hero-content > p {
    font-size: 14px;
  }

  .subpage-scroll {
    display: none;
  }

  .about-story-grid {
    gap: 50px;
  }

  .about-story-visual {
    min-height: 470px;
  }

  .about-story-main {
    right: 40px;
    border-radius:
      var(--radius-large)
      110px
      var(--radius-large)
      var(--radius-large);
  }

  .about-story-small {
    bottom: 25px;
    width: 150px;
    height: 200px;
    border-width: 7px;
  }

  .about-story-badge {
    top: 35px;
    width: 108px;
    height: 108px;
  }

  .about-story-badge strong {
    font-size: 24px;
  }

  .about-story-lead {
    font-size: 17px;
  }

  .values-grid {
    grid-template-columns: 1fr;
    margin-top: 45px;
  }

  .value-card {
    min-height: 320px;
  }

  .mission-card {
    min-height: auto;
    padding: 38px 25px;
  }

  .mission-card-icon {
    margin-top: 40px;
  }

  .mission-card h2 {
    font-size: 39px;
  }

  .why-jersey-section {
    min-height: auto;
  }

  .why-jersey-grid {
    gap: 55px;
  }

  .why-jersey-item {
    grid-template-columns: 50px 1fr;
    padding: 18px;
  }

  .why-jersey-item > span {
    width: 50px;
    height: 50px;
  }

  .why-jersey-info {
    padding: 25px 20px;
  }

  .why-jersey-info-head strong {
    font-size: 34px;
  }

  .comparison-row {
    grid-template-columns: 90px 1fr 36px;
    gap: 8px;
  }

  .comparison-row > span {
    font-size: 8px;
  }

  .about-process-timeline {
    gap: 75px;
    margin-top: 55px;
  }

  .about-process-step {
    padding-left: 42px;
  }

  .about-process-image {
    height: 280px;
  }

  .about-process-content h3 {
    font-size: 35px;
  }

  .quality-visual {
    min-height: 500px;
  }

  .quality-visual > img {
    height: 500px;
    border-radius:
      110px
      var(--radius-medium)
      var(--radius-medium)
      var(--radius-medium);
  }

  .quality-visual-card {
    right: -4px;
    bottom: 25px;
    min-width: 0;
    max-width: calc(100% - 15px);
    padding: 16px;
    border-width: 6px;
  }

  .about-stats-grid {
    grid-template-columns: 1fr 1fr;
  }

  .about-stat {
    padding: 15px 10px;
  }

  .about-stat strong,
  .about-stat > span {
    font-size: 46px;
  }

  .about-stat > span {
    font-size: 25px;
  }

  .about-stat p {
    font-size: 7px;
    letter-spacing: 1px;
  }

  .about-cta-section {
    padding: 75px 0;
  }

  .about-cta-card {
    min-height: 590px;
  }

  .about-cta-overlay {
    background: linear-gradient(
      180deg,
      rgba(7, 29, 18, 0.78),
      rgba(7, 29, 18, 0.97)
    );
  }

  .about-cta-content {
    padding: 35px 24px;
  }

  .about-cta-content h2 {
    font-size: 48px;
  }

  .about-cta-buttons {
    align-items: stretch;
    flex-direction: column;
  }

  .about-cta-buttons .btn {
    width: 100%;
  }
}

@media (max-width: 380px) {
  .subpage-hero h1 {
    font-size: 49px;
  }

  .about-story-visual {
    min-height: 420px;
  }

  .about-story-small {
    width: 135px;
    height: 175px;
  }

  .mission-card h2 {
    font-size: 35px;
  }
}

/* =========================================================
   ÜRÜNLER SAYFASI
   1. PARÇA
========================================================= */

/* =========================================================
   ÜRÜNLER GİRİŞ ALANI
========================================================= */

.products-intro-section {
  background:
    radial-gradient(
      circle at 100% 0%,
      rgba(76, 147, 104, 0.08),
      transparent 30%
    ),
    var(--cream-50);
}

.products-intro-grid {
  display: grid;
  grid-template-columns: 1fr 460px;
  align-items: center;
  gap: 95px;
}

.products-intro-lead {
  margin-top: 28px;
  color: var(--green-900);
  font-size: 20px;
  font-weight: 600;
  line-height: 1.75;
}

.products-intro-content > p:not(.products-intro-lead) {
  margin-top: 18px;
  color: var(--text-medium);
}

.products-intro-features {
  display: grid;
  gap: 18px;
}

.products-intro-feature {
  display: grid;
  grid-template-columns: 62px 1fr;
  align-items: center;
  gap: 17px;
  padding: 23px;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-medium);
  background: var(--white);
  box-shadow: var(--shadow-small);
  transition:
    transform var(--transition-fast),
    box-shadow var(--transition-fast),
    border-color var(--transition-fast);
}

.products-intro-feature:hover {
  transform: translateX(8px);
  border-color: var(--green-200);
  box-shadow: var(--shadow-medium);
}

.products-intro-feature > span {
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--green-800);
  font-size: 21px;
}

.products-intro-feature strong {
  display: block;
  color: var(--green-950);
  font-size: 15px;
}

.products-intro-feature p {
  margin-top: 4px;
  color: var(--text-light);
  font-size: 12px;
  line-height: 1.6;
}

/* =========================================================
   ÜRÜN KATALOĞU
========================================================= */

.products-catalog-section {
  background: var(--cream-100);
}

.products-filter-header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 35px;
}

.product-filter-buttons {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.product-filter-btn {
  min-height: 43px;
  padding: 10px 18px;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-full);
  color: var(--text-medium);
  background: var(--white);
  font-size: 11px;
  font-weight: 800;
  transition:
    color var(--transition-fast),
    background var(--transition-fast),
    border-color var(--transition-fast),
    transform var(--transition-fast);
}

.product-filter-btn:hover,
.product-filter-btn.active {
  color: var(--white);
  border-color: var(--green-800);
  background: var(--green-800);
  transform: translateY(-2px);
}

.products-catalog-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  margin-top: 65px;
}

.catalog-product-card {
  overflow: hidden;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-large);
  background: var(--white);
  box-shadow: var(--shadow-small);
  transition:
    transform var(--transition-slow),
    opacity var(--transition-normal),
    box-shadow var(--transition-normal);
}

.catalog-product-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-large);
}

.catalog-product-card.filter-hidden {
  display: none;
}

.catalog-product-image {
  position: relative;
  height: 420px;
  overflow: hidden;
  background: var(--green-100);
}

.catalog-product-image::after {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  background: linear-gradient(
    180deg,
    transparent 55%,
    rgba(8, 29, 19, 0.18)
  );
}

.catalog-product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.85s ease;
}

.catalog-product-card:hover .catalog-product-image img {
  transform: scale(1.07);
}

.catalog-product-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  z-index: 2;
  padding: 9px 14px;
  border-radius: var(--radius-full);
  color: var(--white);
  background: var(--green-800);
  box-shadow: var(--shadow-small);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 1.4px;
  text-transform: uppercase;
}

.catalog-product-detail {
  position: absolute;
  right: 20px;
  bottom: 20px;
  z-index: 2;
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--green-950);
  background: var(--white);
  box-shadow: var(--shadow-medium);
  font-size: 16px;
  transition:
    color var(--transition-fast),
    background var(--transition-fast),
    transform var(--transition-fast);
}

.catalog-product-detail:hover {
  color: var(--white);
  background: var(--green-800);
  transform: rotate(90deg) scale(1.05);
}

.catalog-product-content {
  padding: 31px;
}

.catalog-product-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.catalog-product-category {
  color: var(--green-600);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 1.7px;
  text-transform: uppercase;
}

.catalog-product-number {
  color: var(--green-200);
  font-family: var(--font-title);
  font-size: 22px;
}

.catalog-product-content h2 {
  margin-top: 9px;
  color: var(--green-950);
  font-family: var(--font-title);
  font-size: 39px;
  font-weight: 400;
  line-height: 1.12;
}

.catalog-product-content > p {
  margin-top: 15px;
  color: var(--text-medium);
  font-size: 13px;
  line-height: 1.75;
}

.catalog-product-tags {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}

.catalog-product-tags span {
  padding: 7px 11px;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-full);
  color: var(--green-700);
  background: var(--green-100);
  font-size: 9px;
  font-weight: 800;
}

.catalog-product-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 27px;
  padding-top: 22px;
  border-top: 1px solid var(--border-light);
}

.catalog-detail-button {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--green-900);
  background: transparent;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.catalog-detail-button i {
  transition: transform var(--transition-fast);
}

.catalog-detail-button:hover i {
  transform: translateX(5px);
}

.catalog-product-actions > a {
  width: 45px;
  height: 45px;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: #1faa59;
  font-size: 19px;
  box-shadow: 0 12px 27px rgba(31, 170, 89, 0.25);
  transition:
    transform var(--transition-fast),
    background var(--transition-fast);
}

.catalog-product-actions > a:hover {
  transform: translateY(-4px);
  background: #168845;
}

/* =========================================================
   ÜRÜN KALİTE ALANI
========================================================= */

.product-quality-section {
  background: var(--cream-50);
}

.product-quality-grid {
  display: grid;
  grid-template-columns: 0.95fr 1fr;
  align-items: center;
  gap: 95px;
}

.product-quality-visual {
  position: relative;
  min-height: 670px;
}

.product-quality-visual > img {
  width: 100%;
  height: 670px;
  object-fit: cover;
  border-radius:
    180px
    var(--radius-large)
    var(--radius-large)
    var(--radius-large);
  box-shadow: var(--shadow-large);
}

.product-quality-label {
  position: absolute;
  right: -25px;
  bottom: 45px;
  min-width: 320px;
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 21px 24px;
  border: 8px solid var(--cream-50);
  border-radius: var(--radius-medium);
  color: var(--white);
  background: var(--green-900);
  box-shadow: var(--shadow-medium);
}

.product-quality-label > span {
  width: 49px;
  height: 49px;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--green-950);
  background: var(--cream-200);
  font-size: 18px;
}

.product-quality-label strong {
  display: block;
  font-size: 13px;
}

.product-quality-label p {
  margin-top: 3px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 10px;
}

.product-quality-lead {
  margin-top: 28px;
  color: var(--green-900);
  font-size: 18px;
  font-weight: 600;
  line-height: 1.75;
}

.product-quality-list {
  display: grid;
  gap: 19px;
  margin-top: 33px;
}

.product-quality-item {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 17px;
  padding: 21px;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-medium);
  background: var(--white);
  box-shadow: var(--shadow-small);
  transition:
    transform var(--transition-fast),
    border-color var(--transition-fast),
    box-shadow var(--transition-fast);
}

.product-quality-item:hover {
  transform: translateX(8px);
  border-color: var(--green-200);
  box-shadow: var(--shadow-medium);
}

.product-quality-item > span {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--green-800);
  font-size: 19px;
}

.product-quality-item h3 {
  color: var(--green-950);
  font-family: var(--font-title);
  font-size: 25px;
  font-weight: 400;
}

.product-quality-item p {
  margin-top: 6px;
  color: var(--text-light);
  font-size: 12px;
  line-height: 1.65;
}

/* =========================================================
   SİPARİŞ ADIMLARI
========================================================= */

.order-process-section {
  background: var(--green-100);
}

.order-process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 65px;
}

.order-process-card {
  position: relative;
  min-height: 370px;
  overflow: hidden;
  padding: 34px 29px;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-large);
  background: var(--white);
  box-shadow: var(--shadow-small);
  transition:
    transform var(--transition-slow),
    box-shadow var(--transition-normal),
    background var(--transition-normal);
}

.order-process-card::after {
  position: absolute;
  right: -70px;
  bottom: -100px;
  width: 220px;
  height: 220px;
  content: "";
  border-radius: 50%;
  background: var(--green-100);
  transition:
    transform var(--transition-slow),
    background var(--transition-normal);
}

.order-process-card:hover {
  transform: translateY(-10px);
  color: var(--white);
  background: var(--green-950);
  box-shadow: var(--shadow-medium);
}

.order-process-card:hover::after {
  transform: scale(1.3);
  background: rgba(255, 255, 255, 0.06);
}

.order-process-number {
  position: relative;
  z-index: 1;
  color: var(--green-200);
  font-family: var(--font-title);
  font-size: 20px;
}

.order-process-icon {
  position: relative;
  z-index: 1;
  width: 72px;
  height: 72px;
  display: grid;
  place-items: center;
  margin-top: 44px;
  border-radius: 50%;
  color: var(--white);
  background: var(--green-800);
  font-size: 24px;
  transition:
    color var(--transition-normal),
    background var(--transition-normal),
    transform var(--transition-normal);
}

.order-process-card:hover .order-process-icon {
  color: var(--green-950);
  background: var(--cream-200);
  transform: rotate(8deg);
}

.order-process-card h3 {
  position: relative;
  z-index: 1;
  margin-top: 26px;
  color: var(--green-950);
  font-family: var(--font-title);
  font-size: 31px;
  font-weight: 400;
  transition: color var(--transition-normal);
}

.order-process-card p {
  position: relative;
  z-index: 1;
  margin-top: 11px;
  color: var(--text-medium);
  font-size: 13px;
  line-height: 1.75;
  transition: color var(--transition-normal);
}

.order-process-card:hover h3 {
  color: var(--white);
}

.order-process-card:hover p,
.order-process-card:hover .order-process-number {
  color: rgba(255, 255, 255, 0.65);
}

/* =========================================================
   ÜRÜNLER SAYFASI
   2. PARÇA
========================================================= */

/* =========================================================
   ÜRÜNLER CTA
========================================================= */

.products-cta-section {
  padding: 110px 0;
  background: var(--cream-50);
}

.products-cta-card {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  overflow: hidden;
  border-radius: var(--radius-large);
  box-shadow: var(--shadow-large);
}

.products-cta-media,
.products-cta-overlay {
  position: absolute;
  inset: 0;
}

.products-cta-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.products-cta-overlay {
  background:
    linear-gradient(
      90deg,
      rgba(7, 29, 18, 0.96) 0%,
      rgba(7, 29, 18, 0.79) 58%,
      rgba(7, 29, 18, 0.24) 100%
    );
}

.products-cta-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
  padding: 75px;
  color: var(--white);
}

.products-cta-content h2 {
  font-family: var(--font-title);
  font-size: clamp(46px, 6vw, 76px);
  font-weight: 400;
  line-height: 1.02;
  letter-spacing: -2px;
}

.products-cta-content h2 span {
  display: block;
  color: var(--cream-300);
  font-style: italic;
}

.products-cta-content > p {
  max-width: 590px;
  margin-top: 23px;
  color: rgba(255, 255, 255, 0.68);
}

.products-cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
  margin-top: 32px;
}

/* =========================================================
   ÜRÜN DETAY MODALI
========================================================= */

.product-modal {
  position: fixed;
  inset: 0;
  z-index: 9998;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 25px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity var(--transition-normal),
    visibility var(--transition-normal);
}

.product-modal.open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.product-modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(5, 18, 11, 0.76);
  backdrop-filter: blur(10px);
}

.product-modal-dialog {
  position: relative;
  z-index: 2;
  width: min(980px, 100%);
  max-height: calc(100vh - 50px);
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  overflow: auto;
  border-radius: var(--radius-large);
  background: var(--white);
  box-shadow: 0 35px 100px rgba(0, 0, 0, 0.4);
  transform: translateY(35px) scale(0.96);
  transition: transform var(--transition-slow);
}

.product-modal.open .product-modal-dialog {
  transform: translateY(0) scale(1);
}

.product-modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 4;
  width: 45px;
  height: 45px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--green-950);
  background: var(--white);
  box-shadow: var(--shadow-small);
  font-size: 17px;
  transition:
    color var(--transition-fast),
    background var(--transition-fast),
    transform var(--transition-fast);
}

.product-modal-close:hover {
  color: var(--white);
  background: var(--green-900);
  transform: rotate(90deg);
}

.product-modal-image {
  min-height: 620px;
  background: var(--green-100);
}

.product-modal-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-modal-content {
  padding: 64px 52px 50px;
}

.product-modal-category {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--green-600);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 1.8px;
  text-transform: uppercase;
}

.product-modal-category::before {
  width: 25px;
  height: 1px;
  content: "";
  background: currentColor;
}

.product-modal-content > h2 {
  margin-top: 11px;
  color: var(--green-950);
  font-family: var(--font-title);
  font-size: 52px;
  font-weight: 400;
  line-height: 1.03;
}

.product-modal-content > p {
  margin-top: 20px;
  color: var(--text-medium);
  font-size: 14px;
  line-height: 1.8;
}

.product-modal-feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 28px;
}

.product-modal-feature {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 11px;
  padding: 15px;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-small);
  background: var(--cream-100);
}

.product-modal-feature > i {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--green-800);
  font-size: 14px;
}

.product-modal-feature strong {
  display: block;
  color: var(--green-950);
  font-size: 11px;
}

.product-modal-feature span {
  display: block;
  margin-top: 2px;
  color: var(--text-light);
  font-size: 9px;
  line-height: 1.5;
}

.product-modal-content > h3 {
  margin-top: 30px;
  color: var(--green-950);
  font-family: var(--font-title);
  font-size: 26px;
  font-weight: 400;
}

.product-modal-content > ul {
  display: grid;
  gap: 11px;
  margin: 17px 0 30px;
}

.product-modal-content > ul li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-medium);
  font-size: 12px;
}

.product-modal-content > ul li i {
  width: 25px;
  height: 25px;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--green-700);
  font-size: 8px;
}

/* =========================================================
   ÜRÜNLER SAYFASI RESPONSIVE
========================================================= */

@media (max-width: 1100px) {
  .products-intro-grid {
    grid-template-columns: 1fr 400px;
    gap: 55px;
  }

  .product-quality-grid {
    gap: 55px;
  }

  .catalog-product-image {
    height: 360px;
  }

  .product-modal-dialog {
    width: min(900px, 100%);
  }
}

@media (max-width: 900px) {
  .products-intro-grid,
  .product-quality-grid {
    grid-template-columns: 1fr;
  }

  .products-intro-features {
    width: min(100%, 620px);
  }

  .products-filter-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .products-catalog-grid {
    grid-template-columns: 1fr;
  }

  .catalog-product-card {
    width: min(100%, 680px);
    margin-inline: auto;
  }

  .catalog-product-image {
    height: 420px;
  }

  .product-quality-visual {
    width: min(100%, 650px);
  }

  .order-process-grid {
    grid-template-columns: 1fr;
  }

  .order-process-card {
    min-height: 320px;
  }

  .product-modal-dialog {
    grid-template-columns: 1fr;
    max-width: 700px;
  }

  .product-modal-image {
    min-height: 380px;
    max-height: 440px;
  }

  .product-modal-content {
    padding: 45px 35px 40px;
  }
}

@media (max-width: 650px) {
  .products-intro-grid {
    gap: 45px;
  }

  .products-intro-lead {
    font-size: 17px;
  }

  .products-intro-feature {
    grid-template-columns: 52px 1fr;
    padding: 18px;
  }

  .products-intro-feature > span {
    width: 52px;
    height: 52px;
  }

  .product-filter-buttons {
    width: 100%;
  }

  .product-filter-btn {
    flex: 1;
    min-width: 110px;
    padding-inline: 12px;
    font-size: 9px;
  }

  .products-catalog-grid {
    margin-top: 45px;
  }

  .catalog-product-image {
    height: 300px;
  }

  .catalog-product-content {
    padding: 24px 20px;
  }

  .catalog-product-content h2 {
    font-size: 33px;
  }

  .catalog-product-actions {
    gap: 10px;
  }

  .catalog-detail-button {
    font-size: 9px;
  }

  .product-quality-visual {
    min-height: 500px;
  }

  .product-quality-visual > img {
    height: 500px;
    border-radius:
      115px
      var(--radius-medium)
      var(--radius-medium)
      var(--radius-medium);
  }

  .product-quality-label {
    right: -4px;
    bottom: 24px;
    min-width: 0;
    max-width: calc(100% - 12px);
    padding: 16px;
    border-width: 6px;
  }

  .product-quality-item {
    grid-template-columns: 50px 1fr;
    padding: 18px;
  }

  .product-quality-item > span {
    width: 50px;
    height: 50px;
  }

  .order-process-card {
    min-height: 300px;
    padding: 28px 24px;
  }

  .products-cta-section {
    padding: 75px 0;
  }

  .products-cta-card {
    min-height: 590px;
  }

  .products-cta-overlay {
    background: linear-gradient(
      180deg,
      rgba(7, 29, 18, 0.78),
      rgba(7, 29, 18, 0.97)
    );
  }

  .products-cta-content {
    padding: 35px 24px;
  }

  .products-cta-content h2 {
    font-size: 48px;
  }

  .products-cta-buttons {
    align-items: stretch;
    flex-direction: column;
  }

  .products-cta-buttons .btn {
    width: 100%;
  }

  .product-modal {
    padding: 10px;
  }

  .product-modal-dialog {
    max-height: calc(100vh - 20px);
    border-radius: var(--radius-medium);
  }

  .product-modal-image {
    min-height: 280px;
    max-height: 320px;
  }

  .product-modal-content {
    padding: 34px 22px 28px;
  }

  .product-modal-content > h2 {
    font-size: 40px;
  }

  .product-modal-feature-grid {
    grid-template-columns: 1fr;
  }

  .product-modal-close {
    top: 12px;
    right: 12px;
    width: 40px;
    height: 40px;
  }
}

@media (max-width: 380px) {
  .catalog-product-image {
    height: 260px;
  }

  .catalog-product-content h2 {
    font-size: 30px;
  }

  .products-cta-content h2 {
    font-size: 43px;
  }

  .product-modal-content > h2 {
    font-size: 36px;
  }
}

/* =========================================================
   GALERİ SAYFASI
   1. PARÇA
========================================================= */

/* =========================================================
   GALERİ FİLTRELERİ
========================================================= */

.gallery-section {
  background:
    radial-gradient(
      circle at 100% 0%,
      rgba(76, 147, 104, 0.08),
      transparent 30%
    ),
    var(--cream-50);
}

.gallery-filter {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 42px;
}

.gallery-btn {
  min-height: 43px;
  padding: 10px 18px;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-full);
  color: var(--text-medium);
  background: var(--white);
  font-size: 11px;
  font-weight: 800;
  transition:
    color var(--transition-fast),
    background var(--transition-fast),
    border-color var(--transition-fast),
    transform var(--transition-fast);
}

.gallery-btn:hover,
.gallery-btn.active {
  color: var(--white);
  border-color: var(--green-800);
  background: var(--green-800);
  transform: translateY(-2px);
}

/* =========================================================
   MASONRY GALERİ
========================================================= */

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 235px;
  grid-auto-flow: dense;
  gap: 18px;
  margin-top: 58px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-medium);
  background: var(--green-100);
  box-shadow: var(--shadow-small);
  transition:
    transform var(--transition-slow),
    box-shadow var(--transition-normal),
    opacity var(--transition-normal);
}

.gallery-item:hover {
  transform: translateY(-7px);
  box-shadow: var(--shadow-large);
}

.gallery-item.gallery-item-tall {
  grid-row: span 2;
}

.gallery-item.gallery-item-wide {
  grid-column: span 2;
}

.gallery-item.gallery-hidden {
  display: none;
}

.gallery-open {
  width: 100%;
  height: 100%;
  display: block;
  position: relative;
  overflow: hidden;
  border: 0;
  padding: 0;
  background: transparent;
  text-align: left;
}

.gallery-open img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition:
    transform 0.85s ease,
    filter var(--transition-normal);
}

.gallery-item:hover .gallery-open img {
  transform: scale(1.08);
  filter: saturate(1.08);
}

.gallery-item-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  padding: 24px;
  color: var(--white);
  background:
    linear-gradient(
      180deg,
      rgba(7, 29, 18, 0.04) 20%,
      rgba(7, 29, 18, 0.2) 50%,
      rgba(7, 29, 18, 0.88) 100%
    );
}

.gallery-item-overlay span {
  color: rgba(255, 255, 255, 0.65);
  font-size: 8px;
  font-weight: 900;
  letter-spacing: 1.6px;
  text-transform: uppercase;
}

.gallery-item-overlay h3 {
  margin-top: 5px;
  font-family: var(--font-title);
  font-size: 25px;
  font-weight: 400;
  line-height: 1.1;
}

.gallery-item-overlay > i {
  width: 43px;
  height: 43px;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  opacity: 0;
  transform: translateY(10px);
  border-radius: 50%;
  color: var(--green-950);
  background: var(--white);
  font-size: 13px;
  transition:
    opacity var(--transition-fast),
    transform var(--transition-fast),
    background var(--transition-fast),
    color var(--transition-fast);
}

.gallery-item:hover .gallery-item-overlay > i {
  opacity: 1;
  transform: translateY(0);
}

/* =========================================================
   INSTAGRAM ALANI
========================================================= */

.gallery-instagram-section {
  background: var(--cream-100);
}

.gallery-instagram-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: 95px;
}

.gallery-instagram-content > p {
  max-width: 590px;
  margin-top: 25px;
  color: var(--text-medium);
}

.gallery-instagram-content .btn {
  margin-top: 30px;
}

.gallery-instagram-card {
  overflow: hidden;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-large);
  background: var(--white);
  box-shadow: var(--shadow-large);
}

.instagram-card-head {
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 16px 20px;
  border-bottom: 1px solid var(--border-light);
}

.instagram-card-profile {
  display: flex;
  align-items: center;
  gap: 12px;
}

.instagram-card-profile img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  border: 1px solid var(--border-light);
  border-radius: 50%;
  background: var(--cream-100);
}

.instagram-card-profile strong {
  display: block;
  color: var(--green-950);
  font-size: 12px;
}

.instagram-card-profile span {
  display: block;
  margin-top: 2px;
  color: var(--text-light);
  font-size: 9px;
}

.instagram-card-head > i {
  color: var(--green-900);
  font-size: 25px;
}

.instagram-card-images {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3px;
  padding: 3px;
}

.instagram-card-images img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.instagram-card-images img:hover {
  transform: scale(1.03);
}

/* =========================================================
   GALERİ CTA
========================================================= */

.gallery-cta-section {
  padding: 110px 0;
  background: var(--cream-50);
}

.gallery-cta-card {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  overflow: hidden;
  border-radius: var(--radius-large);
  box-shadow: var(--shadow-large);
}

.gallery-cta-media,
.gallery-cta-overlay {
  position: absolute;
  inset: 0;
}

.gallery-cta-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-cta-overlay {
  background:
    linear-gradient(
      90deg,
      rgba(7, 29, 18, 0.96) 0%,
      rgba(7, 29, 18, 0.79) 58%,
      rgba(7, 29, 18, 0.24) 100%
    );
}

.gallery-cta-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
  padding: 75px;
  color: var(--white);
}

.gallery-cta-content h2 {
  font-family: var(--font-title);
  font-size: clamp(46px, 6vw, 76px);
  font-weight: 400;
  line-height: 1.02;
  letter-spacing: -2px;
}

.gallery-cta-content h2 span {
  display: block;
  color: var(--cream-300);
  font-style: italic;
}

.gallery-cta-content > p {
  max-width: 590px;
  margin-top: 23px;
  color: rgba(255, 255, 255, 0.68);
}

.gallery-cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
  margin-top: 32px;
}

/* =========================================================
   LIGHTBOX
========================================================= */

.gallery-lightbox {
  position: fixed;
  inset: 0;
  z-index: 9998;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 25px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity var(--transition-normal),
    visibility var(--transition-normal);
}

.gallery-lightbox.open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.gallery-lightbox-overlay {
  position: absolute;
  inset: 0;
  background: rgba(4, 15, 9, 0.9);
  backdrop-filter: blur(12px);
}

.gallery-lightbox-dialog {
  position: relative;
  z-index: 2;
  width: min(1120px, 100%);
  max-height: calc(100vh - 50px);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-large);
  background: #0c2117;
  box-shadow: 0 35px 110px rgba(0, 0, 0, 0.55);
  transform: translateY(30px) scale(0.96);
  transition: transform var(--transition-slow);
}

.gallery-lightbox.open .gallery-lightbox-dialog {
  transform: translateY(0) scale(1);
}

.gallery-lightbox-image {
  width: 100%;
  height: min(72vh, 720px);
  background: var(--green-950);
}

.gallery-lightbox-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.gallery-lightbox-close {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 5;
  width: 45px;
  height: 45px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--green-950);
  background: var(--white);
  box-shadow: var(--shadow-small);
  font-size: 17px;
  transition:
    color var(--transition-fast),
    background var(--transition-fast),
    transform var(--transition-fast);
}

.gallery-lightbox-close:hover {
  color: var(--white);
  background: var(--green-800);
  transform: rotate(90deg);
}

.gallery-lightbox-nav {
  position: absolute;
  top: 50%;
  z-index: 4;
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  transform: translateY(-50%);
  border-radius: 50%;
  color: var(--green-950);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow-medium);
  transition:
    color var(--transition-fast),
    background var(--transition-fast),
    transform var(--transition-fast);
}

.gallery-lightbox-nav:hover {
  color: var(--white);
  background: var(--green-700);
}

.gallery-lightbox-prev {
  left: 18px;
}

.gallery-lightbox-next {
  right: 18px;
}

.gallery-lightbox-prev:hover {
  transform: translateY(-50%) translateX(-3px);
}

.gallery-lightbox-next:hover {
  transform: translateY(-50%) translateX(3px);
}

.gallery-lightbox-info {
  min-height: 105px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  column-gap: 20px;
  padding: 21px 28px;
  color: var(--white);
}

.gallery-lightbox-info span {
  grid-column: 1;
  color: rgba(255, 255, 255, 0.55);
  font-size: 8px;
  font-weight: 900;
  letter-spacing: 1.6px;
  text-transform: uppercase;
}

.gallery-lightbox-info h2 {
  grid-column: 1;
  margin-top: 3px;
  font-family: var(--font-title);
  font-size: 28px;
  font-weight: 400;
}

.gallery-lightbox-info p {
  grid-column: 2;
  grid-row: 1 / 3;
  color: rgba(255, 255, 255, 0.55);
  font-size: 11px;
  font-weight: 800;
}

/* =========================================================
   GALERİ SAYFASI
   2. PARÇA - RESPONSIVE
========================================================= */

@media (max-width: 1100px) {
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .gallery-instagram-grid {
    gap: 55px;
  }
}

@media (max-width: 900px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 220px;
  }

  .gallery-item.gallery-item-wide {
    grid-column: span 2;
  }

  .gallery-instagram-grid {
    grid-template-columns: 1fr;
  }

  .gallery-instagram-card {
    width: min(100%, 700px);
  }

  .gallery-lightbox-dialog {
    width: min(900px, 100%);
  }
}

@media (max-width: 650px) {
  .gallery-filter {
    justify-content: flex-start;
    overflow-x: auto;
    flex-wrap: nowrap;
    padding-bottom: 8px;
    scrollbar-width: none;
  }

  .gallery-filter::-webkit-scrollbar {
    display: none;
  }

  .gallery-btn {
    flex: 0 0 auto;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 300px;
    gap: 14px;
    margin-top: 42px;
  }

  .gallery-item.gallery-item-wide,
  .gallery-item.gallery-item-tall {
    grid-column: auto;
    grid-row: auto;
  }

  .gallery-item-overlay {
    padding: 20px;
  }

  .gallery-item-overlay h3 {
    font-size: 23px;
  }

  .gallery-instagram-section {
    padding-top: 75px;
    padding-bottom: 75px;
  }

  .instagram-card-head {
    min-height: 74px;
    padding: 13px 15px;
  }

  .instagram-card-profile img {
    width: 42px;
    height: 42px;
  }

  .gallery-cta-section {
    padding: 75px 0;
  }

  .gallery-cta-card {
    min-height: 590px;
  }

  .gallery-cta-overlay {
    background: linear-gradient(
      180deg,
      rgba(7, 29, 18, 0.76),
      rgba(7, 29, 18, 0.97)
    );
  }

  .gallery-cta-content {
    padding: 35px 24px;
  }

  .gallery-cta-content h2 {
    font-size: 48px;
  }

  .gallery-cta-buttons {
    flex-direction: column;
    align-items: stretch;
  }

  .gallery-cta-buttons .btn {
    width: 100%;
  }

  .gallery-lightbox {
    padding: 10px;
  }

  .gallery-lightbox-dialog {
    max-height: calc(100vh - 20px);
    border-radius: var(--radius-medium);
  }

  .gallery-lightbox-image {
    height: 62vh;
  }

  .gallery-lightbox-nav {
    width: 43px;
    height: 43px;
  }

  .gallery-lightbox-prev {
    left: 10px;
  }

  .gallery-lightbox-next {
    right: 10px;
  }

  .gallery-lightbox-close {
    top: 10px;
    right: 10px;
    width: 41px;
    height: 41px;
  }

  .gallery-lightbox-info {
    min-height: 95px;
    padding: 17px 18px;
  }

  .gallery-lightbox-info h2 {
    font-size: 23px;
  }
}

@media (max-width: 380px) {
  .gallery-grid {
    grid-auto-rows: 260px;
  }

  .gallery-cta-content h2 {
    font-size: 43px;
  }

  .gallery-lightbox-image {
    height: 58vh;
  }

  .gallery-lightbox-info {
    grid-template-columns: 1fr;
  }

  .gallery-lightbox-info p {
    grid-column: 1;
    grid-row: auto;
    margin-top: 7px;
  }
}

/* =========================================================
   İLETİŞİM SAYFASI
   1. PARÇA
========================================================= */

/* =========================================================
   İLETİŞİM BİLGİ KARTLARI
========================================================= */

.contact-info-section {
  background:
    radial-gradient(
      circle at 100% 0%,
      rgba(76, 147, 104, 0.08),
      transparent 30%
    ),
    var(--cream-50);
}

.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  margin-top: 65px;
}

.contact-info-card {
  position: relative;
  min-height: 390px;
  overflow: hidden;
  padding: 32px 27px;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-large);
  background: var(--white);
  box-shadow: var(--shadow-small);
  transition:
    transform var(--transition-slow),
    box-shadow var(--transition-normal),
    background var(--transition-normal),
    color var(--transition-normal);
}

.contact-info-card::after {
  position: absolute;
  right: -75px;
  bottom: -105px;
  width: 230px;
  height: 230px;
  content: "";
  border-radius: 50%;
  background: var(--green-100);
  transition:
    transform var(--transition-slow),
    background var(--transition-normal);
}

.contact-info-card:hover {
  transform: translateY(-10px);
  color: var(--white);
  background: var(--green-950);
  box-shadow: var(--shadow-large);
}

.contact-info-card:hover::after {
  transform: scale(1.3);
  background: rgba(255, 255, 255, 0.06);
}

.contact-card-number {
  position: relative;
  z-index: 1;
  color: var(--green-200);
  font-family: var(--font-title);
  font-size: 20px;
}

.contact-card-icon {
  position: relative;
  z-index: 1;
  width: 72px;
  height: 72px;
  display: grid;
  place-items: center;
  margin-top: 44px;
  border-radius: 50%;
  color: var(--white);
  background: var(--green-800);
  font-size: 24px;
  transition:
    color var(--transition-normal),
    background var(--transition-normal),
    transform var(--transition-normal);
}

.contact-info-card:hover .contact-card-icon {
  color: var(--green-950);
  background: var(--cream-200);
  transform: rotate(8deg);
}

.contact-card-label {
  position: relative;
  z-index: 1;
  display: block;
  margin-top: 26px;
  color: var(--green-600);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 1.7px;
  text-transform: uppercase;
  transition: color var(--transition-normal);
}

.contact-info-card h3 {
  position: relative;
  z-index: 1;
  margin-top: 7px;
  color: var(--green-950);
  font-family: var(--font-title);
  font-size: 30px;
  font-weight: 400;
  line-height: 1.13;
  transition: color var(--transition-normal);
}

.contact-info-card p {
  position: relative;
  z-index: 1;
  margin-top: 13px;
  color: var(--text-medium);
  font-size: 12px;
  line-height: 1.75;
  transition: color var(--transition-normal);
}

.contact-card-link {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 22px;
  color: var(--green-800);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  transition: color var(--transition-normal);
}

.contact-card-link i {
  transition: transform var(--transition-fast);
}

.contact-info-card:hover .contact-card-link i {
  transform: translateX(5px);
}

.contact-info-card:hover h3,
.contact-info-card:hover .contact-card-label,
.contact-info-card:hover .contact-card-link {
  color: var(--white);
}

.contact-info-card:hover p,
.contact-info-card:hover .contact-card-number {
  color: rgba(255, 255, 255, 0.64);
}

/* =========================================================
   İLETİŞİM FORM ALANI
========================================================= */

.contact-form-section {
  background: var(--cream-100);
}

.contact-form-grid {
  display: grid;
  grid-template-columns: 1fr 430px;
  align-items: start;
  gap: 80px;
}

.contact-form-lead {
  max-width: 680px;
  margin-top: 27px;
  color: var(--text-medium);
  font-size: 16px;
  line-height: 1.8;
}

.contact-form {
  display: grid;
  gap: 22px;
  margin-top: 38px;
  padding: 36px;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-large);
  background: var(--white);
  box-shadow: var(--shadow-medium);
}

.contact-form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.form-group {
  display: grid;
  gap: 9px;
}

.form-group label {
  color: var(--green-950);
  font-size: 11px;
  font-weight: 800;
}

.form-control {
  position: relative;
  display: flex;
  align-items: center;
}

.form-control > i {
  position: absolute;
  left: 17px;
  z-index: 2;
  color: var(--green-600);
  font-size: 14px;
  pointer-events: none;
}

.form-control input,
.form-control select,
.form-control textarea {
  width: 100%;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-small);
  outline: none;
  color: var(--text-dark);
  background: var(--cream-50);
  font-size: 13px;
  transition:
    border-color var(--transition-fast),
    box-shadow var(--transition-fast),
    background var(--transition-fast);
}

.form-control input,
.form-control select {
  min-height: 56px;
  padding: 0 17px 0 47px;
}

.form-control textarea {
  min-height: 155px;
  resize: vertical;
  padding: 17px 17px 17px 47px;
  line-height: 1.7;
}

.form-control-textarea {
  align-items: flex-start;
}

.form-control-textarea > i {
  top: 19px;
}

.form-control input::placeholder,
.form-control textarea::placeholder {
  color: #9ba59e;
}

.form-control input:focus,
.form-control select:focus,
.form-control textarea:focus {
  border-color: var(--green-500);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(76, 147, 104, 0.12);
}

.contact-form-status {
  min-height: 22px;
  display: none;
  align-items: center;
  gap: 9px;
  padding: 11px 13px;
  border-radius: var(--radius-small);
  font-size: 11px;
  font-weight: 700;
}

.contact-form-status.visible {
  display: flex;
}

.contact-form-status.error {
  color: #8b2c2c;
  background: #ffe8e8;
}

.contact-form-status.success {
  color: var(--green-900);
  background: var(--green-100);
}

.contact-submit-button {
  width: fit-content;
  min-width: 235px;
}

/* =========================================================
   YAN BİLGİ PANELİ
========================================================= */

.contact-side-panel {
  position: sticky;
  top: 120px;
  overflow: hidden;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-large);
  background: var(--white);
  box-shadow: var(--shadow-medium);
}

.contact-side-image {
  position: relative;
  height: 360px;
  overflow: hidden;
}

.contact-side-image > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.9s ease;
}

.contact-side-panel:hover .contact-side-image > img {
  transform: scale(1.05);
}

.contact-side-image-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      180deg,
      rgba(7, 29, 18, 0.08) 20%,
      rgba(7, 29, 18, 0.82) 100%
    );
}

.contact-side-image-content {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2;
  padding: 28px;
  color: var(--white);
}

.contact-side-image-content span {
  color: rgba(255, 255, 255, 0.63);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 1.8px;
  text-transform: uppercase;
}

.contact-side-image-content h3 {
  margin-top: 7px;
  font-family: var(--font-title);
  font-size: 34px;
  font-weight: 400;
  line-height: 1.08;
}

.contact-working-hours {
  padding: 28px;
}

.contact-working-head {
  display: flex;
  align-items: center;
  gap: 13px;
}

.contact-working-head > span {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--green-800);
}

.contact-working-head strong {
  display: block;
  color: var(--green-950);
  font-size: 13px;
}

.contact-working-head p {
  margin-top: 2px;
  color: var(--text-light);
  font-size: 10px;
}

.contact-working-hours ul {
  display: grid;
  gap: 13px;
  margin-top: 25px;
}

.contact-working-hours li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding-bottom: 13px;
  border-bottom: 1px solid var(--border-light);
}

.contact-working-hours li span {
  color: var(--text-medium);
  font-size: 11px;
}

.contact-working-hours li strong {
  color: var(--green-900);
  font-size: 11px;
}

.contact-working-note {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 11px;
  margin-top: 22px;
  padding: 15px;
  border-radius: var(--radius-small);
  color: var(--green-900);
  background: var(--green-100);
}

.contact-working-note i {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: #1faa59;
  font-size: 17px;
}

.contact-working-note p {
  font-size: 10px;
  line-height: 1.6;
}

/* =========================================================
   İLETİŞİM SAYFASI
   2. PARÇA
========================================================= */

/* =========================================================
   HARİTA
========================================================= */

.contact-map-section{
    background:var(--cream-50);
}

.contact-map-header{
    display:flex;
    justify-content:space-between;
    align-items:end;
    gap:40px;
    margin-bottom:55px;
}

.contact-map-address{
    display:flex;
    align-items:center;
    gap:18px;
    padding:22px 24px;
    border-radius:var(--radius-medium);
    background:#fff;
    border:1px solid var(--border-light);
    box-shadow:var(--shadow-small);
}

.contact-map-address span{
    width:60px;
    height:60px;
    display:grid;
    place-items:center;
    border-radius:50%;
    background:var(--green-800);
    color:#fff;
    font-size:22px;
}

.contact-map-address strong{
    display:block;
    color:var(--green-950);
    font-size:15px;
}

.contact-map-address p{
    margin-top:4px;
    color:var(--text-light);
    font-size:12px;
}

.contact-map-wrapper{
    position:relative;
    overflow:hidden;
    border-radius:var(--radius-large);
    box-shadow:var(--shadow-large);
}

.contact-map-wrapper iframe{
    width:100%;
    height:620px;
    border:0;
}

.contact-map-overlay-card{
    position:absolute;
    left:45px;
    bottom:45px;
    width:370px;
    display:flex;
    gap:18px;
    padding:28px;
    border-radius:var(--radius-medium);
    background:#fff;
    box-shadow:var(--shadow-large);
}

.contact-map-icon{
    width:58px;
    height:58px;
    flex-shrink:0;
    display:grid;
    place-items:center;
    border-radius:50%;
    background:var(--green-800);
    color:#fff;
    font-size:20px;
}

.contact-map-label{
    display:block;
    color:var(--green-600);
    font-size:9px;
    font-weight:800;
    letter-spacing:1.6px;
    text-transform:uppercase;
}

.contact-map-overlay-card h3{
    margin-top:6px;
    color:var(--green-950);
    font-family:var(--font-title);
    font-size:30px;
    font-weight:400;
}

.contact-map-overlay-card p{
    margin-top:10px;
    color:var(--text-medium);
    font-size:12px;
    line-height:1.7;
}

.contact-map-overlay-card a{
    display:inline-flex;
    align-items:center;
    gap:8px;
    margin-top:18px;
    color:var(--green-800);
    font-size:11px;
    font-weight:800;
}

.contact-map-overlay-card a i{
    transition:.3s;
}

.contact-map-overlay-card a:hover i{
    transform:translateX(5px);
}

/* =========================================================
   FAQ
========================================================= */

.contact-faq-section{
    background:var(--green-100);
}

.contact-faq-grid{
    display:grid;
    grid-template-columns:420px 1fr;
    gap:80px;
}

.contact-faq-intro p{
    margin-top:22px;
}

.contact-faq-support{
    display:grid;
    grid-template-columns:60px 1fr;
    gap:16px;
    margin-top:45px;
    padding:24px;
    border-radius:var(--radius-medium);
    background:#fff;
    box-shadow:var(--shadow-small);
}

.contact-faq-support span{
    width:60px;
    height:60px;
    display:grid;
    place-items:center;
    border-radius:50%;
    background:var(--green-800);
    color:#fff;
    font-size:21px;
}

.contact-faq-support strong{
    display:block;
    color:var(--green-950);
}

.contact-faq-support p{
    margin-top:4px;
    color:var(--text-light);
    font-size:12px;
}

.contact-faq-support a{
    display:inline-flex;
    align-items:center;
    gap:8px;
    margin-top:13px;
    color:var(--green-800);
    font-weight:700;
    font-size:11px;
}

.contact-faq-list{
    display:grid;
    gap:16px;
}

.faq-item{
    overflow:hidden;
    border-radius:var(--radius-medium);
    background:#fff;
    border:1px solid var(--border-light);
    transition:.35s;
}

.faq-item.active{
    box-shadow:var(--shadow-medium);
}

.faq-question{
    width:100%;
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:18px;
    padding:24px 28px;
    background:none;
    border:0;
    cursor:pointer;
    text-align:left;
}

.faq-question span{
    color:var(--green-950);
    font-size:15px;
    font-weight:700;
}

.faq-question i{
    width:38px;
    height:38px;
    display:grid;
    place-items:center;
    border-radius:50%;
    background:var(--green-100);
    color:var(--green-800);
    transition:.35s;
}

.faq-item.active .faq-question i{
    transform:rotate(45deg);
}

.faq-answer{
    max-height:0;
    overflow:hidden;
    transition:max-height .45s ease;
}

.faq-item.active .faq-answer{
    max-height:250px;
}

.faq-answer p{
    padding:0 28px 24px;
    color:var(--text-medium);
    line-height:1.8;
    font-size:13px;
}

/* =========================================================
   CTA
========================================================= */

.contact-cta-section{
    padding:110px 0;
    background:var(--cream-50);
}

.contact-cta-card{
    position:relative;
    overflow:hidden;
    min-height:520px;
    border-radius:var(--radius-large);
    box-shadow:var(--shadow-large);
}

.contact-cta-media,
.contact-cta-overlay{
    position:absolute;
    inset:0;
}

.contact-cta-media img{
    width:100%;
    height:100%;
    object-fit:cover;
}

.contact-cta-overlay{
    background:linear-gradient(
        90deg,
        rgba(6,27,18,.94),
        rgba(6,27,18,.72),
        rgba(6,27,18,.20)
    );
}

.contact-cta-content{
    position:relative;
    z-index:2;
    max-width:760px;
    padding:75px;
    color:#fff;
}

.contact-cta-content h2{
    font-family:var(--font-title);
    font-size:clamp(46px,6vw,76px);
    font-weight:400;
    line-height:1.05;
}

.contact-cta-content h2 span{
    display:block;
    color:var(--cream-300);
    font-style:italic;
}

.contact-cta-content p{
    max-width:560px;
    margin-top:22px;
    color:rgba(255,255,255,.70);
}

.contact-cta-buttons{
    display:flex;
    gap:14px;
    flex-wrap:wrap;
    margin-top:35px;
}

/* =========================================================
   RESPONSIVE
========================================================= */

@media(max-width:1100px){

.contact-info-grid{
grid-template-columns:repeat(2,1fr);
}

.contact-form-grid,
.contact-faq-grid{
grid-template-columns:1fr;
}

.contact-side-panel{
position:relative;
top:auto;
}

.contact-map-header{
flex-direction:column;
align-items:flex-start;
}

}

@media(max-width:768px){

.contact-info-grid{
grid-template-columns:1fr;
}

.contact-form{
padding:24px;
}

.contact-form-row{
grid-template-columns:1fr;
}

.contact-map-wrapper iframe{
height:450px;
}

.contact-map-overlay-card{
position:relative;
left:auto;
bottom:auto;
width:100%;
border-radius:0;
}

.contact-cta-content{
padding:35px 24px;
}

.contact-cta-content h2{
font-size:46px;
}

.contact-cta-buttons{
flex-direction:column;
}

.contact-cta-buttons .btn{
width:100%;
}

}

@media(max-width:500px){

.contact-map-wrapper iframe{
height:360px;
}

.contact-side-image{
height:260px;
}

.contact-side-image-content h3{
font-size:28px;
}

.contact-map-overlay-card{
padding:20px;
}

.contact-map-overlay-card h3{
font-size:24px;
}

.faq-question{
padding:20px;
}

.faq-answer p{
padding:0 20px 20px;
}

.contact-cta-content h2{
font-size:38px;
}

}

.brand-logo{
    width:70px;
    height:70px;
    display:flex;
    align-items:center;
    justify-content:center;
    overflow:visible;

    border:none;
    background:none;
    border-radius:0;
    box-shadow:none;
}

.brand-logo img{
  margin-top: 20px;
    width:110%;
    height:110%;
    object-fit:cover;
    transform:scale(1.45);
}

@media (max-width: 768px) {

    .brand-logo img{
    width:110%;
    height:110%;
    object-fit:cover;
    object-position:center;
    transform:scale(1.45);
    margin-left: -8px;
  }
}

.benefits-product-card{
    position:relative;
    overflow:hidden;
}

.benefits-product-card img{
    position:absolute;
    inset:0;
    width:100%;
    height:100%;
    object-fit:cover;
    object-position:center;
}

.benefits-product-info{
    position:absolute;
    left:0;
    right:0;
    bottom:0;
    z-index:2;
    padding:30px;
    background:linear-gradient(
        to top,
        rgba(0,0,0,.75),
        rgba(0,0,0,0)
    );
}

.benefits-label{
    position:absolute;
    top:20px;
    right:20px;
    z-index:3;
}

.video-gallery-item {
  cursor: pointer;
}

.gallery-video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.video-gallery-item:hover .gallery-video {
  transform: scale(1.05);
}

.gallery-video-open {
  width: 46px;
  height: 46px;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--green-950);
  background: var(--white);
  font-size: 15px;
  transition:
    transform 0.3s ease,
    background 0.3s ease,
    color 0.3s ease;
}

.gallery-video-open:hover {
  color: var(--white);
  background: var(--green-700);
  transform: scale(1.08);
}

/* Video lightbox */

.video-lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 25px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity 0.35s ease,
    visibility 0.35s ease;
}

.video-lightbox.open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.video-lightbox-overlay {
  position: absolute;
  inset: 0;
  background: rgba(4, 15, 9, 0.92);
  backdrop-filter: blur(12px);
}

.video-lightbox-dialog {
  position: relative;
  z-index: 2;
  width: min(1100px, 100%);
  overflow: hidden;
  border-radius: 28px;
  background: #0c2117;
  box-shadow: 0 35px 110px rgba(0, 0, 0, 0.55);
  transform: translateY(30px) scale(0.96);
  transition: transform 0.5s ease;
}

.video-lightbox.open .video-lightbox-dialog {
  transform: translateY(0) scale(1);
}

.video-lightbox-player {
  width: 100%;
  max-height: 75vh;
  display: block;
  background: #000;
}

.video-lightbox-close {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 5;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--green-950);
  background: var(--white);
  font-size: 18px;
}

.video-lightbox-nav {
  position: absolute;
  top: 50%;
  z-index: 5;
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  transform: translateY(-50%);
  border-radius: 50%;
  color: var(--green-950);
  background: rgba(255, 255, 255, 0.92);
}

.video-lightbox-prev {
  left: 18px;
}

.video-lightbox-next {
  right: 18px;
}

.video-lightbox-info {
  display: grid;
  grid-template-columns: 1fr auto;
  padding: 20px 26px;
  color: var(--white);
}

.video-lightbox-info span {
  grid-column: 1;
  color: rgba(255, 255, 255, 0.55);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 1.4px;
  text-transform: uppercase;
}

.video-lightbox-info h2 {
  grid-column: 1;
  margin-top: 4px;
  font-family: var(--font-title);
  font-size: 30px;
  font-weight: 400;
}

.video-lightbox-info p {
  grid-column: 2;
  grid-row: 1 / 3;
  align-self: center;
  color: rgba(255, 255, 255, 0.55);
  font-size: 11px;
}

@media (max-width: 650px) {
  .video-lightbox {
    padding: 10px;
  }

  .video-lightbox-dialog {
    border-radius: 18px;
  }

  .video-lightbox-player {
    max-height: 65vh;
  }

  .video-lightbox-nav {
    width: 42px;
    height: 42px;
  }

  .video-lightbox-prev {
    left: 8px;
  }

  .video-lightbox-next {
    right: 8px;
  }

  .video-lightbox-info {
    padding: 16px 18px;
  }

  .video-lightbox-info h2 {
    font-size: 24px;
  }
}

.video-lightbox-info{
    display:none !important;
}

.gallery-photo{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
    transition:.5s;
}

.gallery-item:hover .gallery-photo{
    transform:scale(1.05);
}

.floating-instagram{
    position: fixed;
    right: -5px;
    bottom: 75px;
    z-index: 901;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;

    text-decoration: none;
}

.floating-instagram img{
    width: 56px;
    height: 56px;
    object-fit: cover;

    background: #fff;
    border: 3px solid #1f8f48;
    border-radius: 50%;

    box-shadow: 0 10px 25px rgba(0,0,0,.18);
    transition: .3s;
}

.floating-instagram:hover img{
    transform: scale(1.08);
}

.floating-instagram span{
    display: inline-block;
    margin: 0;
    padding: 6px 12px;

    background: #173b29;
    color: #fff;

    border-radius: 999px;

    font-size: 11px;
    font-weight: 700;
    line-height: 1;

    white-space: nowrap;
    text-align: center;

    box-shadow: 0 8px 20px rgba(0,0,0,.18);
}

@media (max-width:768px){

    .back-to-top{
        right:24px;
        bottom:200px;
    }

    .floating-instagram{
        right:-5px;
        bottom:90px;
        gap:6px;
    }

    .floating-instagram img{
        width:60px;
        height:60px;
    }

    .floating-instagram span{
        font-size:10px;
        padding:5px 10px;
    }

    .floating-whatsapp{
        right:15px;
        bottom:15px;
    }

    .floating-whatsapp span{
        display:none;
    }

}

/* WhatsApp */
.floating-whatsapp{
    right:20px;
    bottom:15px;
}