:root {
  --primary-orange: rgb(255, 152, 0);
}

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

body {
  background-color: #000008;
  overflow-x: hidden;
  font-family: "Outfit", sans-serif;
}

/* Varsayılan scrollbar'ı gizle */
::-webkit-scrollbar {
  display: none;
}

html {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

/* Intro Screen Styles */
.intro-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #000000;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10001;
}

.slogan-container {
  display: flex;
  gap: 30px;
  font-size: 2.625rem;
  font-weight: 300;
  letter-spacing: 2px;
}

.slogan-word {
  color: #ffffff;
  opacity: 0;
  transform: translateY(30px);
  animation: slideInUp 0.8s ease-out forwards;
}

.slogan-word:nth-child(2) {
  font-weight: 500;
}

@keyframes slideInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideOutUp {
  from {
    opacity: 1;
    transform: translateY(0);
  }
  to {
    opacity: 0;
    transform: translateY(-30px);
  }
}

.intro-screen.fade-out .slogan-container {
  animation: slideOutUp 0.8s ease-out forwards;
}

/* Loading Bar Styles */
.loading-bar-container {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 4px;
  opacity: 0;
  transform: translateY(-50%);
}

.loading-bar {
  height: 100%;
  background-color: rgb(255, 152, 0);
  width: 0;
  transition: width 1.5s ease-out;
  margin-left: 0;
}

.loading-bar-container.show {
  opacity: 1;
}

.loading-bar-container.fill .loading-bar {
  width: 100%;
}

.loading-bar-container.shrink .loading-bar {
  width: 100%;
  margin-left: 100%;
  transition: margin-left 1.5s ease-out;
}

/* Company Name Styles */
.company-name {
  position: absolute;
  top: 46%;
  left: 45%;
  transform: translateY(30px);
  font-size: 2.25rem;
  font-weight: 600;
  color: #ffffff;
  opacity: 0;
  letter-spacing: 3px;
}

.company-name.show {
  animation: slideInUp 0.8s ease-out forwards;
}

.company-name.fade-out {
  animation: slideOutUp 0.8s ease-out forwards;
}

/* Main Layout */
.main-content {
  width: 100%;
  height: 100vh;
  display: block;
  position: relative;
}

.left-panel {
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  padding: 50px 60px;
  z-index: 10;
  position: fixed;
  left: 0;
  top: 0;
  width: 200px;
}

.right-panel {
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-end;
  padding: 60px;
  z-index: 10000;
  position: fixed;
  right: 0;
  top: 0;
  width: 200px;
}

.center-panel {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding-left: 280px;
  padding-right: 200px;
  z-index: 10;
  position: relative;
  width: 100%;
}

/* Sol Panel */
.logo {
  font-size: 2.625rem;
  font-weight: 500;
  color: #ffffff;
  letter-spacing: 2px;
}

.nav-text {
  writing-mode: vertical-lr;
  text-orientation: mixed;
  font-size: 0.75rem;
  font-weight: 400;
  color: #ffffff;
  letter-spacing: 3px;
  opacity: 0.8;
  transform: rotate(180deg);
}

/* Sağ Panel */
.hamburger-menu {
  display: flex;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  position: relative;
  z-index: 10000;
}

.hamburger-menu span {
  width: 40px;
  height: 3px;
  background-color: #ffffff;
  transition: all 0.3s ease;
  transform-origin: center;
}

.hamburger-menu:hover span {
  background-color: rgb(255, 152, 0);
}

/* Hamburger to X animation */
.hamburger-menu.active span:nth-child(1) {
  transform: rotate(45deg) translate(7px, 7px);
  background-color: #ffffff !important;
}

.hamburger-menu.active span:nth-child(2) {
  opacity: 0;
}

.hamburger-menu.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
  background-color: #ffffff !important;
}

.back-to-top {
  writing-mode: vertical-lr;
  text-orientation: mixed;
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  transform: rotate(180deg);
  margin-right: 10px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.arrow {
  font-size: 1.25rem;
  color: #ffffff;
  transition: all 0.3s ease;
}

.back-to-top .arrow {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  rotate: 90deg;
  background-color: #ccc;
  border-radius: 50%;
}

.back-text {
  font-size: 0.75rem;
  font-weight: 400;
  color: #ffffff;
  letter-spacing: 3px;
  opacity: 0.8;
  transition: all 0.3s ease;
}

.back-to-top:hover .arrow,
.back-to-top:hover .back-text {
  color: rgb(255, 152, 0);
  opacity: 1;
}

/* Content Area */
.content-area {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #ffffff;
}

.hero-content {
  width: 100%;
  text-align: left;
  padding-top: 100px;
}

.hero-title {
  font-family: "Outfit", sans-serif;
  max-width: 800px;
  font-size: 5.375rem;
  font-weight: 600;
  color: #ffffff;
  line-height: 1.1;
  margin-bottom: 48px;
  letter-spacing: -1px;
}

.hero-description {
  max-width: 800px;
  font-size: 1rem;
  color: #ffffff66;
  line-height: 1.6;
  margin-bottom: 64px;
  font-weight: 400;
}

.hero-buttons {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}

.hero-button-group {
  display: flex;
  gap: 20px;
}

.btn-primary,
.btn-secondary {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 32px;
  border: none;
  border-radius: 50px;
  font-family: "Outfit", sans-serif;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
}

.btn-primary {
  background-color: var(--primary-orange);
  color: #000000;
}

.btn-secondary {
  background-color: transparent;
  color: #ffffff;
  border: 2px solid #ffffff;
}

.btn-arrow {
  font-size: 18px;
  transition: transform 0.3s ease;
}

.btn-primary:hover .btn-arrow,
.btn-secondary:hover .btn-arrow {
  transform: scale(1.2);
}

.btn-secondary:hover {
  background-color: #ffffff;
  color: #000000;
}

/* Konum */
/* === Scroll Indicator =========================================== */
.scroll-indicator {
  width: 120px;
  height: 120px;
  pointer-events: none;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* SVG ring */
.scroll-ring {
  width: 120px;
  height: 120px; /* transform origin center by default */
}

/* Metin stili – daha fazla letter‑spacing */
.indicator-text {
  font: 600 11px/1 "Inter", sans-serif;
  letter-spacing: 5px;
  fill: #8d8d8d;
}

/* Turuncu buton (dönmez) */
.scroll-btn {
  position: absolute;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: none;
  background: #ff9d00;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: auto;
  cursor: pointer;
}
.arrow {
  font-size: 1.2rem;
  color: #000;
  line-height: 1;
}

.scroll-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: var(--primary-orange);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  animation: pulse 2s ease-in-out infinite;
  z-index: 2;
}

.scroll-button:hover {
  background-color: #ffffff;
  transform: translate(-50%, -50%) scale(1.1);
}

.scroll-button:hover .scroll-arrow {
  color: var(--primary-orange);
}

.scroll-arrow {
  font-size: 20px;
  color: #000000;
  font-weight: bold;
  transition: color 0.3s ease;
}

@keyframes pulse {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(255, 152, 0, 0.4);
  }
  50% {
    box-shadow: 0 0 0 20px rgba(255, 152, 0, 0);
  }
}

.animation-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  perspective: 1200px;
  pointer-events: none;
}

/* Beyaz bölümde küpleri gizle */
.about-section ~ .animation-container {
  display: none;
}

/* Beyaz background - About section için */
.white-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #ffffff;
  z-index: -1;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding-top: 50px;
}

.geometric-column {
  position: relative;
  width: 250px;
  height: 100vh;
  animation: floatUpDown 6s ease-in-out infinite;
}

.geometric-shape {
  position: absolute;
  left: 0;
  width: 250px;
  height: 250px;
  border: 2px solid #00000020;
}

.shape-square {
  /* Kare zaten varsayılan */
}

.shape-circle {
  border-radius: 50%;
}

/* Karışık top değerleri */
.geometric-shape:nth-child(1) {
  top: -5%;
}
.geometric-shape:nth-child(2) {
  top: -2%;
}
.geometric-shape:nth-child(3) {
  top: 15%;
}
.geometric-shape:nth-child(4) {
  top: 18%;
}
.geometric-shape:nth-child(5) {
  top: 35%;
}
.geometric-shape:nth-child(6) {
  top: 32%;
}
.geometric-shape:nth-child(7) {
  top: 68%;
}
.geometric-shape:nth-child(8) {
  top: 62%;
}
.geometric-shape:nth-child(9) {
  top: 52%;
}
.geometric-shape:nth-child(10) {
  top: 75%;
}
.geometric-shape:nth-child(11) {
  top: 80%;
}
.geometric-shape:nth-child(12) {
  top: 90%;
}
.geometric-shape:nth-child(13) {
  top: 85%;
}

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

.cube-group {
  position: absolute;
  transform-style: preserve-3d;
}

.group-1 {
  top: 10%;
  right: 15%;
}

.group-2 {
  top: 10%;
  left: 10%;
}

.group-3 {
  bottom: 10%;
  right: 40%;
}

.cube {
  position: absolute;
  transform-style: preserve-3d;
}

/* Outer cubes */
.group-1 .outer {
  width: 390px;
  height: 390px;
  animation: rotateOuter1 25s linear infinite;
}

.group-2 .outer {
  width: 195px;
  height: 195px;
  animation: rotateOuter2 30s linear infinite;
}

.group-3 .outer {
  width: 130px;
  height: 130px;
  animation: rotateOuter3 20s linear infinite;
}

/* Inner cubes */
.group-1 .inner {
  width: 195px;
  height: 195px;
  top: 97.5px;
  left: 97.5px;
  animation: rotateInner1 20s linear infinite reverse;
}

.group-2 .inner {
  width: 104px;
  height: 104px;
  top: 45.5px;
  left: 45.5px;
  animation: rotateInner2 18s linear infinite reverse;
}

.group-3 .inner {
  width: 65px;
  height: 65px;
  top: 32.5px;
  left: 32.5px;
  animation: rotateInner3 15s linear infinite reverse;
}

/* Animations for outer cubes */
@keyframes rotateOuter1 {
  0% {
    transform: rotateX(0deg) rotateY(0deg) rotateZ(0deg);
  }
  100% {
    transform: rotateX(360deg) rotateY(360deg) rotateZ(360deg);
  }
}

@keyframes rotateOuter2 {
  0% {
    transform: rotateX(0deg) rotateY(0deg) rotateZ(0deg);
  }
  100% {
    transform: rotateX(-360deg) rotateY(360deg) rotateZ(-360deg);
  }
}

@keyframes rotateOuter3 {
  0% {
    transform: rotateX(0deg) rotateY(0deg) rotateZ(0deg);
  }
  100% {
    transform: rotateX(360deg) rotateY(-360deg) rotateZ(360deg);
  }
}

/* Animations for inner cubes */
@keyframes rotateInner1 {
  0% {
    transform: rotateX(0deg) rotateY(0deg) rotateZ(0deg);
  }
  100% {
    transform: rotateX(360deg) rotateY(-360deg) rotateZ(-360deg);
  }
}

@keyframes rotateInner2 {
  0% {
    transform: rotateX(0deg) rotateY(0deg) rotateZ(0deg);
  }
  100% {
    transform: rotateX(-360deg) rotateY(-360deg) rotateZ(360deg);
  }
}

@keyframes rotateInner3 {
  0% {
    transform: rotateX(0deg) rotateY(0deg) rotateZ(0deg);
  }
  100% {
    transform: rotateX(360deg) rotateY(360deg) rotateZ(-360deg);
  }
}

.face {
  position: absolute;
  width: 100%;
  height: 100%;
  background: transparent;
  border: 2px solid #333;
}

/* Face transforms for different cube sizes */
.group-1 .outer .front {
  transform: rotateY(0deg) translateZ(195px);
}
.group-1 .outer .back {
  transform: rotateY(180deg) translateZ(195px);
}
.group-1 .outer .right {
  transform: rotateY(90deg) translateZ(195px);
}
.group-1 .outer .left {
  transform: rotateY(-90deg) translateZ(195px);
}
.group-1 .outer .top {
  transform: rotateX(90deg) translateZ(195px);
}
.group-1 .outer .bottom {
  transform: rotateX(-90deg) translateZ(195px);
}

.group-1 .inner .front {
  transform: rotateY(0deg) translateZ(97.5px);
}
.group-1 .inner .back {
  transform: rotateY(180deg) translateZ(97.5px);
}
.group-1 .inner .right {
  transform: rotateY(90deg) translateZ(97.5px);
}
.group-1 .inner .left {
  transform: rotateY(-90deg) translateZ(97.5px);
}
.group-1 .inner .top {
  transform: rotateX(90deg) translateZ(97.5px);
}
.group-1 .inner .bottom {
  transform: rotateX(-90deg) translateZ(97.5px);
}

.group-2 .outer .front {
  transform: rotateY(0deg) translateZ(97.5px);
}
.group-2 .outer .back {
  transform: rotateY(180deg) translateZ(97.5px);
}
.group-2 .outer .right {
  transform: rotateY(90deg) translateZ(97.5px);
}
.group-2 .outer .left {
  transform: rotateY(-90deg) translateZ(97.5px);
}
.group-2 .outer .top {
  transform: rotateX(90deg) translateZ(97.5px);
}
.group-2 .outer .bottom {
  transform: rotateX(-90deg) translateZ(97.5px);
}

.group-2 .inner .front {
  transform: rotateY(0deg) translateZ(52px);
}
.group-2 .inner .back {
  transform: rotateY(180deg) translateZ(52px);
}
.group-2 .inner .right {
  transform: rotateY(90deg) translateZ(52px);
}
.group-2 .inner .left {
  transform: rotateY(-90deg) translateZ(52px);
}
.group-2 .inner .top {
  transform: rotateX(90deg) translateZ(52px);
}
.group-2 .inner .bottom {
  transform: rotateX(-90deg) translateZ(52px);
}

.group-3 .outer .front {
  transform: rotateY(0deg) translateZ(65px);
}
.group-3 .outer .back {
  transform: rotateY(180deg) translateZ(65px);
}
.group-3 .outer .right {
  transform: rotateY(90deg) translateZ(65px);
}
.group-3 .outer .left {
  transform: rotateY(-90deg) translateZ(65px);
}
.group-3 .outer .top {
  transform: rotateX(90deg) translateZ(65px);
}
.group-3 .outer .bottom {
  transform: rotateX(-90deg) translateZ(65px);
}

.group-3 .inner .front {
  transform: rotateY(0deg) translateZ(32.5px);
}
.group-3 .inner .back {
  transform: rotateY(180deg) translateZ(32.5px);
}
.group-3 .inner .right {
  transform: rotateY(90deg) translateZ(32.5px);
}
.group-3 .inner .left {
  transform: rotateY(-90deg) translateZ(32.5px);
}
.group-3 .inner .top {
  transform: rotateX(90deg) translateZ(32.5px);
}
.group-3 .inner .bottom {
  transform: rotateX(-90deg) translateZ(32.5px);
}

/* About Section */
.about-section {
  background: transparent;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 100px 200px;
  position: relative;
  z-index: 5;
  grid-column: 1 / -1;
}

.about-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  max-width: 1400px;
  width: 100%;
}

/* Her harf için smooth transition */
.letter {
  transition: color 0.1s ease;
}

/* Custom Scroll Progress Bar */
.scroll-progress {
  position: fixed;
  top: 0;
  right: 0;
  width: 4px;
  height: 100vh;
  background: rgba(255, 255, 255, 0.1);
  z-index: 9998;
}

.scroll-progress-bar {
  width: 100%;
  height: 0%;
  background: var(--primary-orange);
  transition: height 0.1s ease;
}

.about-content {
  color: #000000;
}

.about-title {
  font-size: 4rem;
  font-weight: 600;
  margin-bottom: 48px;
  color: #000000;
}

.about-text {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.about-text p {
  font-size: 1.125rem;
  color: rgba(0, 0, 0, 0.8);
  line-height: 1.8;
  text-align: justify;
}

/* About Cards - Fan Layout */
.about-cards {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 450px;
}

.card-fan {
  position: relative;
  width: 350px;
  height: 400px;
  perspective: 1000px;
}

.card-image {
  position: absolute;
  width: 240px;
  height: 320px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  transform-origin: center bottom;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Card Fan Positioning - Like holding cards in hand */
.card-image.card-1 {
  left: 0;
  top: 40px;
  transform: rotate(-15deg);
  z-index: 1;
}

.card-image.card-2 {
  left: 55px;
  top: 0;
  transform: rotate(0deg);
  z-index: 2;
}

.card-image.card-3 {
  left: 110px;
  top: 40px;
  transform: rotate(15deg);
  z-index: 1;
}

/* Hover Effects */
.card-image:hover {
  transform: scale(1.05) rotate(0deg) translateY(-10px);
  z-index: 10;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
}

/* Statistics Section */
.stats-section {
  background: transparent;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 100px 200px;
  position: relative;
  z-index: 5;
}

.stats-container {
  max-width: 1400px;
  width: 100%;
  text-align: center;
}

.stats-content {
  margin-bottom: 80px;
}

.stats-title {
  font-size: 4rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 24px;
  letter-spacing: -1px;
}

.stats-description {
  font-size: 1.25rem;
  color: #ffffff66;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-top: 60px;
}

.stat-card {
  background: linear-gradient(145deg, #111111, #222222);
  border: 1px solid #333333;
  border-radius: 20px;
  padding: 0;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  height: 280px;
  perspective: 1000px;
  cursor: pointer;
  opacity: 0;
  transform: translateY(50px) scale(0.8);
}

.stat-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 152, 0, 0.15),
    transparent
  );
  transition: left 0.6s ease;
  z-index: 1;
  pointer-events: none;
}

.stat-card:hover::before {
  left: 100%;
}

.card-front,
.card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  transition: transform 0.8s ease;
  padding: 40px 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border-radius: 20px;
  z-index: 2;
}

.card-front {
  background: linear-gradient(145deg, #111111, #222222);
  transform: rotateY(0deg);
}

.card-back {
  background: linear-gradient(145deg, #1a1a1a, #2a2a2a);
  transform: rotateY(180deg);
}

.stat-card:hover .card-front {
  transform: rotateY(-180deg);
}

.stat-card:hover .card-back {
  transform: rotateY(0deg);
}

.stat-card:hover {
  transform: translateY(-10px);
  border-color: var(--primary-orange);
  box-shadow: 0 20px 40px rgba(255, 152, 0, 0.1);
}

.stat-icon {
  margin-bottom: 20px;
}

.icon-bg {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 70px;
  background: linear-gradient(145deg, var(--primary-orange), #ff8c00);
  border-radius: 50%;
  color: #000000;
  margin: 0 auto;
  transition: transform 0.3s ease;
}

.stat-card:hover .icon-bg {
  transform: scale(1.1) rotate(360deg);
}

.stat-number {
  font-size: 3.5rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 10px;
  font-family: "Outfit", sans-serif;
}

.stat-label {
  font-size: 1.125rem;
  color: #ffffff88;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Card Back Styles */
.card-back-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--primary-orange);
  margin-bottom: 15px;
  text-align: center;
}

.card-back-description {
  font-size: 0.9rem;
  color: #ffffff99;
  line-height: 1.5;
  margin-bottom: 20px;
  text-align: center;
}

.card-back-details {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
}

.card-back-details span {
  font-size: 0.85rem;
  color: #ffffff;
  padding: 5px 0;
  border-left: 3px solid var(--primary-orange);
  padding-left: 10px;
  background: rgba(255, 152, 0, 0.1);
  border-radius: 4px;
}

/* Testimonials Section */
.testimonials-section {
  background: transparent;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 100px 200px;
  position: relative;
  z-index: 5;
}

.testimonials-container {
  max-width: 1400px;
  width: 100%;
  position: relative;
  z-index: 10;
}

.testimonials-header {
  text-align: center;
  margin-bottom: 80px;
}

.testimonials-title {
  font-size: 4rem;
  font-weight: 600;
  color: #000000;
  margin-bottom: 24px;
  letter-spacing: -1px;
}

.testimonials-description {
  font-size: 1.25rem;
  color: rgba(0, 0, 0, 0.6);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.testimonials-slider {
  position: relative;
  width: 100%;
  overflow: hidden;
  margin-top: 60px;
}

.testimonials-track {
  display: flex;
  transition: transform 0.5s ease;
  gap: 40px;
}

.testimonial-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  position: relative;
  transition: all 0.3s ease;
  border: 1px solid #f0f0f0;
  overflow: hidden;
  flex: 0 0 calc(33.333% - 27px);
  opacity: 0;
  transform: translateX(-100px) rotateY(-15deg);
}

.testimonial-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 152, 0, 0.05),
    transparent
  );
  transition: left 0.6s ease;
}

.testimonial-card:hover::before {
  left: 100%;
}

.testimonial-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  border-color: var(--primary-orange);
}

.testimonial-content {
  position: relative;
  z-index: 2;
}

.quote-icon {
  color: var(--primary-orange);
  margin-bottom: 20px;
  opacity: 0.8;
}

.testimonial-text {
  font-size: 1.125rem;
  line-height: 1.7;
  color: rgba(0, 0, 0, 0.8);
  margin-bottom: 30px;
  font-style: italic;
  text-align: left;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 15px;
}

.author-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid var(--primary-orange);
  flex-shrink: 0;
}

.author-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.author-info {
  flex: 1;
}

.author-name {
  font-size: 1.125rem;
  font-weight: 600;
  color: #000000;
  margin-bottom: 4px;
}

.author-role {
  font-size: 0.9rem;
  color: rgba(0, 0, 0, 0.6);
  font-weight: 400;
}

/* Testimonials Controls */
.testimonials-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  margin-top: 40px;
}

.testimonial-btn {
  background: var(--primary-orange);
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  color: #000000;
}

.testimonial-btn:hover {
  background: #ff8c00;
  transform: scale(1.1);
}

.testimonial-btn:disabled {
  background: #cccccc;
  cursor: not-allowed;
  transform: none;
}

.testimonials-indicators {
  display: flex;
  gap: 10px;
}

.indicator {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #cccccc;
  cursor: pointer;
  transition: all 0.3s ease;
}

.indicator.active {
  background: var(--primary-orange);
  transform: scale(1.2);
}

.indicator:hover {
  background: #ff8c00;
}

/* Services Section */
.services-section {
  background: transparent;
  padding: 120px 0;
  position: relative;
  z-index: 5;
}

.services-container {
  max-width: 1400px;
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
}

.services-header {
  text-align: center;
  margin-bottom: 80px;
}

.services-title {
  font-size: 4rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 24px;
  letter-spacing: -1px;
}

.services-description {
  font-size: 1.25rem;
  color: #ffffff66;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.services-timeline {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
  padding: 40px 0;
}

.timeline-line {
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 4px;
  background: rgba(255, 255, 255, 0.2);
  transform: translateX(-50%);
  z-index: 0;
}

.timeline-progress {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 0%;
  background: linear-gradient(to bottom, var(--primary-orange), #ff8c00);
  transition: height 0.8s ease;
}

.service-item {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  margin-bottom: 60px;
  opacity: 0;
  transform: translateY(0);
}

.service-item.left {
  justify-content: flex-end;
}

.service-item.right {
  justify-content: flex-start;
}

.service-content {
  width: 45%;
  position: relative;
}

.service-item.left .service-content {
  margin-right: 0px;
  text-align: right;
}

.service-item.right .service-content {
  margin-left: 0px;
  text-align: left;
}

.service-number {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--primary-orange);
  margin-bottom: 15px;
  opacity: 0.8;
}

.service-details {
  background: linear-gradient(145deg, #111111, #1a1a1a);
  border: 1px solid #333333;
  border-radius: 20px;
  padding: 30px;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  z-index: 2;
}

.service-details::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 152, 0, 0.05),
    transparent
  );
  transition: left 0.6s ease;
}

.service-details:hover::before {
  left: 100%;
}

.service-details:hover {
  transform: translateY(-5px);
  border-color: var(--primary-orange);
  box-shadow: 0 15px 30px rgba(255, 152, 0, 0.1);
}

.service-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 15px;
}

.service-description {
  font-size: 1rem;
  color: #ffffff88;
  line-height: 1.6;
  margin-bottom: 20px;
}

.service-features {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.service-item.right .service-features {
  justify-content: flex-start;
}

.service-item.left .service-features {
  justify-content: flex-end;
}

.feature {
  background: rgba(255, 152, 0, 0.1);
  color: var(--primary-orange);
  padding: 6px 12px;
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: 500;
  border: 1px solid rgba(255, 152, 0, 0.2);
}

.service-icon-container {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 80px;
  background: linear-gradient(145deg, #222222, #111111);
  border: 3px solid var(--primary-orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
  transition: all 0.3s ease;
}

.service-icon-container:hover {
  transform: translateX(-50%) scale(1.1);
  box-shadow: 0 0 20px rgba(255, 152, 0, 0.3);
}

.service-icon {
  color: var(--primary-orange);
  transition: all 0.3s ease;
}

.service-icon-container:hover .service-icon {
  transform: scale(1.2);
}

.timeline-indicators {
  position: absolute;
  right: 50px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 15px;
  z-index: 10;
}

.indicator {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: all 0.3s ease;
}

.indicator.active {
  background: var(--primary-orange);
  transform: scale(1.3);
}

/* Contact Section */
.contact-section {
  background: transparent;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 100px 20px;
  position: relative;
  z-index: 5;
}

.contact-container {
  max-width: 1400px;
  width: 100%;
  margin: 0 auto;
  position: relative;
  z-index: 10;
}

.contact-header {
  text-align: center;
  margin-bottom: 80px;
}

.contact-title {
  font-size: 4rem;
  font-weight: 600;
  color: #000000;
  margin-bottom: 24px;
  letter-spacing: -1px;
}

.contact-description {
  font-size: 1.25rem;
  color: rgba(0, 0, 0, 0.6);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.contact-map {
  position: relative;
  height: 100%;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.map-container {
  width: 100%;
  height: 100%;
  position: relative;
}

.map-container iframe {
  border-radius: 20px;
}

.contact-form {
  background: #ffffff;
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border: 1px solid #f0f0f0;
}

.form {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.form-group {
  position: relative;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 15px;
  border: 2px solid #e0e0e0;
  border-radius: 10px;
  font-size: 1rem;
  font-family: "Outfit", sans-serif;
  background: transparent;
  transition: all 0.3s ease;
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--primary-orange);
}

.form-group label {
  position: absolute;
  top: 15px;
  left: 15px;
  font-size: 1rem;
  color: #888;
  transition: all 0.3s ease;
  pointer-events: none;
  background: #ffffff;
  padding: 0 5px;
}

.form-group input:focus + label,
.form-group textarea:focus + label,
.form-group select:focus + label,
.form-group input:valid + label,
.form-group textarea:valid + label,
.form-group select:valid + label {
  top: -10px;
  font-size: 0.8rem;
  color: var(--primary-orange);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-group select {
  cursor: pointer;
}

.form-group select option[value=""] {
  display: none;
}

.submit-btn {
  background: var(--primary-orange);
  color: #000000;
  border: none;
  padding: 15px 30px;
  border-radius: 10px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: "Outfit", sans-serif;
}

.submit-btn:hover {
  background: #ff8c00;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 152, 0, 0.3);
}

.submit-btn:disabled {
  background: #cccccc;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

/* Form Message Styles */
.form-message {
  margin-top: 20px;
  padding: 15px 20px;
  border-radius: 10px;
  font-size: 1rem;
  font-weight: 500;
  text-align: center;
  animation: slideIn 0.3s ease;
}

.form-message.success {
  background: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}

.form-message.error {
  background: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Footer */
.footer {
  background: #111111;
  color: #ffffff;
  padding: 60px 20px 30px;
  position: relative;
  z-index: 5;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  margin-bottom: 40px;
  max-width: 1200px;
  margin: 0 auto 40px auto;
}

.footer-section h3,
.footer-section h4 {
  margin-bottom: 20px;
}

.footer-title {
  font-size: 2rem;
  font-weight: 600;
  color: var(--primary-orange);
}

.footer-subtitle {
  font-size: 1.2rem;
  font-weight: 500;
  color: #ffffff;
}

.footer-description {
  font-size: 1rem;
  color: #ffffff88;
  line-height: 1.6;
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: #ffffff88;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--primary-orange);
}

.footer-contact p {
  margin-bottom: 10px;
  color: #ffffff88;
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid #333333;
  color: #ffffff66;
}

/* 4K ekranlar için */
@media (min-width: 2560px) {
  .hero-title {
    max-width: 1200px;
  }
  .hero-description {
    max-width: 1200px;
  }
  .slogan-container {
    font-size: 4rem;
  }

  .company-name {
    font-size: 3.5rem;
  }

  .logo {
    font-size: 4rem;
  }

  .nav-text {
    font-size: 1.2rem;
  }

  .hero-title {
    font-size: 8rem;
  }

  .hero-description {
    font-size: 1.8rem;
  }

  .btn-primary,
  .btn-secondary {
    font-size: 1.4rem;
    padding: 24px 48px;
  }

  .back-text {
    font-size: 1.2rem;
  }

  .arrow {
    font-size: 1.8rem;
  }

  .about-content h2 {
    font-size: 4.5rem;
  }

  .about-content p {
    font-size: 1.8rem;
  }

  .btn-arrow {
    font-size: 1.6rem;
  }
}

/* Tablet and Mobile responsive */
@media (max-width: 1024px) {
  .about-container {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .about-content {
    order: 1;
  }

  .about-cards {
    order: 2;
  }

  .testimonial-card {
    flex: 0 0 calc(33.333% - 27px);
  }

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

  .stat-card {
    /* Enable click to flip on tablet/mobile */
    perspective: 1000px;
  }

  .stat-card:hover .card-front {
    transform: rotateY(0deg);
  }

  .stat-card:hover .card-back {
    transform: rotateY(180deg);
  }

  .stat-card:hover {
    transform: none;
  }

  /* Click to flip functionality */
  .stat-card.flipped .card-front {
    transform: rotateY(-180deg);
  }

  .stat-card.flipped .card-back {
    transform: rotateY(0deg);
  }

  .stat-card.flipped:hover .card-front {
    transform: rotateY(-180deg);
  }

  .stat-card.flipped:hover .card-back {
    transform: rotateY(0deg);
  }
}

/* Tablet: Show 2 cards */
@media (max-width: 1024px) and (min-width: 769px) {
  .testimonial-card {
    flex: 0 0 calc(50% - 20px);
  }
}

@media (max-width: 768px) {
  .testimonials-section {
    padding: 80px 20px;
  }

  .testimonials-title {
    font-size: 2.5rem;
  }

  .testimonials-description {
    font-size: 1rem;
  }

  .testimonial-card {
    padding: 30px;
  }

  .testimonial-text {
    font-size: 1rem;
  }

  .author-avatar {
    width: 50px;
    height: 50px;
  }

  .author-name {
    font-size: 1rem;
  }

  .author-role {
    font-size: 0.8rem;
  }

  .testimonials-controls {
    gap: 20px;
  }

  .testimonial-btn {
    width: 40px;
    height: 40px;
  }
  
  .testimonial-card {
    flex: 0 0 100%;
  }

  .testimonials-track {
    gap: 20px;
  }

  .stats-section {
    padding: 80px 20px;
  }

  .stats-title {
    font-size: 2.5rem;
  }

  .stats-description {
    font-size: 1rem;
  }

  .stats-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .stat-card {
    height: 250px;
  }

  .card-front,
  .card-back {
    padding: 30px 20px;
  }

  .stat-number {
    font-size: 2.5rem;
  }

  .stat-label {
    font-size: 1rem;
  }

  .card-back-title {
    font-size: 1.2rem;
  }

  .card-back-description {
    font-size: 0.8rem;
  }

  .card-back-details span {
    font-size: 0.75rem;
  }
  .slogan-container {
    font-size: 48px;
    gap: 20px;
    flex-direction: column;
    text-align: center;
  }

  .company-name {
    font-size: 40px;
    letter-spacing: 2px;
    left: 25%;
  }

  /* Mobile Layout */
  .main-content {
    display: block;
  }

  .left-panel {
    position: fixed;
    top: 20px;
    left: 20px;
    width: auto;
    height: auto;
    padding: 0;
    z-index: 11;
  }

  .right-panel {
    position: fixed;
    top: 20px;
    right: 20px;
    width: auto;
    height: auto;
    padding: 0;
    z-index: 11;
  }

  .center-panel {
    padding: 80px 20px 20px 20px;
    margin: 0;
    width: 100%;
  }

  .nav-text {
    display: none;
  }

  .hamburger-menu {
    gap: 6px;
    margin-top: 10px;
  }

  .hamburger-menu span {
    width: 32px;
    height: 3px;
  }

  .back-to-top {
    display: none;
  }

  .hero-content {
    text-align: center;
    padding-top: 0;
    max-width: 100%;
  }

  .hero-title {
    font-size: 64px;
    line-height: 1.1;
    margin-bottom: 32px;
    max-width: 100%;
  }

  .hero-description {
    font-size: 18px;
    margin-bottom: 48px;
    max-width: 100%;
    text-align: center;
    padding: 0 10px;
  }

  .hero-buttons {
    flex-direction: column;
    gap: 16px;
    align-items: center;
  }

  .hero-button-group {
    flex-direction: column;
    gap: 16px;
  }

  .btn-primary,
  .btn-secondary {
    width: 100%;
    max-width: 280px;
    justify-content: center;
    padding: 18px 32px;
    font-size: 16px;
  }

  .scroll-indicator {
    display: none;
  }

  .about-section {
    padding: 80px 20px;
  }

  .about-title {
    font-size: 36px;
    margin-bottom: 32px;
    text-align: center;
  }

  .about-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-content {
    order: 1;
  }

  .about-cards {
    order: 2;
    height: 300px;
  }

  .card-fan {
    width: 250px;
    height: 280px;
  }

  .card-image {
    width: 150px;
    height: 210px;
  }

  .card-image.card-1 {
    left: 0;
    top: 25px;
  }

  .card-image.card-2 {
    left: 50px;
    top: 0;
  }

  .card-image.card-3 {
    left: 100px;
    top: 25px;
  }

  .about-text p {
    font-size: 16px;
    line-height: 1.6;
    text-align: center;
  }

  /* Progress bar mobilde daha kalın */
  .scroll-progress {
    width: 3px;
  }

  .group-1 {
    top: 10%;
    left: 10%;
  }

  .group-2 {
    top: 40%;
    right: 10%;
  }

  .group-3 {
    bottom: 10%;
  }

  .group-1 .outer {
    width: 100px;
    height: 100px;
  }

  .group-1 .inner {
    width: 50px;
    height: 50px;
    top: 25px;
    left: 25px;
  }

  .group-2 .outer {
    width: 80px;
    height: 80px;
  }

  .group-2 .inner {
    width: 40px;
    height: 40px;
    top: 20px;
    left: 20px;
  }

  .group-3 .outer {
    width: 150px;
    height: 150px;
  }

  .group-3 .inner {
    width: 75px;
    height: 75px;
    top: 37.5px;
    left: 37.5px;
  }

  .services-section {
    padding: 80px 20px;
  }

  .services-title {
    font-size: 2.5rem;
  }

  .services-description {
    font-size: 1rem;
  }

  .services-timeline {
    padding: 20px 0;
    max-width: 100%;
  }

  .timeline-line {
    left: 40px;
    transform: none;
    width: 3px;
  }

  .service-item {
    flex-direction: row;
    margin: 30px 0;
    align-items: flex-start;
  }

  .service-item.left,
  .service-item.right {
    justify-content: flex-start;
  }

  .service-content {
    width: calc(100% - 80px);
    margin-left: 80px !important;
    margin-right: 0 !important;
    text-align: left !important;
  }

  .service-features {
    justify-content: flex-start !important;
  }

  .service-icon-container {
    left: 40px;
    transform: translateX(-50%);
    width: 50px;
    height: 50px;
    position: absolute;
    top: 20px;
  }

  .service-details {
    padding: 20px;
    margin-top: 0;
  }

  .service-number {
    font-size: 1rem;
    margin-bottom: 10px;
  }

  .service-title {
    font-size: 1.2rem;
    margin-bottom: 10px;
  }

  .service-description {
    font-size: 0.9rem;
    margin-bottom: 15px;
  }

  .feature {
    font-size: 0.75rem;
    padding: 4px 8px;
  }

  .contact-section {
    padding: 80px 20px;
  }

  .contact-title {
    font-size: 2.5rem;
  }

  .contact-description {
    font-size: 1rem;
  }

  .contact-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .contact-map {
    height: 300px;
  }

  .contact-form {
    padding: 30px;
  }

  .footer {
    padding: 60px 20px 30px;
  }

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

/* Cookie Consent Banner */
.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(10px);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 20px;
  z-index: 10000;
  transform: translateY(100%);
  transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  box-shadow: 0 -5px 30px rgba(0, 0, 0, 0.3);
}

.cookie-consent.show {
  transform: translateY(0);
  animation: slideUpBounce 0.6s ease-out;
}

@keyframes slideUpBounce {
  0% {
    transform: translateY(100%);
    opacity: 0;
  }
  60% {
    transform: translateY(-10px);
    opacity: 1;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

.cookie-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.cookie-text h4 {
  color: #ffffff;
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.cookie-text p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
  line-height: 1.4;
  max-width: 600px;
}

.cookie-buttons {
  display: flex;
  align-items: center;
  gap: 15px;
  flex-shrink: 0;
}

.cookie-btn {
  padding: 12px 24px;
  border: none;
  border-radius: 25px;
  font-family: 'Outfit', sans-serif;
  font-weight: 500;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.accept-btn {
  background: var(--primary-orange);
  color: #ffffff;
}

.accept-btn:hover {
  background: #e6890a;
  transform: translateY(-2px);
}

.decline-btn {
  background: transparent;
  color: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.decline-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
}

.cookie-link {
  color: var(--primary-orange);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.3s ease;
}

.cookie-link:hover {
  color: #ffffff;
}

@media (max-width: 768px) {
  .cookie-content {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }
  
  .cookie-buttons {
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .cookie-btn {
    padding: 10px 20px;
    font-size: 0.8rem;
  }
}

/* Menu Overlay Styles */
.menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000000;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
}

.menu-overlay.active {
  opacity: 1;
  visibility: visible;
}

.menu-overlay.active ~ .right-panel .back-to-top {
  display: none !important;
}

.menu-overlay.active ~ .right-panel .arrow {
  background-color: #000;
}

.menu-content {
  height: 100%;
  display: flex;
}

/* Desktop Layout (1024px+) */
@media (min-width: 1025px) {
  .menu-left {
    width: 50%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-right: 60px;
  }

  .menu-right {
    width: 50%;
    display: flex;
    flex-direction: column;
    padding-left: 60px;
  }

  .menu-nav {
    display: flex;
    flex-direction: column;
    gap: 40px;
  }

  .menu-link {
    color: #ffffff;
    text-decoration: none;
    font-size: 2.2rem;
    font-weight: 300;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    position: relative;
    text-align: right;
    overflow: hidden;
    display: inline-block;
    height: 2.6rem;
  }

  .menu-link:hover {
    color: var(--primary-orange);
  }

  .menu-link .link-text {
    display: block;
    transition: transform 0.3s ease;
  }

  .menu-link:hover .link-text {
    transform: translateY(-100%);
  }

  .menu-link .hover-text {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    transition: transform 0.3s ease;
  }

  .menu-link:hover .hover-text {
    transform: translateY(-100%);
  }

  .menu-link.active {
    color: var(--primary-orange) !important;
  }

  .menu-link.active .link-text,
  .menu-link.active .hover-text {
    color: var(--primary-orange) !important;
  }

  .menu-info {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 60px 0;
  }

  .menu-visual {
    width: 100%;
    margin-bottom: 40px;
  }

  .menu-image {
    width: 350px;
    height: 250px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(255, 152, 0, 0.25);
  }

  .menu-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
  }

  .menu-description {
    width: 100%;
  }

  .menu-desc-title {
    font-size: 2rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 20px;
  }

  .menu-desc-text {
    font-size: 1.1rem;
    color: #ffffff88;
    line-height: 1.7;
    max-width: 450px;
  }
}

/* Mobile Layout (1024px and below) */
@media (max-width: 1024px) {
  .menu-left {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .menu-right {
    display: none;
  }

  .menu-nav {
    display: flex;
    flex-direction: column;
    gap: 30px;
    text-align: center;
  }

  .menu-link {
    color: #ffffff;
    text-decoration: none;
    font-size: 2.5rem;
    font-weight: 300;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    height: auto;
    overflow: visible;
  }

  .menu-link .hover-text {
    display: none;
  }

  .menu-link:hover {
    color: var(--primary-orange);
    transform: scale(1.1);
  }
}
