/* ============================================================
   ACAR TEXTILE — Premium Cinematic CSS
   Production-ready stylesheet
   ============================================================ */

/* -----------------------------------------------------------
   0. CSS VARIABLES
   ----------------------------------------------------------- */
:root {
  --red: #DB1820;
  --red-dark: #b01420;
  --text: #1a1a1a;
  --text-light: #666666;
  --text-muted: #999999;
  --bg: #FAFAFA;
  --bg-white: #FFFFFF;
  --bg-warm: #F5F2EE;
  --bg-dark: #111111;
  --footer-bg: #0a0a0a;
  --footer-text: #888888;
  --font-heading: 'Oswald', sans-serif;
  --font-body: 'Raleway', sans-serif;
  --container: 1200px;
  --nav-h: 72px;
  --section-pad: 120px 0;
}

/* -----------------------------------------------------------
   1. RESET & BASE
   ----------------------------------------------------------- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  /* NO scroll-behavior — Lenis handles smooth scrolling */
}

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body.loading {
  overflow: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul,
ol {
  list-style: none;
}

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

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
  outline: none;
}

input,
textarea,
select {
  font-family: inherit;
  outline: none;
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

/* -----------------------------------------------------------
   2. PRELOADER
   ----------------------------------------------------------- */
#preloader {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

#preloader.done {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.preloader-inner {
  text-align: center;
}

.preloader-logo {
  font-family: var(--font-heading);
  font-size: 56px;
  font-weight: 300;
  letter-spacing: 16px;
  color: var(--text);
  opacity: 0; /* GSAP will animate */
}

.preloader-bar {
  width: 200px;
  height: 2px;
  background: #e0e0e0;
  margin: 20px auto 0;
  border-radius: 1px;
  overflow: hidden;
}

.preloader-fill {
  height: 100%;
  width: 0;
  background: var(--red);
  border-radius: 1px;
}

.preloader-text {
  font-family: var(--font-heading);
  font-size: 11px;
  letter-spacing: 6px;
  color: var(--text-muted);
  margin-top: 16px;
  opacity: 0;
}

/* -----------------------------------------------------------
   3. CUSTOM CURSOR
   ----------------------------------------------------------- */
.cursor {
  position: fixed;
  width: 12px;
  height: 12px;
  border: 2px solid var(--red);
  border-radius: 50%;
  pointer-events: none;
  z-index: 99998;
  transform: translate(-50%, -50%);
  transition: width 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              height 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              border-color 0.3s ease,
              background 0.3s ease;
  mix-blend-mode: difference;
}

.cursor-follower {
  position: fixed;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(219, 24, 32, 0.3);
  border-radius: 50%;
  pointer-events: none;
  z-index: 99997;
  transform: translate(-50%, -50%);
  transition: width 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              height 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              border-color 0.4s ease,
              opacity 0.3s ease;
}

.cursor.hover {
  width: 48px;
  height: 48px;
  background: rgba(219, 24, 32, 0.1);
  border-color: var(--red);
}

.cursor-follower.hover {
  width: 60px;
  height: 60px;
  border-color: rgba(219, 24, 32, 0.15);
}

/* -----------------------------------------------------------
   4. SCROLL PROGRESS BAR
   ----------------------------------------------------------- */
#scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0%;
  background: var(--red);
  z-index: 10000;
  transition: none;
}

/* -----------------------------------------------------------
   5. SOCIAL SIDEBAR (fixed left)
   ----------------------------------------------------------- */
#social-sidebar {
  position: fixed;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 990;
  display: flex;
  flex-direction: column;
  gap: 0;
  background: #fff;
  box-shadow: 2px 0 20px rgba(0, 0, 0, 0.06);
  border-radius: 0 6px 6px 0;
  overflow: hidden;
}

#social-sidebar a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  color: var(--text-light);
  font-size: 15px;
  transition: color 0.3s ease, background 0.3s ease;
}

#social-sidebar a:hover {
  color: var(--red);
  background: rgba(219, 24, 32, 0.06);
}

/* -----------------------------------------------------------
   6. DOT NAVIGATION (fixed right)
   ----------------------------------------------------------- */
#dot-scroll {
  position: fixed;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 990;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.dot-link {
  display: block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #ccc;
  transition: background 0.3s ease, transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  cursor: pointer;
}

.dot-link:hover {
  background: var(--text-light);
  transform: scale(1.3);
}

.dot-link.active {
  background: var(--red);
  transform: scale(1.4);
}

/* -----------------------------------------------------------
   7. NAVIGATION — Glass Morphism
   ----------------------------------------------------------- */
#top-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(250, 250, 250, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  transition: box-shadow 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              background 0.4s ease,
              transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

#top-nav.scrolled {
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
  background: rgba(255, 255, 255, 0.92);
}

#top-nav.nav-hidden {
  transform: translateY(-100%);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  height: var(--nav-h);
  padding: 0 40px;
  position: relative;
}

.nav-logo {
  position: absolute;
  left: 40px;
  top: 50%;
  transform: translateY(-50%);
}

.nav-logo img {
  height: 38px;
  width: auto;
}

.nav-links ul {
  display: flex;
  gap: 0;
  align-items: center;
}

.nav-links ul li a {
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: #555;
  padding: 0 13px;
  position: relative;
  display: inline-block;
  line-height: var(--nav-h);
  transition: color 0.3s ease;
}

.nav-links ul li a::after {
  content: '';
  position: absolute;
  bottom: 18px;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: calc(100% - 26px);
  height: 2px;
  background: var(--red);
  transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transform-origin: center;
}

.nav-links ul li a:hover,
.nav-links ul li a.active {
  color: var(--red);
}

.nav-links ul li a:hover::after,
.nav-links ul li a.active::after {
  transform: translateX(-50%) scaleX(1);
}

/* Language Switch */
.lang-switch {
  display: flex;
  gap: 6px;
  margin-left: 24px;
  align-items: center;
  position: absolute;
  right: 40px;
  top: 50%;
  transform: translateY(-50%);
}

.lang-switch button {
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: #aaa;
  padding: 4px 6px;
  cursor: pointer;
  transition: color 0.3s ease;
}

.lang-switch button:hover {
  color: var(--text);
}

.lang-switch button.active {
  color: var(--red);
}

.lang-switch .lang-sep {
  color: #ddd;
  font-size: 12px;
  font-weight: 300;
  user-select: none;
}

/* Mobile Toggle */
.nav-toggle {
  display: none;
  width: 32px;
  height: 24px;
  position: absolute;
  right: 40px;
  top: 50%;
  transform: translateY(-50%);
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--text);
  transition: transform 0.3s ease, opacity 0.3s ease;
  transform-origin: center;
}

.nav-toggle.open span:nth-child(1) {
  transform: translateY(11px) rotate(45deg);
}

.nav-toggle.open span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.open span:nth-child(3) {
  transform: translateY(-11px) rotate(-45deg);
}

/* Mobile Menu */
.nav-mobile {
  display: none;
  background: #fff;
  padding: 20px 40px 30px;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}

.nav-mobile.open {
  display: block;
}

.nav-mobile ul {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.nav-mobile ul li a {
  display: block;
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #555;
  padding: 14px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  transition: color 0.3s ease, padding-left 0.3s ease;
}

.nav-mobile ul li a:hover,
.nav-mobile ul li a.active {
  color: var(--red);
  padding-left: 8px;
}

.nav-mobile .lang-switch-mobile {
  display: flex;
  gap: 12px;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.nav-mobile .lang-switch-mobile button {
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #aaa;
  cursor: pointer;
  transition: color 0.3s ease;
}

.nav-mobile .lang-switch-mobile button.active {
  color: var(--red);
}

/* -----------------------------------------------------------
   8. SECTION NUMBERS (decorative)
   ----------------------------------------------------------- */
.section-num {
  display: block;
  font-family: var(--font-heading);
  font-size: 120px;
  font-weight: 200;
  color: rgba(0, 0, 0, 0.04);
  line-height: 1;
  margin-bottom: -30px;
  letter-spacing: 8px;
  user-select: none;
}

/* -----------------------------------------------------------
   9. SECTION HEADING
   ----------------------------------------------------------- */
.section-heading {
  text-align: center;
  margin-bottom: 50px;
  position: relative;
}

.section-heading h2,
.section-heading h3 {
  font-family: var(--font-heading);
  font-size: 56px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--text);
  line-height: 1.1;
}

.section-heading .sub {
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 10px;
}

.section-heading .sub strong {
  color: var(--red);
}

.section-heading::after {
  content: '';
  display: block;
  width: 50px;
  height: 2px;
  background: var(--red);
  margin: 16px auto 0;
}

/* -----------------------------------------------------------
   10. HERO (#anasayfa)
   ----------------------------------------------------------- */
#anasayfa {
  display: flex;
  margin-top: var(--nav-h);
  height: 85vh;
  min-height: 500px;
  max-height: 800px;
  overflow: hidden;
}

.hero-panel {
  flex: 1;
  position: relative;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.hero-panel-left {
  background-image: url('https://images.unsplash.com/photo-1558618666-fcd25c85cd64?w=800&q=80');
}

.hero-panel-right {
  background-image: url('https://images.unsplash.com/photo-1490481651871-ab68de25d43d?w=800&q=80');
}

.hero-panel-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 10, 0.65);
}

.hero-cats {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: center;
  height: 100%;
  gap: 0;
  position: relative;
  z-index: 2;
}

.hero-cat {
  display: block;
  width: 100%;
  padding: 28px 20px;
  text-align: center;
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  cursor: pointer;
}

.hero-cat:last-child {
  border-bottom: none;
}

.hero-cat:hover {
  background: rgba(219, 24, 32, 0.8);
  letter-spacing: 7px;
}

.hero-center {
  flex: 0 0 440px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
}

.hero-logo-img {
  max-width: 270px;
  width: 100%;
}

/* -----------------------------------------------------------
   11. BIZ KIMIZ (#biz-kimiz)
   ----------------------------------------------------------- */
#biz-kimiz {
  background: var(--bg-white);
  padding: var(--section-pad);
}

.biz-intro {
  max-width: 800px;
  margin: 0 auto 60px;
  text-align: center;
}

.biz-intro p {
  font-size: 15px;
  color: var(--text-light);
  line-height: 1.9;
  margin-bottom: 16px;
}

/* Hex Tabs Navigation */
.hex-tabs-nav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  padding: 60px 24px;
  background: var(--bg);
}

.hex-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 120px;
  height: 120px;
  background: var(--red);
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: #fff;
  text-align: center;
  cursor: pointer;
  border: none;
  line-height: 1.3;
  padding: 0 12px;
  transition: background 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.hex-btn:hover {
  background: var(--text);
  transform: translateY(-4px);
}

.hex-btn.active {
  background: var(--text);
}

/* Tab Panels */
.tab-panels {
  background: var(--bg-white);
}

.tab-panel {
  display: none;
  padding: 60px 0 80px;
}

.tab-panel.active {
  display: block;
  animation: tabReveal 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}

@keyframes tabReveal {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

.panel-body {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 24px;
}

.panel-body p {
  font-size: 15px;
  color: var(--text-light);
  line-height: 1.9;
  margin-bottom: 14px;
}

.panel-body ul {
  margin: 12px 0 24px;
}

.panel-body ul li {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.9;
  padding: 10px 0 10px 24px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  position: relative;
}

.panel-body ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 18px;
  width: 6px;
  height: 6px;
  background: var(--red);
  border-radius: 50%;
}

.panel-body h4 {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text);
  margin: 28px 0 10px;
}

.panel-body em {
  color: var(--red);
  font-style: italic;
}

.panel-body strong {
  color: var(--text);
}

.panel-body .red {
  color: var(--red);
}

.panel-body .value-item {
  margin-top: 24px;
}

/* -----------------------------------------------------------
   12. KULTURUMUZ (#kulturumuz)
   ----------------------------------------------------------- */
#kulturumuz {
  background: var(--bg-warm);
  padding: var(--section-pad);
}

.kulturumuz-lead {
  max-width: 700px;
  margin: 0 auto 60px;
  text-align: center;
  font-size: 15px;
  color: var(--text-light);
  line-height: 1.9;
}

/* SVG Radial Gauges */
.gauge-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  max-width: 800px;
  margin: 0 auto;
}

.gauge-item {
  text-align: center;
  position: relative;
}

.radial-gauge {
  width: 120px;
  height: 120px;
  transform: rotate(-90deg);
  margin: 0 auto;
}

.gauge-bg {
  fill: none;
  stroke: rgba(0, 0, 0, 0.08);
  stroke-width: 4;
}

.gauge-fill {
  fill: none;
  stroke: var(--red);
  stroke-width: 4;
  stroke-linecap: round;
  stroke-dasharray: 326.7;
  stroke-dashoffset: 326.7;
  transition: stroke-dashoffset 2s cubic-bezier(0.4, 0, 0.2, 1);
}

.gauge-val {
  position: absolute;
  top: 42px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 700;
  color: var(--text);
}

.gauge-val span {
  font-size: 16px;
  font-weight: 400;
}

.gauge-label {
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-light);
  margin-top: 16px;
}

/* -----------------------------------------------------------
   13. ECO FRIENDLY (#eco-friendly)
   ----------------------------------------------------------- */
#eco-friendly {
  position: relative;
  height: 400px;
  background-image: url('https://images.unsplash.com/photo-1542601906990-b4d3fb778b09?w=1400&q=80');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
}

#eco-friendly::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(10, 40, 20, 0.55);
}

.eco-content {
  position: relative;
  z-index: 1;
  text-align: center;
}

.eco-content h2 {
  font-family: var(--font-heading);
  font-size: 64px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 12px;
  color: #fff;
  line-height: 1.1;
}

/* -----------------------------------------------------------
   14. NE YAPIYORUZ (#ne-yapiyoruz)
   ----------------------------------------------------------- */
#ne-yapiyoruz {
  background: var(--bg-white);
  padding: var(--section-pad);
}

.ne-lead {
  max-width: 800px;
  margin: 0 auto 60px;
  text-align: center;
}

.ne-lead p {
  font-size: 15px;
  color: var(--text-light);
  line-height: 1.9;
  margin-bottom: 14px;
}

/* Collection Slider */
.collection-wrap {
  position: relative;
  padding: 0 50px;
}

.collection-slider {
  overflow: hidden;
}

.collection-track {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.col-slide {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  flex-shrink: 0;
}

.col-slide img {
  width: 100%;
  height: 450px;
  object-fit: cover;
  object-position: top center;
  transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              filter 0.5s ease;
}

.col-slide:hover img {
  transform: scale(1.06);
  filter: brightness(0.5);
}

.col-slide-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
  opacity: 0;
  transition: opacity 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.col-slide:hover .col-slide-overlay {
  opacity: 1;
}

.col-slide-overlay span {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #fff;
}

.col-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background: var(--text);
  border: none;
  color: #fff;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 14px;
  transition: background 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.col-nav-btn:hover {
  background: var(--red);
  transform: translateY(-50%) scale(1.1);
}

.col-prev {
  left: 0;
}

.col-next {
  right: 0;
}

/* En Iyi Bar */
.en-iyi-bar {
  text-align: center;
  padding: 40px 20px;
  margin-top: 50px;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.en-iyi-bar p {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--text);
  line-height: 1.6;
}

.en-iyi-bar p span {
  color: var(--red);
}

/* -----------------------------------------------------------
   15. EN IYI SECTION
   ----------------------------------------------------------- */
#en-iyi-section {
  background: var(--bg);
  padding: 80px 0;
  text-align: center;
}

#en-iyi-section img {
  height: 70px;
  margin: 0 auto;
}

/* -----------------------------------------------------------
   16. NASIL YAPIYORUZ (#nasil-yapiyoruz)
   ----------------------------------------------------------- */
#nasil-yapiyoruz {
  background: var(--bg-white);
  padding: 0;
  overflow: hidden;
}

.nasil-inner {
  display: flex;
  align-items: stretch;
  min-height: 650px;
}

.nasil-img {
  flex: 0 0 50%;
  overflow: hidden;
}

.nasil-img img,
.nasil-img video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.nasil-content {
  flex: 1;
  padding: 80px 60px;
  background: var(--bg);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.nasil-content .section-heading {
  text-align: left;
  margin-bottom: 30px;
}

.nasil-content .section-heading::after {
  margin: 16px 0 0;
}

.nasil-list {
  list-style: none;
}

.nasil-list li {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.9;
  padding: 14px 0 14px 28px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  position: relative;
}

.nasil-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 22px;
  width: 8px;
  height: 8px;
  background: var(--red);
  border-radius: 50%;
}

.nasil-list li:last-child {
  border-bottom: none;
}

/* -----------------------------------------------------------
   17. FUARLAR (#fuarlar)
   ----------------------------------------------------------- */
#fuarlar {
  background: var(--bg-white);
  padding: var(--section-pad);
}

.fuarlar-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.fuar-card {
  overflow: hidden;
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              box-shadow 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.fuar-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.fuar-card-img {
  position: relative;
  overflow: hidden;
  height: 220px;
}

.fuar-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.fuar-card:hover .fuar-card-img img {
  transform: scale(1.08);
}

.fuar-info {
  padding: 22px 18px;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-top: 3px solid var(--red);
}

.fuar-name {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--text);
  margin-bottom: 8px;
  line-height: 1.3;
}

.fuar-date {
  font-size: 13px;
  color: var(--text-light);
  margin-bottom: 4px;
}

.fuar-loc {
  font-size: 12px;
  color: var(--red);
  letter-spacing: 0.5px;
}

.fuar-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: var(--text);
  color: #fff;
  font-size: 12px;
  margin-top: 14px;
  transition: background 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.fuar-card:hover .fuar-arrow {
  background: var(--red);
  transform: translateX(4px);
}

/* -----------------------------------------------------------
   18. NUMBERS (#numbers) — DARK SECTION
   ----------------------------------------------------------- */
#numbers {
  position: relative;
  padding: 180px 0;
  background: radial-gradient(ellipse at 20% 50%, #1a0510 0%, #08080f 45%, #060314 100%);
  overflow: hidden;
}

#numbers::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 80% 20%, rgba(216, 29, 41, 0.12) 0%, transparent 55%),
    radial-gradient(ellipse at 10% 80%, rgba(80, 0, 120, 0.08) 0%, transparent 50%);
  pointer-events: none;
}

#numbers-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.numbers-inner {
  position: relative;
  z-index: 1;
}

.numbers-head {
  text-align: center;
  margin-bottom: 80px;
}

.numbers-head h4 {
  font-family: var(--font-heading);
  font-size: 72px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 4px;
  color: #fff;
  line-height: 1;
}

.numbers-head p {
  font-family: var(--font-heading);
  font-size: 12px;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
  margin-top: 12px;
}

.numbers-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  text-align: center;
}

.number-item {
  opacity: 0;
  transform: translateY(30px);
}

.number-item.visible {
  opacity: 1;
  transform: none;
  transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.num-val {
  font-family: var(--font-heading);
  font-size: 72px;
  font-weight: 700;
  color: #fff;
  line-height: 1;
}

.num-val .suffix {
  font-size: 32px;
}

.num-label {
  font-family: var(--font-heading);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 16px;
}

/* -----------------------------------------------------------
   19. MARKALARIMIZ (#markalarimiz)
   ----------------------------------------------------------- */
#markalarimiz {
  background: var(--bg-white);
  padding: var(--section-pad);
}

.brands-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 80px;
  flex-wrap: wrap;
}

.brand-item {
  text-align: center;
  padding: 24px 36px;
  border-radius: 8px;
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              box-shadow 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.brand-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.08);
}

.brand-item img {
  max-height: 72px;
  width: auto;
  max-width: 200px;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.5;
  transition: filter 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              opacity 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.brand-item:hover img {
  filter: grayscale(0%);
  opacity: 1;
}

/* -----------------------------------------------------------
   20. NEREDEYIZ (#neredeyiz)
   ----------------------------------------------------------- */
#neredeyiz {
  background: var(--bg);
  padding: 120px 0 0;
}

.map-wrapper {
  height: 450px;
  margin-top: 50px;
  position: relative;
  overflow: hidden;
}

.map-wrapper iframe {
  width: 100%;
  height: 100%;
  border: none;
  filter: grayscale(0.8) contrast(1.1);
  transition: filter 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.map-wrapper:hover iframe {
  filter: grayscale(0) contrast(1);
}

/* -----------------------------------------------------------
   21. FOOTER
   ----------------------------------------------------------- */
footer {
  background: var(--footer-bg);
  padding: 40px 0;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-logo img {
  height: 36px;
  filter: brightness(0) invert(1);
}

.footer-social {
  display: flex;
  gap: 18px;
}

.footer-social a {
  color: var(--footer-text);
  font-size: 16px;
  transition: color 0.3s ease, transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.footer-social a:hover {
  color: var(--red);
  transform: translateY(-2px);
}

.footer-links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-links a {
  font-family: var(--font-heading);
  font-size: 11px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--footer-text);
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #fff;
}

.footer-copy {
  font-family: var(--font-heading);
  font-size: 11px;
  color: rgba(255, 255, 255, 0.35);
  width: 100%;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 20px;
  margin-top: 8px;
  letter-spacing: 1px;
}

/* -----------------------------------------------------------
   22. LIGHTBOX
   ----------------------------------------------------------- */
.lb-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.95);
  z-index: 9999;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.lb-overlay.active {
  display: flex;
}

.lb-overlay img {
  max-width: 90vw;
  max-height: 88vh;
  object-fit: contain;
  cursor: default;
}

.lb-close {
  position: absolute;
  top: 24px;
  right: 32px;
  color: #fff;
  font-size: 40px;
  cursor: pointer;
  line-height: 1;
  opacity: 0.7;
  transition: opacity 0.3s ease;
}

.lb-close:hover {
  opacity: 1;
}

.lb-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: #fff;
  font-size: 32px;
  cursor: pointer;
  opacity: 0.6;
  transition: opacity 0.3s ease;
  padding: 20px;
}

.lb-nav:hover {
  opacity: 1;
}

.lb-prev {
  left: 20px;
}

.lb-next {
  right: 20px;
}

.lb-caption {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
}

/* -----------------------------------------------------------
   23. LANGUAGE TOGGLE
   ----------------------------------------------------------- */
.lang-en {
  display: none;
}

html[data-lang="en"] .lang-tr {
  display: none;
}

html[data-lang="en"] .lang-en {
  display: block;
}

html[data-lang="en"] span.lang-en,
html[data-lang="en"] a.lang-en {
  display: inline;
}

/* -----------------------------------------------------------
   24. HABERLER PAGE
   ----------------------------------------------------------- */
.haberler-hero {
  padding: 140px 0 60px;
  text-align: center;
  background: var(--bg-white);
}

.haberler-hero h1 {
  font-family: var(--font-heading);
  font-size: 64px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 6px;
  line-height: 1;
  color: var(--text);
}

.haberler-hero h1 .h1-red {
  color: var(--red);
}

.haberler-hero h1 .h1-dark {
  color: var(--text);
}

.haberler-hero .sub {
  font-family: var(--font-heading);
  font-size: 12px;
  letter-spacing: 5px;
  text-transform: uppercase;
  margin-top: 14px;
  color: var(--text-muted);
}

.haberler-hero .sub strong {
  color: var(--red);
}

.news-section {
  background: var(--bg-white);
  padding: 40px 0 100px;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.news-card {
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              box-shadow 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  background: #fff;
}

.news-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.news-card-img {
  overflow: hidden;
  height: 220px;
}

.news-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.news-card:hover .news-card-img img {
  transform: scale(1.08);
}

.news-card-body {
  padding: 24px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-top: 3px solid var(--red);
}

.news-card-body h3 {
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 10px;
  line-height: 1.4;
}

.news-date {
  font-size: 13px;
  color: var(--text-muted);
}

.news-excerpt {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.7;
  margin-top: 10px;
}

.news-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: var(--text);
  color: #fff;
  font-size: 12px;
  margin-top: 16px;
  transition: background 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.news-card:hover .news-arrow {
  background: var(--red);
}

/* -----------------------------------------------------------
   25. RESPONSIVE DESIGN
   ----------------------------------------------------------- */

/* Tablet & small desktop */
@media (max-width: 1060px) {
  :root {
    --nav-h: 64px;
    --section-pad: 80px 0;
  }

  .nav-links,
  .lang-switch {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-inner {
    padding: 0 24px;
  }

  .nav-logo {
    left: 24px;
  }

  .nav-toggle {
    right: 24px;
  }

  .fuarlar-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .numbers-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }

  .gauge-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }

  .section-heading h2,
  .section-heading h3 {
    font-size: 44px;
  }

  .section-num {
    font-size: 80px;
  }

  .nasil-inner {
    flex-direction: column;
  }

  .nasil-img {
    flex: 0 0 350px;
    min-height: 350px;
  }

  .nasil-content {
    padding: 60px 40px;
  }

  .cursor,
  .cursor-follower {
    display: none;
  }
}

/* Tablet portrait / large phone */
@media (max-width: 768px) {
  :root {
    --section-pad: 60px 0;
  }

  #social-sidebar,
  #dot-scroll {
    display: none;
  }

  .hex-btn {
    width: 85px;
    height: 85px;
    font-size: 10px;
  }

  .hex-tabs-nav {
    gap: 12px;
    padding: 40px 16px;
  }

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

  .brands-row {
    gap: 30px;
  }

  .brand-item {
    padding: 16px 20px;
  }

  .brand-item img {
    max-height: 56px;
  }

  .footer-inner {
    flex-direction: column;
    text-align: center;
  }

  .footer-links {
    justify-content: center;
  }

  #anasayfa {
    height: 60vh;
    min-height: 400px;
  }

  .hero-center {
    flex: 0 0 200px;
  }

  .hero-cat {
    font-size: 12px;
    letter-spacing: 2px;
    padding: 18px 12px;
  }

  .col-slide img {
    height: 320px;
  }

  .section-heading h2,
  .section-heading h3 {
    font-size: 36px;
    letter-spacing: 2px;
  }

  .section-num {
    font-size: 60px;
    margin-bottom: -20px;
  }

  .numbers-head h4 {
    font-size: 48px;
  }

  .num-val {
    font-size: 52px;
  }

  .eco-content h2 {
    font-size: 40px;
    letter-spacing: 6px;
  }

  .haberler-hero h1 {
    font-size: 44px;
  }

  .map-wrapper {
    height: 350px;
  }

  #numbers {
    padding: 100px 0;
  }

  .numbers-head {
    margin-bottom: 50px;
  }

  .biz-intro {
    margin-bottom: 40px;
  }

  .nasil-content .section-heading h2,
  .nasil-content .section-heading h3 {
    font-size: 32px;
  }

  .en-iyi-bar p {
    font-size: 18px;
    letter-spacing: 2px;
  }
}

/* Small phones */
@media (max-width: 540px) {
  .fuarlar-grid {
    grid-template-columns: 1fr;
  }

  .numbers-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .gauge-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .num-val {
    font-size: 40px;
  }

  .num-val .suffix {
    font-size: 20px;
  }

  .eco-content h2 {
    font-size: 28px;
    letter-spacing: 4px;
  }

  #anasayfa {
    height: auto;
    flex-direction: column;
  }

  .hero-panel {
    min-height: 160px;
  }

  .hero-center {
    flex: 0 0 120px;
    padding: 20px;
    order: -1;
  }

  .hero-logo-img {
    max-width: 140px;
  }

  .collection-wrap {
    padding: 0 36px;
  }

  .col-nav-btn {
    width: 36px;
    height: 36px;
    font-size: 12px;
  }

  .section-heading h2,
  .section-heading h3 {
    font-size: 28px;
  }

  .haberler-hero h1 {
    font-size: 32px;
    letter-spacing: 3px;
  }

  .nasil-img {
    flex: 0 0 250px;
    min-height: 250px;
  }

  .nasil-content {
    padding: 40px 24px;
  }

  .panel-body {
    padding: 0 16px;
  }

  .tab-panel {
    padding: 40px 0 60px;
  }

  .map-wrapper {
    height: 280px;
  }

  .preloader-logo {
    font-size: 36px;
    letter-spacing: 10px;
  }

  #numbers {
    padding: 80px 0;
  }

  .numbers-head h4 {
    font-size: 36px;
    letter-spacing: 2px;
  }

  .fuar-card-img {
    height: 180px;
  }
}

/* -----------------------------------------------------------
   NEW SECTIONS — Team Photo, Hazır Giyim, İthalat, Showroom, Şirketler Grubu
   ----------------------------------------------------------- */

/* Team Photo in Biz Kimiz */
.team-photo-wrap {
  margin: 48px 0 32px;
  text-align: center;
}

.team-photo-wrap img {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  border-radius: 8px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
}

.team-caption {
  margin-top: 16px;
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 500;
  color: var(--text-light);
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* Portfolio PDF link */
.portfolio-pdf-link {
  margin: 32px 0 16px;
  text-align: center;
}

.portfolio-pdf-link a {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 32px;
  background: var(--red);
  color: #fff;
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: 4px;
  transition: background 0.3s ease, transform 0.3s ease;
}

.portfolio-pdf-link a:hover {
  background: var(--red-dark);
  transform: translateY(-2px);
}

.portfolio-pdf-link a i {
  font-size: 22px;
}

/* Generic new section grid (used for Hazır Giyim, Showroom, İthalat) */
.new-section-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 48px;
}

.new-section-grid.grid-3 {
  grid-template-columns: repeat(3, 1fr);
}

.new-section-card {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.new-section-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.15);
}

.new-section-card img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.new-section-card:hover img {
  transform: scale(1.05);
}

/* Section intros */
.hazir-giyim-intro,
.ithalat-intro,
.showroom-intro {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-light);
}

/* Hazır Giyim section */
#hazir-giyim {
  padding: var(--section-pad);
}

/* İthalat & İhracat section */
#ithalat-ihracat {
  padding: var(--section-pad);
  background: var(--bg-dark);
  color: #fff;
}

#ithalat-ihracat .section-heading h3 {
  color: #fff;
}

#ithalat-ihracat .section-heading::after {
  background: var(--red);
}

#ithalat-ihracat .ithalat-intro {
  color: #ccc;
}

.ithalat-locations {
  margin-top: 32px;
}

.ithalat-locations h4 {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 1px;
  margin-bottom: 16px;
  color: #fff;
}

.location-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.location-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 20px;
  background: rgba(219, 24, 32, 0.15);
  border: 1px solid rgba(219, 24, 32, 0.4);
  border-radius: 30px;
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 1px;
  color: #fff;
  transition: background 0.3s ease;
}

.location-tag:hover {
  background: rgba(219, 24, 32, 0.3);
}

.location-tag i {
  color: var(--red);
  font-size: 13px;
}

/* Showroom section */
#showroom {
  padding: var(--section-pad);
}

/* Şirketler Grubu section */
#sirketler-grubu {
  padding: var(--section-pad);
  background: var(--bg-warm);
}

.sirketler-content {
  text-align: center;
}

.sirketler-info {
  font-size: 16px;
  color: var(--text-light);
  margin-bottom: 40px;
}

.sirketler-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
}

.sirket-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  width: 160px;
  padding: 28px 16px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.sirket-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 28px rgba(0,0,0,0.12);
}

.sirket-item i {
  font-size: 32px;
  color: var(--red);
}

.sirket-item span {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--text);
}

/* Joint Venture block */
.joint-venture-block {
  margin-top: 64px;
  padding: 48px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
}

.jv-heading {
  text-align: center;
  margin-bottom: 32px;
}

.jv-heading i {
  font-size: 40px;
  color: var(--red);
  margin-bottom: 16px;
  display: block;
}

.jv-heading h4 {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 1px;
  color: #fff;
}

.joint-venture-block p {
  font-size: 15px;
  line-height: 1.8;
  color: #ccc;
  margin-bottom: 16px;
}

.jv-contacts {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 32px;
}

.jv-contact-card {
  padding: 28px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
}

.jv-contact-card h5 {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 12px;
  letter-spacing: 0.5px;
}

.jv-contact-card p {
  font-size: 14px;
  line-height: 1.6;
  color: #bbb;
  margin-bottom: 6px;
}

.jv-contact-card p i {
  width: 20px;
  color: var(--red);
  margin-right: 8px;
  text-align: center;
}

/* University link in Şirketler Grubu */
.sirketler-university {
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid rgba(0,0,0,0.08);
  text-align: center;
}

.sirketler-university i {
  font-size: 32px;
  color: var(--red);
  margin-bottom: 12px;
}

.sirketler-university p {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.5px;
  color: var(--text);
}

.sirketler-university p:last-child {
  font-weight: 400;
  color: var(--text-light);
  font-size: 14px;
  margin-top: 4px;
}

/* Responsive for new sections */
@media (max-width: 768px) {
  .new-section-grid {
    grid-template-columns: 1fr;
  }

  .new-section-grid.grid-3 {
    grid-template-columns: 1fr;
  }

  .new-section-card img {
    height: 220px;
  }

  .sirketler-grid {
    gap: 16px;
  }

  .sirket-item {
    width: 140px;
    padding: 20px 12px;
  }

  .location-tags {
    gap: 8px;
  }

  .location-tag {
    padding: 6px 14px;
    font-size: 12px;
  }

  .team-photo-wrap img {
    border-radius: 4px;
  }

  .joint-venture-block {
    padding: 24px;
  }

  .jv-contacts {
    grid-template-columns: 1fr;
  }

  .jv-heading h4 {
    font-size: 18px;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .new-section-grid.grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* -----------------------------------------------------------
   26. UTILITY CLASSES
   ----------------------------------------------------------- */

/* Section backgrounds */
.section-white {
  background: var(--bg-white);
  padding: var(--section-pad);
}

.section-gray {
  background: var(--bg);
  padding: var(--section-pad);
}

/* GSAP performance */
[data-speed] {
  will-change: transform;
}

/* Selection styling */
::selection {
  background: var(--red);
  color: #fff;
}

::-moz-selection {
  background: var(--red);
  color: #fff;
}

/* Scrollbar styling */
::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: var(--bg);
}

::-webkit-scrollbar-thumb {
  background: #ccc;
  border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--text-muted);
}

/* Focus visible for accessibility */
:focus-visible {
  outline: 2px solid var(--red);
  outline-offset: 2px;
}

/* Reduced motion preference */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  #eco-friendly {
    background-attachment: scroll;
  }
}
