/* —— tokens —— UCA palet: #021024 #052659 #5483B3 #7DA0CA #C1E8FF —— */
:root {
  --bg: #021024;
  --bg-elevated: #052659;
  --surface: #052659;
  --text: #c1e8ff;
  --text-muted: #7da0ca;
  --accent: #5483b3;
  --accent-soft: rgba(84, 131, 179, 0.22);
  --border: rgba(193, 232, 255, 0.12);
  --radius: 20px;
  --radius-sm: 12px;
  --font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--font-family);
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  overflow-x: hidden;
}

body.splash-open {
  overflow: hidden;
}

/* —— giriş splash (logo + blur) —— */
.site-splash {
  position: fixed;
  inset: 0;
  z-index: 10050;
  display: grid;
  place-items: center;
  opacity: 1;
  transition: opacity 0.6s var(--ease-out);
}

.site-splash__veil {
  position: absolute;
  inset: 0;
  background: rgba(2, 16, 36, 0.42);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
  transition: backdrop-filter 0.7s var(--ease-out), -webkit-backdrop-filter 0.7s var(--ease-out);
}

.site-splash__logo {
  position: relative;
  z-index: 1;
  width: min(56vw, 260px);
  height: auto;
  object-fit: contain;
  transform: perspective(960px) translateZ(0) scale(1);
  opacity: 1;
  filter: drop-shadow(0 16px 48px rgba(0, 0, 0, 0.45));
  transition:
    transform 2.15s var(--ease-out),
    opacity 2.15s var(--ease-out),
    filter 2.15s var(--ease-out);
  will-change: transform, opacity, filter;
}

.site-splash--fly .site-splash__logo {
  transform: perspective(960px) translateZ(-620px) scale(0.18);
  opacity: 0;
  filter: blur(18px) drop-shadow(0 0 0 transparent);
}

.site-splash--exit {
  opacity: 0;
  pointer-events: none;
}

.site-splash--exit .site-splash__veil {
  backdrop-filter: blur(0);
  -webkit-backdrop-filter: blur(0);
}

@media (prefers-reduced-motion: reduce) {
  .site-splash {
    display: none !important;
  }
}

.bg-video {
  position: fixed;
  inset: 0;
  z-index: -2;
  overflow: hidden;
  background: var(--bg);
  pointer-events: none;
}

.bg-video__el {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.95) contrast(1.05);
  transform: scale(1.02);
}

.bg-video::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 10%, rgba(5, 38, 89, 0.35), transparent 55%),
    linear-gradient(to bottom, rgba(2, 16, 36, 0.7), rgba(2, 16, 36, 0.88));
  pointer-events: none;
}

.grain {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

a {
  color: inherit;
  text-decoration: none;
}

h1,
h2,
h3 {
  font-family: var(--font-family);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

/* —— header —— */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 4vw;
  background: linear-gradient(to bottom, var(--bg) 40%, transparent);
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: 0.04em;
}

.logo__mark {
  width: 2.15rem;
  height: 2.15rem;
  border-radius: 0;
  object-fit: contain;
  background: transparent;
  box-shadow: none;
  .logo {
    font-size: 0.95rem;
    letter-spacing: 0.03em;
  }

  .logo__mark {
    width: 1.9rem;
    height: 1.9rem;
  }
}

.nav {
  display: flex;
  align-items: center;
  gap: 2rem;
  font-size: 0.95rem;
  font-weight: 500;
}

.nav a:not(.nav-cta) {
  color: var(--text-muted);
  transition: color 0.2s var(--ease-out);
}

.nav a:not(.nav-cta):hover {
  color: var(--text);
}

.nav-cta {
  padding: 0.55rem 1.1rem;
  background: var(--text);
  color: var(--bg) !important;
  border-radius: 999px;
  font-weight: 600;
  transition: transform 0.2s var(--ease-out), box-shadow 0.2s;
}

.nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 28px rgba(84, 131, 179, 0.45);
}

.menu-btn {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 44px;
  height: 44px;
  padding: 0;
  border: none;
  background: var(--surface);
  border-radius: var(--radius-sm);
  cursor: pointer;
}

.menu-btn span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 0 auto;
  background: var(--text);
  transition: transform 0.25s var(--ease-out);
}

.menu-btn.is-open span:first-child {
  transform: translateY(4px) rotate(45deg);
}

.menu-btn.is-open span:last-child {
  transform: translateY(-4px) rotate(-45deg);
}

@media (max-width: 768px) {
  .menu-btn {
    display: flex;
  }

  .nav {
    position: fixed;
    top: 0;
    right: 0;
    width: min(100%, 320px);
    height: 100vh;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 1.5rem;
    padding: 2rem;
    background: var(--bg-elevated);
    border-left: 1px solid var(--border);
    transform: translateX(100%);
    transition: transform 0.35s var(--ease-out);
  }

  .nav.is-open {
    transform: translateX(0);
  }

  .nav-cta {
    margin-top: 1rem;
  }
}

/* —— hero —— */
.hero {
  min-height: 100vh;
  padding: 8rem 4vw 4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 1200px;
  margin: 0 auto;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  width: fit-content;
  padding: 0.45rem 0.9rem;
  margin-bottom: 2rem;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-muted);
  border: 1px solid var(--border);
  border-radius: 999px;
  background: var(--surface);
}

.pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 12px var(--accent);
  animation: pulse 2.5s ease-in-out infinite;
}

@keyframes pulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.6;
    transform: scale(0.85);
  }
}

.hero__title {
  margin: 0 0 1.5rem;
  font-size: clamp(2.75rem, 9vw, 5.5rem);
  font-weight: 700;
}

.hero__title .line {
  display: block;
}

.hero__title--accent {
  color: var(--accent);
  position: relative;
}

.hero__lead {
  max-width: 32rem;
  margin: 0 0 2.5rem;
  color: var(--text-muted);
  font-size: 1.15rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 3.5rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.95rem 1.75rem;
  font-family: var(--font-family);
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.2s var(--ease-out), background 0.2s, border-color 0.2s;
}

.btn--primary {
  background: var(--accent);
  color: var(--text);
}

.btn--primary:hover {
  transform: translateY(-2px);
}

.btn--ghost {
  background: transparent;
  border-color: var(--border);
  color: var(--text);
}

.btn--ghost:hover {
  border-color: var(--text-muted);
  background: var(--surface);
}

.hero__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 520px;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}

.hero__stats strong {
  display: block;
  font-family: var(--font-family);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.hero__stats span {
  font-size: 0.85rem;
  color: var(--text-muted);
}

@media (max-width: 560px) {
  .hero__stats {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
}

/* —— marquee —— */
.marquee {
  overflow: hidden;
  padding: 1.25rem 0;
  border-block: 1px solid var(--border);
  background: var(--bg-elevated);
}

.marquee__track {
  display: flex;
  gap: 2.5rem;
  width: max-content;
  font-family: var(--font-family);
  font-weight: 600;
  font-size: clamp(1.25rem, 3vw, 2rem);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  animation: marquee 32s linear infinite;
}

@keyframes marquee {
  to {
    transform: translateX(-50%);
  }
}

/* —— section common —— */
.section-head {
  max-width: 640px;
  margin-bottom: 3rem;
}

.section-head h2 {
  margin: 0 0 0.75rem;
  font-size: clamp(2rem, 4vw, 3rem);
}

.section-head p {
  margin: 0;
  color: var(--text-muted);
}

.section-head--light p {
  color: rgba(193, 232, 255, 0.72);
}

/* —— works —— */
.works {
  padding: 6rem 4vw;
  max-width: 1400px;
  margin: 0 auto;
}

.works__grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1.25rem;
}

.card {
  grid-column: span 4;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--border);
  transition: transform 0.35s var(--ease-out), border-color 0.35s;
}

.card:hover {
  transform: translateY(-4px);
  border-color: rgba(125, 160, 202, 0.45);
}

.card--clickable {
  cursor: pointer;
  text-align: left;
}

.card--clickable:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

.card__hint {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.45rem;
}

.card--large {
  grid-column: span 7;
  grid-row: span 2;
}

.card--tall {
  grid-column: span 5;
  grid-row: span 2;
}

.card--wide {
  grid-column: span 8;
}

@media (max-width: 960px) {
  .card,
  .card--large,
  .card--tall,
  .card--wide {
    grid-column: span 12;
    grid-row: auto;
  }
}

.card__media {
  aspect-ratio: 4/3;
  position: relative;
  background: var(--bg);
  overflow: hidden;
}

.card--large .card__media {
  aspect-ratio: 16/10;
}

.card--tall .card__media {
  aspect-ratio: 3/4;
}

.card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.5s var(--ease-out);
}

.card:hover .card__media img {
  transform: scale(1.04);
}

.card__media::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(to top, rgba(2, 16, 36, 0.55) 0%, transparent 42%);
}

.card__body {
  padding: 1.35rem 1.5rem 1.5rem;
}

.card__tag {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--accent);
}

.card h3 {
  margin: 0.5rem 0 0.35rem;
  font-size: 1.35rem;
}

.card p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--text-muted);
}

.card__desc {
  margin-top: 0.75rem !important;
  padding: 0.75rem 0;
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--text);
  opacity: 0.85;
}

/* —— services —— */
.services {
  padding: 6rem 4vw;
  background: linear-gradient(180deg, var(--bg-elevated) 0%, var(--bg) 100%);
  border-block: 1px solid var(--border);
}

.services .section-head {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.services__list {
  list-style: none;
  margin: 0 auto;
  padding: 0;
  max-width: 900px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.services__list li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 2rem;
  padding: 2rem 0;
  border-bottom: 1px solid var(--border);
  align-items: start;
}

.services__list li:first-child {
  border-top: 1px solid var(--border);
}

.services__num {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--accent);
}

.services__list h3 {
  margin: 0 0 0.5rem;
  font-size: 1.35rem;
}

.services__list p {
  margin: 0;
  color: var(--text-muted);
}

@media (max-width: 560px) {
  .services__list li {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }
}

/* —— about —— */
.about {
  padding: 6rem 4vw;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

@media (max-width: 900px) {
  .about {
    grid-template-columns: 1fr;
  }

  .about__figure {
    max-width: 380px;
    margin-left: auto;
    margin-right: auto;
  }
}

.about__figure {
  margin: 0;
}

.about__frame {
  position: relative;
  border-radius: var(--radius);
  aspect-ratio: 4 / 5;
  max-height: min(520px, 70vh);
  background: var(--surface);
  border: 1px solid var(--border);
  overflow: hidden;
}

.about__photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 22%;
  display: block;
}

.about__name {
  margin: 1rem 0 0;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  text-align: center;
}

.about__text h2 {
  margin: 0 0 1.25rem;
  font-size: clamp(2rem, 4vw, 2.75rem);
}

.about__text p {
  margin: 0 0 1rem;
  color: var(--text-muted);
}

.about__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 1.5rem 0 0;
  padding: 0;
  list-style: none;
}

.about__tags li {
  padding: 0.4rem 0.85rem;
  font-size: 0.85rem;
  font-weight: 500;
  border-radius: 999px;
  background: var(--surface);
  border: 1px solid var(--border);
}

/* —— contact —— */
.contact {
  padding: 6rem 4vw 5rem;
}

.contact__inner {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
  padding: 4rem 2rem;
  border-radius: var(--radius);
  background: linear-gradient(160deg, var(--bg), var(--bg-elevated));
  border: 1px solid var(--border);
}

.contact__inner h2 {
  margin: 0 0 1rem;
  font-size: clamp(2rem, 5vw, 3.25rem);
}

.contact__inner > p {
  margin: 0 0 2rem;
  color: var(--text-muted);
}

.contact__channels {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 1rem;
}

.contact__btn {
  min-width: 10rem;
}

.btn--whatsapp {
  background: #25d366;
  color: #fff !important;
  border-color: transparent;
}

.btn--whatsapp:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.35);
}

.contact__links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 2.5rem;
  font-size: 0.95rem;
  font-weight: 600;
}

.contact__links a {
  color: var(--text-muted);
  transition: color 0.2s;
}

.contact__links a:hover {
  color: var(--text);
}

/* —— design credit —— */
.site-credit {
  position: fixed;
  bottom: 1.1rem;
  right: 1.25rem;
  z-index: 50;
  margin: 0;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-muted);
  opacity: 0.55;
  pointer-events: none;
  user-select: none;
}

@media (max-width: 480px) {
  .site-credit {
    bottom: 0.85rem;
    right: 1rem;
    font-size: 0.6rem;
    max-width: 45vw;
    text-align: right;
    line-height: 1.35;

/* —— team (Ekibimiz) —— */
.team {
  padding: 6rem 4vw;
  background: var(--bg);
}

.team .container {
  max-width: 1200px;
  margin: 0 auto;
}

.team .row {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: center;
}

.team .col-md-4 {
  flex: 0 0 calc(33.333% - 1rem);
  max-width: calc(33.333% - 1rem);
}
@media (max-width: 960px) {
  .team .col-md-4 {
    flex: 0 0 100%;
    max-width: 100%;
  }
}


  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.35s var(--ease-out), border-color 0.35s;
}

.team .card:hover {
  height: auto !important;
  transform: translateY(-4px);
  border-color: rgba(125, 160, 202, 0.45);
}

.team .card h5 {
  color: var(--text);
  margin-bottom: 0.5rem;
}

.team .card img {
  width: 100%;
  max-height: 100px;
  object-fit: cover;
  border-top-left-radius: var(--radius);
  border-top-right-radius: var(--radius);
  border-bottom-left-radius: var(--radius);
  border-bottom-right-radius: var(--radius);
  margin-bottom: 0.75rem;
}

.team .card .card-body {
  padding: 1rem;
}

  color: var(--text-muted);
  margin-bottom: 0.25rem;
}

/* —— work gallery modal —— */
.work-gallery {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: grid;
  place-items: center;
  padding: 1.25rem;
}

.work-gallery.hidden {
  display: none;
}

.work-gallery__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(2, 16, 36, 0.82);
  backdrop-filter: blur(6px);
}

.work-gallery__dialog {
  position: relative;
  z-index: 1;
  width: min(960px, 100%);
  max-height: min(92vh, 900px);
  overflow: auto;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: linear-gradient(160deg, var(--bg), var(--bg-elevated));
  padding: 1.5rem 1.5rem 1.75rem;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.45);
}

.work-gallery__close {
  position: absolute;
  top: 0.85rem;
  right: 0.85rem;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--text);
  font-size: 1.35rem;
  line-height: 1;
  cursor: pointer;
}

.work-gallery__tag {
  margin: 0 0 0.35rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
}

.work-gallery__title {
  margin: 0 0 0.5rem;
  font-size: clamp(1.35rem, 3vw, 2rem);
}

.work-gallery__desc {
  margin: 0 0 1rem;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.work-gallery__counter {
  margin: 0 0 0.75rem;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.work-gallery__stage {
  position: relative;
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: var(--bg);
  border: 1px solid var(--border);
}

.work-gallery__img {
  display: block;
  width: 100%;
  max-height: min(62vh, 560px);
  object-fit: contain;
  background: #000;
}

.work-gallery__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(2, 16, 36, 0.75);
  color: var(--text);
  font-size: 1.75rem;
  line-height: 1;
  cursor: pointer;
  display: grid;
  place-items: center;
}

.work-gallery__nav--prev {
  left: 0.65rem;
}

.work-gallery__nav--next {
  right: 0.65rem;
}

.work-gallery__nav:hover {
  border-color: var(--accent);
}

@media (max-width: 560px) {
  .work-gallery__nav {
    width: 2.25rem;
    height: 2.25rem;
    font-size: 1.35rem;
  }
}

/* —— footer —— */
.footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.5rem 4vw 2.5rem;
  font-size: 0.85rem;
  color: var(--text-muted);
  border-top: 1px solid var(--border);
}

