﻿:root {
  --bg: #f3f5ef;
  --surface: #ffffff;
  --ink: #1d2a1c;
  --muted: #5c675a;
  --green: #2f6a3b;
  --green-deep: #1f4a28;
  --orange: #e37d2f;
  --border: #d8dfd2;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Barlow", sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
}

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.93);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 74px;
}

.nav-tools {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.brand {
  text-decoration: none;
  display: inline-flex;
  align-items: center;
}

.brand-logo {
  height: 86px;
  width: auto;
  display: block;
}

.main-nav {
  display: flex;
  gap: 1.3rem;
}

.main-nav a {
  text-decoration: none;
  color: var(--ink);
  font-weight: 600;
  font-size: 0.98rem;
}

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

.lang-switch {
  display: inline-flex;
  border: 1px solid var(--border);
  border-radius: 999px;
  overflow: hidden;
  background: #fff;
}

.lang-switch button {
  border: none;
  background: transparent;
  padding: 0.4rem 0.7rem;
  font-weight: 700;
  color: var(--ink);
  cursor: pointer;
}

.lang-switch button.active {
  background: var(--green);
  color: #fff;
}

.hero {
  position: relative;
  min-height: 72vh;
  display: grid;
  place-items: center;
  background:
    linear-gradient(130deg, rgba(21, 49, 26, 0.7), rgba(25, 58, 32, 0.45)),
    radial-gradient(circle at 85% 20%, rgba(227, 125, 47, 0.35), transparent 42%),
    url("resimler/banner.png") center/cover no-repeat;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.5));
}

.hero-content {
  position: relative;
  color: #fff;
  text-align: left;
}

.eyebrow {
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
  color: #dbe7d4;
  margin-bottom: 0.8rem;
}

h1,
h2,
h3 {
  line-height: 1.2;
  margin: 0;
}

h1,
h2 {
  font-family: "Playfair Display", serif;
}

h1 {
  max-width: 900px;
  font-size: clamp(2rem, 4vw, 3.5rem);
}

.lead {
  margin-top: 1rem;
  font-size: 1.15rem;
  max-width: 700px;
  color: #ebf1e7;
}

.section {
  padding: 5rem 0;
}

.section-label {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--orange);
  font-weight: 700;
  margin: 0 0 0.8rem;
}

.about {
  background: linear-gradient(180deg, #f8faf5, #f0f3ec);
}

.split {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 2rem;
  align-items: start;
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 1rem;
}

.feature-list li {
  background: var(--surface);
  border: 1px solid var(--border);
  border-left: 5px solid var(--green);
  border-radius: 10px;
  padding: 1rem 1rem 0.9rem;
}

.feature-list h3 {
  margin-bottom: 0.35rem;
  font-size: 1.1rem;
}

.about-visual {
  width: min(1120px, 92%);
  margin: 1.5rem auto 0;
}

.real-scene {
  position: relative;
  height: 360px;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid #bcc8b8;
  background: #0f1613;
}

.scene-layer {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.factory-line {
  background-image:
    linear-gradient(180deg, rgba(8, 20, 11, 0.28), rgba(8, 20, 11, 0.62)),
    url("https://commons.wikimedia.org/wiki/Special:FilePath/Delivery%20driver%20and%20loaders%20with%20truckload%20of%20watermelon%20harvest%2001.jpg");
  transform: scale(1.02);
}

.field-factory {
  background-image:
    linear-gradient(180deg, rgba(7, 18, 10, 0.24), rgba(7, 18, 10, 0.64)),
    url("resimler/tarladakarpuz.jpg");
  background-position: center;
}

.factory-sign {
  position: absolute;
  left: 3%;
  top: 8%;
  z-index: 4;
  width: 104px;
  height: 48px;
  padding: 0;
  border-radius: 8px;
  background:
    rgba(244, 248, 245, 0.94)
    url("resimler/logo.png")
    center/84% no-repeat;
  color: transparent;
  font-size: 0;
  border: 1px solid rgba(33, 53, 39, 0.18);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.22);
}

.process-cards {
  position: absolute;
  right: 2%;
  top: 17%;
  z-index: 4;
  width: 57%;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
}

.process-card {
  min-height: 150px;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.25);
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.35);
  position: relative;
}

.process-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(to top, rgba(7, 14, 10, 0.68), rgba(7, 14, 10, 0.26));
}

.process-card::before {
  content: "";
  position: absolute;
  top: 12px;
  left: 12px;
  width: 104px;
  height: 48px;
  z-index: 5;
  background:
    #ffffff
    url("resimler/logo.png")
    center/84% no-repeat;
  border-radius: 8px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.32);
  border: 1px solid rgba(26, 42, 31, 0.18);
}

.labeling {
  background:
    url("resimler/tarladakavun.jpg")
    center/cover no-repeat;
}

.packaging {
  background:
    url("resimler/tarladakarpuz.jpg")
    center/cover no-repeat;
}

.nar-card {
  background:
    url("resimler/tarladanar.jpg")
    center/cover no-repeat;
}

.process-badge {
  display: none;
}

.conveyor-line {
  background-image:
    linear-gradient(180deg, rgba(8, 18, 10, 0.05), rgba(8, 18, 10, 0.56)),
    url("https://commons.wikimedia.org/wiki/Special:FilePath/Transporting%20watermelon%20with%20truck.jpg");
  mix-blend-mode: soft-light;
  opacity: 0.6;
}

.loading-truck {
  left: auto;
  right: 1%;
  top: 32%;
  bottom: 7%;
  width: 48%;
  background-image:
    linear-gradient(180deg, rgba(10, 14, 12, 0.15), rgba(10, 14, 12, 0.35)),
    url("https://commons.wikimedia.org/wiki/Special:FilePath/Transporting%20watermelon%20with%20truck.jpg");
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.35);
  animation: truckFloat 5.2s ease-in-out infinite;
}

.loading-truck::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 44%;
  background: linear-gradient(to top, rgba(6, 9, 8, 0.48), transparent);
}

.loading-truck::before {
  content: "";
  position: absolute;
  left: 16%;
  top: 40%;
  width: 58%;
  height: 24%;
  border-radius: 8px;
  background: rgba(245, 249, 246, 0.78);
  box-shadow: inset 0 0 0 1px rgba(34, 56, 40, 0.18);
}

.truck-brand {
  position: absolute;
  left: 23%;
  top: 52%;
  transform: translateY(-50%);
  padding: 0.4rem 0.9rem;
  background: rgba(243, 247, 244, 0.96);
  color: #26442f;
  font-weight: 800;
  letter-spacing: 0.06em;
  border-radius: 6px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
  z-index: 2;
}

.scene-overlay {
  pointer-events: none;
  z-index: 3;
  position: absolute;
  inset: 0;
  background:
    linear-gradient(110deg, rgba(255, 255, 255, 0.14) 18%, transparent 32%),
    linear-gradient(to top, rgba(7, 13, 10, 0.34), rgba(7, 13, 10, 0));
}

.scene-overlay::after {
  content: "";
  position: absolute;
  left: -35%;
  top: 0;
  width: 30%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.22), transparent);
  transform: skewX(-18deg);
  animation: sceneShine 5.5s ease-in-out infinite;
}

.scene-route {
  position: absolute;
  top: 16px;
  right: 18px;
  z-index: 4;
  color: #e9f4ea;
  font-weight: 700;
  font-size: 0.92rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(8, 16, 12, 0.55);
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.route-progress {
  width: 72px;
  height: 3px;
  background: repeating-linear-gradient(90deg, #9ad7a9 0 10px, transparent 10px 14px);
  animation: routeDash 1.1s linear infinite;
}

@keyframes truckFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-4px); }
}

@keyframes sceneShine {
  0%, 15% { left: -38%; }
  48%, 100% { left: 128%; }
}

@keyframes routeDash {
  from { background-position: 0 0; }
  to { background-position: 14px 0; }
}

.products .cards {
  margin-top: 1.4rem;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.2rem;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.card.media {
  min-height: 280px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: #fff;
  border: none;
  position: relative;
  overflow: hidden;
}

.card.media::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.15));
}

.card.media h3,
.card.media p {
  position: relative;
  z-index: 1;
}

.pack-tag {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  color: #20422c;
  background:
    linear-gradient(180deg, rgba(248, 244, 232, 0.98), rgba(235, 227, 205, 0.98));
  border: 1px solid rgba(92, 85, 56, 0.35);
  border-radius: 4px;
  padding: 0.35rem 0.55rem;
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.24);
}

.pack-tag::after {
  content: "EXPORT GRADE";
  margin-left: 0.35rem;
  color: #a96a1f;
  font-weight: 700;
}

.product-apple {
  background: url("resimler/elma.png") center/cover no-repeat;
}

.product-lemon {
  background: url("resimler/limon.png") center/cover no-repeat;
}

.product-mandarin {
  background: url("resimler/mandalina.png") center/cover no-repeat;
}

.product-pomegranate {
  background: url("resimler/nar.png") center/cover no-repeat;
}

.product-orange {
  background: url("resimler/portakal.png") center/cover no-repeat;
}

.product-watermelon-local {
  background: url("resimler/karpuz.png") center/cover no-repeat;
}

.product-melon-local {
  background: url("resimler/kavun.png") center/cover no-repeat;
}

.product-black-watermelon {
  background: url("resimler/karpuzsiyah.png") center/cover no-repeat;
}

.product-honey-melon {
  background: url("resimler/kavunbal.png") center/cover no-repeat;
}

.product-striped-melon {
  background: url("resimler/kavuncizgili.png") center/cover no-repeat;
}

.product-ayaz-pallet {
  background: url("resimler/karpuzayazpalet.png") center/cover no-repeat;
}

.product-ayaz-new {
  background: url("resimler/karpuzayazyeni.png") center/cover no-repeat;
}

.product-ayaz-new-2 {
  background: url("resimler/karpuzayazyeni.png") center/cover no-repeat;
}

.product-black-box {
  background: url("resimler/karpuzsiyahkutu.png") center/cover no-repeat;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(47, 106, 59, 0.14);
}

.card h3 {
  margin-bottom: 0.4rem;
}

.logistics {
  background:
    linear-gradient(170deg, rgba(32, 72, 40, 0.95), rgba(24, 49, 30, 0.95)),
    url("https://images.unsplash.com/photo-1553413077-190dd305871c?auto=format&fit=crop&w=1500&q=80") center/cover no-repeat;
  color: #fff;
}

.logistics .section-label {
  color: #ffb57d;
}

.logistics-grid {
  margin-top: 1.2rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.transport-cards {
  margin-top: 1.2rem;
  margin-bottom: 1rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.transport-card {
  min-height: 240px;
  border-radius: 12px;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.22);
}

.transport-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(5, 12, 8, 0.84), rgba(8, 20, 12, 0.2));
}

.transport-card h3,
.transport-card p {
  position: relative;
  z-index: 1;
  margin: 0;
}

.transport-card p {
  margin-top: 0.5rem;
  color: #ddede0;
}

.truck {
  background: url("https://images.unsplash.com/photo-1601584115197-04ecc0da31d7?auto=format&fit=crop&w=1200&q=80") center/cover no-repeat;
}

.air {
  background: url("https://images.unsplash.com/photo-1436491865332-7a61a109cc05?auto=format&fit=crop&w=1200&q=80") center/cover no-repeat;
}

.sea {
  background: url("https://images.unsplash.com/photo-1578575437130-527eed3abbec?auto=format&fit=crop&w=1200&q=80") center/cover no-repeat;
}

.logi-item {
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  padding: 1rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.logi-item span {
  color: #9cffb4;
  font-weight: 800;
}

.site-footer {
  background: #172016;
  color: #b9c8b5;
  padding: 1.2rem 0;
  font-size: 0.95rem;
}

.showcase {
  background: linear-gradient(180deg, #f8faf6, #eff3ea);
}

.showcase-grid {
  margin-top: 1.2rem;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.9rem;
}

.showcase-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  min-height: 180px;
}

.showcase-card.large {
  grid-column: span 2;
  grid-row: span 2;
  min-height: 380px;
}

.showcase-card.wide {
  grid-column: span 2;
  min-height: 220px;
}

.showcase-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.company-info {
  background: #f3f6f0;
}

.info-grid {
  margin-top: 1rem;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1rem 1.1rem;
  display: grid;
  gap: 0.65rem;
}

.info-grid p {
  margin: 0;
}

.info-grid a {
  color: var(--green-deep);
  text-decoration: none;
}

.footer-wrap {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

@media (max-width: 960px) {
  .split,
  .products .cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .transport-cards {
    grid-template-columns: 1fr;
  }

  .real-scene {
    height: 320px;
  }

  .process-cards {
    width: 64%;
  }

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

  .showcase-card.large,
  .showcase-card.wide {
    grid-column: span 2;
  }
}

@media (max-width: 700px) {
  .nav-wrap {
    flex-direction: column;
    justify-content: center;
    padding: 0.8rem 0;
    gap: 0.7rem;
  }

  .brand-logo {
    height: 68px;
  }

  .main-nav {
    flex-wrap: wrap;
    justify-content: center;
  }

  .nav-tools {
    flex-direction: column;
  }

  .split,
  .products .cards,
  .logistics-grid {
    grid-template-columns: 1fr;
  }

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

  .showcase-card.large,
  .showcase-card.wide {
    grid-column: span 1;
    min-height: 230px;
  }

  .section {
    padding: 4rem 0;
  }

  .hero {
    min-height: 64vh;
  }

  .loading-truck {
    display: none;
  }

  .process-cards {
    position: static;
    width: auto;
    margin: 4.2rem 0.7rem 0.7rem;
    grid-template-columns: 1fr;
  }
}

