:root {
  --purple: #3B2D8F;
  --purple-dark: #2A1E6B;
  --green: #66BB00;
  --green-dark: #57A300;
  --blue: #2AA4FF;
  --ink: #0F172A;
  --ink-muted: #475569;
  --ink-light: #94A3B8;
  --bg: #FFFFFF;
  --bg-soft: #F8FAFC;
  --bg-alt: #F1F5FF;
  --border: #E2E8F0;
  --card-bg: #FFFFFF;
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, .06);
  --shadow-md: 0 8px 24px rgba(0, 0, 0, .08);
  --shadow-lg: 0 20px 50px rgba(0, 0, 0, .10);
  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --font-sans: 'IBM Plex Sans', system-ui, sans-serif;
  --font-serif: 'IBM Plex Serif', Georgia, serif;
  --transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  --ribbon-h: 340px;
  --ribbon-gap: 20px;
  --ribbon-r: 18px;
}


*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

html.lenis {
  height: auto;
}

.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}

html,
body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

body {
  font-family: var(--font-sans);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.65;
  opacity: 0;
  transition: opacity 0.55s ease-in-out;
}

body.visible {
  opacity: 1;
}

a {
  color: inherit;
  text-decoration: none;
}

img,
svg,
video {
  max-width: 100%;
  height: auto;
  display: block;
}


.container {
  max-width: 1260px;
  width: 94%;
  margin-inline: auto;
}

.container--narrow {
  max-width: 900px;
  width: 94%;
  margin-inline: auto;
}

.section {
  padding: 90px 0;
}

.section--sm {
  padding: 60px 0;
}

.section--lg {
  padding: 120px 0;
}

.alt-bg {
  background: var(--bg-soft);
}

.dark-bg {
  background: var(--purple-dark);
  color: #fff;
}

.grid-12 {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 24px;
}

.col-3 {
  grid-column: span 3;
}

.col-4 {
  grid-column: span 4;
}

.col-5 {
  grid-column: span 5;
}

.col-6 {
  grid-column: span 6;
}

.col-7 {
  grid-column: span 7;
}

.col-8 {
  grid-column: span 8;
}

.col-12 {
  grid-column: span 12;
}


h1,
h2,
h3,
h4,
h5 {
  font-family: var(--font-serif);
  font-weight: 500;
  line-height: 1.12;
  letter-spacing: -0.01em;
}

.display-2xl {
  font-size: clamp(3rem, 8vw, 7rem);
}

.display-xl {
  font-size: clamp(2.4rem, 6vw, 5rem);
}

.display-lg {
  font-size: clamp(1.9rem, 4vw, 3.5rem);
}

.display-md {
  font-size: clamp(1.5rem, 3vw, 2.4rem);
}

.eyebrow {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 1rem;
}

.lead {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--ink-muted);
  line-height: 1.8;
}


.btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 13px 26px;
  border-radius: 999px;
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 0.87rem;
  letter-spacing: 0.04em;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
}

.btn-primary {
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  color: #fff;
  box-shadow: 0 8px 24px rgba(102, 187, 0, .3);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 32px rgba(102, 187, 0, .4);
}

.btn-outline {
  background: transparent;
  border-color: rgba(255, 255, 255, .5);
  color: #fff;
}

.btn-outline:hover {
  background: rgba(255, 255, 255, .12);
}

.btn-purple {
  background: var(--purple);
  color: #fff;
  box-shadow: 0 8px 24px rgba(59, 45, 143, .25);
}

.btn-purple:hover {
  background: var(--purple-dark);
  transform: translateY(-2px);
}


.topbar {
  background: linear-gradient(135deg, var(--purple-dark), var(--purple));
  color: rgba(255, 255, 255, .82);
  font-size: 0.78rem;
  padding: 10px 0;
}

.topbar__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.topbar__contacts {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.topbar__contacts a {
  color: inherit;
  transition: color .25s;
}

.topbar__contacts a:hover {
  color: var(--green);
}

.topbar__contacts i {
  color: var(--green);
  margin-right: 6px;
}

.topbar__hours {
  opacity: .72;
}


.header {
  position: sticky;
  top: 0;
  z-index: 900;
  background: rgba(255, 255, 255, .95);
  backdrop-filter: saturate(180%) blur(16px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.3s ease, background 0.3s ease;
}



.header.scrolled {
  box-shadow: 0 4px 24px rgba(0, 0, 0, .08);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  gap: 16px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 1.45rem;
  color: var(--purple);
}

.logo img {
  height: 42px;
  width: auto;
}

.logo__sub {
  color: var(--green);
}

.nav {
  display: flex;
  gap: 4px;
  align-items: center;
}

.nav a {
  padding: 9px 14px;
  border-radius: var(--radius-sm);
  font-family: var(--font-serif);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  color: var(--ink);
  transition: color .3s ease;
  white-space: nowrap;
  position: relative;
}

.nav a::after {
  content: "";
  position: absolute;
  bottom: 4px;
  left: 14px;
  right: 14px;
  height: 2px;
  background: var(--green);
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s ease;
}

.nav a:hover,
.nav a.active {
  color: #002D72;
  /* Lacivert / Navy Blue */
  background: none;
}

.nav a:hover::after,
.nav a.active::after {
  transform: scaleX(1);
}


.nav__dropdown {
  position: relative;
}

.nav__ddtrigger {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 9px 14px;
  border-radius: var(--radius-sm);
  font-family: var(--font-serif);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  color: var(--ink);
  background: none;
  border: none;
  cursor: pointer;
  transition: color .3s ease;
  white-space: nowrap;
  position: relative;
}

.nav__ddtrigger::after {
  content: "";
  position: absolute;
  bottom: 4px;
  left: 14px;
  right: 14px;
  height: 2px;
  background: var(--green);
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s ease;
}

.nav__dropdown:hover .nav__ddtrigger,
.nav__dropdown:focus-within .nav__ddtrigger,
.nav__ddtrigger.active {
  color: #002D72;
  /* Lacivert */
  background: none;
}

.nav__dropdown:hover .nav__ddtrigger::after,
.nav__dropdown:focus-within .nav__ddtrigger::after,
.nav__ddtrigger.active::after {
  transform: scaleX(1);
}

.nav__ddtrigger i {
  font-size: .6rem;
  transition: transform .25s;
}

.nav__dropdown:hover .nav__ddtrigger i,
.nav__dropdown:focus-within .nav__ddtrigger i {
  transform: rotate(180deg);
}

.nav__ddmenu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 220px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: 0 16px 40px rgba(0, 0, 0, .1);
  padding: 8px;
  z-index: 500;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px);
  transition: opacity .2s ease, transform .2s ease;
}

.nav__ddmenu::before {
  content: "";
  position: absolute;
  top: -12px;
  left: 0;
  right: 0;
  height: 12px;
  background: transparent;
}

.nav__dropdown:hover .nav__ddmenu,
.nav__dropdown:focus-within .nav__ddmenu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.nav__ddmenu a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  font-family: var(--font-serif);
  font-size: 0.87rem;
  font-weight: 400;
  color: var(--ink);
  background: none;
  transition: .2s;
}

.nav__ddmenu a i {
  color: var(--green);
  font-size: .85rem;
  width: 16px;
  flex-shrink: 0;
}

.nav__ddmenu a:hover {
  background: var(--bg-soft);
  color: var(--purple);
}

.nav__cta {
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  color: #fff;
  border-radius: 999px;
  padding: 10px 22px;
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 0.88rem;
  letter-spacing: 0.02em;
  box-shadow: 0 6px 18px rgba(102, 187, 0, .3);
  margin-left: 8px;
  transition: var(--transition);
}

.nav__cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(102, 187, 0, .4);
}


.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 42px;
  height: 42px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: #fff;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.hamburger span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: .3s;
}

.hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
}

.hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}


.drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(85vw, 340px);
  background: #fff;
  z-index: 1100;
  padding: 80px 24px 24px;
  transform: translateX(110%);
  transition: transform .4s cubic-bezier(.22, 1, .36, 1);
  box-shadow: -12px 0 40px rgba(0, 0, 0, .1);
  border-left: 1px solid var(--border);
  overflow-y: auto;
}

.drawer.open {
  transform: translateX(0);
}

.drawer nav {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.drawer nav a {
  padding: 13px 16px;
  border-radius: var(--radius-md);
  font-weight: 600;
  color: var(--ink);
  transition: .2s;
}

.drawer nav a:hover,
.drawer nav a.active {
  background: var(--bg-soft);
  color: #002D72;
  /* Lacivert */
}

.drawer__overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, .35);
  z-index: 1050;
  opacity: 0;
  pointer-events: none;
  transition: .3s;
}

.drawer__overlay.open {
  opacity: 1;
  pointer-events: auto;
}

.drawer__close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: #fff;
  cursor: pointer;
  font-size: 1rem;
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
}


.drawer__group-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 13px 16px;
  border-radius: var(--radius-md);
  font-weight: 600;
  color: var(--ink);
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  transition: .2s;
  text-align: left;
}

.drawer__group-btn:hover,
.drawer__group-btn.open {
  background: var(--bg-soft);
  color: var(--purple);
}

.drawer__group-btn i.chevron {
  font-size: 0.6rem;
  transition: transform .3s ease;
}

.drawer__group-btn.open i.chevron {
  transform: rotate(180deg);
}

.drawer__sub {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding-left: 14px;
  overflow: hidden;
  max-height: 0;
  transition: max-height .35s ease;
}

.drawer__sub.open {
  max-height: 200px;
}

.drawer__sub a {
  padding: 10px 14px;
  border-radius: var(--radius-md);
  font-size: 0.9rem;
  color: var(--ink-muted);
  transition: .2s;
  font-weight: 400;
}

.drawer__sub a:hover {
  background: var(--bg-soft);
  color: var(--purple);
}


.sub-hero {
  position: relative;
  width: 100%;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  aspect-ratio: 21/9;
  min-height: 420px;
  background: var(--purple-dark);
}

.sub-hero__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 1;
}

.sub-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(15, 23, 42, 0.75) 0%, rgba(15, 23, 42, 0.2) 50%, rgba(15, 23, 42, 0.5) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  padding: 40px;
  z-index: 2;
}

.sub-hero__content {
  max-width: 850px;
  width: 100%;
}

.sub-hero__content h1 {
  margin: 0.5rem 0 1rem;
  color: #fff;
}

.sub-hero__content p {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255, 255, 255, 0.9);
  max-width: 650px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .sub-hero {
    aspect-ratio: 16/9;
    min-height: 450px;
  }
}


.hero {
  position: relative;
  isolation: isolate;
  min-height: 82vh;
  display: flex;

  align-items: center;
  justify-content: center;
  overflow: hidden;
  color: #fff;
}

.hero__slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  z-index: 1;
  transition: opacity 1s ease;
}

.hero__slide.active {
  opacity: 1;
  pointer-events: all;
  z-index: 2;
}

.hero__slide-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transform-origin: center;
  will-change: transform;
}


.hero__slide-overlay {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(160deg, rgba(42, 30, 107, .72) 0%, rgba(15, 23, 42, .55) 60%, rgba(15, 23, 42, .4) 100%);
}

.hero__content {
  text-align: center;
  padding: 100px 0 80px;
  max-width: 900px;
}

.hero__content .eyebrow {
  color: var(--green);
  font-size: .82rem;
}

.hero h1 {
  margin: .8rem 0 1.6rem;
  color: #fff;
  font-weight: 800;
  letter-spacing: -0.02em;
  text-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  line-height: 1.1;
}

.hero p {
  font-size: clamp(1.05rem, 2.4vw, 1.35rem);
  color: rgba(255, 255, 255, 0.9);
  max-width: 700px;
  margin: 0 auto 2.8rem;
  line-height: 1.6;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
  font-weight: 400;
}

.hero-reveal {
  opacity: 0;
  transform: translateY(30px);
}

.hero__actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}


.scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: rgba(255, 255, 255, .55);
  font-size: .7rem;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.scroll-hint__dot {
  width: 24px;
  height: 40px;
  border: 2px solid rgba(255, 255, 255, .3);
  border-radius: 12px;
  position: relative;
}

.scroll-hint__dot::after {
  content: "";
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 8px;
  background: rgba(255, 255, 255, .7);
  border-radius: 2px;
  animation: scrollDot 1.8s ease infinite;
}

@keyframes scrollDot {

  0%,
  100% {
    top: 6px;
    opacity: 1;
  }

  80% {
    top: 20px;
    opacity: 0;
  }
}


.stats {
  background: linear-gradient(135deg, var(--purple-dark) 0%, var(--purple) 60%, #1e6aad 100%);
  color: #fff;
  padding: 48px 0;

}

.stats__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  text-align: center;
}

.stat {
  padding: 24px;
}

.stat__num {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 5vw, 3.8rem);

  font-weight: 700;
  line-height: 1;
  background: linear-gradient(135deg, #fff 30%, var(--green) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: .4rem;
}

.stat__label {
  font-size: .78rem;

  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  opacity: .8;
}

.stat__sub {
  font-size: .78rem;
  opacity: .5;
  margin-top: 4px;
}

.stats__separator {
  width: 1px;
  background: rgba(255, 255, 255, .12);
  margin: auto;
}


.section-head {
  margin-bottom: 3.5rem;
}

.section-head--center {
  text-align: center;
}

.section-head--center .section-head__body {
  margin-inline: auto;
  max-width: 640px;
}

.section-head__body {
  margin-top: .8rem;
}

.section-head h2 {
  color: var(--purple);
}

.section-head--light h2 {
  color: #fff;
}

.section-head--light .eyebrow {
  color: var(--green);
}




#kurumsal {
  position: relative;
  overflow: hidden;
}

#kurumsal::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url('assets/vizyon.jpg') center/cover no-repeat;
  opacity: 0.055;
  pointer-events: none;
  z-index: 0;
}

#kurumsal>.container {
  position: relative;
  z-index: 1;
}

.heritage {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 36px;
  align-items: center;
}

.heritage__image {
  grid-column: span 5;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
  aspect-ratio: 4/5;
  background: var(--bg-alt) center/cover no-repeat;
}

.heritage__text {
  grid-column: span 7;
}

.heritage__text.reversed {
  order: -1;
}

.kicker {
  display: inline-block;
  padding: 5px 12px;
  border-radius: 999px;
  font-size: .74rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  background: rgba(102, 187, 0, .12);
  border: 1px solid rgba(102, 187, 0, .4);
  color: #2F7A00;
  margin-bottom: .9rem;
}

.heritage__text h3 {
  color: var(--purple);
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  margin-bottom: 1rem;
}

.heritage__text p {
  color: var(--ink-muted);
  line-height: 1.85;
}

.values-list {
  list-style: none;
  margin-top: 1.4rem;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.values-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: .94rem;
  color: var(--ink-muted);
  line-height: 1.6;
}

.values-list li strong {
  color: var(--purple);
  display: block;
  font-size: .87rem;
  margin-bottom: 2px;
}

.values-list i {
  color: var(--green);
  font-size: 1.1rem;
  margin-top: 2px;
  flex-shrink: 0;
}


.card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 28px;
  transition: var(--transition);
  height: 100%;
  box-shadow: var(--shadow-sm);
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--border);
}

.card__icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(102, 187, 0, .12), rgba(102, 187, 0, .04));
  border: 1px solid rgba(102, 187, 0, .2);
  margin-bottom: 1.2rem;
  font-size: 1.6rem;
  color: var(--green);
}

.card h3 {
  color: var(--purple);
  font-size: 1.1rem;
  margin-bottom: .6rem;
  font-family: var(--font-sans);
  font-weight: 700;
}

.card p {
  color: var(--ink-muted);
  font-size: .9rem;
  line-height: 1.7;
}


.expertise-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.feature-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 32px 28px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: attr(data-num);
  position: absolute;
  top: 20px;
  right: 22px;
  font-family: var(--font-serif);
  font-size: 4.5rem;
  font-weight: 700;
  line-height: 1;
  color: rgba(59, 45, 143, .05);
  pointer-events: none;
}

.feature-card:hover {
  border-color: var(--purple);
  box-shadow: 0 16px 40px rgba(59, 45, 143, .1);
  transform: translateY(-4px);
}

.feature-card__icon {
  font-size: 2rem;
  color: var(--green);
  margin-bottom: 1rem;
}

.feature-card h4 {
  color: var(--purple);
  font-family: var(--font-sans);
  font-weight: 800;
  font-size: 1rem;
  margin-bottom: .5rem;
}

.feature-card p {
  color: var(--ink-muted);
  font-size: .88rem;
  line-height: 1.7;
}


.solutions-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.solution-card {
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 26px 22px;
  background: #fff;
  transition: var(--transition);
}

.solution-card:hover {
  border-color: var(--blue);
  box-shadow: 0 12px 36px rgba(42, 164, 255, .1);
  transform: translateY(-5px);
}

.solution-card .sol-icon {
  font-size: 1.8rem;
  color: var(--blue);
  margin-bottom: 1rem;
}

.solution-card h4 {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: .95rem;
  color: var(--purple);
  margin-bottom: .4rem;
}

.solution-card p {
  font-size: .84rem;
  color: var(--ink-muted);
  line-height: 1.6;
}


.process {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0;
  position: relative;
}

.process::before {
  content: "";
  position: absolute;
  top: 40px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: linear-gradient(90deg, var(--green), var(--blue));
  z-index: 0;
}

.process-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 12px;
  position: relative;
  z-index: 1;
}

.process-step__num {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  color: #fff;
  font-weight: 800;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(102, 187, 0, .35);
  margin-bottom: 1rem;
}

.process-step h5 {
  font-family: var(--font-sans);
  font-weight: 800;
  font-size: .88rem;
  color: var(--purple);
  margin-bottom: .3rem;
}

.process-step p {
  font-size: .78rem;
  color: var(--ink-muted);
  line-height: 1.5;
}


.proj-section {
  background: linear-gradient(135deg, var(--purple-dark) 0%, var(--purple) 60%, #1e6aad 100%);
  color: #fff;
  padding: 80px 0;
  overflow: visible;
}

.proj-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 3rem;
  position: relative;
  z-index: 10;
}

.horizontal-scroll-container {
  position: relative;
  width: 100%;
  height: 60vh;

  min-height: 500px;
  overflow: hidden;
  display: flex;
  align-items: center;
  background: transparent;

}

.horizontal-track {
  display: flex;
  gap: 40px;
  padding: 0 5vw;
  will-change: transform;
}

.project-slide {
  flex: 0 0 720px;

  height: 48vh;

  min-height: 400px;
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4);
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: pointer;
}

.project-slide:hover {
  transform: scale(1.03);
}

.project-slide__img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 1.5s ease;
}

.project-slide:hover .project-slide__img {
  transform: scale(1.15);
}

.project-slide__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15, 23, 42, 0.95) 0%, rgba(15, 23, 42, 0.2) 50%, transparent 100%);
  z-index: 1;
}

.project-slide__content {
  position: absolute;
  bottom: 60px;
  left: 60px;
  right: 60px;
  z-index: 2;
}

.project-slide__tag {
  display: inline-block;
  padding: 0;
  background: none;
  color: var(--green);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 12px;
}

.project-slide__title {
  font-family: var(--font-serif);
  font-size: 2.2rem;

  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 12px;
  color: #fff;
}

.project-slide__link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--green);
  transition: all 0.4s ease;
}


@media (max-width: 992px) {
  .project-slide {
    flex: 0 0 500px;
    height: 400px;
  }

  .horizontal-scroll-container {
    height: 500px;
  }

  .project-slide__title {
    font-size: 1.8rem;
  }
}

@media (max-width: 768px) {
  .project-slide {
    flex: 0 0 85vw;
    height: 350px;
  }

  .horizontal-scroll-container {
    height: 450px;
  }

  .project-slide__title {
    font-size: 1.5rem;
  }

  .project-slide__content {
    bottom: 25px;
    left: 25px;
    right: 25px;
  }
}


.kentsel-section {
  background: var(--bg-alt);
}

.kentsel-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: start;
}

.kentsel-info h3 {
  color: var(--purple);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  margin-bottom: 1.2rem;
}

.kentsel-info p {
  color: var(--ink-muted);
  line-height: 1.85;
  margin-bottom: 1rem;
}

.trust-badges {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 2rem;
}

.trust-badge {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 20px;
  text-align: center;
}

.trust-badge i {
  font-size: 1.8rem;
  color: var(--green);
  margin-bottom: .6rem;
  display: block;
}

.trust-badge h5 {
  font-family: var(--font-sans);
  font-weight: 700;
  color: var(--purple);
  margin-bottom: 4px;
  font-size: .9rem;
}

.trust-badge p {
  font-size: .78rem;
  color: var(--ink-muted);
}


.kentsel-form-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-lg);
}

.kentsel-form-card h4 {
  color: var(--purple);
  font-family: var(--font-sans);
  font-weight: 800;
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-field.full {
  grid-column: span 2;
}

.form-field label {
  font-size: .8rem;
  font-weight: 700;
  color: var(--purple);
  letter-spacing: .04em;
}

.form-field input,
.form-field textarea,
.form-field select {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: var(--font-sans);
  font-size: .9rem;
  color: var(--ink);
  background: #fff;
  outline: none;
  transition: .25s;
}

.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
  border-color: var(--purple);
  box-shadow: 0 0 0 4px rgba(59, 45, 143, .08);
}

.form-field textarea {
  min-height: 110px;
  resize: vertical;
}

.form-note {
  font-size: .74rem;
  color: var(--ink-light);
  line-height: 1.5;
}


.standards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.standard-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 28px 20px;
  text-align: center;

}

.standard-card:hover {
  border-color: var(--green);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.standard-card i {
  font-size: 2.4rem;
  color: var(--green);
  margin-bottom: 1rem;
}

.standard-card h4 {
  font-family: var(--font-sans);
  font-weight: 800;
  color: var(--purple);
  font-size: .95rem;
  margin-bottom: .4rem;
}

.standard-card p {
  font-size: .82rem;
  color: var(--ink-muted);
}


.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 840px;
  margin-inline: auto;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: #fff;
  overflow: hidden;
  transition: border-color .25s;
}

.faq-item.open {
  border-color: var(--purple);
}

.faq-q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  background: none;
  border: none;
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: .95rem;
  color: var(--ink);
  cursor: pointer;
  text-align: left;
  gap: 12px;
}

.faq-q i {
  color: var(--purple);
  font-size: .8rem;
  transition: transform .3s;
  flex-shrink: 0;
}

.faq-item.open .faq-q i {
  transform: rotate(180deg);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .5s cubic-bezier(0, 1, .3, 1);
}

.faq-a__inner {
  padding: 0 24px 20px;
  color: var(--ink-muted);
  font-size: .9rem;
  line-height: 1.8;
}


.map-section {
  position: relative;
}

#harita {
  height: 500px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.contact-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.contact-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.contact-card:hover {
  border-color: var(--green);
  box-shadow: var(--shadow-md);
}

.contact-card h4 {
  color: var(--green);
  font-family: var(--font-sans);
  font-weight: 800;
  margin-bottom: .8rem;
}

.contact-card p {
  color: var(--ink-muted);
  font-size: .88rem;
  line-height: 1.8;
}

.contact-card p i {
  color: var(--purple);
  margin-right: 6px;
  width: 14px;
}


.footer {
  background: var(--ink);
  color: rgba(255, 255, 255, .75);
  padding: 72px 0 40px;
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 56px;
}

.footer__brand p {
  color: rgba(255, 255, 255, .5);
  font-size: .88rem;
  line-height: 1.8;
  margin: 1.2rem 0;
}

.footer__brand .logo {
  color: #fff;
}

.socials {
  display: flex;
  gap: 10px;
  margin-top: .6rem;
}

.socials a {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, .15);
  background: rgba(255, 255, 255, .06);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, .7);
  font-size: .9rem;
  transition: .25s;
}

.socials a:hover {
  background: var(--green);
  border-color: var(--green);
  color: #fff;
}

.footer__col h5 {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: .78rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .5);
  margin-bottom: 1.2rem;
}

.footer__col nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer__col nav a {
  font-size: .88rem;
  color: rgba(255, 255, 255, .65);
  transition: .2s;
}

.footer__col nav a:hover {
  color: var(--green);
}

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, .08);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer__bottom p {
  font-size: .8rem;
  color: rgba(255, 255, 255, .4);
}


.reveal {
  opacity: 0;
  transform: translateY(40px);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity .8s ease, transform .8s cubic-bezier(.16, 1, .3, 1);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-50px);
}

.reveal-right {
  opacity: 0;
  transform: translateX(50px);
}

.reveal-left.visible,
.reveal-right.visible {
  opacity: 1;
  transform: none;
  transition: opacity .8s ease, transform .8s cubic-bezier(.16, 1, .3, 1);
}


.stagger>* {
  opacity: 0;
  transform: translateY(30px);
}

.stagger.visible>*:nth-child(1) {
  animation: fadeUp .7s .1s forwards;
}

.stagger.visible>*:nth-child(2) {
  animation: fadeUp .7s .2s forwards;
}

.stagger.visible>*:nth-child(3) {
  animation: fadeUp .7s .3s forwards;
}

.stagger.visible>*:nth-child(4) {
  animation: fadeUp .7s .4s forwards;
}

.stagger.visible>*:nth-child(5) {
  animation: fadeUp .7s .5s forwards;
}

.stagger.visible>*:nth-child(6) {
  animation: fadeUp .7s .6s forwards;
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


@media (max-width: 1100px) {
  .solutions-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer__grid {
    grid-template-columns: 1fr 1fr;
  }

  .standards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 960px) {
  .expertise-grid {
    grid-template-columns: 1fr 1fr;
  }

  .heritage {
    grid-template-columns: 1fr;
  }

  .heritage__image {
    grid-column: span 1;
    aspect-ratio: 16/8;
  }

  .heritage__text {
    grid-column: span 1;
  }

  .heritage__text.reversed {
    order: 0;
  }

  .kent-layout {
    grid-template-columns: 1fr;
  }

  .kentsel-layout {
    grid-template-columns: 1fr;
  }

  .contact-strip {
    grid-template-columns: 1fr;
  }

  .col-3,
  .col-4,
  .col-5,
  .col-6,
  .col-7,
  .col-8 {
    grid-column: span 12;
  }

  :root {
    --ribbon-h: 280px;
  }

  .process {
    grid-template-columns: repeat(3, 1fr);
  }

  .process::before {
    display: none;
  }
}

@media (max-width: 768px) {
  .section {
    padding: 60px 0;
  }

  .nav {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .topbar__contacts span:nth-child(n+2) {
    display: none;
  }

  .stats__grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .expertise-grid {
    grid-template-columns: 1fr;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  .form-field.full {
    grid-column: span 1;
  }

  .trust-badges {
    grid-template-columns: 1fr;
  }

  .process {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .standards-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 480px) {
  .hero__content {
    padding: 80px 0 60px;
  }

  .standards-grid {
    grid-template-columns: 1fr;
  }

  .process {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  body {
    opacity: 1 !important;
  }

  .reveal,
  .reveal-left,
  .reveal-right,
  .stagger>* {
    opacity: 1;
    transform: none;
  }
}


#neden-asber {
  position: relative;
  overflow: hidden;
}

#neden-asber::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url('assets/deneyim.jpg') center/cover no-repeat;
  opacity: 0.07;
  pointer-events: none;
  z-index: 0;
}

#neden-asber>.container {
  position: relative;
  z-index: 1;
}


.parallax-bg-layer {
  position: absolute;
  inset: -30%;

  pointer-events: none;
  z-index: 0;
  will-change: transform;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.08;
}

#kurumsal .parallax-bg-layer {
  background-image: url('assets/vizyon.jpg');
}

#neden-asber .parallax-bg-layer {
  background-image: url('assets/deneyim.jpg');
}


#kurumsal::before,
#neden-asber::before {
  display: none;
}


.form-wrap {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-md);
}

.kentsel-form {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(12, 1fr);
}

.field {
  grid-column: span 6;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.field.full {
  grid-column: span 12;
}

.field label {
  font-family: var(--font-serif);
  font-weight: 500;
  color: var(--purple);
  font-size: 0.95rem;
}

.input,
textarea {
  width: 100%;
  padding: 14px 18px;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: var(--bg-soft);
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 1rem;
  transition: var(--transition);
  outline: none;
}

.input::placeholder,
textarea::placeholder {
  color: var(--ink-light);
}

.input:focus,
textarea:focus {
  border-color: var(--purple);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(59, 45, 143, 0.1);
}

textarea {
  min-height: 120px;
  resize: vertical;
}

.hint {
  font-size: 0.75rem;
  color: var(--ink-light);
}

.actions {
  grid-column: span 12;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  margin-top: 10px;
}

.actions .note {
  font-size: 0.8rem;
  color: var(--ink-muted);
  line-height: 1.5;
}

@media (max-width: 992px) {
  .field {
    grid-column: span 12;
  }
}


.flip-card {
  background-color: transparent;
  perspective: 1000px;
  height: 280px;
}

.flip-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  text-align: center;
  transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  transform-style: preserve-3d;
}

.flip-card.is-flipped .flip-card-inner {
  transform: rotateY(180deg);
}

.flip-card-front,
.flip-card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  border-radius: var(--radius-md);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 30px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transform-style: preserve-3d;

}

.flip-card-front {
  background-color: #fff;
  color: var(--ink);
}

.flip-card-back {
  background-color: var(--purple-dark);
  color: #fff;
  transform: rotateY(180deg);
  border-color: var(--purple);
}


.flip-card__icon,
.flip-card-front h3,
.flip-card-front p,
.flip-card-back h3,
.flip-card-back p {
  transform: translateZ(60px);

  transition: transform 0.5s ease;
}

.flip-card-back p {
  color: rgba(255, 255, 255, 0.9) !important;
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
}

.flip-card-back h3 {
  color: #fff !important;
  margin-bottom: 12px;
  font-size: 1.35rem;
  font-family: var(--font-serif);
}

.flip-card__icon {
  font-size: 3rem;
  color: var(--green);
  margin-bottom: 20px;
}

@media (max-width: 768px) {
  .flip-card {
    height: 300px;
  }
}


.cinematic-project {
  display: flex;
  align-items: center;
  gap: 60px;
  margin-bottom: 120px;
  position: relative;
}

.cinematic-project:nth-child(even) {
  flex-direction: row-reverse;
}

.cinematic-project__img-wrap {
  flex: 0 0 65%;
  aspect-ratio: 16/9;
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
}

.cinematic-project__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.cinematic-project:hover .cinematic-project__img {
  transform: scale(1.05);
}

.cinematic-project__content {
  flex: 1;
  position: relative;
  z-index: 2;
}

.parallax-num {
  position: absolute;
  top: -60px;
  left: -40px;
  font-size: 10rem;
  font-weight: 900;
  color: rgba(15, 23, 42, 0.05);
  font-family: var(--font-sans);
  pointer-events: none;
  line-height: 1;
  z-index: -1;
}

.cinematic-project:nth-child(even) .parallax-num {
  left: auto;
  right: -40px;
}

.cinematic-project__tag {
  color: var(--green);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.8rem;
  margin-bottom: 16px;
  display: block;
}

.cinematic-project__title {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 24px;
  line-height: 1.1;
  font-family: var(--font-serif);
}

.cinematic-project__desc {
  color: var(--muted);
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 32px;
}


.glass-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-bottom: 30px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(15px);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  margin-top: -40px;
  position: relative;
  z-index: 10;
  box-shadow: var(--shadow-md);
}

.filter-btn {
  padding: 10px 24px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: #fff;
  color: var(--ink);
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--purple);
  color: #fff;
  border-color: var(--purple);
}


.spotlight {
  height: 85vh;
  min-height: 650px;
  position: relative;
  background: #000;
  display: flex;
  align-items: center;
  overflow: hidden;
  margin-bottom: 100px;
}

.spotlight__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.spotlight__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(15, 23, 42, 0.95) 0%, rgba(15, 23, 42, 0.6) 50%, transparent 100%);
  z-index: 2;
}

.spotlight__content {
  position: relative;
  z-index: 3;
  max-width: 650px;
  color: #fff;
}

@media (max-width: 992px) {

  .cinematic-project,
  .cinematic-project:nth-child(even) {
    flex-direction: column;
    gap: 30px;
    margin-bottom: 80px;
  }

  .cinematic-project__img-wrap {
    flex: 0 0 100%;
    width: 100%;
  }

  .cinematic-project__title {
    font-size: 2.2rem;
  }

  .parallax-num {
    font-size: 6rem;
    top: -30px;
  }
}


.reveal-mask {
  position: absolute;
  inset: 0;
  background: var(--soft);
  z-index: 2;
  transform-origin: bottom;
}


.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: start;
}

@media (max-width: 992px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-card {
  background: #fff;
  padding: 30px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.contact-card:hover {
  border-color: var(--purple);
  box-shadow: var(--shadow-md);
  transform: translateY(-5px);
}

.contact-card__icon {
  width: 50px;
  height: 50px;
  background: var(--soft);
  color: var(--purple);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  font-size: 1.5rem;
  margin-bottom: 20px;
  transition: all 0.3s ease;
}

.contact-card:hover .contact-card__icon {
  background: var(--purple);
  color: #fff;
}

.contact-card h3 {
  font-size: 1.25rem;
  font-weight: 800;
  margin-bottom: 12px;
  color: var(--purple-dark);
}

.contact-card p,
.contact-card a {
  color: var(--muted);
  line-height: 1.6;
  font-size: 0.95rem;
  display: block;
}

.contact-card a:hover {
  color: var(--purple);
}


.premium-form-wrap {
  background: #fff;
  padding: 40px;
  border-radius: var(--radius-xl);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-lg);
}

.premium-form h2 {
  font-size: 1.8rem;
  font-weight: 800;
  margin-bottom: 30px;
  font-family: var(--font-serif);
}

.form-group {
  margin-bottom: 24px;
}

.form-group label {
  display: block;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 8px;
}

.form-control {
  width: 100%;
  padding: 14px 18px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: var(--soft);
  font-family: inherit;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.form-control:focus {
  outline: none;
  border-color: var(--purple);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(59, 45, 143, 0.05);
}

textarea.form-control {
  resize: none;
}

.quick-actions {
  display: flex;
  gap: 16px;
  margin-top: 40px;
}

@media (max-width: 600px) {
  .quick-actions {
    flex-direction: column;
  }
}

.neden-asber-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

@media (max-width: 768px) {
  .neden-asber-grid {
    grid-template-columns: 1fr;
  }
}

/* Back to Top Button */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: var(--purple-dark);
  color: #fff;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 1000;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background: var(--green);
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(102, 187, 0, 0.3);
}

@media (max-width: 768px) {
  .back-to-top {
    bottom: 20px;
    right: 20px;
    width: 44px;
    height: 44px;
    font-size: 1rem;
  }
}