/* Bileşen stilleri */

/* Header */
.depar-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  transition: background 0.5s, border 0.5s;
}

.depar-header.is-scrolled {
  background: rgba(8, 8, 8, 0.95);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--depar-border);
}

.depar-header__inner {
  max-width: var(--depar-max-w);
  margin: 0 auto;
  padding: 0 1.5rem;
  height: 4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.depar-logo {
  font-family: var(--depar-font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--depar-fg);
  text-decoration: none;
}

.depar-logo .dot {
  color: var(--depar-accent);
}

.depar-nav a,
.depar-nav button {
  color: #fff;
  font-size: 0.875rem;
  font-weight: 500;
  background: none;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: color 0.2s;
}

.depar-nav a:hover,
.depar-nav button:hover {
  color: var(--depar-accent);
}

/* Marquee */
.depar-marquee {
  overflow: hidden;
  border-top: 1px solid var(--depar-border);
  border-bottom: 1px solid var(--depar-border);
  background: rgba(17, 17, 17, 0.6);
  padding: 1rem 0;
}

.depar-marquee__track {
  display: flex;
  white-space: nowrap;
  animation: depar-marquee 25s linear infinite;
}

.depar-marquee__item {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  padding: 0 1rem;
  font-family: var(--depar-font-mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(240, 235, 224, 0.25);
}

.depar-marquee__dot {
  color: var(--depar-accent);
}

/* WA split button (yazılım kartları) */
.depar-wa-split {
  position: relative;
  width: 100%;
  height: 3.5rem;
  border-radius: var(--depar-radius);
  background: var(--depar-accent);
}

.depar-wa-split__label {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  padding-left: 1rem;
  padding-right: 34%;
  color: #fff;
  font-size: 0.875rem;
  font-weight: 600;
  pointer-events: none;
}

.depar-wa-split__action {
  position: absolute;
  right: 0.375rem;
  top: 0.375rem;
  bottom: 0.375rem;
  width: 30%;
  min-width: 4.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.375rem;
  border-radius: 0.5rem;
  background: rgba(255, 255, 255, 0.95);
  color: var(--depar-accent);
  font-size: 10px;
  font-weight: 700;
  text-decoration: none;
}

/* Testimonial wheel */
.depar-wheel {
  position: relative;
  max-width: 380px;
  margin: 0 auto;
}

.depar-wheel__viewport {
  position: relative;
  overflow: hidden;
  border-radius: 1rem;
  border: 1px solid rgba(240, 235, 224, 0.12);
  background: rgba(17, 17, 17, 0.3);
  height: 468px;
  touch-action: none;
  cursor: grab;
}

.depar-wheel__viewport.is-dragging {
  cursor: grabbing;
}

.depar-wheel__list {
  padding: 0 1rem;
  will-change: transform;
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.depar-wheel__item {
  height: 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 1rem;
  border-radius: 0.75rem;
  border: 1px solid rgba(240, 235, 224, 0.12);
  background: rgba(17, 17, 17, 0.2);
  opacity: 0.35;
  margin-bottom: 0;
  width: 100%;
  text-align: left;
  cursor: pointer;
  color: inherit;
  font: inherit;
}

.depar-wheel__item.is-active {
  border-color: rgba(232, 75, 26, 0.4);
  background: rgba(232, 75, 26, 0.08);
  opacity: 1;
}

.depar-site button.depar-wheel__item:hover:not(.is-active) {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(240, 235, 224, 0.18);
  opacity: 0.5;
}

.depar-wheel__highlight {
  pointer-events: none;
  position: absolute;
  left: 0.75rem;
  right: 0.75rem;
  top: 50%;
  height: 80px;
  transform: translateY(-50%);
  border-radius: 0.75rem;
  border: 1px solid rgba(232, 75, 26, 0.6);
  background: rgba(232, 75, 26, 0.05);
  z-index: 2;
}

/* Contact section */
.depar-contact {
  position: relative;
  background: var(--depar-accent);
  overflow: hidden;
}

.depar-contact input,
.depar-contact textarea {
  width: 100%;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  border-radius: var(--depar-radius);
  padding: 0.875rem 1rem;
  font-size: 0.875rem;
}

.depar-contact input::placeholder,
.depar-contact textarea::placeholder {
  color: rgba(255, 255, 255, 0.35);
}

/* Footer */
.depar-footer {
  background: var(--depar-bg);
  border-top: 1px solid var(--depar-border);
  padding: 1.5rem 0;
}

.depar-footer__inner {
  max-width: var(--depar-max-w);
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
}

@media (min-width: 768px) {
  .depar-footer__inner {
    flex-direction: row;
    justify-content: space-between;
  }
}
