:root {
  /* Premium Color Palette */
  --c-dark-bg: #09150c;
  --c-dark-surface: #102416;
  --c-paper: #f8f7f3;
  --c-pure-white: #ffffff;

  --c-primary: #183821;
  --c-primary-light: #265b35;

  --c-gold: #d4af37;
  --c-gold-dim: rgba(212, 175, 55, 0.4);

  --c-whatsapp: #25d366;

  --c-text-dark: #222222;
  --c-text-muted: #555555;
  --c-text-light: #e0e0e0;

  /* Typography */
  --f-title: "Playfair Display", serif;
  --f-text: "Inter", sans-serif;

  --ease: cubic-bezier(0.25, 1, 0.5, 1);
}

/* Custom Cursor (Visible only over specific areas) */
#cursor {
  position: fixed;
  top: 0;
  left: 0;
  width: 60px;
  height: 60px;
  background-color: #ffffff;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 99999;
  mix-blend-mode: difference;
  opacity: 0;
  transition:
    opacity 0.3s ease,
    background-color 0.3s ease;
  will-change: transform;
}

.cursor-visible {
  opacity: 1 !important;
}

/* Base Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* html.lenis ensures smooth scroll doesn't break fixed elements */
html.lenis,
html.lenis body {
  height: auto;
}

.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}

html {
  font-size: 16px;
  background-color: var(--c-dark-bg);
}

body {
  font-family: var(--f-text);
  color: var(--c-text-light);
  line-height: 1.6;
  overflow-x: hidden;
}

.container {
  width: 90%;
  max-width: 1280px;
  margin: 0 auto;
}

.section-padding {
  padding: 100px 0;
}

.bg-paper {
  background-color: var(--c-paper);
  color: var(--c-text-dark);
}

.dark-theme {
  background-color: var(--c-dark-bg);
  color: var(--c-text-light);
}

.mt-2 {
  margin-top: 2rem;
}

.mt-3 {
  margin-top: 3rem;
}

/* Scroll Progress */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 0%;
  height: 3px;
  background: linear-gradient(90deg, var(--c-primary-light), var(--c-gold));
  z-index: 9999;
}

/* Typography Enhancements */
h1,
h2,
h3,
h4 {
  font-family: var(--f-title);
  font-weight: 700;
  line-height: 1.2;
}

h1 {
  font-size: clamp(3rem, 5vw, 4.5rem);
  letter-spacing: -1px;
}

h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 1rem;
}

.dark-title {
  color: var(--c-primary);
}

.dark-text {
  color: var(--c-text-muted);
}

.gold-text {
  color: var(--c-gold);
  font-style: italic;
}

.title-center {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 3rem auto;
}

.tag {
  display: inline-block;
  padding: 6px 15px;
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid var(--c-gold-dim);
  border-radius: 30px;
  color: var(--c-gold);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 1.5rem;
}

.tag.dark {
  background: rgba(24, 56, 33, 0.1);
  border-color: rgba(24, 56, 33, 0.3);
  color: var(--c-primary);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  font-size: 1rem;
  font-weight: 500;
  text-decoration: none;
  border-radius: 4px;
  border: 1px solid transparent;
  transition: all 0.4s var(--ease);
}

.btn-gold {
  background: var(--c-gold);
  color: var(--c-primary);
}

.btn-gold:hover {
  background: #e6bc3e;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(212, 175, 55, 0.3);
}

.btn-glass {
  background: rgba(255, 255, 255, 0.05);
  color: var(--c-pure-white);
  border-color: rgba(255, 255, 255, 0.2);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}

.btn-glass:hover {
  background: var(--c-pure-white);
  color: var(--c-primary);
  transform: translateY(-3px);
}

.btn.outline {
  background: transparent;
  border: 1px solid var(--c-gold);
  color: var(--c-gold);
}

.btn.outline:hover {
  background: var(--c-gold);
  color: var(--c-primary);
}

/* Floating Actions */
.floating-actions {
  position: fixed;
  bottom: 30px;
  right: 30px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  z-index: 1000;
}

.float-btn {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
  transition:
    transform 0.4s var(--ease),
    box-shadow 0.4s var(--ease);
}

.float-btn.whatsapp {
  background-color: var(--c-whatsapp);
}

.float-btn.phone {
  background-color: var(--c-gold);
}

.float-btn:hover {
  transform: translateY(-5px) scale(1.05);
}

/* Hero Parallax */
.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: -50px;
  left: -50px;
  right: -50px;
  bottom: -50px;
  z-index: 1;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.zooming-bg {
  animation: slowZoom 30s ease-in-out infinite alternate;
}

@keyframes slowZoom {
  from {
    transform: scale(1);
  }

  to {
    transform: scale(1.15);
  }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(9, 21, 12, 0.95) 0%,
    rgba(9, 21, 12, 0.6) 100%
  );
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 650px;
}

.hero-content .eyebrow {
  display: block;
  color: var(--c-gold);
  font-size: 0.9rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.hero-content p {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 2.5rem;
  font-weight: 300;
}

.hero-actions {
  display: flex;
  gap: 1rem;
}

/* Navbar - Glassmorphism */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 25px 0;
  transition: all 0.5s var(--ease);
  border-bottom: 1px solid transparent;
}

.navbar.scrolled {
  padding: 15px 0;
  background: rgba(9, 21, 12, 0.85);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.nav-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.brand-logo {
  color: var(--c-pure-white);
  font-family: var(--f-title);
  font-size: 1.8rem;
  font-weight: 700;
  text-decoration: none;
  display: flex;
  align-items: center;
}

.brand-logo img {
  height: 120px;
  width: auto;
  object-fit: contain;
  transition: height 0.4s var(--ease);
}

.navbar.scrolled .brand-logo img {
  height: 80px;
}

.brand-logo span {
  color: var(--c-gold);
  font-style: italic;
}

.nav-links {
  display: flex;
  gap: 2.5rem;
}

.nav-links a {
  color: var(--c-text-light);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: var(--c-gold);
}

.mobile-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 21px;
  cursor: pointer;
  z-index: 1001;
}

.mobile-toggle span {
  display: block;
  height: 3px;
  width: 100%;
  background-color: var(--c-pure-white);
  border-radius: 3px;
  transition: all 0.3s ease;
}

.mobile-toggle.toggle-active span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}

.mobile-toggle.toggle-active span:nth-child(2) {
  opacity: 0;
}

.mobile-toggle.toggle-active span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

/* Split Layout / Çiftliğimiz */
.split-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.feature-item {
  display: flex;
  gap: 1rem;
}

.feature-item .icon {
  font-size: 2rem;
  background: var(--c-dark-surface);
  height: 60px;
  width: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.feature-item h4 {
  font-family: var(--f-text);
  color: var(--c-pure-white);
  margin-bottom: 0.2rem;
}

.feature-item p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
}

.image-glass-card {
  position: relative;
  border-radius: 8px;
  overflow: visible;
}

.image-glass-card .organic-img {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
}

.badge-float {
  position: absolute;
  bottom: -30px;
  left: -30px;
  width: 140px;
  height: 140px;
  background: rgba(255, 255, 255, 0.1);
  -webkit-backdrop-filter: blur(15px);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
  color: var(--c-pure-white);
  text-align: center;
  line-height: 1.2;
}

.badge-float strong {
  font-size: 2rem;
  font-family: var(--f-title);
  color: var(--c-gold);
}

.badge-float span {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Products Layout */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
}

.premium-card {
  background: var(--c-pure-white);
  border-radius: 6px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04);
  transition:
    transform 0.6s var(--ease),
    box-shadow 0.6s var(--ease);
}

.premium-card:hover {
  transform: translateY(-15px);
  box-shadow: 0 20px 50px rgba(24, 56, 33, 0.15);
}

.card-img-wrap {
  height: 300px;
  position: relative;
  overflow: hidden;
  background: #eae6d7;
  cursor: none !important;
}

.card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s var(--ease);
}

.premium-card:hover .card-img-wrap img {
  transform: scale(1.05);
}

/* Glare effect on image */
.glare {
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    to right,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.3) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  transform: skewX(-20deg);
  z-index: 10;
  transition: 0.7s;
}

.premium-card:hover .glare {
  left: 150%;
}

.card-tag {
  position: absolute;
  top: 15px;
  right: 15px;
  background: rgba(24, 56, 33, 0.9);
  color: var(--c-pure-white);
  padding: 5px 15px;
  border-radius: 3px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  z-index: 5;
}

.card-tag.gold {
  background: var(--c-gold);
  color: var(--c-primary);
}

.card-body {
  padding: 2rem;
}

.card-body h3 {
  font-size: 1.4rem;
  color: var(--c-primary);
  margin-bottom: 0.8rem;
}

.card-body p {
  color: var(--c-text-muted);
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
}

.inspect-link {
  color: var(--c-gold);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: color 0.3s;
  display: inline-block;
}

.inspect-link:hover {
  color: var(--c-primary);
}

/* Nutrition Bars */
.nutrition-bars .text-content h2 {
  margin-bottom: 1.5rem;
}

.nutrition-bars .text-content p {
  color: rgba(255, 255, 255, 0.7);
}

.skill-bar {
  margin-bottom: 1.5rem;
}

.skill-bar .info {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
  font-weight: 500;
}

.skill-bar .info span:last-child {
  color: var(--c-gold);
}

.bar-bg {
  width: 100%;
  height: 6px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 3px;
  overflow: hidden;
}

.bar-fill {
  height: 100%;
  background: var(--c-gold);
  width: 0%;
  border-radius: 3px;
  transition: width 1.5s var(--ease);
}

/* Manifesto */
.manifesto-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(280px, 1fr));
  gap: 2rem;
}

.manifesto-card {
  background: var(--c-pure-white);
  border: 1px solid rgba(24, 56, 33, 0.12);
  border-radius: 8px;
  padding: 2rem;
  box-shadow: 0 12px 30px rgba(24, 56, 33, 0.08);
}

.manifesto-card h3 {
  color: var(--c-primary);
  margin-bottom: 0.8rem;
}

.manifesto-card p {
  color: var(--c-text-muted);
  margin-bottom: 1rem;
}

.manifesto-card ul {
  padding-left: 1rem;
  color: var(--c-text-dark);
}

.manifesto-card li {
  margin-bottom: 0.5rem;
}

.manifesto-card.ceo-note {
  background: linear-gradient(140deg, #183821 0%, #102416 100%);
  border-color: rgba(212, 175, 55, 0.35);
  text-align: center;
  grid-column: 1 / -1;
  max-width: 760px;
  margin: 0 auto;
}

.manifesto-card.ceo-note h3,
.manifesto-card.ceo-note p,
.manifesto-card.ceo-note li {
  color: var(--c-pure-white);
}

.manifesto-card.ceo-note strong {
  color: var(--c-gold);
}

/* Traceability */
.trace-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.3rem;
}

.trace-card {
  background: var(--c-dark-surface);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  padding: 1.5rem;
  transition:
    transform 0.4s var(--ease),
    border-color 0.4s var(--ease);
}

.trace-card:hover {
  transform: translateY(-6px);
  border-color: rgba(212, 175, 55, 0.5);
}

.trace-step {
  display: inline-block;
  color: var(--c-gold);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 1.5px;
  margin-bottom: 0.6rem;
}

.trace-card h3 {
  color: var(--c-pure-white);
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
}

.trace-card p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.95rem;
}

/* Impact */
.impact-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(150px, 1fr));
  gap: 1rem;
}

.impact-card {
  background: linear-gradient(145deg, #fffdf7, #f4efdc);
  border: 1px solid rgba(212, 175, 55, 0.35);
  border-radius: 8px;
  padding: 1.2rem;
  text-align: center;
}

.impact-card strong {
  display: block;
  color: var(--c-primary);
  font-family: var(--f-title);
  font-size: 1.8rem;
  margin-bottom: 0.3rem;
}

.impact-card span {
  color: var(--c-text-muted);
  font-size: 0.9rem;
}

/* FAQ */
.faq-list {
  max-width: 860px;
}

.faq-item {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 6px;
  padding: 1rem 1.2rem;
  margin-bottom: 0.8rem;
}

.faq-item summary {
  cursor: pointer;
  list-style: none;
  font-weight: 600;
  color: var(--c-pure-white);
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item p {
  margin-top: 0.8rem;
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.95rem;
}

/* Footer */
.footer {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 80px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 4rem;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}

.footer-logo {
  display: inline-block;
  margin-bottom: 1.5rem;
}

.footer-logo img {
  height: 160px;
  width: auto;
  object-fit: contain;
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.5);
  max-width: 300px;
}

.footer h4 {
  color: var(--c-pure-white);
  margin-bottom: 1.5rem;
  font-family: var(--f-text);
  font-size: 1.1rem;
}

.footer ul {
  list-style: none;
}

.footer ul li {
  margin-bottom: 0.8rem;
}

.footer ul a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: color 0.3s;
}

.footer ul a:hover {
  color: var(--c-gold);
}

.footer-contact p {
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
}

.footer-contact span {
  color: var(--c-gold);
  font-weight: 500;
}

.contact-links-footer {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-contact-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 15px;
  border-radius: 4px;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: all 0.3s ease;
  color: white !important;
}

.footer-contact-btn.wapp {
  background-color: var(--c-whatsapp);
}

.footer-contact-btn.wapp:hover {
  background-color: #20b858;
}

.footer-contact-btn.phone {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-contact-btn.phone:hover {
  background: rgba(255, 255, 255, 0.2);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 25px 0;
  text-align: center;
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.85rem;
}

/* Animations - Initial State */
.animate-up {
  opacity: 0;
  transform: translateY(40px);
  transition: 1s var(--ease);
}

.animate-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: 1s var(--ease);
}

.animate-right {
  opacity: 0;
  transform: translateX(40px);
  transition: 1s var(--ease);
}

.in-view {
  opacity: 1;
  transform: translate(0, 0);
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .split-layout {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .manifesto-grid,
  .impact-metrics {
    grid-template-columns: 1fr;
  }

  .badge-float {
    transform: scale(0.8);
    left: 0;
    bottom: 0;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  #cursor {
    display: none;
  }
}

@media (max-width: 768px) {
  .brand-logo img {
    height: 75px;
  }

  .navbar.scrolled .brand-logo img {
    height: 65px;
  }

  .footer-logo img {
    height: 100px;
  }

  .mobile-toggle {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 70%;
    height: 100vh;
    background: rgba(9, 21, 12, 0.98);
    -webkit-backdrop-filter: blur(15px);
    backdrop-filter: blur(15px);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    transition: right 0.4s var(--ease);
    z-index: 999;
    border-left: 1px solid rgba(255, 255, 255, 0.05);
  }

  .nav-links.nav-active {
    right: 0;
  }

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

  .hero-actions {
    justify-content: center;
  }

  .trace-box {
    padding: 30px 20px;
  }

  .trace-input-group {
    flex-direction: column;
  }
}
