/* ==========================================================
   RENK PALETİ — Tüm marka renkleri buradan yönetilir.
   Bir rengi değiştirmek için sadece aşağıdaki değeri güncelleyin;
   site genelinde otomatik olarak uygulanır.
========================================================== */
:root {
  /* Ana marka rengi (linkler, butonlar, vurgular) */
  --color-primary: #2f80ff;
  --color-primary-rgb: 47, 128, 255;
  /* İkincil vurgu (altın/premium detaylar) */
  --color-accent-gold: #d4af37;
  /* Koyu zemin tonları (section arka planları) */
  --color-bg-900: #05070b;
  --color-bg-800: #070b12;
  /* Nötr temel renkler */
  --color-white: #fff;
  --color-dark: #111;
  /* Metin tonları (açık zemin üstünde koyu → koyu zemin üstünde açık) */
  --color-text-muted: #98a7ba;
  --color-text-soft: #aeb9c8;
  --color-text-faint: #9daabd;
  --color-text-light: #b8c0cc;
  --color-text-secondary: #9ca8bb;
  --color-text-pale: #c1cad7;
  --color-text-grey: #aeb3bd;
  /* Sabit iletişim butonları (liquid glass) */
  --fab-border: rgba(255, 255, 255, 0.14);
  --fab-shadow: rgba(0, 0, 0, 0.45);
  /* İkon çipleri — tamamen koyu, modern, az doygun */
  --fab-icon-bg-1: #10151b;
  --fab-icon-bg-2: #05070a;
  --fab-whatsapp: #161c24;
  --fab-whatsapp-dark: #05070a;
  /* Tipografi — başlıklar ve gövde metni için ayrı, premium font aileleri */
  --font-heading: "Plus Jakarta Sans", "Inter", Arial, sans-serif;
  --font-body: "Inter", Arial, sans-serif;
  /* Boşluk (spacing) ölçeği — section padding'leri buradan yönetilir */
  --space-section-y: clamp(64px, 9vw, 120px);
  --space-block: clamp(28px, 4vw, 48px);
}

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

*:not(dialog) {
  margin: 0;
  padding: 0;
}

@media (prefers-reduced-motion: no-preference) {
  html {
    interpolate-size: allow-keywords;
    scroll-behavior: smooth;
  }
}

body {
  font-family: var(--font-body);
  background: var(--color-white);
  color: var(--color-dark);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.15;
  overflow-wrap: break-word;
  text-wrap: balance;
}

h1 { letter-spacing: -0.03em; }

p {
  line-height: 1.75;
  overflow-wrap: break-word;
  text-wrap: pretty;
}

img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
}

input, button, textarea, select {
  font: inherit;
}

#root, #__next {
  isolation: isolate;
}

/* GLOBAL */
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

.section-subtitle {
  color: var(--color-primary);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
}

.stats h2,
.services h2,
.before-after h2 {
  margin-top: 20px;
  font-size: 52px;
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-dark);
}

.stats p,
.services-desc,
.before-after-desc {
  max-width: 720px;
  margin: 25px auto 70px;
  color: #555;
  line-height: 1.8;
}

/* HEADER */
.header {
  width: 100%;
  background: rgba(0, 0, 0, 0.15);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
}

.header .container {
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* LOGO */
.logo-img {
  width: 150px;
  height: auto;
  display: block;
}

/* MENU */
.menu {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.menu li a {
  position: relative;
  text-decoration: none;
  color: var(--color-white);
  font-size: 15px;
  font-weight: 500;
  padding-bottom: 6px;
  transition: color 0.3s ease;
}

.menu li a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  border-radius: 2px;
  background: var(--color-primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s cubic-bezier(0.22, 0.9, 0.3, 1);
}

.menu li a:hover {
  color: var(--color-white);
}

.menu li a:hover::after,
.menu li a.active::after {
  transform: scaleX(1);
}

.menu li:last-child a {
  padding: 10px 20px;
  border: 1px solid var(--color-primary);
  border-radius: 999px;
  color: var(--color-primary);
  transition: background 0.3s ease, color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}

.menu li:last-child a::after {
  display: none;
}

.menu li:last-child a:hover {
  background: var(--color-primary);
  color: var(--color-white);
  box-shadow: 0 10px 25px rgba(var(--color-primary-rgb), 0.35);
  transform: translateY(-2px);
}

/* PROJECT SHOWCASE */
.project-showcase {
  padding: 120px 0;
  background: var(--color-bg-800);
  color: var(--color-white);
  overflow: hidden;
  position: relative;
}

.project-showcase::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 80px 80px;
  opacity: .35;
}

.project-showcase::after {
  content: "";
  position: absolute;
  width: 650px;
  height: 650px;
  left: 50%;
  top: 45%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(var(--color-primary-rgb),.18), transparent 65%);
  pointer-events: none;
}

.project-showcase .container {
  position: relative;
  z-index: 2;
}

.project-head {
  text-align: center;
  max-width: 650px;
  margin: 0 auto 70px;
}

.project-head,
.project-slider,
.project-dots {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .8s cubic-bezier(.22,.9,.3,1),
              transform .8s cubic-bezier(.22,.9,.3,1);
}

.project-showcase.is-visible .project-head {
  opacity: 1;
  transform: translateY(0);
}

.project-showcase.is-visible .project-slider {
  opacity: 1;
  transform: translateY(0);
  transition-delay: .15s;
}

.project-showcase.is-visible .project-dots {
  opacity: 1;
  transform: translateY(0);
  transition-delay: .3s;
}

@media (prefers-reduced-motion: reduce) {
  .project-head,
  .project-slider,
  .project-dots {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

.project-head span {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--color-primary);
  font-size: 13px;
  letter-spacing: 4px;
  font-weight: 800;
}

.project-head span::before {
  content: "";
  width: 42px;
  height: 2px;
  background: var(--color-primary);
}

.project-head h2 {
  margin-top: 22px;
  font-size: 52px;
  line-height: 1.1;
}

.project-head p {
  margin-top: 22px;
  color: var(--color-text-light);
  line-height: 1.8;
}

/* SLIDER */
.project-slider {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 520px;
  gap: 0;
}

.project-card {
  position: relative;
  width: 280px;
  height: 420px;
  border-radius: 22px;
  overflow: hidden;
  background: var(--color-dark);
  cursor: pointer;
  box-shadow: 0 30px 80px rgba(0,0,0,.45);
  transition: width .5s cubic-bezier(.22,.9,.3,1),
              height .5s cubic-bezier(.22,.9,.3,1),
              transform .5s cubic-bezier(.22,.9,.3,1),
              opacity .5s ease,
              box-shadow .5s ease,
              margin .5s cubic-bezier(.22,.9,.3,1);
  will-change: transform, width, height;
}

.project-card:hover {
  transform: translateY(-8px);
}

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

.project-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    rgba(0,0,0,.12),
    rgba(0,0,0,.76)
  );
  transition: opacity .4s ease;
}

.active-card {
  width: 330px;
  height: 520px;
  z-index: 3;
  border: 1px solid rgba(var(--color-primary-rgb),.8);
  box-shadow:
    0 0 45px rgba(var(--color-primary-rgb),.35),
    0 35px 90px rgba(0,0,0,.55);
}

.side-card {
  z-index: 1;
  opacity: .42;
  transform: scale(.9);
}

.side-card:first-of-type {
  margin-right: -35px;
}

.side-card:nth-of-type(3) {
  margin-left: -35px;
}

.project-card:hover.side-card {
  opacity: .65;
}

.play-btn {
  position: absolute;
  z-index: 3;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.65);
  background: rgba(0,0,0,.35);
  backdrop-filter: blur(8px);
  color: var(--color-white);
  display: grid;
  place-items: center;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  cursor: pointer;
  transition: transform .3s ease, background .3s ease, box-shadow .3s ease;
}

.play-btn::before {
  content: "";
  position: absolute;
  inset: -14px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.3);
  animation: playPulse 2.4s ease-out infinite;
}

.play-btn span {
  width: 0;
  height: 0;
  margin-left: 4px;
  border-style: solid;
  border-width: 9px 0 9px 15px;
  border-color: transparent transparent transparent var(--color-white);
}

.project-card:hover .play-btn {
  transform: translate(-50%, -50%) scale(1.08);
  background: rgba(var(--color-primary-rgb),.55);
  box-shadow: 0 0 30px rgba(var(--color-primary-rgb),.45);
}

@keyframes playPulse {
  0%   { transform: scale(.85); opacity: .8; }
  70%  { transform: scale(1.35); opacity: 0; }
  100% { transform: scale(1.35); opacity: 0; }
}

.project-card h3 {
  position: absolute;
  z-index: 3;
  left: 0;
  right: 0;
  bottom: 28px;
  text-align: center;
  font-size: 19px;
  color: var(--color-white);
  transition: opacity .3s ease, transform .3s ease;
}

.active-card h3 {
  font-size: 24px;
}

/* ARROWS */
.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 20;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.18);
  color: var(--color-white);
  font-size: 34px;
  line-height: 1;
  cursor: pointer;
  transition: background .3s ease, border-color .3s ease,
              box-shadow .3s ease, transform .3s cubic-bezier(.22,.9,.3,1);
  display: grid;
  place-items: center;
}

.slider-btn:hover {
  background: var(--color-primary);
  border-color: var(--color-primary);
  transform: translateY(-50%) scale(1.08);
  box-shadow: 0 12px 30px rgba(var(--color-primary-rgb), .4);
}

.slider-btn:active {
  transform: translateY(-50%) scale(.95);
}

.slider-btn.left {
  left: 120px;
  margin: 0;
}

.slider-btn.right {
  right: 120px;
  margin: 0;
}

/* DOTS */
.project-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 8px;
}

.project-dots span {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: rgba(255,255,255,.25);
  cursor: pointer;
  transition: width .35s cubic-bezier(.22,.9,.3,1), background .35s ease;
}

.project-dots span:hover {
  background: rgba(255,255,255,.5);
}

.project-dots span.active {
  width: 28px;
  background: var(--color-primary);
}

/* VIDEO MODAL */
.video-modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0,0,0,.82);
  backdrop-filter: blur(12px);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 30px;
}

.video-modal.active {
  display: flex;
}

.video-box {
  width: min(100%, 900px);
  aspect-ratio: 16 / 9;
  background: #000;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 30px 100px rgba(0,0,0,.6);
}

.video-box video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.close-video {
  position: absolute;
  top: 28px;
  right: 34px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.2);
  color: var(--color-white);
  font-size: 32px;
  cursor: pointer;
  transition: .3s ease;
}

.close-video:hover {
  background: var(--color-white);
  color: var(--color-dark);
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .project-showcase {
    padding: 90px 0;
  }
  .project-head h2 {
    font-size: 38px;
  }
  .project-slider {
    min-height: auto;
    gap: 18px;
  }
  .side-card {
    display: none;
  }
  .active-card {
    width: 100%;
    max-width: 360px;
    height: 520px;
  }
  .slider-btn.left,
  .slider-btn.right {
    margin: 0;
  }
}

@media (max-width: 600px) {
  .project-head h2 {
    font-size: 32px;
  }
  .project-head p {
    font-size: 15px;
  }
  .project-slider {
    gap: 12px;
  }
  .slider-btn {
    width: 42px;
    height: 42px;
    font-size: 28px;
  }
  .active-card {
    height: 460px;
  }
  .video-box {
    aspect-ratio: 9 / 16;
  }
}

/* COMPARISON SECTION */
.comparison-section {
  padding: 120px 0;
  background: var(--color-bg-800);
  color: var(--color-white);
  overflow: hidden;
}

.comparison-head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 70px;
}

.comparison-head span {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--color-primary);
  font-size: 13px;
  letter-spacing: 4px;
  font-weight: 800;
}

.comparison-head span::before {
  content: "";
  width: 42px;
  height: 2px;
  background: var(--color-primary);
}

.comparison-head h2 {
  margin-top: 22px;
  font-size: 52px;
  line-height: 1.1;
}

.comparison-head p {
  margin-top: 22px;
  color: var(--color-text-light);
  line-height: 1.8;
}

.comparison-wrapper {
  position: relative;
  width: 100%;
  max-width: 980px;
  height: 560px;
  margin: 0 auto;
  border-radius: 28px;
  overflow: hidden;
  cursor: ew-resize;
  box-shadow:
    0 0 0 1px rgba(255,255,255,.08),
    0 35px 100px rgba(0,0,0,.55);
}

.comparison-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  user-select: none;
  pointer-events: none;
}

.before-img {
  z-index: 1;
}

.after-layer {
  position: absolute;
  inset: 0;
  width: 50%;
  overflow: hidden;
  z-index: 2;
}

.after-img {
  width: 980px;
  max-width: none;
}

.comparison-line {
  position: absolute;
  top: 0;
  left: 50%;
  width: 2px;
  height: 100%;
  background: rgba(255,255,255,.9);
  z-index: 4;
  transform: translateX(-50%);
  box-shadow: 0 0 25px rgba(var(--color-primary-rgb),.8);
}

.comparison-handle {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 64px;
  height: 64px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  border: 0;
  background: linear-gradient(135deg, var(--color-primary), #6c63ff);
  color: var(--color-white);
  font-weight: 900;
  font-size: 20px;
  cursor: ew-resize;
  box-shadow: 0 0 35px rgba(var(--color-primary-rgb),.65);
}

.comparison-label {
  position: absolute;
  bottom: 24px;
  z-index: 5;
  padding: 12px 22px;
  border-radius: 999px;
  background: rgba(0,0,0,.55);
  backdrop-filter: blur(8px);
  color: var(--color-white);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .8px;
  text-transform: uppercase;
}

.left-label {
  left: 24px;
  border: 1px solid rgba(255,80,80,.55);
}

.right-label {
  right: 24px;
  border: 1px solid rgba(var(--color-primary-rgb),.65);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .comparison-section {
    padding: 80px 0;
  }
  .comparison-head h2 {
    font-size: 34px;
  }
  .comparison-wrapper {
    height: 420px;
    border-radius: 22px;
  }
  .after-img {
    width: calc(90vw);
  }
  .comparison-label {
    font-size: 11px;
    padding: 10px 14px;
  }
}

/* ABOUT PREMIUM */
.about-premium {
  padding: 130px 0;
  background: var(--color-bg-800);
  color: var(--color-white);
  position: relative;
  overflow: hidden;
}

.about-premium::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 80px 80px;
  opacity: .35;
}

.about-premium::after {
  content: "";
  position: absolute;
  right: -180px;
  top: 20%;
  width: 520px;
  height: 520px;
  background: radial-gradient(circle, rgba(var(--color-primary-rgb),.18), transparent 65%);
}

.about-wrapper {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 80px;
  align-items: center;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--color-primary);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 4px;
}

.section-tag::before {
  content: "";
  width: 42px;
  height: 2px;
  background: var(--color-primary);
}

.about-left h2 {
  margin: 26px 0;
  max-width: 620px;
  font-size: 58px;
  line-height: 1.05;
  color: var(--color-white);
}

.about-left > p {
  max-width: 600px;
  color: var(--color-text-light);
  font-size: 17px;
  line-height: 1.9;
}

.about-actions {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 38px;
}

.about-btn {
  padding: 15px 28px;
  background: var(--color-primary);
  color: var(--color-white);
  text-decoration: none;
  font-weight: 800;
  border-radius: 999px;
  transition: .3s ease;
}

.about-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 45px rgba(var(--color-primary-rgb),.35);
}

.about-link {
  color: var(--color-white);
  text-decoration: none;
  font-weight: 700;
}

.about-right {
  position: relative;
}

.about-right img {
  width: 100%;
  height: 560px;
  object-fit: cover;
  border-radius: 30px;
  box-shadow: 0 35px 100px rgba(0,0,0,.55);
}

.glass-card {
  position: absolute;
  padding: 24px 28px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
  backdrop-filter: blur(16px);
  border-radius: 22px;
  box-shadow: 0 25px 70px rgba(0,0,0,.35);
}

.glass-card strong {
  display: block;
  color: var(--color-primary);
  font-size: 38px;
  margin-bottom: 6px;
}

.glass-card span {
  color: var(--color-white);
  font-size: 14px;
  font-weight: 700;
}

.glass-one {
  left: -38px;
  top: 70px;
}

.glass-two {
  right: -28px;
  bottom: 60px;
}

.about-feature-row {
  position: relative;
  z-index: 2;
  margin-top: 80px;
  padding: 34px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
  background: rgba(255,255,255,.035);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 28px;
  backdrop-filter: blur(10px);
}

.about-feature {
  padding-right: 24px;
  border-right: 1px solid rgba(255,255,255,.08);
}

.about-feature:last-child {
  border-right: 0;
}

.about-feature span {
  display: inline-block;
  margin-bottom: 14px;
  color: var(--color-primary);
  font-weight: 900;
}

.about-feature h3 {
  margin-bottom: 10px;
  font-size: 20px;
  color: var(--color-white);
}

.about-feature p {
  color: var(--color-text-secondary);
  font-size: 14px;
  line-height: 1.7;
}

@media (max-width: 992px) {
  .about-wrapper {
    grid-template-columns: 1fr;
  }
  .about-left h2 {
    font-size: 44px;
  }
  .about-feature-row {
    grid-template-columns: repeat(2, 1fr);
  }
  .about-feature:nth-child(2) {
    border-right: 0;
  }
}

@media (max-width: 768px) {
  .about-premium {
    padding: 90px 0;
  }
  .about-left h2 {
    font-size: 36px;
  }
  .about-right img {
    height: 420px;
  }
  .glass-one,
  .glass-two {
    position: static;
    margin-top: 18px;
  }
  .about-feature-row {
    grid-template-columns: 1fr;
  }
  .about-feature {
    border-right: 0;
    border-bottom: 1px solid rgba(255,255,255,.08);
    padding-bottom: 20px;
  }
  .about-feature:last-child {
    border-bottom: 0;
  }
}

/* ================================
   RESPONSIVE FINAL OVERRIDES
   Eklenen bölüm: Mevcut tasarımı bozmadan mobil/tablet uyum
   ================================ */

/* Büyük ekranlarda daha kontrollü boşluk */
@media (max-width: 1200px) {
  .container {
    width: 92%;
    max-width: 1100px;
  }
  .menu {
    gap: 22px;
  }
  .menu li a {
    font-size: 14px;
  }
  .slider-btn.left {
    left: 40px;
  }
  .slider-btn.right {
    right: 40px;
  }
}

/* Laptop / küçük desktop */
@media (max-width: 1024px) {
  .header .container {
    height: 82px;
  }
  .logo-img {
    width: 135px;
  }
  .menu {
    gap: 16px;
  }
  .menu li a {
    font-size: 13px;
  }
  .menu li:last-child a {
    padding: 9px 16px;
  }
  .project-showcase,
  .comparison-section,
  .about-premium {
    padding: 100px 0;
  }
  .project-head h2,
  .comparison-head h2 {
    font-size: 44px;
  }
  .project-slider {
    min-height: 500px;
  }
  .active-card {
    width: 310px;
    height: 500px;
  }
  .project-card {
    width: 250px;
    height: 390px;
  }
  .comparison-wrapper {
    height: 520px;
  }
  .about-wrapper {
    grid-template-columns: 1fr;
    gap: 55px;
  }
  .about-left h2 {
    max-width: 760px;
    font-size: 48px;
  }
  .about-left > p {
    max-width: 760px;
  }
  .about-right img {
    height: 520px;
  }
  .about-feature-row {
    grid-template-columns: repeat(2, 1fr);
  }
  .about-feature:nth-child(2) {
    border-right: 0;
  }
}

/* Tablet */
@media (max-width: 900px) {
  body {
    overflow-x: hidden;
  }
  .container {
    width: 90%;
  }
  .header {
    background: rgba(0, 0, 0, 0.35);
  }
  .header .container {
    height: 76px;
  }
  .logo-img {
    width: 125px;
  }
  .hero {
    min-height: 100svh;
  }
  .project-showcase {
    padding: 90px 0;
  }
  .project-head {
    margin-bottom: 50px;
  }
  .project-head h2 {
    font-size: 38px;
  }
  .project-head p {
    font-size: 15px;
  }
  .project-slider {
    min-height: 520px;
    gap: 18px;
    justify-content: center;
  }
  .side-card {
    display: none;
  }
  .active-card {
    width: min(100%, 360px);
    height: 500px;
  }
  .slider-btn {
    width: 44px;
    height: 44px;
    font-size: 28px;
  }
  .slider-btn.left {
    left: 0;
  }
  .slider-btn.right {
    right: 0;
  }
  .comparison-section {
    padding: 90px 0;
  }
  .comparison-head {
    margin-bottom: 50px;
  }
  .comparison-head h2 {
    font-size: 38px;
  }
  .comparison-head p {
    font-size: 15px;
  }
  .comparison-wrapper {
    height: 430px;
    border-radius: 24px;
  }
  .after-img {
    width: 90vw;
  }
  .comparison-handle {
    width: 56px;
    height: 56px;
    font-size: 17px;
  }
  .comparison-label {
    bottom: 18px;
    padding: 10px 16px;
    font-size: 11px;
  }
  .about-premium {
    padding: 90px 0;
  }
  .about-left h2 {
    font-size: 40px;
  }
  .about-actions {
    flex-wrap: wrap;
  }
  .about-right img {
    height: 430px;
    border-radius: 24px;
  }
  .glass-one,
  .glass-two {
    position: static;
    margin-top: 16px;
    display: inline-block;
    margin-right: 12px;
  }
  .about-feature-row {
    margin-top: 55px;
    grid-template-columns: repeat(2, 1fr);
  }
  .about-feature {
    border-right: 0;
  }
  .about-feature:nth-child(odd) {
    border-right: 1px solid rgba(255,255,255,.08);
  }
}

/* Mobil */
@media (max-width: 600px) {
  .container {
    width: 92%;
  }
  .header .container {
    height: 70px;
  }
  .logo-img {
    width: 112px;
  }
  .project-showcase,
  .comparison-section,
  .about-premium {
    padding: 75px 0;
  }
  .project-showcase::before,
  .about-premium::before {
    background-size: 55px 55px;
  }
  .project-showcase::after,
  .about-premium::after {
    width: 360px;
    height: 360px;
    opacity: 0.7;
  }
  .project-head,
  .comparison-head {
    margin-bottom: 42px;
  }
  .project-head span,
  .comparison-head span,
  .section-tag {
    font-size: 11px;
    letter-spacing: 3px;
  }
  .project-head span::before,
  .comparison-head span::before,
  .section-tag::before {
    width: 30px;
  }
  .project-head h2,
  .comparison-head h2 {
    font-size: 32px;
    line-height: 1.15;
  }
  .project-head p,
  .comparison-head p {
    margin-top: 16px;
    font-size: 14px;
    line-height: 1.7;
  }
  .project-slider {
    min-height: 455px;
    padding: 0 42px;
  }
  .active-card {
    width: 100%;
    height: 440px;
    border-radius: 20px;
  }
  .project-card h3 {
    bottom: 22px;
    font-size: 20px;
  }
  .play-btn {
    width: 54px;
    height: 54px;
  }
  .slider-btn {
    width: 38px;
    height: 38px;
    font-size: 24px;
  }
  .project-dots {
    margin-top: 18px;
  }
  .video-modal {
    padding: 18px;
  }
  .video-box {
    width: 100%;
    max-height: 80vh;
    aspect-ratio: 9 / 16;
    border-radius: 16px;
  }
  .close-video {
    top: 16px;
    right: 16px;
    width: 42px;
    height: 42px;
    font-size: 28px;
  }
  .comparison-wrapper {
    height: 330px;
    border-radius: 20px;
  }
  .comparison-handle {
    width: 48px;
    height: 48px;
    font-size: 15px;
  }
  .comparison-label {
    bottom: 14px;
    padding: 9px 12px;
    font-size: 10px;
  }
  .left-label {
    left: 12px;
  }
  .right-label {
    right: 12px;
  }
  .about-wrapper {
    gap: 42px;
  }
  .about-left h2 {
    margin: 20px 0;
    font-size: 34px;
    line-height: 1.12;
  }
  .about-left > p {
    font-size: 15px;
    line-height: 1.8;
  }
  .about-actions {
    gap: 14px;
    margin-top: 30px;
  }
  .about-btn {
    width: 100%;
    text-align: center;
    padding: 14px 20px;
  }
  .about-link {
    width: 100%;
    text-align: center;
  }
  .about-right img {
    height: 340px;
    border-radius: 22px;
  }
  .glass-card {
    width: 100%;
    padding: 20px 22px;
  }
  .glass-card strong {
    font-size: 32px;
  }
  .about-feature-row {
    margin-top: 45px;
    padding: 24px;
    grid-template-columns: 1fr;
    border-radius: 22px;
  }
  .about-feature,
  .about-feature:nth-child(odd) {
    border-right: 0;
    border-bottom: 1px solid rgba(255,255,255,.08);
    padding-right: 0;
    padding-bottom: 20px;
  }
  .about-feature:last-child {
    border-bottom: 0;
    padding-bottom: 0;
  }
}

/* Küçük telefonlar */
@media (max-width: 390px) {
  .project-head h2,
  .comparison-head h2 {
    font-size: 28px;
  }
  .about-left h2 {
    font-size: 30px;
  }
  .project-slider {
    padding: 0 34px;
  }
  .active-card {
    height: 400px;
  }
  .comparison-wrapper {
    height: 290px;
  }
  .about-right img {
    height: 300px;
  }
}

/* BRAND SECTION */
.brand-section {
  padding: 120px 0;
  background: var(--color-bg-900);
  color: var(--color-white);
  overflow: hidden;
  position: relative;
}

.brand-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
  background-size: 80px 80px;
  opacity: .25;
}

.brand-head {
  position: relative;
  z-index: 2;
  max-width: 920px;
  margin: 0 auto 70px;
  text-align: center;
}

.brand-head span {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--color-primary);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 4px;
}

.brand-head span::before,
.brand-head span::after {
  content: "";
  width: 42px;
  height: 2px;
  background: var(--color-primary);
}

.brand-head h2 {
  margin-top: 24px;
  color: var(--color-white);
  font-size: 52px;
  line-height: 1.1;
}

.brand-head p {
  max-width: 850px;
  margin: 24px auto 0;
  color: #aab4c3;
  font-size: 17px;
  line-height: 1.8;
}

.brand-marquee {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  overflow: hidden;
  position: relative;
  z-index: 2;
}

.brand-marquee::before,
.brand-marquee::after {
  content: "";
  position: absolute;
  top: 0;
  width: 120px;
  height: 100%;
  z-index: 5;
  pointer-events: none;
}

.brand-marquee::before {
  left: 0;
  background: linear-gradient(to right, var(--color-bg-900) 0%, transparent 100%);
}

.brand-marquee::after {
  right: 0;
  background: linear-gradient(to left, var(--color-bg-900) 0%, transparent 100%);
}

.brand-track {
  display: flex;
  align-items: center;
  gap: 42px;
  width: max-content;
  animation: brandScroll 30s linear infinite;
  will-change: transform;
}

.brand-item {
  width: 220px;
  height: 120px;
  flex: 0 0 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform .35s ease, filter .35s ease;
}

.brand-item:hover {
  transform: translateY(-10px);
  filter: drop-shadow(0 14px 28px rgba(var(--color-primary-rgb),.28));
}

.brand-item img {
  max-width: 190px;
  max-height: 90px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: none;
  transition: transform .35s ease, opacity .35s ease;
}

.brand-item:hover img {
  transform: scale(1.05);
  opacity: .95;
}

@keyframes brandScroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@media (max-width: 768px) {
  .brand-section {
    padding: 80px 0;
  }
  .brand-head {
    margin-bottom: 50px;
  }
  .brand-head span {
    font-size: 12px;
    letter-spacing: 3px;
  }
  .brand-head span::before,
  .brand-head span::after {
    width: 28px;
  }
  .brand-head h2 {
    font-size: 34px;
  }
  .brand-head p {
    font-size: 15px;
  }
  .brand-marquee {
    width: 92%;
  }
  .brand-track {
    gap: 24px;
    animation-duration: 24s;
  }
  .brand-item {
    width: 165px;
    height: 90px;
    flex: 0 0 165px;
  }
  .brand-item img {
    max-width: 145px;
    max-height: 65px;
  }
  .brand-marquee::before,
  .brand-marquee::after {
    width: 55px;
  }
}

/* GALLERY */
.gallery {
  padding: 130px 0;
  background: var(--color-bg-900);
  color: var(--color-white);
  position: relative;
  overflow: hidden;
}

.gallery::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
  background-size: 80px 80px;
  opacity: .25;
}

.gallery .container {
  position: relative;
  z-index: 2;
}

.gallery-head {
  max-width: 760px;
  margin: 0 auto 70px;
  text-align: center;
}

.gallery-head span {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--color-primary);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 4px;
}

.gallery-head span::before {
  content: "";
  width: 42px;
  height: 2px;
  background: var(--color-primary);
}

.gallery-head h2 {
  margin-top: 22px;
  font-size: 52px;
  line-height: 1.1;
  color: var(--color-white);
}

.gallery-head p {
  margin-top: 22px;
  color: var(--color-text-light);
  line-height: 1.8;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-auto-rows: 190px;
  gap: 22px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 22px;
  border: 1px solid rgba(255,255,255,.08);
  background: var(--color-dark);
  display: block;
  text-decoration: none;
  transition: .35s ease;
}

.gallery-item.large {
  grid-row: span 2;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: .55s ease;
}

.gallery-item::before {
  content: "↗";
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 3;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(var(--color-primary-rgb),.9);
  color: var(--color-white);
  display: grid;
  place-items: center;
  opacity: 0;
  transform: translateY(-8px);
  transition: .35s ease;
}

.gallery-item::after {
  content: attr(data-title) "\A" attr(data-service);
  white-space: pre-line;
  position: absolute;
  left: 22px;
  bottom: 22px;
  z-index: 3;
  color: var(--color-white);
  font-weight: 800;
  line-height: 1.5;
  opacity: 0;
  transform: translateY(14px);
  transition: .35s ease;
}

.gallery-item:hover {
  border-color: var(--color-primary);
  box-shadow: 0 0 35px rgba(var(--color-primary-rgb),.2);
}

.gallery-item:hover img {
  transform: scale(1.08);
}

.gallery-item:hover::before,
.gallery-item:hover::after {
  opacity: 1;
  transform: translateY(0);
}

.gallery-action {
  margin-top: 45px;
  text-align: center;
}

.gallery-btn {
  display: inline-block;
  padding: 15px 28px;
  border-radius: 999px;
  background: var(--color-primary);
  color: var(--color-white);
  text-decoration: none;
  font-weight: 800;
  transition: .3s ease;
}

.gallery-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 45px rgba(var(--color-primary-rgb),.35);
}

/* LIGHTBOX */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 3000;
  background: rgba(0,0,0,.86);
  backdrop-filter: blur(12px);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 28px;
}

.lightbox.active {
  display: flex;
}

.lightbox img {
  max-width: min(100%, 1100px);
  max-height: 82vh;
  border-radius: 18px;
  object-fit: contain;
  box-shadow: 0 35px 120px rgba(0,0,0,.65);
}

.lightbox-close {
  position: absolute;
  top: 26px;
  right: 34px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.2);
  color: var(--color-white);
  font-size: 32px;
  cursor: pointer;
}

.lightbox-close:hover {
  background: var(--color-white);
  color: var(--color-dark);
}

@media (max-width: 992px) {
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 220px;
  }
  .gallery-item.large {
    grid-row: span 1;
  }
  .gallery-head h2 {
    font-size: 40px;
  }
}

@media (max-width: 768px) {
  .gallery {
    padding: 90px 0;
  }
  .gallery-head h2 {
    font-size: 34px;
  }
  .gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 260px;
  }
}

/* BOOKING SECTION */
.booking-section {
  padding: 130px 0;
  background: var(--color-bg-900);
  color: var(--color-white);
  position: relative;
  overflow: hidden;
}

.booking-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
  background-size: 80px 80px;
  opacity: .25;
}

.booking-section .container {
  position: relative;
  z-index: 2;
}

.booking-head {
  max-width: 760px;
  margin: 0 auto 70px;
  text-align: center;
}

.booking-head span {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--color-primary);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 4px;
}

.booking-head span::before {
  content: "";
  width: 42px;
  height: 2px;
  background: var(--color-primary);
}

.booking-head h2 {
  margin-top: 22px;
  font-size: 52px;
  line-height: 1.1;
}

.booking-head p {
  margin-top: 22px;
  color: var(--color-text-light);
  line-height: 1.8;
}

.booking-card {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.7fr 1fr;
  background: rgba(255,255,255,.045);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 35px 100px rgba(0,0,0,.45);
  backdrop-filter: blur(14px);
}

.booking-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--color-primary), transparent);
}

.booking-info,
.booking-calendar,
.booking-times {
  padding: 34px;
}

.booking-info,
.booking-calendar {
  border-right: 1px solid rgba(255,255,255,.08);
}

.booking-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: 18px;
  background: var(--color-dark);
  border: 1px solid rgba(255,255,255,.15);
}

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

.booking-info span {
  color: var(--color-text-secondary);
  font-size: 14px;
}

.booking-info h3 {
  margin: 16px 0 22px;
  font-size: 24px;
  line-height: 1.3;
}

.booking-info ul {
  list-style: none;
  display: grid;
  gap: 16px;
  color: #d1d5db;
  font-size: 15px;
}

.calendar-top,
.time-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 26px;
}

.calendar-top h4,
.time-top h4 {
  font-size: 18px;
}

.calendar-top button {
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 50%;
  background: rgba(255,255,255,.06);
  color: var(--color-white);
  cursor: pointer;
  font-size: 20px;
  transition: .25s ease;
}

.calendar-top button:hover:not(:disabled) {
  background: var(--color-primary);
  color: var(--color-white);
}

.calendar-top button:disabled {
  opacity: .25;
  cursor: not-allowed;
}

.calendar-days,
.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 8px;
  text-align: center;
}

.calendar-days span {
  color: var(--color-white);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.calendar-grid {
  margin-top: 18px;
}

.calendar-grid button {
  position: relative;
  height: 52px;
  border: 0;
  border-radius: 10px;
  background: rgba(255,255,255,.11);
  color: var(--color-white);
  font-weight: 700;
  cursor: pointer;
  transition: .25s ease;
}

.calendar-grid button:hover:not(:disabled) {
  background: rgba(var(--color-primary-rgb),.45);
  transform: translateY(-2px);
}

.calendar-grid button.active {
  background: var(--color-primary);
  color: var(--color-white);
  box-shadow: 0 10px 25px rgba(var(--color-primary-rgb),.4);
}

.calendar-grid button.active::before {
  content: "✓";
  position: absolute;
  top: -6px;
  right: -6px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--color-white);
  color: var(--color-primary);
  font-size: 10px;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(0,0,0,.35);
  animation: bookingCheckIn .3s cubic-bezier(.34,1.56,.64,1);
}

@keyframes bookingCheckIn {
  from { transform: scale(0); }
  to   { transform: scale(1); }
}

.calendar-grid button.today:not(.active)::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 7px;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--color-primary);
  transform: translateX(-50%);
}

.calendar-grid button:disabled {
  background: rgba(255,255,255,.03);
  color: #4b5563;
  cursor: not-allowed;
}

.time-slots {
  display: grid;
  gap: 12px;
  min-height: 44px;
}

.booking-times button {
  position: relative;
  width: 100%;
  height: 44px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,.18);
  background: transparent;
  color: var(--color-white);
  font-weight: 600;
  cursor: pointer;
  transition: .25s ease;
}

.booking-times button:hover {
  border-color: var(--color-primary);
  background: rgba(var(--color-primary-rgb),.18);
}

.booking-times button.active {
  border-color: var(--color-primary);
  background: var(--color-primary);
  color: var(--color-white);
  box-shadow: 0 10px 25px rgba(var(--color-primary-rgb),.4);
  padding-right: 30px;
}

.booking-times button.active::after {
  content: "✓";
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 13px;
  font-weight: 900;
  animation: bookingCheckIn .3s cubic-bezier(.34,1.56,.64,1);
}

.booking-summary {
  display: none;
  align-items: center;
  gap: 10px;
  margin-top: 16px;
  padding: 12px 14px;
  border-radius: 12px;
  background: rgba(var(--color-primary-rgb), .12);
  border: 1px solid rgba(var(--color-primary-rgb), .35);
}

.booking-summary.is-visible {
  display: flex;
  animation: bookingCheckIn .3s cubic-bezier(.34,1.56,.64,1);
}

.booking-summary-icon {
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--color-primary);
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 900;
}

.booking-summary-text {
  font-size: 13.5px;
  line-height: 1.5;
  color: var(--color-white);
}

.booking-summary-text strong {
  color: var(--color-white);
}

.booking-note {
  margin-top: 16px;
  font-size: 13px;
  line-height: 1.6;
  color: var(--color-text-secondary);
  min-height: 38px;
}

.booking-submit {
  display: block;
  margin-top: 14px;
  padding: 15px 20px;
  border-radius: 999px;
  background: var(--color-primary);
  color: var(--color-white);
  text-align: center;
  text-decoration: none;
  font-weight: 800;
  transition: .3s ease;
}

.booking-submit:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 45px rgba(var(--color-primary-rgb),.35);
}

@media (max-width: 992px) {
  .booking-card {
    grid-template-columns: 1fr;
  }
  .booking-info,
  .booking-calendar {
    border-right: 0;
    border-bottom: 1px solid rgba(255,255,255,.08);
  }
  .booking-head h2 {
    font-size: 40px;
  }
}

@media (max-width: 768px) {
  .booking-section {
    padding: 90px 0;
  }
  .booking-head h2 {
    font-size: 34px;
  }
  .booking-info,
  .booking-calendar,
  .booking-times {
    padding: 24px;
  }
  .calendar-grid button {
    height: 44px;
  }
}

/* =========================
   FOOTER
========================= */

.footer{
    position:relative;
    overflow:hidden;
    padding:90px 0 30px;
    background:#03060b;
}

/* Arka plan grid */
.footer::before{
    content:"";
    position:absolute;
    inset:0;
    background-image:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
    background-size:80px 80px;
    opacity:.25;
}

/* Üstte premium border */
.footer::after{
    content:"";
    position:absolute;
    top:0;
    left:50%;
    transform:translateX(-50%);
    width:75%;
    height:1px;
    background:linear-gradient(
        90deg,
        transparent,
        rgba(var(--color-primary-rgb),.55),
        rgba(255,255,255,.18),
        rgba(var(--color-primary-rgb),.55),
        transparent
    );
    box-shadow:
        0 0 12px rgba(var(--color-primary-rgb),.35);
}

/* içerik */

.footer-wrapper,
.footer-bottom{
    position:relative;
    z-index:5;
}

.footer-wrapper{
    display:grid;
    grid-template-columns:1.4fr .9fr .9fr 1.2fr;
    gap:60px;
    padding-bottom:60px;
}

/* Logo */

.footer-brand img{
    width:165px;
    margin-bottom:24px;
}

.footer-brand p{
    max-width:360px;
    color:var(--color-text-muted);
    line-height:1.8;
    margin-bottom:28px;
}

/* Whatsapp Buton */

.footer-whatsapp{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:14px 26px;
    border-radius:999px;
    background:var(--color-primary);
    color:var(--color-white);
    text-decoration:none;
    font-weight:700;
    transition:.35s;
}

.footer-whatsapp:hover{
    transform:translateY(-5px);
    box-shadow:0 20px 40px rgba(var(--color-primary-rgb),.35);
}

/* Başlıklar */

.footer-col h3{
    font-size:18px;
    margin-bottom:24px;
    color:var(--color-white);
}

.footer-col a,
.footer-col p{
    display:block;
    text-decoration:none;
    color:var(--color-text-muted);
    margin-bottom:14px;
    transition:.3s;
}

.footer-col a:hover{
    color:var(--color-primary);
    transform:translateX(5px);
}

/* Hizmet bölgeleri satırı */

.footer-areas{
    padding-top:24px;
    border-top:1px solid rgba(255,255,255,.06);
    display:flex;
    flex-wrap:wrap;
    align-items:center;
    gap:10px 18px;
    font-size:13px;
}

.footer-areas span{
    color:var(--color-text-muted);
    font-weight:600;
}

.footer-areas a{
    color:#c7d0dc;
    text-decoration:none;
    transition:.3s;
}

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

/* Alt kısım */

.footer-bottom{
    padding-top:28px;
    border-top:1px solid rgba(255,255,255,.06);
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:20px;
    color:#6f7b8d;
    font-size:14px;
}

/* Responsive */

@media(max-width:992px){
.footer-wrapper{
grid-template-columns:1fr 1fr;
gap:45px;
}
}

@media(max-width:768px){
.footer{
padding:70px 0 25px;
}
.footer::after{
width:92%;
}
.footer-wrapper{
grid-template-columns:1fr;
gap:35px;
padding-bottom:40px;
}
.footer-bottom{
flex-direction:column;
text-align:center;
}
.footer-brand img{
margin:auto auto 20px;
}
.footer-brand{
text-align:center;
}
.footer-brand p{
margin:0 auto 25px;
}
}

.project-card video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.project-card.playing::after {
  opacity: 0;
  transition: opacity .3s ease;
}

.project-card.playing .play-btn,
.project-card.playing h3 {
  opacity: 0;
  pointer-events: none;
}

/* Oynatma sırasında kart üzerine gelince duraklatma göstergesi belirir —
   önceden video oynarken hiçbir kontrol görünmüyordu, artık netleşiyor. */
.project-card.playing .pause-indicator {
  opacity: 0;
  position: absolute;
  z-index: 3;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) scale(.85);
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(0, 0, 0, .45);
  backdrop-filter: blur(8px);
  display: grid;
  place-items: center;
  pointer-events: none;
  transition: opacity .25s ease, transform .25s ease;
}

.project-card.playing:hover .pause-indicator {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.pause-indicator span {
  display: flex;
  gap: 5px;
}

.pause-indicator span::before,
.pause-indicator span::after {
  content: "";
  width: 5px;
  height: 20px;
  border-radius: 2px;
  background: var(--color-white);
}

.project-card.playing .video-progress {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
  height: 3px;
  background: rgba(255, 255, 255, .18);
}

.project-card .video-progress-bar {
  height: 100%;
  width: 0%;
  background: var(--color-primary);
  transition: width .15s linear;
}

/* Buffering / loading state — prevents jarring flashes while video buffers */
.project-card.buffering .play-btn {
  opacity: 0;
}

.project-card.buffering::before {
  content: "";
  position: absolute;
  z-index: 4;
  top: 50%;
  left: 50%;
  width: 34px;
  height: 34px;
  margin: -17px 0 0 -17px;
  border-radius: 50%;
  border: 3px solid rgba(255,255,255,.25);
  border-top-color: var(--color-primary);
  animation: spin .8s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* ================================
   PREMIUM HAMBURGER MENU
================================ */

body.menu-open {
  overflow: hidden;
}

.hamburger {
  display: none;
  position: relative;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  cursor: pointer;
  z-index: 1002;
  transition:
    background 0.3s ease,
    border-color 0.3s ease,
    transform 0.3s ease;
}

.hamburger:hover {
  border-color: rgba(var(--color-primary-rgb), 0.75);
  background: rgba(var(--color-primary-rgb), 0.14);
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 5px auto;
  border-radius: 999px;
  background: var(--color-white);
  transform-origin: center;
  transition:
    transform 0.3s ease,
    opacity 0.25s ease;
}

.mobile-menu-overlay {
  position: fixed;
  inset: 0;
  z-index: 997;
  background: rgba(0, 0, 0, 0.58);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity 0.35s ease,
    visibility 0.35s ease;
}

.mobile-menu-overlay.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

@media (max-width: 900px) {
  .hamburger {
    display: block;
  }
  .navbar {
    display: block;
    position: fixed;
    top: 0;
    right: -100%;
    width: min(84%, 380px);
    height: 100dvh;
    padding: 110px 28px 40px;
    background:
      radial-gradient(
        circle at 100% 0%,
        rgba(var(--color-primary-rgb), 0.2),
        transparent 38%
      ),
      rgba(5, 7, 11, 0.97);
    border-left: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(22px);
    -webkit-backdrop-filter: blur(22px);
    box-shadow: -30px 0 80px rgba(0, 0, 0, 0.55);
    overflow-y: auto;
    z-index: 999;
    transition: right 0.38s cubic-bezier(0.22, 1, 0.36, 1);
  }
  .navbar.active {
    right: 0;
  }
  .navbar .menu {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
  }
  .navbar .menu li {
    width: 100%;
    opacity: 0;
    transform: translateX(24px);
    transition:
      opacity 0.3s ease,
      transform 0.3s ease;
  }
  .navbar.active .menu li {
    opacity: 1;
    transform: translateX(0);
  }
  .navbar.active .menu li:nth-child(1) {
    transition-delay: 0.06s;
  }
  .navbar.active .menu li:nth-child(2) {
    transition-delay: 0.1s;
  }
  .navbar.active .menu li:nth-child(3) {
    transition-delay: 0.14s;
  }
  .navbar.active .menu li:nth-child(4) {
    transition-delay: 0.18s;
  }
  .navbar.active .menu li:nth-child(5) {
    transition-delay: 0.22s;
  }
  .navbar.active .menu li:nth-child(6) {
    transition-delay: 0.26s;
  }
  .navbar.active .menu li:nth-child(7) {
    transition-delay: 0.3s;
  }
  .navbar.active .menu li:nth-child(8) {
    transition-delay: 0.34s;
  }
  .navbar .menu li a {
    display: flex;
    align-items: center;
    width: 100%;
    min-height: 58px;
    padding: 14px 4px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--color-white);
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    transition:
      color 0.3s ease,
      padding-left 0.3s ease;
  }
  .navbar .menu li a:hover,
  .navbar .menu li a.active {
    color: var(--color-primary);
    padding-left: 10px;
  }
  .navbar .menu li:last-child {
    margin-top: 22px;
  }
  .navbar .menu li:last-child a {
    justify-content: center;
    min-height: 52px;
    padding: 13px 22px;
    border: 1px solid var(--color-primary);
    border-radius: 999px;
    background: var(--color-primary);
    color: var(--color-white);
  }
  .navbar .menu li:last-child a:hover {
    padding-left: 22px;
    background: var(--color-white);
    border-color: var(--color-white);
    color: #111111;
  }
  .hamburger.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }
  .hamburger.active span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
  }
  .hamburger.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }
}

@media (min-width: 901px) {
  .mobile-menu-overlay {
    display: none;
  }
}

/* ==================================================
   HAKKIMIZDA SAYFASI
   Bu kodu style.css dosyasının en altına ekleyin.
================================================== */

.menu li a.active {
  color: var(--color-primary);
}

/* HERO */
.about-page-hero {
  position: relative;
  min-height: 760px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--color-bg-900);
  color: var(--color-white);
}

.about-page-hero-media,
.about-page-hero-overlay {
  position: absolute;
  inset: 0;
}

.about-page-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-page-hero-overlay {
  background:
    linear-gradient(90deg, rgba(3, 6, 11, .96) 0%, rgba(3, 6, 11, .72) 48%, rgba(3, 6, 11, .26) 100%),
    linear-gradient(0deg, rgba(3, 6, 11, .82) 0%, transparent 48%);
}

.about-page-hero-content {
  position: relative;
  z-index: 3;
  padding-top: 90px;
}

.about-page-hero-content h1 {
  max-width: 900px;
  margin: 28px 0 26px;
  font-size: clamp(52px, 7vw, 88px);
  line-height: .98;
  letter-spacing: -3px;
}

.about-page-hero-content p {
  max-width: 690px;
  color: var(--color-text-pale);
  font-size: 18px;
  line-height: 1.85;
}

.about-page-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 38px;
}

.about-page-outline-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 13px 28px;
  border: 1px solid rgba(255, 255, 255, .24);
  border-radius: 999px;
  color: var(--color-white);
  text-decoration: none;
  font-weight: 800;
  transition: .3s ease;
}

.about-page-outline-btn:hover {
  border-color: var(--color-primary);
  background: rgba(var(--color-primary-rgb), .12);
  transform: translateY(-4px);
}

.about-page-scroll {
  position: absolute;
  z-index: 4;
  right: 5%;
  bottom: 42px;
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--color-text-light);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 3px;
  text-transform: uppercase;
  transform: rotate(90deg);
  transform-origin: right bottom;
}

.about-page-scroll i {
  width: 60px;
  height: 1px;
  background: linear-gradient(90deg, var(--color-primary), transparent);
}

/* STORY */
.about-story {
  position: relative;
  overflow: hidden;
  padding: 140px 0;
  background: var(--color-bg-800);
  color: var(--color-white);
}

.about-story::before,
.about-values::before,
.about-process::before,
.about-workshop::before,
.about-faq::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
  background-size: 80px 80px;
  opacity: .26;
  pointer-events: none;
}

.about-story-wrapper {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  align-items: center;
  gap: 90px;
}

.about-story-media {
  position: relative;
  min-height: 650px;
}

.about-story-main-image {
  width: 82%;
  height: 590px;
  overflow: hidden;
  border-radius: 30px;
  box-shadow: 0 40px 110px rgba(0,0,0,.55);
}

.about-story-main-image img,
.about-story-small-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-story-small-image {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 47%;
  height: 290px;
  overflow: hidden;
  border: 10px solid var(--color-bg-800);
  border-radius: 24px;
  box-shadow: 0 30px 70px rgba(0,0,0,.5);
}

.about-story-badge {
  position: absolute;
  left: -28px;
  bottom: 72px;
  min-width: 180px;
  padding: 24px 28px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 22px;
  background: rgba(7,11,18,.78);
  backdrop-filter: blur(16px);
}

.about-story-badge strong {
  display: block;
  color: var(--color-primary);
  font-size: 42px;
}

.about-story-badge span {
  color: var(--color-white);
  font-weight: 700;
}

.about-story-content h2,
.about-workshop-content h2 {
  margin: 26px 0;
  font-size: 54px;
  line-height: 1.08;
}

.about-story-content > p,
.about-workshop-content > p {
  margin-bottom: 20px;
  color: var(--color-text-soft);
  font-size: 16px;
  line-height: 1.9;
}

.about-story-signature {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 38px;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,.1);
}

.about-story-signature strong,
.about-story-signature span {
  display: block;
}

.about-story-signature span {
  margin-top: 4px;
  color: #7f8ca0;
  font-size: 14px;
}

.about-story-signature a {
  color: var(--color-white);
  text-decoration: none;
  font-weight: 800;
}

.about-story-signature a:hover {
  color: var(--color-primary);
}

/* VALUES */
.about-values {
  position: relative;
  overflow: hidden;
  padding: 130px 0;
  background: var(--color-bg-900);
  color: var(--color-white);
}

.about-values .container,
.about-process .container,
.about-faq .container {
  position: relative;
  z-index: 2;
}

.about-values-head,
.about-process-head,
.about-faq-head {
  max-width: 820px;
  margin: 0 auto 70px;
  text-align: center;
}

.about-values-head > span,
.about-process-head > span,
.about-faq-head > span {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--color-primary);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 4px;
}

.about-values-head > span::before,
.about-values-head > span::after,
.about-process-head > span::before,
.about-process-head > span::after,
.about-faq-head > span::before,
.about-faq-head > span::after {
  content: "";
  width: 36px;
  height: 2px;
  background: var(--color-primary);
}

.about-values-head h2,
.about-process-head h2,
.about-faq-head h2 {
  margin-top: 22px;
  font-size: 52px;
  line-height: 1.1;
}

.about-values-head p,
.about-process-head p {
  margin-top: 22px;
  color: var(--color-text-soft);
  line-height: 1.8;
}

.about-values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.about-value-card {
  position: relative;
  isolation: isolate;
  overflow: hidden;

  min-height: 300px;
  padding: 34px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 24px;

  background: rgba(255, 255, 255, 0.035);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);

  color: var(--color-white);
  text-decoration: none;

  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.06) inset;

  transition: transform 0.4s cubic-bezier(0.22, 0.9, 0.3, 1),
              border-color 0.4s ease,
              box-shadow 0.4s ease,
              background 0.4s ease;
}

.about-value-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0;
  background: radial-gradient(
    circle at 30% 0%,
    rgba(var(--color-primary-rgb), 0.16),
    transparent 60%
  );
  transition: opacity 0.4s ease;
}

.about-value-card:hover {
  transform: translateY(-10px);
  border-color: rgba(var(--color-primary-rgb), 0.55);
  background: rgba(255, 255, 255, 0.055);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.08) inset,
    0 30px 70px rgba(0, 0, 0, 0.4);
}

.about-value-card:hover::before {
  opacity: 1;
}

.about-value-card > span:first-child {
  display: inline-flex;
  width: 54px;
  height: 54px;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  background: rgba(var(--color-primary-rgb), 0.13);
  color: var(--color-primary);
  font-size: 19px;
  transition: background 0.4s ease, color 0.4s ease, transform 0.4s ease;
}

.about-value-card:hover > span:first-child {
  background: var(--color-primary);
  color: var(--color-white);
  transform: scale(1.06);
}

.about-value-card h3 {
  margin: 34px 0 14px;
  font-size: 23px;
}

.about-value-card p {
  color: var(--color-text-muted);
  line-height: 1.8;
}

.about-value-card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 22px;
  color: var(--color-primary);
  font-size: 14px;
  font-weight: 700;
  transition: gap 0.3s ease;
}

.about-value-card:hover .about-value-card-link {
  gap: 12px;
}

/* MISSION */
.about-mission {
  padding: 120px 0;
  background: var(--color-bg-800);
  color: var(--color-white);
}

.about-mission-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.about-mission-card {
  position: relative;
  min-height: 440px;
  overflow: hidden;
  padding: 54px;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 30px;
  background:
    radial-gradient(circle at 100% 0%, rgba(var(--color-primary-rgb),.18), transparent 38%),
    rgba(255,255,255,.035);
}

.about-card-number {
  position: absolute;
  right: 34px;
  top: 16px;
  color: rgba(255,255,255,.04);
  font-size: 130px;
  font-weight: 900;
  line-height: 1;
}

.about-mission-card h2 {
  position: relative;
  z-index: 2;
  max-width: 570px;
  margin: 28px 0 22px;
  font-size: 40px;
  line-height: 1.14;
}

.about-mission-card p {
  position: relative;
  z-index: 2;
  color: var(--color-text-faint);
  line-height: 1.85;
}

/* PROCESS */
.about-process {
  position: relative;
  overflow: hidden;
  padding: 130px 0;
  background: var(--color-bg-900);
  color: var(--color-white);
}

.about-process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.about-process-item {
  position: relative;
  min-height: 290px;
  padding: 18px 34px 30px;
  border-right: 1px solid rgba(255,255,255,.1);
}

.about-process-item:last-child {
  border-right: 0;
}

.about-process-icon {
  display: grid;
  width: 76px;
  height: 76px;
  place-items: center;
  border: 1px solid rgba(var(--color-primary-rgb),.45);
  border-radius: 50%;
  background: rgba(var(--color-primary-rgb),.09);
  color: var(--color-primary);
  font-size: 18px;
  font-weight: 900;
}

.about-process-item:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 55px;
  left: 110px;
  right: -28px;
  height: 1px;
  background: linear-gradient(90deg, rgba(var(--color-primary-rgb),.55), rgba(255,255,255,.06));
}

.about-process-item h3 {
  margin: 32px 0 14px;
  font-size: 22px;
}

.about-process-item p {
  color: var(--color-text-muted);
  line-height: 1.8;
}

/* STATS */
.about-stats {
  padding: 70px 0;
  background: var(--color-primary);
  color: var(--color-white);
}

.about-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.about-stat-item {
  padding: 22px 34px;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,.24);
}

.about-stat-item:last-child {
  border-right: 0;
}

.about-stat-item strong {
  display: block;
  font-size: 52px;
  line-height: 1;
}

.about-stat-item span {
  display: block;
  margin-top: 12px;
  font-weight: 700;
}

/* WORKSHOP */
.about-workshop {
  position: relative;
  overflow: hidden;
  padding: 140px 0;
  background: var(--color-bg-800);
  color: var(--color-white);
}

.about-workshop-wrapper {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  align-items: center;
  gap: 80px;
}

.about-workshop-list {
  display: grid;
  gap: 16px;
  margin: 30px 0 38px;
  list-style: none;
}

.about-workshop-list li {
  position: relative;
  padding-left: 34px;
  color: #d3dae4;
}

.about-workshop-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--color-primary);
  font-weight: 900;
}

.about-workshop-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-auto-rows: 230px;
  gap: 18px;
}

.about-workshop-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 22px;
  border: 1px solid rgba(255,255,255,.08);
}

.about-workshop-large {
  grid-column: span 2;
}

/* FAQ */
.about-faq {
  position: relative;
  overflow: hidden;
  padding: 130px 0;
  background: var(--color-bg-900);
  color: var(--color-white);
}

.about-faq-list {
  max-width: 920px;
  margin: 0 auto;
  display: grid;
  gap: 14px;
}

.about-faq-item {
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 18px;
  background: rgba(255,255,255,.035);
  overflow: hidden;
}

.about-faq-item summary {
  position: relative;
  padding: 24px 70px 24px 26px;
  cursor: pointer;
  list-style: none;
  font-size: 18px;
  font-weight: 800;
}

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

.about-faq-item summary::after {
  content: "+";
  position: absolute;
  right: 26px;
  top: 50%;
  color: var(--color-primary);
  font-size: 28px;
  transform: translateY(-50%);
}

.about-faq-item[open] summary::after {
  content: "−";
}

.about-faq-item p {
  padding: 0 26px 26px;
  color: var(--color-text-muted);
  line-height: 1.8;
}

/* CTA */
.about-cta {
  padding: 100px 0;
  background: var(--color-bg-800);
  color: var(--color-white);
}

.about-cta-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
  padding: 60px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 30px;
  background:
    radial-gradient(circle at 90% 50%, rgba(var(--color-primary-rgb),.26), transparent 34%),
    rgba(255,255,255,.04);
}

.about-cta-card > div:first-child {
  max-width: 720px;
}

.about-cta-card span {
  color: var(--color-primary);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 3px;
}

.about-cta-card h2 {
  margin: 18px 0;
  font-size: 48px;
  line-height: 1.08;
}

.about-cta-card p {
  color: var(--color-text-faint);
}

.about-cta-actions {
  display: flex;
  flex-direction: column;
  min-width: 260px;
  gap: 14px;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .about-story-wrapper,
  .about-workshop-wrapper {
    grid-template-columns: 1fr;
  }
  .about-values-grid,
  .about-process-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .about-process-item:nth-child(2) {
    border-right: 0;
  }
  .about-process-item:not(:last-child)::after {
    display: none;
  }
  .about-mission-card {
    padding: 44px;
  }
  .about-stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .about-stat-item:nth-child(2) {
    border-right: 0;
  }
  .about-stat-item:nth-child(-n+2) {
    border-bottom: 1px solid rgba(255,255,255,.24);
  }
  .about-cta-card {
    align-items: flex-start;
    flex-direction: column;
  }
  .about-cta-actions {
    width: 100%;
    flex-direction: row;
  }
}

@media (max-width: 768px) {
  .about-page-hero {
    min-height: 680px;
  }
  .about-page-hero-overlay {
    background: linear-gradient(0deg, rgba(3,6,11,.97), rgba(3,6,11,.55));
  }
  .about-page-hero-content h1 {
    font-size: 48px;
    letter-spacing: -2px;
  }
  .about-page-scroll {
    display: none;
  }
  .about-story,
  .about-values,
  .about-process,
  .about-workshop,
  .about-faq {
    padding: 90px 0;
  }
  .about-story-media {
    min-height: 520px;
  }
  .about-story-main-image {
    height: 470px;
  }
  .about-story-small-image {
    height: 220px;
  }
  .about-story-badge {
    left: 14px;
    bottom: 42px;
  }
  .about-story-content h2,
  .about-workshop-content h2,
  .about-values-head h2,
  .about-process-head h2,
  .about-faq-head h2 {
    font-size: 38px;
  }
  .about-mission-grid,
  .about-values-grid,
  .about-process-grid {
    grid-template-columns: 1fr;
  }
  .about-value-card {
    min-height: auto;
  }
  .about-process-item {
    min-height: auto;
    padding: 20px 0 36px;
    border-right: 0;
    border-bottom: 1px solid rgba(255,255,255,.1);
  }
  .about-process-item:last-child {
    border-bottom: 0;
  }
  .about-mission-card {
    min-height: auto;
  }
  .about-workshop-gallery {
    grid-auto-rows: 190px;
  }
  .about-cta {
    padding: 80px 0;
  }
  .about-cta-card {
    padding: 38px;
  }
  .about-cta-card h2 {
    font-size: 38px;
  }
}

@media (max-width: 600px) {
  .about-page-hero {
    min-height: 650px;
  }
  .about-page-hero-content {
    padding-top: 70px;
  }
  .about-page-hero-content h1 {
    margin-top: 20px;
    font-size: 39px;
    line-height: 1.04;
    letter-spacing: -1.5px;
  }
  .about-page-hero-content p {
    font-size: 15px;
  }
  .about-page-hero-actions,
  .about-cta-actions {
    flex-direction: column;
  }
  .about-page-hero-actions a,
  .about-cta-actions a {
    width: 100%;
    text-align: center;
  }
  .about-story-media {
    min-height: auto;
    padding-bottom: 200px;
  }
  .about-story-main-image {
    width: 100%;
    height: 390px;
  }
  .about-story-small-image {
    right: 0;
    bottom: 0;
    width: 64%;
    height: 210px;
  }
  .about-story-badge {
    left: 12px;
    bottom: 46px;
    min-width: 150px;
    padding: 18px 20px;
  }
  .about-story-badge strong {
    font-size: 34px;
  }
  .about-story-content h2,
  .about-workshop-content h2,
  .about-values-head h2,
  .about-process-head h2,
  .about-faq-head h2 {
    font-size: 32px;
  }
  .about-story-signature {
    align-items: flex-start;
    flex-direction: column;
  }
  .about-mission {
    padding: 80px 0;
  }
  .about-mission-card {
    padding: 32px 26px;
    border-radius: 24px;
  }
  .about-mission-card h2 {
    font-size: 31px;
  }
  .about-card-number {
    font-size: 90px;
  }
  .about-stats {
    padding: 40px 0;
  }
  .about-stats-grid {
    grid-template-columns: 1fr;
  }
  .about-stat-item,
  .about-stat-item:nth-child(2) {
    border-right: 0;
    border-bottom: 1px solid rgba(255,255,255,.24);
  }
  .about-stat-item:last-child {
    border-bottom: 0;
  }
  .about-workshop-gallery {
    grid-template-columns: 1fr;
    grid-auto-rows: 230px;
  }
  .about-workshop-large {
    grid-column: auto;
  }
  .about-values-head,
  .about-process-head,
  .about-faq-head {
    margin-bottom: 48px;
  }
  .about-values-head > span,
  .about-process-head > span,
  .about-faq-head > span {
    font-size: 10px;
    letter-spacing: 2.5px;
  }
  .about-values-head > span::before,
  .about-values-head > span::after,
  .about-process-head > span::before,
  .about-process-head > span::after,
  .about-faq-head > span::before,
  .about-faq-head > span::after {
    width: 20px;
  }
  .about-faq-item summary {
    padding: 21px 56px 21px 20px;
    font-size: 16px;
  }
  .about-faq-item p {
    padding: 0 20px 22px;
  }
  .about-cta-card {
    padding: 30px 24px;
    border-radius: 24px;
  }
  .about-cta-card h2 {
    font-size: 32px;
  }
}

/* ==================================================
   HİZMETLERİMİZ SAYFASI
   Bu kodu style.css dosyasının en altına ekleyin.
================================================== */

/* HERO */
.services-page-hero {
  position: relative;
  min-height: 760px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--color-bg-900);
  color: var(--color-white);
}

.services-page-hero-media,
.services-page-hero-overlay {
  position: absolute;
  inset: 0;
}

.services-page-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.services-page-hero-overlay {
  background:
    linear-gradient(90deg, rgba(3,6,11,.97) 0%, rgba(3,6,11,.72) 48%, rgba(3,6,11,.24) 100%),
    linear-gradient(0deg, rgba(3,6,11,.82) 0%, transparent 48%);
}

.services-page-hero-content {
  position: relative;
  z-index: 3;
  padding-top: 90px;
}

.services-page-hero-content h1 {
  max-width: 920px;
  margin: 28px 0 26px;
  font-size: clamp(52px, 7vw, 88px);
  line-height: .98;
  letter-spacing: -3px;
}

.services-page-hero-content p {
  max-width: 720px;
  color: var(--color-text-pale);
  font-size: 18px;
  line-height: 1.85;
}

.services-page-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 38px;
}

/* INTRO */
.services-intro {
  position: relative;
  overflow: hidden;
  padding: 130px 0;
  background: var(--color-bg-900);
  color: var(--color-white);
}

.services-intro::before,
.services-process::before,
.services-faq::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
  background-size: 80px 80px;
  opacity: .25;
  pointer-events: none;
}

.services-intro .container,
.services-process .container,
.services-faq .container {
  position: relative;
  z-index: 2;
}

.services-intro-head,
.services-process-head,
.services-faq-head {
  max-width: 860px;
  margin: 0 auto 70px;
  text-align: center;
}

.services-intro-head > span,
.services-process-head > span,
.services-faq-head > span {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--color-primary);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 4px;
}

.services-intro-head > span::before,
.services-intro-head > span::after,
.services-process-head > span::before,
.services-process-head > span::after,
.services-faq-head > span::before,
.services-faq-head > span::after {
  content: "";
  width: 36px;
  height: 2px;
  background: var(--color-primary);
}

.services-intro-head h2,
.services-process-head h2,
.services-faq-head h2 {
  margin-top: 22px;
  font-size: 52px;
  line-height: 1.1;
}

.services-intro-head p,
.services-process-head p {
  margin-top: 22px;
  color: var(--color-text-soft);
  line-height: 1.8;
}

.services-overview-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.services-overview-card {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: 310px;
  padding: 34px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.035);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  color: var(--color-white);
  text-decoration: none;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.06) inset;
  transition: transform 0.4s cubic-bezier(0.22, 0.9, 0.3, 1),
              border-color 0.4s ease,
              box-shadow 0.4s ease,
              background 0.4s ease;
}

.services-overview-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0;
  background: radial-gradient(
    circle at 30% 0%,
    rgba(var(--color-primary-rgb), 0.16),
    transparent 60%
  );
  transition: opacity 0.4s ease;
}

.services-overview-card:hover {
  transform: translateY(-10px);
  border-color: rgba(var(--color-primary-rgb), 0.55);
  background: rgba(255, 255, 255, 0.055);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.08) inset,
    0 30px 70px rgba(0, 0, 0, 0.4);
}

.services-overview-card:hover::before {
  opacity: 1;
}

.services-overview-card > span {
  display: inline-flex;
  width: 54px;
  height: 54px;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  background: rgba(var(--color-primary-rgb), 0.13);
  color: var(--color-primary);
  font-weight: 800;
  transition: background 0.4s ease, transform 0.4s ease;
}

.services-overview-card:hover > span {
  background: var(--color-primary);
  color: var(--color-white);
  transform: scale(1.06);
}

.services-overview-card h3 {
  margin: 32px 0 14px;
  font-size: 24px;
}

.services-overview-card p {
  color: var(--color-text-muted);
  line-height: 1.8;
}

.services-overview-card strong {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 28px;
  color: var(--color-primary);
  font-size: 14px;
  font-weight: 700;
  transition: gap 0.3s ease;
}

.services-overview-card:hover strong {
  gap: 12px;
}

/* SERVICE DETAIL */
.service-detail {
  padding: 130px 0;
  background: var(--color-bg-800);
  color: var(--color-white);
}

.service-detail:nth-of-type(even) {
  background: var(--color-bg-900);
}

.service-detail-wrapper {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  align-items: center;
  gap: 85px;
}

.service-detail-reverse .service-detail-media {
  order: 2;
}

.service-detail-reverse .service-detail-content {
  order: 1;
}

.service-detail-media {
  position: relative;
}

.service-detail-media img {
  width: 100%;
  height: 590px;
  object-fit: cover;
  border-radius: 30px;
  box-shadow: 0 40px 110px rgba(0,0,0,.5);
}

.service-detail-label {
  position: absolute;
  left: -24px;
  bottom: 34px;
  min-width: 210px;
  padding: 20px 24px;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 20px;
  background: rgba(7,11,18,.82);
  backdrop-filter: blur(16px);
}

.service-detail-label span,
.service-detail-label strong {
  display: block;
}

.service-detail-label span {
  color: var(--color-primary);
  font-weight: 900;
}

.service-detail-label strong {
  margin-top: 4px;
  color: var(--color-white);
}

.service-detail-content h2 {
  margin: 26px 0;
  font-size: 52px;
  line-height: 1.08;
}

.service-detail-content > p {
  margin-bottom: 18px;
  color: var(--color-text-soft);
  line-height: 1.9;
}

.service-feature-list {
  display: grid;
  gap: 15px;
  margin: 30px 0 38px;
  list-style: none;
}

.service-feature-list li {
  position: relative;
  padding-left: 34px;
  color: #d3dae4;
}

.service-feature-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--color-primary);
  font-weight: 900;
}

/* PROCESS */
.services-process {
  position: relative;
  overflow: hidden;
  padding: 130px 0;
  background: var(--color-bg-900);
  color: var(--color-white);
}

.services-process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.services-process-card {
  min-height: 270px;
  padding: 34px;
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 24px;
  background: rgba(255,255,255,.035);
}

.services-process-card span {
  display: inline-flex;
  width: 58px;
  height: 58px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(var(--color-primary-rgb),.12);
  color: var(--color-primary);
  font-weight: 900;
}

.services-process-card h3 {
  margin: 30px 0 14px;
  font-size: 23px;
}

.services-process-card p {
  color: var(--color-text-muted);
  line-height: 1.8;
}

/* WHY */
.services-why {
  padding: 140px 0;
  background: var(--color-bg-800);
  color: var(--color-white);
}

.services-why-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  align-items: center;
  gap: 85px;
}

.services-why-content h2 {
  margin: 26px 0;
  font-size: 54px;
  line-height: 1.08;
}

.services-why-content > p {
  color: var(--color-text-soft);
  line-height: 1.9;
}

.services-why-list {
  display: grid;
  gap: 24px;
  margin-top: 36px;
}

.services-why-item {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 18px;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,.09);
}

.services-why-item > strong {
  color: var(--color-primary);
  font-size: 18px;
}

.services-why-item h3 {
  margin-bottom: 8px;
  font-size: 21px;
}

.services-why-item p {
  color: var(--color-text-muted);
  line-height: 1.7;
}

.services-why-media {
  position: relative;
}

.services-why-media img {
  width: 100%;
  height: 650px;
  object-fit: cover;
  border-radius: 30px;
  box-shadow: 0 40px 110px rgba(0,0,0,.5);
}

.services-why-glass {
  position: absolute;
  right: -28px;
  bottom: 50px;
  padding: 24px 28px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 22px;
  background: rgba(7,11,18,.76);
  backdrop-filter: blur(16px);
}

.services-why-glass strong,
.services-why-glass span {
  display: block;
}

.services-why-glass strong {
  color: var(--color-primary);
  font-size: 40px;
}

.services-why-glass span {
  color: var(--color-white);
  font-weight: 700;
}

/* FAQ */
.services-faq {
  position: relative;
  overflow: hidden;
  padding: 130px 0;
  background: var(--color-bg-900);
  color: var(--color-white);
}

.services-faq-list {
  max-width: 920px;
  margin: 0 auto;
  display: grid;
  gap: 14px;
}

.services-faq-item {
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 18px;
  background: rgba(255,255,255,.035);
}

.services-faq-item summary {
  position: relative;
  padding: 24px 70px 24px 26px;
  cursor: pointer;
  list-style: none;
  font-size: 18px;
  font-weight: 800;
}

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

.services-faq-item summary::after {
  content: "+";
  position: absolute;
  right: 26px;
  top: 50%;
  color: var(--color-primary);
  font-size: 28px;
  transform: translateY(-50%);
}

.services-faq-item[open] summary::after {
  content: "−";
}

.services-faq-item p {
  padding: 0 26px 26px;
  color: var(--color-text-muted);
  line-height: 1.8;
}

/* CTA */
.services-cta {
  padding: 100px 0;
  background: var(--color-bg-800);
  color: var(--color-white);
}

.services-cta-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
  padding: 60px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 30px;
  background:
    radial-gradient(circle at 90% 50%, rgba(var(--color-primary-rgb),.26), transparent 34%),
    rgba(255,255,255,.04);
}

.services-cta-card > div:first-child {
  max-width: 720px;
}

.services-cta-card span {
  color: var(--color-primary);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 3px;
}

.services-cta-card h2 {
  margin: 18px 0;
  font-size: 48px;
  line-height: 1.08;
}

.services-cta-card p {
  color: var(--color-text-faint);
}

.services-cta-actions {
  display: flex;
  flex-direction: column;
  min-width: 260px;
  gap: 14px;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .services-overview-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .service-detail-wrapper,
  .services-why-wrapper {
    grid-template-columns: 1fr;
  }
  .service-detail-reverse .service-detail-media,
  .service-detail-reverse .service-detail-content {
    order: initial;
  }
  .services-process-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .services-cta-card {
    align-items: flex-start;
    flex-direction: column;
  }
  .services-cta-actions {
    width: 100%;
    flex-direction: row;
  }
}

@media (max-width: 768px) {
  .services-page-hero {
    min-height: 680px;
  }
  .services-page-hero-overlay {
    background: linear-gradient(0deg, rgba(3,6,11,.97), rgba(3,6,11,.55));
  }
  .services-page-hero-content h1 {
    font-size: 48px;
    letter-spacing: -2px;
  }
  .services-intro,
  .service-detail,
  .services-process,
  .services-why,
  .services-faq {
    padding: 90px 0;
  }
  .services-intro-head h2,
  .services-process-head h2,
  .services-faq-head h2,
  .service-detail-content h2,
  .services-why-content h2 {
    font-size: 38px;
  }
  .service-detail-media img,
  .services-why-media img {
    height: 480px;
  }
  .service-detail-label {
    left: 16px;
  }
  .services-overview-grid,
  .services-process-grid {
    grid-template-columns: 1fr;
  }
  .services-cta {
    padding: 80px 0;
  }
  .services-cta-card {
    padding: 38px;
  }
  .services-cta-card h2 {
    font-size: 38px;
  }
}

@media (max-width: 600px) {
  .services-page-hero {
    min-height: 650px;
  }
  .services-page-hero-content {
    padding-top: 70px;
  }
  .services-page-hero-content h1 {
    margin-top: 20px;
    font-size: 39px;
    line-height: 1.04;
    letter-spacing: -1.5px;
  }
  .services-page-hero-content p {
    font-size: 15px;
  }
  .services-page-hero-actions,
  .services-cta-actions {
    flex-direction: column;
  }
  .services-page-hero-actions a,
  .services-cta-actions a {
    width: 100%;
    text-align: center;
  }
  .services-intro-head,
  .services-process-head,
  .services-faq-head {
    margin-bottom: 48px;
  }
  .services-intro-head > span,
  .services-process-head > span,
  .services-faq-head > span {
    font-size: 10px;
    letter-spacing: 2.5px;
  }
  .services-intro-head > span::before,
  .services-intro-head > span::after,
  .services-process-head > span::before,
  .services-process-head > span::after,
  .services-faq-head > span::before,
  .services-faq-head > span::after {
    width: 20px;
  }
  .services-intro-head h2,
  .services-process-head h2,
  .services-faq-head h2,
  .service-detail-content h2,
  .services-why-content h2 {
    font-size: 32px;
  }
  .services-overview-card,
  .services-process-card {
    min-height: auto;
  }
  .service-detail-media img,
  .services-why-media img {
    height: 380px;
    border-radius: 24px;
  }
  .service-detail-label {
    right: 16px;
    min-width: auto;
  }
  .services-why-glass {
    right: 14px;
    bottom: 22px;
  }
  .services-faq-item summary {
    padding: 21px 56px 21px 20px;
    font-size: 16px;
  }
  .services-faq-item p {
    padding: 0 20px 22px;
  }
  .services-cta-card {
    padding: 30px 24px;
    border-radius: 24px;
  }
  .services-cta-card h2 {
    font-size: 32px;
  }
}

/* ==================================================
   PROFESYONEL HİZMET PAKETLERİ SAYFASI
   Önceki hizmet paketleri CSS kodunu silip
   bu kodu style.css dosyasının en altına ekleyin.
================================================== */

.packages-premium-hero {
  position: relative;
  min-height: 820px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--color-bg-900);
  color: var(--color-white);
}

.packages-premium-media,
.packages-premium-overlay {
  position: absolute;
  inset: 0;
}

.packages-premium-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.packages-premium-overlay {
  background:
    linear-gradient(90deg, rgba(3,6,11,.98) 0%, rgba(3,6,11,.82) 48%, rgba(3,6,11,.34) 100%),
    linear-gradient(0deg, rgba(3,6,11,.88) 0%, transparent 48%);
}

.packages-premium-content {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 70px;
  align-items: end;
  padding-top: 120px;
  padding-bottom: 70px;
}

.packages-premium-copy h1 {
  max-width: 900px;
  margin: 28px 0 26px;
  font-size: clamp(54px, 7vw, 88px);
  line-height: .98;
  letter-spacing: -3px;
}

.packages-premium-copy p {
  max-width: 690px;
  color: var(--color-text-pale);
  font-size: 18px;
  line-height: 1.85;
}

.packages-premium-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 38px;
}

.packages-premium-summary {
  display: grid;
  gap: 14px;
}

.packages-summary-card {
  padding: 22px 24px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 20px;
  background: rgba(7,11,18,.58);
  backdrop-filter: blur(16px);
}

.packages-summary-card span {
  color: var(--color-primary);
  font-size: 12px;
  font-weight: 900;
}

.packages-summary-card strong {
  display: block;
  margin: 7px 0 5px;
  font-size: 17px;
}

.packages-summary-card p {
  color: #9eabba;
  font-size: 14px;
  line-height: 1.6;
}

/* SELECTOR */
.package-selector {
  position: relative;
  overflow: hidden;
  padding: 140px 0;
  background: var(--color-bg-900);
  color: var(--color-white);
}

.package-selector::before,
.package-comparison::before,
.package-process::before,
.package-faq::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
  background-size: 80px 80px;
  opacity: .25;
  pointer-events: none;
}

.package-selector .container,
.package-comparison .container,
.package-process .container,
.package-faq .container {
  position: relative;
  z-index: 2;
}

.package-selector-head,
.package-comparison-head,
.package-process-head,
.package-faq-head {
  max-width: 860px;
  margin: 0 auto 60px;
  text-align: center;
}

.package-selector-head > span,
.package-comparison-head > span,
.package-process-head > span,
.package-faq-head > span {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--color-primary);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 4px;
}

.package-selector-head > span::before,
.package-selector-head > span::after,
.package-comparison-head > span::before,
.package-comparison-head > span::after,
.package-process-head > span::before,
.package-process-head > span::after,
.package-faq-head > span::before,
.package-faq-head > span::after {
  content: "";
  width: 36px;
  height: 2px;
  background: var(--color-primary);
}

.package-selector-head h2,
.package-comparison-head h2,
.package-process-head h2,
.package-faq-head h2 {
  margin-top: 22px;
  font-size: 54px;
  line-height: 1.08;
}

.package-selector-head p,
.package-process-head p {
  margin-top: 22px;
  color: var(--color-text-soft);
  line-height: 1.8;
}

.package-category-tabs {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 42px;
}

.package-tab {
  padding: 12px 22px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 999px;
  background: rgba(255,255,255,.035);
  color: var(--color-text-secondary);
  cursor: pointer;
  transition: .3s ease;
}

.package-tab:hover,
.package-tab.active {
  border-color: var(--color-primary);
  background: var(--color-primary);
  color: var(--color-white);
}

.premium-package-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 26px;
}

.premium-package-card {
  position: relative;
  overflow: hidden;
  padding: 38px;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 28px;
  background:
    radial-gradient(circle at 100% 0%, rgba(var(--color-primary-rgb),.09), transparent 32%),
    rgba(255,255,255,.035);
  transition: .35s ease;
}

.premium-package-card:hover {
  transform: translateY(-8px);
  border-color: rgba(var(--color-primary-rgb),.7);
  box-shadow: 0 32px 80px rgba(0,0,0,.42);
}

.premium-package-card.featured {
  border-color: rgba(var(--color-primary-rgb),.8);
  box-shadow:
    0 0 0 1px rgba(var(--color-primary-rgb),.16),
    0 32px 90px rgba(var(--color-primary-rgb),.15);
}

.premium-package-popular {
  position: absolute;
  top: 24px;
  right: -42px;
  width: 190px;
  padding: 8px 0;
  background: var(--color-primary);
  color: var(--color-white);
  text-align: center;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 1px;
  transform: rotate(42deg);
}

.premium-package-top {
  display: flex;
  justify-content: space-between;
  gap: 30px;
}

.premium-package-label {
  color: var(--color-primary);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 3px;
}

.premium-package-top h3 {
  max-width: 420px;
  margin-top: 10px;
  font-size: 32px;
  line-height: 1.15;
}

.premium-package-number {
  color: rgba(255,255,255,.08);
  font-size: 70px;
  font-weight: 900;
  line-height: .9;
}

.premium-package-desc {
  margin: 22px 0 26px;
  color: var(--color-text-secondary);
  line-height: 1.8;
}

.premium-package-meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 28px;
}

.premium-package-meta > div {
  padding: 16px;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 16px;
  background: rgba(255,255,255,.025);
}

.premium-package-meta span,
.premium-package-meta strong {
  display: block;
}

.premium-package-meta span {
  color: #7f8ca0;
  font-size: 12px;
}

.premium-package-meta strong {
  margin-top: 5px;
  font-size: 15px;
}

.premium-package-features {
  display: grid;
  gap: 14px;
  padding: 26px 0;
  border-top: 1px solid rgba(255,255,255,.08);
  border-bottom: 1px solid rgba(255,255,255,.08);
  list-style: none;
}

.premium-package-features li {
  position: relative;
  padding-left: 30px;
  color: #d1d8e2;
}

.premium-package-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--color-primary);
  font-weight: 900;
}

.premium-package-bottom {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 20px;
  margin-top: 28px;
}

.premium-package-price span,
.premium-package-price strong {
  display: block;
}

.premium-package-price span {
  color: #7f8ca0;
  font-size: 12px;
}

.premium-package-price strong {
  margin-top: 5px;
  color: var(--color-white);
  font-size: 18px;
}

.premium-package-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 22px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 999px;
  color: var(--color-white);
  text-decoration: none;
  font-weight: 800;
  transition: .3s ease;
}

.premium-package-btn:hover,
.premium-package-btn.primary {
  border-color: var(--color-primary);
  background: var(--color-primary);
  box-shadow: 0 16px 40px rgba(var(--color-primary-rgb),.28);
}

/* COMPARISON */
.package-comparison {
  position: relative;
  overflow: hidden;
  padding: 130px 0;
  background: var(--color-bg-800);
  color: var(--color-white);
}

.package-table-wrap {
  overflow-x: auto;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 24px;
  background: rgba(255,255,255,.025);
}

.package-table {
  width: 100%;
  min-width: 900px;
  border-collapse: collapse;
}

.package-table th,
.package-table td {
  padding: 21px 22px;
  border-right: 1px solid rgba(255,255,255,.07);
  border-bottom: 1px solid rgba(255,255,255,.07);
  text-align: center;
}

.package-table th:first-child,
.package-table td:first-child {
  text-align: left;
}

.package-table th {
  background: rgba(var(--color-primary-rgb),.08);
  color: var(--color-white);
  font-size: 14px;
}

.package-table td {
  color: #b3bdca;
}

.package-table td:first-child {
  color: var(--color-white);
  font-weight: 700;
}

/* PROCESS */
.package-process {
  position: relative;
  overflow: hidden;
  padding: 130px 0;
  background: var(--color-bg-900);
  color: var(--color-white);
}

.package-process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.package-process-card {
  min-height: 280px;
  padding: 34px;
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 24px;
  background: rgba(255,255,255,.035);
  transition: .3s ease;
}

.package-process-card:hover {
  transform: translateY(-8px);
  border-color: rgba(var(--color-primary-rgb),.65);
}

.package-process-card span {
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border-radius: 50%;
  background: rgba(var(--color-primary-rgb),.12);
  color: var(--color-primary);
  font-weight: 900;
}

.package-process-card h3 {
  margin: 28px 0 14px;
  font-size: 22px;
}

.package-process-card p {
  color: var(--color-text-muted);
  line-height: 1.8;
}

/* BENEFITS */
.package-benefits {
  padding: 140px 0;
  background: var(--color-bg-800);
  color: var(--color-white);
}

.package-benefits-wrapper {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 85px;
  align-items: center;
}

.package-benefits-media {
  position: relative;
}

.package-benefits-media img {
  width: 100%;
  height: 620px;
  object-fit: cover;
  border-radius: 30px;
  box-shadow: 0 40px 110px rgba(0,0,0,.5);
}

.package-benefit-glass {
  position: absolute;
  left: -26px;
  bottom: 46px;
  padding: 24px 28px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 22px;
  background: rgba(7,11,18,.78);
  backdrop-filter: blur(16px);
}

.package-benefit-glass strong,
.package-benefit-glass span {
  display: block;
}

.package-benefit-glass strong {
  color: var(--color-primary);
  font-size: 40px;
}

.package-benefit-glass span {
  margin-top: 4px;
  font-weight: 700;
}

.package-benefits-content h2 {
  margin: 26px 0;
  font-size: 54px;
  line-height: 1.08;
}

.package-benefits-content > p {
  color: var(--color-text-soft);
  line-height: 1.9;
}

.package-benefit-list {
  display: grid;
  gap: 18px;
  margin-top: 34px;
}

.package-benefit-list > div {
  display: grid;
  grid-template-columns: 52px 1fr;
  align-items: center;
  gap: 16px;
  padding: 18px 0;
  border-top: 1px solid rgba(255,255,255,.09);
}

.package-benefit-list strong {
  color: var(--color-primary);
}

.package-benefit-list span {
  color: #d6dde6;
  font-weight: 700;
}

/* FAQ */
.package-faq {
  position: relative;
  overflow: hidden;
  padding: 130px 0;
  background: var(--color-bg-900);
  color: var(--color-white);
}

.package-faq-list {
  max-width: 920px;
  margin: 0 auto;
  display: grid;
  gap: 14px;
}

.package-faq-item {
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 18px;
  background: rgba(255,255,255,.035);
}

.package-faq-item summary {
  position: relative;
  padding: 24px 70px 24px 26px;
  cursor: pointer;
  list-style: none;
  font-size: 18px;
  font-weight: 800;
}

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

.package-faq-item summary::after {
  content: "+";
  position: absolute;
  right: 26px;
  top: 50%;
  color: var(--color-primary);
  font-size: 28px;
  transform: translateY(-50%);
}

.package-faq-item[open] summary::after {
  content: "−";
}

.package-faq-item p {
  padding: 0 26px 26px;
  color: var(--color-text-muted);
  line-height: 1.8;
}

/* FINAL CTA */
.package-final-cta {
  padding: 100px 0;
  background: var(--color-bg-800);
  color: var(--color-white);
}

.package-final-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
  padding: 60px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 30px;
  background:
    radial-gradient(circle at 90% 50%, rgba(var(--color-primary-rgb),.27), transparent 34%),
    rgba(255,255,255,.04);
}

.package-final-card > div:first-child {
  max-width: 730px;
}

.package-final-card span {
  color: var(--color-primary);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 3px;
}

.package-final-card h2 {
  margin: 18px 0;
  font-size: 48px;
  line-height: 1.08;
}

.package-final-card p {
  color: var(--color-text-faint);
  line-height: 1.8;
}

.package-final-actions {
  display: flex;
  flex-direction: column;
  min-width: 260px;
  gap: 14px;
}

/* FILTER STATE */
.premium-package-card.package-hidden {
  display: none;
}

/* RESPONSIVE */
@media (max-width: 1100px) {
  .packages-premium-content,
  .package-benefits-wrapper {
    grid-template-columns: 1fr;
  }
  .packages-premium-summary {
    grid-template-columns: repeat(3, 1fr);
  }
  .package-process-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .package-final-card {
    align-items: flex-start;
    flex-direction: column;
  }
  .package-final-actions {
    width: 100%;
    flex-direction: row;
  }
}

@media (max-width: 900px) {
  .premium-package-grid {
    grid-template-columns: 1fr;
  }
  .packages-premium-summary {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .packages-premium-hero {
    min-height: 760px;
  }
  .packages-premium-overlay {
    background: linear-gradient(0deg, rgba(3,6,11,.98), rgba(3,6,11,.55));
  }
  .packages-premium-content {
    padding-top: 130px;
  }
  .packages-premium-copy h1 {
    font-size: 48px;
    letter-spacing: -2px;
  }
  .package-selector,
  .package-comparison,
  .package-process,
  .package-benefits,
  .package-faq {
    padding: 90px 0;
  }
  .package-selector-head h2,
  .package-comparison-head h2,
  .package-process-head h2,
  .package-faq-head h2,
  .package-benefits-content h2 {
    font-size: 38px;
  }
  .package-process-grid {
    grid-template-columns: 1fr;
  }
  .package-benefits-media img {
    height: 480px;
  }
  .package-final-cta {
    padding: 80px 0;
  }
  .package-final-card {
    padding: 38px;
  }
  .package-final-card h2 {
    font-size: 38px;
  }
}

@media (max-width: 600px) {
  .packages-premium-hero {
    min-height: 720px;
  }
  .packages-premium-content {
    padding-top: 120px;
  }
  .packages-premium-copy h1 {
    font-size: 39px;
    line-height: 1.04;
    letter-spacing: -1.5px;
  }
  .packages-premium-copy p {
    font-size: 15px;
  }
  .packages-premium-actions,
  .package-final-actions {
    flex-direction: column;
  }
  .packages-premium-actions a,
  .package-final-actions a {
    width: 100%;
    text-align: center;
  }
  .package-selector-head,
  .package-comparison-head,
  .package-process-head,
  .package-faq-head {
    margin-bottom: 46px;
  }
  .package-selector-head > span,
  .package-comparison-head > span,
  .package-process-head > span,
  .package-faq-head > span {
    font-size: 10px;
    letter-spacing: 2.5px;
  }
  .package-selector-head > span::before,
  .package-selector-head > span::after,
  .package-comparison-head > span::before,
  .package-comparison-head > span::after,
  .package-process-head > span::before,
  .package-process-head > span::after,
  .package-faq-head > span::before,
  .package-faq-head > span::after {
    width: 20px;
  }
  .package-selector-head h2,
  .package-comparison-head h2,
  .package-process-head h2,
  .package-faq-head h2,
  .package-benefits-content h2 {
    font-size: 32px;
  }
  .premium-package-card {
    padding: 28px 22px;
    border-radius: 24px;
  }
  .premium-package-top h3 {
    font-size: 27px;
  }
  .premium-package-number {
    font-size: 52px;
  }
  .premium-package-meta {
    grid-template-columns: 1fr;
  }
  .premium-package-bottom {
    align-items: stretch;
    flex-direction: column;
  }
  .premium-package-btn {
    width: 100%;
  }
  .package-benefits-media img {
    height: 390px;
    border-radius: 24px;
  }
  .package-benefit-glass {
    left: 14px;
    bottom: 20px;
  }
  .package-faq-item summary {
    padding: 21px 56px 21px 20px;
    font-size: 16px;
  }
  .package-faq-item p {
    padding: 0 20px 22px;
  }
  .package-final-card {
    padding: 30px 24px;
    border-radius: 24px;
  }
  .package-final-card h2 {
    font-size: 32px;
  }
}

/* ==================================================
   PROJELER SAYFASI
   Bu kodu style.css dosyasının en altına ekleyin.
================================================== */

.projects-page-hero {
  position: relative;
  min-height: 820px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--color-bg-900);
  color: var(--color-white);
}

.projects-page-hero-media,
.projects-page-hero-overlay {
  position: absolute;
  inset: 0;
}

.projects-page-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.projects-page-hero-overlay {
  background:
    linear-gradient(90deg, rgba(3,6,11,.98) 0%, rgba(3,6,11,.78) 48%, rgba(3,6,11,.24) 100%),
    linear-gradient(0deg, rgba(3,6,11,.9) 0%, transparent 46%);
}

.projects-page-hero-content {
  position: relative;
  z-index: 3;
  padding-top: 110px;
}

.projects-page-hero-content h1 {
  max-width: 980px;
  margin: 28px 0 26px;
  font-size: clamp(54px, 7vw, 88px);
  line-height: .98;
  letter-spacing: -3px;
}

.projects-page-hero-content p {
  max-width: 700px;
  color: var(--color-text-pale);
  font-size: 18px;
  line-height: 1.85;
}

.projects-page-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 38px;
}

.projects-page-hero-stat {
  position: absolute;
  z-index: 4;
  right: 6%;
  bottom: 48px;
  padding: 24px 30px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 22px;
  background: rgba(7,11,18,.62);
  backdrop-filter: blur(16px);
}

.projects-page-hero-stat strong,
.projects-page-hero-stat span {
  display: block;
}

.projects-page-hero-stat strong {
  color: var(--color-primary);
  font-size: 44px;
}

.projects-page-hero-stat span {
  font-weight: 700;
}

/* INTRO */
.projects-showcase-intro {
  padding: 100px 0;
  background: var(--color-bg-800);
  color: var(--color-white);
}

.projects-showcase-intro-wrapper {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 80px;
  align-items: end;
}

.projects-showcase-intro h2 {
  max-width: 760px;
  margin-top: 26px;
  font-size: 52px;
  line-height: 1.08;
}

.projects-showcase-intro-wrapper > p {
  color: var(--color-text-soft);
  line-height: 1.9;
}

/* PORTFOLIO */
.projects-portfolio {
  position: relative;
  overflow: hidden;
  padding: 120px 0 140px;
  background: var(--color-bg-900);
  color: var(--color-white);
}

.projects-portfolio::before,
.projects-process::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
  background-size: 80px 80px;
  opacity: .25;
  pointer-events: none;
}

.projects-portfolio .container,
.projects-process .container {
  position: relative;
  z-index: 2;
}

.projects-filter-bar {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 48px;
}

.project-filter-btn {
  padding: 12px 22px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 999px;
  background: rgba(255,255,255,.035);
  color: var(--color-text-secondary);
  cursor: pointer;
  transition: .3s ease;
}

.project-filter-btn:hover,
.project-filter-btn.active {
  border-color: var(--color-primary);
  background: var(--color-primary);
  color: var(--color-white);
}

.projects-portfolio-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 26px;
}

.project-portfolio-card {
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 28px;
  background: rgba(255,255,255,.035);
  transition:
    opacity .24s ease,
    transform .35s ease,
    border-color .35s ease,
    box-shadow .35s ease;
}

.project-portfolio-card:hover {
  transform: translateY(-8px);
  border-color: rgba(var(--color-primary-rgb),.7);
  box-shadow: 0 34px 90px rgba(0,0,0,.42);
}

.project-portfolio-card.project-large,
.project-portfolio-card.project-wide {
  grid-column: span 2;
}

.project-portfolio-link {
  display: block;
  color: inherit;
  text-decoration: none;
}

.project-portfolio-media {
  position: relative;
  height: 410px;
  overflow: hidden;
  background: var(--color-dark);
}

.project-large .project-portfolio-media {
  height: 600px;
}

.project-wide .project-portfolio-media {
  height: 500px;
}

.project-portfolio-media img,
.project-portfolio-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .65s ease;
}

.project-portfolio-card:hover .project-portfolio-media img,
.project-portfolio-card:hover .project-portfolio-media video {
  transform: scale(1.055);
}

.project-portfolio-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(0deg, rgba(3,6,11,.82), transparent 56%),
    linear-gradient(90deg, rgba(3,6,11,.18), transparent);
  pointer-events: none;
}

.project-portfolio-badges {
  position: absolute;
  top: 22px;
  left: 22px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.project-portfolio-badges span {
  padding: 8px 12px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 999px;
  background: rgba(7,11,18,.58);
  backdrop-filter: blur(10px);
  color: var(--color-white);
  font-size: 11px;
  font-weight: 800;
}

.project-video-trigger {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 4;
  width: 66px;
  height: 66px;
  border: 1px solid rgba(255,255,255,.54);
  border-radius: 50%;
  background: rgba(0,0,0,.35);
  backdrop-filter: blur(10px);
  color: var(--color-white);
  cursor: pointer;
  transform: translate(-50%, -50%);
  transition: .3s ease;
}

.project-video-trigger:hover {
  background: var(--color-primary);
  border-color: var(--color-primary);
}

.project-portfolio-content {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  padding: 28px 30px 32px;
}

.project-portfolio-content > div:first-child > span {
  color: var(--color-primary);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 2px;
}

.project-portfolio-content h3 {
  margin: 9px 0 10px;
  font-size: 30px;
}

.project-portfolio-content p {
  max-width: 680px;
  color: var(--color-text-muted);
  line-height: 1.75;
}

.project-portfolio-meta {
  min-width: 145px;
  text-align: right;
}

.project-portfolio-meta span,
.project-portfolio-meta strong,
.project-portfolio-meta i {
  display: block;
}

.project-portfolio-meta span {
  color: #7f8ca0;
  font-size: 12px;
}

.project-portfolio-meta strong {
  margin: 5px 0 20px;
}

.project-portfolio-meta i {
  color: var(--color-primary);
  font-style: normal;
  font-size: 13px;
  font-weight: 800;
}

.project-hidden {
  display: none !important;
}

/* BEFORE AFTER */
.projects-before-after {
  padding: 140px 0;
  background: var(--color-bg-800);
  color: var(--color-white);
}

.projects-before-after-wrapper {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 80px;
  align-items: center;
}

.projects-before-after-content h2 {
  margin: 26px 0;
  font-size: 52px;
  line-height: 1.08;
}

.projects-before-after-content p {
  margin-bottom: 34px;
  color: var(--color-text-soft);
  line-height: 1.9;
}

.project-comparison-wrapper {
  position: relative;
  height: 560px;
  overflow: hidden;
  border-radius: 28px;
  cursor: ew-resize;
  box-shadow:
    0 0 0 1px rgba(255,255,255,.08),
    0 35px 100px rgba(0,0,0,.55);
}

.project-comparison-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
  user-select: none;
}

.project-after-layer {
  position: absolute;
  inset: 0;
  width: 50%;
  overflow: hidden;
  z-index: 2;
}

.project-after-image {
  width: 100%;
  min-width: 720px;
  max-width: none;
}

.project-comparison-line {
  position: absolute;
  top: 0;
  left: 50%;
  z-index: 4;
  width: 2px;
  height: 100%;
  background: rgba(255,255,255,.95);
  transform: translateX(-50%);
  box-shadow: 0 0 25px rgba(var(--color-primary-rgb),.75);
}

.project-comparison-handle {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 64px;
  height: 64px;
  border: 0;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-primary), #6c63ff);
  color: var(--color-white);
  font-weight: 900;
  transform: translate(-50%, -50%);
  cursor: ew-resize;
}

.project-comparison-label {
  position: absolute;
  bottom: 22px;
  z-index: 5;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(0,0,0,.55);
  backdrop-filter: blur(8px);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.project-label-left {
  left: 22px;
}

.project-label-right {
  right: 22px;
}

/* PROCESS */
.projects-process {
  position: relative;
  overflow: hidden;
  padding: 130px 0;
  background: var(--color-bg-900);
  color: var(--color-white);
}

.projects-process-head {
  max-width: 830px;
  margin: 0 auto 65px;
  text-align: center;
}

.projects-process-head > span {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--color-primary);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 4px;
}

.projects-process-head > span::before,
.projects-process-head > span::after {
  content: "";
  width: 34px;
  height: 2px;
  background: var(--color-primary);
}

.projects-process-head h2 {
  margin-top: 22px;
  font-size: 52px;
  line-height: 1.08;
}

.projects-process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.projects-process-grid article {
  min-height: 270px;
  padding: 34px;
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 24px;
  background: rgba(255,255,255,.035);
}

.projects-process-grid article > span {
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border-radius: 50%;
  background: rgba(var(--color-primary-rgb),.12);
  color: var(--color-primary);
  font-weight: 900;
}

.projects-process-grid h3 {
  margin: 28px 0 14px;
  font-size: 22px;
}

.projects-process-grid p {
  color: var(--color-text-muted);
  line-height: 1.8;
}

/* CTA */
.projects-cta {
  padding: 100px 0;
  background: var(--color-bg-800);
  color: var(--color-white);
}

.projects-cta-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
  padding: 60px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 30px;
  background:
    radial-gradient(circle at 90% 50%, rgba(var(--color-primary-rgb),.27), transparent 34%),
    rgba(255,255,255,.04);
}

.projects-cta-card > div:first-child {
  max-width: 730px;
}

.projects-cta-card span {
  color: var(--color-primary);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 3px;
}

.projects-cta-card h2 {
  margin: 18px 0;
  font-size: 48px;
  line-height: 1.08;
}

.projects-cta-card p {
  color: var(--color-text-faint);
  line-height: 1.8;
}

.projects-cta-actions {
  display: flex;
  flex-direction: column;
  min-width: 260px;
  gap: 14px;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .projects-showcase-intro-wrapper,
  .projects-before-after-wrapper {
    grid-template-columns: 1fr;
  }
  .projects-process-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .projects-cta-card {
    align-items: flex-start;
    flex-direction: column;
  }
  .projects-cta-actions {
    width: 100%;
    flex-direction: row;
  }
}

@media (max-width: 768px) {
  .projects-page-hero {
    min-height: 720px;
  }
  .projects-page-hero-overlay {
    background: linear-gradient(0deg, rgba(3,6,11,.98), rgba(3,6,11,.55));
  }
  .projects-page-hero-content h1 {
    font-size: 48px;
    letter-spacing: -2px;
  }
  .projects-page-hero-stat {
    right: 5%;
    bottom: 28px;
  }
  .projects-showcase-intro,
  .projects-portfolio,
  .projects-before-after,
  .projects-process {
    padding: 90px 0;
  }
  .projects-showcase-intro h2,
  .projects-before-after-content h2,
  .projects-process-head h2 {
    font-size: 38px;
  }
  .projects-portfolio-grid {
    grid-template-columns: 1fr;
  }
  .project-portfolio-card.project-large,
  .project-portfolio-card.project-wide {
    grid-column: auto;
  }
  .project-portfolio-media,
  .project-large .project-portfolio-media,
  .project-wide .project-portfolio-media {
    height: 430px;
  }
  .project-portfolio-content {
    grid-template-columns: 1fr;
  }
  .project-portfolio-meta {
    text-align: left;
  }
  .project-comparison-wrapper {
    height: 460px;
  }
  .projects-process-grid {
    grid-template-columns: 1fr;
  }
  .projects-cta {
    padding: 80px 0;
  }
  .projects-cta-card {
    padding: 38px;
  }
  .projects-cta-card h2 {
    font-size: 38px;
  }
}

@media (max-width: 600px) {
  .projects-page-hero {
    min-height: 690px;
  }
  .projects-page-hero-content {
    padding-top: 80px;
  }
  .projects-page-hero-content h1 {
    font-size: 39px;
    line-height: 1.04;
    letter-spacing: -1.5px;
  }
  .projects-page-hero-content p {
    font-size: 15px;
  }
  .projects-page-hero-actions,
  .projects-cta-actions {
    flex-direction: column;
  }
  .projects-page-hero-actions a,
  .projects-cta-actions a {
    width: 100%;
    text-align: center;
  }
  .projects-page-hero-stat {
    left: 4%;
    right: 4%;
    bottom: 20px;
    text-align: center;
  }
  .projects-showcase-intro h2,
  .projects-before-after-content h2,
  .projects-process-head h2 {
    font-size: 32px;
  }
  .project-portfolio-media,
  .project-large .project-portfolio-media,
  .project-wide .project-portfolio-media {
    height: 340px;
  }
  .project-portfolio-content {
    padding: 24px 22px 28px;
  }
  .project-portfolio-content h3 {
    font-size: 26px;
  }
  .project-comparison-wrapper {
    height: 340px;
    border-radius: 22px;
  }
  .project-after-image {
    min-width: 92vw;
  }
  .projects-process-head > span {
    font-size: 10px;
    letter-spacing: 2.5px;
  }
  .projects-process-head > span::before,
  .projects-process-head > span::after {
    width: 20px;
  }
  .projects-cta-card {
    padding: 30px 24px;
    border-radius: 24px;
  }
  .projects-cta-card h2 {
    font-size: 32px;
  }
}

/* ==================================================
   SABİT İLETİŞİM BUTONLARI — LIQUID GLASS
================================================== */

.floating-buttons {
  position: fixed;
  left: 18px;
  right: 18px;
  bottom: 22px;
  z-index: 9999;
  display: flex;
  justify-content: space-between;
  align-items: center;
  pointer-events: none;
}

.floating-buttons a {
  pointer-events: auto;
}

/* Ortak "sıvı cam" panel efekti */
.liquid {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  -webkit-backdrop-filter: blur(28px) saturate(180%);
  backdrop-filter: blur(28px) saturate(180%);
  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.10),
      rgba(255, 255, 255, 0.03)
    ),
    rgba(6, 10, 16, 0.82);
  border: 1px solid var(--fab-border);
  box-shadow:
    0 25px 60px var(--fab-shadow),
    inset 0 1px rgba(255, 255, 255, 0.18),
    inset 0 -1px rgba(255, 255, 255, 0.04);
  transition: transform 0.45s cubic-bezier(0.22, 0.8, 0.2, 1),
              border-color 0.45s ease,
              box-shadow 0.45s ease;
}

/* Panel üzerinde kayan ışık yansıması */
.glass-light {
  position: absolute;
  left: -120%;
  top: -60%;
  width: 45%;
  height: 250%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.75),
    transparent
  );
  transform: rotate(24deg);
  animation: glassMove 6s infinite;
  pointer-events: none;
}

@keyframes glassMove {
  0%   { left: -120%; }
  100% { left: 220%; }
}

/* İç parlaklık / üst ışık */
.glass-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at top,
    rgba(255, 255, 255, 0.22),
    transparent 60%
  );
  opacity: 0.55;
  pointer-events: none;
}

/* "Hemen Ara" butonu */
.detail-btn {
  height: 66px;
  padding: 0 24px 0 10px;
  border-radius: 22px;
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  color: var(--color-white);
}

.detail-btn .icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  background: linear-gradient(160deg, var(--fab-icon-bg-1), var(--fab-icon-bg-2));
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow:
    0 8px 18px rgba(0, 0, 0, 0.4),
    inset 0 1px rgba(255, 255, 255, 0.12);
  position: relative;
  z-index: 3;
  font-size: 16px;
  color: var(--color-white);
}

.detail-btn .text {
  position: relative;
  z-index: 3;
  font-size: 17px;
  font-weight: 600;
  white-space: nowrap;
}

/* WhatsApp butonu — görseldeki gibi koyu, camsı yeşil */
.whatsapp-btn {
  width: 66px;
  height: 66px;
  border-radius: 22px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--color-white);
  text-decoration: none;
  font-size: 30px;
  background: linear-gradient(160deg, var(--fab-whatsapp), var(--fab-whatsapp-dark));
  border: 1px solid rgba(255, 255, 255, 0.1);
  animation: fabFloat 3s ease-in-out infinite;
}

.whatsapp-btn i {
  position: relative;
  z-index: 3;
}

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

.liquid:hover {
  transform: translateY(-6px) scale(1.03);
  border-color: rgba(255, 255, 255, 0.25);
  box-shadow:
    0 35px 80px rgba(0, 0, 0, 0.55),
    inset 0 1px rgba(255, 255, 255, 0.25);
}

.liquid:active {
  transform: scale(0.95);
}

.liquid:focus-visible {
  outline: 3px solid rgba(var(--color-primary-rgb), 0.55);
  outline-offset: 4px;
}

/* ==================================================
   DESKTOP — sadece WhatsApp balonu kalır
================================================== */
@media (min-width: 992px) {
  .detail-btn {
    display: none;
  }
  .floating-buttons {
    left: auto;
    right: 35px;
    bottom: 30px;
  }
  .whatsapp-btn {
    width: 74px;
    height: 74px;
    font-size: 38px;
  }
}

/* ==================================================
   MOBİL
================================================== */
@media (max-width: 768px) {
  body {
    padding-bottom: 94px;
  }
  .floating-buttons {
    left: 12px;
    right: 12px;
    bottom: max(12px, env(safe-area-inset-bottom));
    gap: 10px;
  }
  .detail-btn {
    flex: 1;
    height: 60px;
    padding: 0 18px 0 8px;
    gap: 12px;
    border-radius: 19px;
  }
  .detail-btn .icon {
    width: 42px;
    height: 42px;
    font-size: 16px;
  }
  .detail-btn .text {
    font-size: 15px;
  }
  .whatsapp-btn {
    width: 68px;
    height: 68px;
    font-size: 33px;
    border-radius: 20px;
  }
}

@media (max-width: 390px) {
  .floating-buttons {
    left: 8px;
    right: 8px;
    gap: 7px;
  }
  .detail-btn {
    flex: 1;
    height: 56px;
    padding: 0 14px 0 8px;
    gap: 10px;
  }
  .detail-btn .icon {
    width: 38px;
    height: 38px;
    font-size: 14px;
  }
  .detail-btn .text {
    font-size: 13px;
  }
  .whatsapp-btn {
    width: 62px;
    height: 62px;
    font-size: 29px;
  }
}

/* Hareket azaltma tercihi */
@media (prefers-reduced-motion: reduce) {
  .liquid,
  .glass-light,
  .whatsapp-btn {
    animation: none;
    transition: none;
  }
}

/* ==================================================
   BLOG SAYFASI
   style.css dosyasının en altına ekleyin.
================================================== */

.blog-page-hero {
  position: relative;
  min-height: 760px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--color-bg-900);
  color: var(--color-white);
}

.blog-page-hero-bg,
.blog-page-hero-overlay {
  position: absolute;
  inset: 0;
}

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

.blog-page-hero-overlay {
  background:
    linear-gradient(90deg, rgba(3, 6, 11, .98) 0%, rgba(3, 6, 11, .78) 50%, rgba(3, 6, 11, .25) 100%),
    linear-gradient(0deg, rgba(3, 6, 11, .9), transparent 48%);
}

.blog-page-hero-content {
  position: relative;
  z-index: 3;
  padding-top: 110px;
}

.blog-page-hero-content h1 {
  max-width: 940px;
  margin: 28px 0 26px;
  font-size: clamp(52px, 7vw, 88px);
  line-height: .98;
  letter-spacing: -3px;
}

.blog-page-hero-content p {
  max-width: 680px;
  margin-bottom: 38px;
  color: #bac5d4;
  font-size: 18px;
  line-height: 1.85;
}

.blog-page-hero-card {
  position: absolute;
  right: 6%;
  bottom: 48px;
  z-index: 4;
  min-width: 200px;
  padding: 24px 28px;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 22px;
  background: rgba(6,10,17,.65);
  backdrop-filter: blur(18px);
  box-shadow: 0 25px 65px rgba(0,0,0,.36);
}

.blog-page-hero-card span,
.blog-page-hero-card strong,
.blog-page-hero-card p {
  display: block;
}

.blog-page-hero-card span {
  color: #8fa0b5;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 2px;
}

.blog-page-hero-card strong {
  margin: 8px 0 2px;
  color: var(--color-primary);
  font-size: 48px;
  line-height: 1;
}

.blog-page-hero-card p {
  color: var(--color-white);
  font-size: 14px;
  font-weight: 700;
}

/* FEATURED */
.blog-featured-section {
  padding: 120px 0 80px;
  background: var(--color-bg-800);
  color: var(--color-white);
}

.blog-featured-card {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 30px;
  background: rgba(255,255,255,.035);
  box-shadow: 0 35px 90px rgba(0,0,0,.34);
}

.blog-featured-image {
  position: relative;
  min-height: 570px;
  overflow: hidden;
}

.blog-featured-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .7s ease;
}

.blog-featured-card:hover .blog-featured-image img {
  transform: scale(1.045);
}

.blog-featured-badge {
  position: absolute;
  top: 24px;
  left: 24px;
  padding: 10px 14px;
  border: 1px solid rgba(255,255,255,.17);
  border-radius: 999px;
  background: rgba(5,9,16,.68);
  backdrop-filter: blur(12px);
  color: var(--color-white);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 2px;
}

.blog-featured-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 58px;
}

.blog-article-category {
  color: var(--color-primary);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 2.5px;
}

.blog-featured-content h2 {
  margin: 20px 0;
  font-size: 44px;
  line-height: 1.1;
}

.blog-featured-content h2 a {
  color: var(--color-white);
  text-decoration: none;
}

.blog-featured-content > p {
  color: #9eabba;
  line-height: 1.85;
}

.blog-article-meta {
  display: flex;
  gap: 16px;
  margin: 26px 0;
  color: #728097;
  font-size: 12px;
}

.blog-article-meta span + span::before {
  content: "•";
  margin-right: 16px;
}

.blog-read-more,
.blog-card-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  width: fit-content;
  color: var(--color-primary);
  text-decoration: none;
  font-weight: 800;
}

.blog-read-more span {
  transition: transform .25s ease;
}

.blog-read-more:hover span {
  transform: translateX(6px);
}

/* LIST */
.blog-list-section {
  position: relative;
  overflow: hidden;
  padding: 100px 0 140px;
  background: var(--color-bg-900);
  color: var(--color-white);
}

.blog-list-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 80px 80px;
  pointer-events: none;
}

.blog-list-section .container {
  position: relative;
  z-index: 2;
}

.blog-list-header {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 80px;
  align-items: end;
  margin-bottom: 55px;
}

.blog-list-header h2 {
  max-width: 760px;
  margin-top: 24px;
  font-size: 52px;
  line-height: 1.08;
}

.blog-list-header > p {
  color: #99a7b9;
  line-height: 1.9;
}

.blog-tools {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  margin-bottom: 45px;
}

.blog-filter-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.blog-filter-btn {
  padding: 11px 19px;
  border: 1px solid rgba(255,255,255,.11);
  border-radius: 999px;
  background: rgba(255,255,255,.035);
  color: #99a6b9;
  cursor: pointer;
  transition: .25s ease;
}

.blog-filter-btn:hover,
.blog-filter-btn.active {
  border-color: var(--color-primary);
  background: var(--color-primary);
  color: var(--color-white);
}

.blog-search-box {
  width: min(100%, 330px);
  height: 50px;
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 0 17px;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 15px;
  background: rgba(255,255,255,.035);
}

.blog-search-box span {
  color: #718096;
  font-size: 22px;
}

.blog-search-box input {
  width: 100%;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--color-white);
  font: inherit;
}

.blog-search-box input::placeholder {
  color: #708096;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.blog-card {
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 24px;
  background: rgba(255,255,255,.032);
  transition:
    transform .35s ease,
    border-color .35s ease,
    box-shadow .35s ease;
}

.blog-card:hover {
  transform: translateY(-8px);
  border-color: rgba(var(--color-primary-rgb),.6);
  box-shadow: 0 30px 65px rgba(0,0,0,.35);
}

.blog-card-image {
  position: relative;
  display: block;
  height: 270px;
  overflow: hidden;
}

.blog-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .55s ease;
}

.blog-card:hover .blog-card-image img {
  transform: scale(1.055);
}

.blog-card-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(3,6,11,.7), transparent 60%);
}

.blog-card-image > span {
  position: absolute;
  left: 18px;
  bottom: 17px;
  z-index: 2;
  padding: 8px 11px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 999px;
  background: rgba(4,8,15,.65);
  backdrop-filter: blur(10px);
  color: var(--color-white);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .8px;
}

.blog-card-content {
  padding: 25px 24px 28px;
}

.blog-card-meta {
  display: flex;
  justify-content: space-between;
  gap: 15px;
  color: #728096;
  font-size: 11px;
}

.blog-card-content h3 {
  margin: 15px 0 13px;
  font-size: 24px;
  line-height: 1.28;
}

.blog-card-content h3 a {
  color: var(--color-white);
  text-decoration: none;
}

.blog-card-content p {
  min-height: 79px;
  margin-bottom: 21px;
  color: #94a2b5;
  font-size: 14px;
  line-height: 1.75;
}

.blog-card-link {
  font-size: 13px;
}

.blog-card.blog-card-hidden {
  display: none;
}

.blog-empty-state {
  margin-top: 35px;
  padding: 45px;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 22px;
  text-align: center;
  background: rgba(255,255,255,.03);
}

.blog-empty-state strong {
  display: block;
  margin-bottom: 8px;
  font-size: 22px;
}

.blog-empty-state p {
  color: #8e9caf;
}

/* CTA */
.blog-newsletter-section {
  padding: 100px 0;
  background: var(--color-bg-800);
  color: var(--color-white);
}

.blog-newsletter-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
  padding: 62px;
  border: 1px solid rgba(255,255,255,.11);
  border-radius: 30px;
  background:
    radial-gradient(circle at 90% 50%, rgba(var(--color-primary-rgb),.25), transparent 35%),
    rgba(255,255,255,.035);
}

.blog-newsletter-card > div:first-child {
  max-width: 760px;
}

.blog-newsletter-card span {
  color: var(--color-primary);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 2.5px;
}

.blog-newsletter-card h2 {
  margin: 18px 0;
  font-size: 46px;
  line-height: 1.1;
}

.blog-newsletter-card p {
  color: #9ca9bb;
  line-height: 1.85;
}

.blog-newsletter-actions {
  min-width: 240px;
  display: flex;
  flex-direction: column;
  gap: 13px;
}

/* RESPONSIVE */
@media (max-width: 1100px) {
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .blog-featured-card {
    grid-template-columns: 1fr;
  }
  .blog-featured-image {
    min-height: 480px;
  }
  .blog-tools {
    align-items: stretch;
    flex-direction: column;
  }
  .blog-search-box {
    width: 100%;
    max-width: none;
  }
}

@media (max-width: 900px) {
  .blog-list-header {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .blog-newsletter-card {
    align-items: flex-start;
    flex-direction: column;
  }
  .blog-newsletter-actions {
    width: 100%;
    min-width: 0;
    flex-direction: row;
  }
}

@media (max-width: 768px) {
  .blog-page-hero {
    min-height: 700px;
  }
  .blog-page-hero-overlay {
    background:
      linear-gradient(0deg, rgba(3,6,11,.98), rgba(3,6,11,.48));
  }
  .blog-page-hero-content h1 {
    font-size: 47px;
    letter-spacing: -2px;
  }
  .blog-page-hero-card {
    left: 5%;
    right: 5%;
    bottom: 24px;
    text-align: center;
  }
  .blog-featured-section,
  .blog-list-section {
    padding: 90px 0;
  }
  .blog-featured-content {
    padding: 38px 30px;
  }
  .blog-featured-content h2 {
    font-size: 36px;
  }
  .blog-list-header h2 {
    font-size: 38px;
  }
  .blog-newsletter-card {
    padding: 40px 32px;
  }
  .blog-newsletter-card h2 {
    font-size: 37px;
  }
}

@media (max-width: 620px) {
  .blog-page-hero {
    min-height: 680px;
  }
  .blog-page-hero-content {
    padding-top: 75px;
  }
  .blog-page-hero-content h1 {
    font-size: 39px;
    line-height: 1.04;
    letter-spacing: -1.5px;
  }
  .blog-page-hero-content p {
    font-size: 15px;
  }
  .blog-featured-image {
    min-height: 330px;
  }
  .blog-featured-content {
    padding: 30px 23px;
  }
  .blog-featured-content h2 {
    font-size: 30px;
  }
  .blog-grid {
    grid-template-columns: 1fr;
  }
  .blog-card-image {
    height: 250px;
  }
  .blog-card-content p {
    min-height: 0;
  }
  .blog-filter-buttons {
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 5px;
    scrollbar-width: none;
  }
  .blog-filter-buttons::-webkit-scrollbar {
    display: none;
  }
  .blog-filter-btn {
    flex-shrink: 0;
  }
  .blog-list-header h2 {
    font-size: 32px;
  }
  .blog-newsletter-section {
    padding: 80px 0;
  }
  .blog-newsletter-card {
    padding: 30px 23px;
  }
  .blog-newsletter-card h2 {
    font-size: 31px;
  }
  .blog-newsletter-actions {
    flex-direction: column;
  }
  .blog-newsletter-actions a {
    width: 100%;
    text-align: center;
  }
}

/* ==================================================
   BLOG DETAY SAYFASI
   style.css dosyasının en altına ekleyin.
================================================== */

.article-hero {
  position: relative;
  min-height: 820px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  padding: 180px 0 85px;
  background: #04070b;
  color: var(--color-white);
}

.article-hero-media,
.article-hero-overlay {
  position: absolute;
  inset: 0;
}

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

.article-hero-overlay {
  background:
    linear-gradient(0deg, rgba(3,6,11,.98) 0%, rgba(3,6,11,.68) 52%, rgba(3,6,11,.38) 100%),
    linear-gradient(90deg, rgba(3,6,11,.78), transparent 75%);
}

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

.article-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-bottom: 35px;
  color: #8593a6;
  font-size: 13px;
}

.article-breadcrumb a {
  color: #a8b5c6;
  text-decoration: none;
}

.article-hero h1 {
  max-width: 1020px;
  margin: 25px 0;
  font-size: clamp(48px, 6.5vw, 82px);
  line-height: 1.01;
  letter-spacing: -3px;
}

.article-hero-lead {
  max-width: 790px;
  color: #b6c1cf;
  font-size: 19px;
  line-height: 1.85;
}

.article-hero-lead strong {
  color: var(--color-white);
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-top: 34px;
  color: #7f8da0;
  font-size: 12px;
}

.article-meta span + span::before {
  content: "•";
  margin-right: 15px;
}

/* LAYOUT */
.article-layout-section {
  padding: 110px 0 140px;
  background: var(--color-bg-900);
  color: var(--color-white);
}

.article-layout {
  display: grid;
  grid-template-columns: 290px minmax(0, 820px);
  justify-content: center;
  gap: 75px;
}

.article-sidebar {
  position: relative;
}

.article-toc {
  position: sticky;
  top: 120px;
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 25px;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 20px;
  background: rgba(255,255,255,.025);
}

.article-toc > span {
  margin-bottom: 12px;
  color: var(--color-primary);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 2px;
}

.article-toc a {
  padding: 9px 10px;
  border-radius: 9px;
  color: #8d9bae;
  text-decoration: none;
  font-size: 13px;
  line-height: 1.4;
  transition: .2s ease;
}

.article-toc a:hover {
  background: rgba(var(--color-primary-rgb),.1);
  color: var(--color-white);
}

.article-sidebar-cta {
  margin-top: 20px;
  padding: 25px;
  border: 1px solid rgba(var(--color-primary-rgb),.25);
  border-radius: 20px;
  background:
    radial-gradient(circle at 80% 20%, rgba(var(--color-primary-rgb),.22), transparent 45%),
    rgba(255,255,255,.025);
}

.article-sidebar-cta span {
  color: var(--color-primary);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 1.8px;
}

.article-sidebar-cta strong {
  display: block;
  margin: 13px 0 20px;
  line-height: 1.45;
}

.article-sidebar-cta a {
  display: block;
  padding: 13px 16px;
  border-radius: 11px;
  background: var(--color-primary);
  color: var(--color-white);
  text-align: center;
  text-decoration: none;
  font-size: 13px;
  font-weight: 800;
}

/* CONTENT */
.article-content {
  min-width: 0;
}

.article-content section {
  scroll-margin-top: 120px;
  margin-bottom: 72px;
}

.article-content h2 {
  margin: 0 0 25px;
  font-size: 40px;
  line-height: 1.16;
  letter-spacing: -1.4px;
}

.article-content h3 {
  margin: 32px 0 14px;
  font-size: 24px;
  line-height: 1.3;
}

.article-content p,
.article-content li {
  color: #a5b1c0;
  font-size: 17px;
  line-height: 1.95;
}

.article-content p {
  margin-bottom: 22px;
}

.article-content strong {
  color: #e8eef7;
}

.article-content ul {
  display: grid;
  gap: 11px;
  margin: 20px 0 25px;
  padding-left: 24px;
}

.article-intro-box,
.article-note {
  margin-bottom: 65px;
  padding: 28px 30px;
  border: 1px solid rgba(var(--color-primary-rgb),.22);
  border-radius: 20px;
  background:
    radial-gradient(circle at 100% 0%, rgba(var(--color-primary-rgb),.18), transparent 35%),
    rgba(255,255,255,.03);
}

.article-intro-box > strong,
.article-note > strong {
  display: block;
  margin-bottom: 10px;
  color: var(--color-primary);
  font-size: 13px;
  letter-spacing: 1.4px;
  text-transform: uppercase;
}

.article-intro-box p,
.article-note p {
  margin: 0;
}

.article-image {
  margin: 0 0 70px;
}

.article-image img {
  width: 100%;
  min-height: 440px;
  object-fit: cover;
  border-radius: 24px;
}

.article-image figcaption {
  margin-top: 13px;
  color: #69778b;
  font-size: 12px;
  line-height: 1.6;
}

.article-feature-grid,
.article-package-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
  margin: 35px 0;
}

.article-package-grid {
  grid-template-columns: repeat(2, 1fr);
}

.article-feature-grid > div,
.article-package-grid > div {
  padding: 24px;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 18px;
  background: rgba(255,255,255,.025);
}

.article-feature-grid span,
.article-package-grid span {
  color: var(--color-primary);
  font-size: 11px;
  font-weight: 900;
}

.article-feature-grid h3,
.article-package-grid h3 {
  margin: 13px 0 10px;
  font-size: 19px;
}

.article-feature-grid p,
.article-package-grid p {
  margin: 0;
  font-size: 14px;
  line-height: 1.75;
}

.article-steps {
  display: grid;
  gap: 13px;
  margin-top: 32px;
  padding: 0;
  list-style: none;
}

.article-steps li {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 21px;
  padding: 24px;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 18px;
  background: rgba(255,255,255,.025);
}

.article-steps > li > span {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: rgba(var(--color-primary-rgb),.12);
  color: var(--color-primary);
  font-size: 12px;
  font-weight: 900;
}

.article-steps h3 {
  margin: 0 0 7px;
  font-size: 19px;
}

.article-steps p {
  margin: 0;
  font-size: 15px;
}

.article-check-list {
  padding: 0 !important;
  list-style: none;
}

.article-check-list li {
  position: relative;
  padding: 20px 22px 20px 54px;
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 15px;
  background: rgba(255,255,255,.02);
}

.article-check-list li::before {
  content: "✓";
  position: absolute;
  left: 20px;
  top: 20px;
  color: var(--color-primary);
  font-weight: 900;
}

.article-table-wrapper {
  overflow-x: auto;
  margin: 30px 0;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 18px;
}

.article-table {
  width: 100%;
  min-width: 620px;
  border-collapse: collapse;
  background: rgba(255,255,255,.02);
}

.article-table th,
.article-table td {
  padding: 17px 20px;
  border-bottom: 1px solid rgba(255,255,255,.07);
  color: #9eabba;
  text-align: left;
}

.article-table th {
  background: rgba(var(--color-primary-rgb),.08);
  color: var(--color-white);
  font-size: 13px;
}

.article-table tr:last-child td {
  border-bottom: 0;
}

.article-section-heading > span {
  color: var(--color-primary);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 2px;
}

.article-section-heading h2 {
  margin-top: 15px;
}

/* FAQ */
.article-faq {
  display: grid;
  gap: 11px;
}

.article-faq details {
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 16px;
  background: rgba(255,255,255,.025);
}

.article-faq summary {
  position: relative;
  padding: 21px 55px 21px 22px;
  color: var(--color-white);
  cursor: pointer;
  font-weight: 750;
  list-style: none;
}

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

.article-faq summary::after {
  content: "+";
  position: absolute;
  right: 22px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--color-primary);
  font-size: 24px;
}

.article-faq details[open] summary::after {
  content: "−";
}

.article-faq details p {
  margin: 0;
  padding: 0 22px 22px;
  font-size: 15px;
}

/* MAIN CTA */
.article-main-cta {
  padding: 48px;
  border: 1px solid rgba(var(--color-primary-rgb),.28);
  border-radius: 26px;
  background:
    radial-gradient(circle at 90% 10%, rgba(var(--color-primary-rgb),.3), transparent 38%),
    rgba(255,255,255,.035);
}

.article-main-cta > span {
  color: var(--color-primary);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 2px;
}

.article-main-cta h2 {
  margin: 17px 0;
  font-size: 42px;
}

.article-main-cta > div {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

/* RELATED */
.article-related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
}

.article-related-grid > a {
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 17px;
  background: rgba(255,255,255,.025);
  color: var(--color-white);
  text-decoration: none;
  transition: .25s ease;
}

.article-related-grid > a:hover {
  transform: translateY(-5px);
  border-color: rgba(var(--color-primary-rgb),.45);
}

.article-related-grid img {
  width: 100%;
  height: 155px;
  object-fit: cover;
}

.article-related-grid div {
  padding: 17px;
}

.article-related-grid span {
  color: var(--color-primary);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 1.4px;
}

.article-related-grid h3 {
  margin: 9px 0 0;
  font-size: 17px;
}

/* RESPONSIVE */
@media (max-width: 1050px) {
  .article-layout {
    grid-template-columns: 1fr;
    gap: 45px;
  }
  .article-sidebar {
    display: none;
  }
}

@media (max-width: 768px) {
  .article-hero {
    min-height: 720px;
    padding: 150px 0 65px;
  }
  .article-hero h1 {
    font-size: 46px;
    letter-spacing: -1.8px;
  }
  .article-hero-lead {
    font-size: 16px;
  }
  .article-layout-section {
    padding: 80px 0 100px;
  }
  .article-content h2 {
    font-size: 34px;
  }
  .article-content p,
  .article-content li {
    font-size: 16px;
  }
  .article-feature-grid,
  .article-related-grid {
    grid-template-columns: 1fr;
  }
  .article-package-grid {
    grid-template-columns: 1fr;
  }
  .article-main-cta {
    padding: 35px 28px;
  }
  .article-main-cta h2 {
    font-size: 34px;
  }
}

@media (max-width: 520px) {
  .article-hero {
    min-height: 680px;
    padding-bottom: 45px;
  }
  .article-hero h1 {
    font-size: 38px;
    line-height: 1.06;
    letter-spacing: -1.3px;
  }
  .article-breadcrumb {
    font-size: 11px;
  }
  .article-meta {
    flex-direction: column;
    gap: 7px;
  }
  .article-meta span + span::before {
    display: none;
  }
  .article-content h2 {
    font-size: 30px;
  }
  .article-content h3 {
    font-size: 21px;
  }
  .article-intro-box,
  .article-note {
    padding: 23px 20px;
  }
  .article-image img {
    min-height: 300px;
  }
  .article-steps li {
    grid-template-columns: 1fr;
  }
  .article-main-cta > div {
    flex-direction: column;
  }
  .article-main-cta a {
    width: 100%;
    text-align: center;
  }
}

/* ==================================================
   İLETİŞİM SAYFASI
   Bu bölümü style.css dosyasının en altına ekleyin.
================================================== */

.contact-page-hero {
  position: relative;
  min-height: 760px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--color-bg-900);
  color: var(--color-white);
}

.contact-page-hero-media,
.contact-page-hero-overlay {
  position: absolute;
  inset: 0;
}

.contact-page-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.contact-page-hero-overlay {
  background:
    linear-gradient(90deg, rgba(3,6,11,.97) 0%, rgba(3,6,11,.78) 47%, rgba(3,6,11,.25) 100%),
    linear-gradient(0deg, rgba(3,6,11,.88) 0%, transparent 55%);
}

.contact-page-hero-content {
  position: relative;
  z-index: 3;
  padding-top: 90px;
}

.contact-page-hero-content h1 {
  max-width: 940px;
  margin: 28px 0 26px;
  font-size: clamp(48px, 7vw, 84px);
  line-height: 1;
  letter-spacing: -3px;
}

.contact-page-hero-content p {
  max-width: 700px;
  color: var(--color-text-pale);
  font-size: 18px;
  line-height: 1.85;
}

.contact-page-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 38px;
}

.contact-page-hero-actions a {
  gap: 10px;
}

.contact-page-hero-note {
  position: absolute;
  right: 5%;
  bottom: 42px;
  z-index: 4;
  max-width: 310px;
  padding: 22px 26px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 20px;
  background: rgba(7,11,18,.68);
  backdrop-filter: blur(16px);
}

.contact-page-hero-note span,
.contact-page-hero-note strong {
  display: block;
}

.contact-page-hero-note span {
  margin-bottom: 8px;
  color: var(--color-primary);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 2px;
}

.contact-page-hero-note strong {
  font-size: 18px;
}

/* INFO CARDS */
.contact-info-section,
.contact-form-section,
.contact-map-section,
.contact-faq-section {
  position: relative;
  overflow: hidden;
  color: var(--color-white);
}

.contact-info-section {
  padding: 130px 0;
  background: var(--color-bg-900);
}

.contact-form-section {
  padding: 140px 0;
  background: var(--color-bg-800);
}

.contact-map-section {
  padding: 130px 0;
  background: var(--color-bg-900);
}

.contact-faq-section {
  padding: 130px 0;
  background: var(--color-bg-800);
}

.contact-info-section::before,
.contact-form-section::before,
.contact-map-section::before,
.contact-faq-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
  background-size: 80px 80px;
  opacity: .24;
  pointer-events: none;
}

.contact-info-section .container,
.contact-form-section .container,
.contact-map-section .container,
.contact-faq-section .container {
  position: relative;
  z-index: 2;
}

.contact-section-head {
  max-width: 830px;
  margin: 0 auto 70px;
  text-align: center;
}

.contact-section-head > span {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--color-primary);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 4px;
}

.contact-section-head > span::before,
.contact-section-head > span::after {
  content: "";
  width: 36px;
  height: 2px;
  background: var(--color-primary);
}

.contact-section-head h2 {
  margin-top: 22px;
  font-size: 52px;
  line-height: 1.1;
}

.contact-section-head p {
  max-width: 720px;
  margin: 22px auto 0;
  color: var(--color-text-soft);
  line-height: 1.8;
}

.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.contact-info-card {
  min-height: 330px;
  padding: 34px;
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 24px;
  background: rgba(255,255,255,.035);
  color: var(--color-white);
  text-decoration: none;
  transition: .35s ease;
}

.contact-info-card:hover {
  transform: translateY(-9px);
  border-color: rgba(var(--color-primary-rgb),.7);
  box-shadow: 0 28px 70px rgba(0,0,0,.38);
}

.contact-info-icon {
  display: grid;
  width: 62px;
  height: 62px;
  place-items: center;
  border-radius: 18px;
  background: rgba(var(--color-primary-rgb),.13);
  color: var(--color-primary);
  font-size: 23px;
}

.contact-card-label {
  display: block;
  margin-top: 34px;
  color: var(--color-primary);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 2px;
}

.contact-info-card h3 {
  margin: 12px 0 14px;
  font-size: 23px;
}

.contact-info-card p {
  color: var(--color-text-muted);
  line-height: 1.8;
}

.contact-info-card strong {
  display: block;
  margin-top: 24px;
  color: var(--color-white);
  font-size: 14px;
}

/* FORM */
.contact-form-wrapper {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  align-items: center;
  gap: 80px;
}

.contact-form-content h2 {
  margin: 26px 0;
  font-size: 54px;
  line-height: 1.08;
}

.contact-form-content > p {
  color: var(--color-text-soft);
  font-size: 16px;
  line-height: 1.9;
}

.contact-form-benefits {
  display: grid;
  gap: 16px;
  margin-top: 32px;
}

.contact-form-benefits div {
  display: flex;
  align-items: center;
  gap: 13px;
  color: #d8dee7;
}

.contact-form-benefits i {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border-radius: 50%;
  background: rgba(var(--color-primary-rgb),.13);
  color: var(--color-primary);
  font-size: 12px;
}

.contact-direct-box {
  margin-top: 38px;
  padding: 25px 28px;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 20px;
  background: rgba(255,255,255,.035);
}

.contact-direct-box span,
.contact-direct-box strong {
  display: block;
}

.contact-direct-box span {
  color: #8492a6;
  font-size: 13px;
}

.contact-direct-box strong {
  margin: 7px 0 14px;
  font-size: 18px;
}

.contact-direct-box a {
  color: var(--color-primary);
  text-decoration: none;
  font-weight: 800;
}

.contact-form-card {
  padding: 42px;
  border: 1px solid rgba(255,255,255,.11);
  border-radius: 28px;
  background:
    radial-gradient(circle at 100% 0%, rgba(var(--color-primary-rgb),.15), transparent 33%),
    rgba(255,255,255,.045);
  backdrop-filter: blur(16px);
  box-shadow: 0 35px 100px rgba(0,0,0,.38);
}

.contact-form-top {
  margin-bottom: 30px;
}

.contact-form-top span {
  color: var(--color-primary);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 3px;
}

.contact-form-top p {
  margin-top: 8px;
  color: #aab4c3;
}

.contact-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.contact-form-field {
  display: grid;
  gap: 10px;
}

.contact-form-field-full {
  grid-column: 1 / -1;
}

.contact-form-field > span {
  color: #dce2eb;
  font-size: 14px;
  font-weight: 700;
}

.contact-form-field input,
.contact-form-field select,
.contact-form-field textarea {
  width: 100%;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 14px;
  outline: 0;
  background: rgba(3,6,11,.62);
  color: var(--color-white);
  transition: .3s ease;
}

.contact-form-field input,
.contact-form-field select {
  height: 54px;
  padding: 0 17px;
}

.contact-form-field textarea {
  min-height: 150px;
  padding: 16px 17px;
  resize: vertical;
}

.contact-form-field input::placeholder,
.contact-form-field textarea::placeholder {
  color: #647184;
}

.contact-form-field input:focus,
.contact-form-field select:focus,
.contact-form-field textarea:focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 4px rgba(var(--color-primary-rgb),.1);
}

.contact-form-field select option {
  background: var(--color-bg-800);
  color: var(--color-white);
}

.contact-form-error {
  display: none;
  color: #ff6b6b;
  font-size: 12.5px;
  font-weight: 600;
}

.contact-form-field.has-error input,
.contact-form-field.has-error select {
  border-color: #ff6b6b;
  box-shadow: 0 0 0 4px rgba(255, 107, 107, 0.12);
}

.contact-form-field.has-error .contact-form-error {
  display: block;
}

.contact-form-submit {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  width: 100%;
  min-height: 56px;
  margin-top: 24px;
  border: 0;
  border-radius: 999px;
  background: var(--color-primary);
  color: var(--color-white);
  font-weight: 900;
  cursor: pointer;
  transition: transform .3s ease, box-shadow .3s ease, opacity .3s ease;
}

.contact-form-submit:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 45px rgba(var(--color-primary-rgb),.35);
}

.contact-form-submit:disabled {
  cursor: not-allowed;
  opacity: .8;
  transform: none;
}

.contact-form-submit i {
  transition: transform .3s ease;
}

.contact-form-submit:hover:not(:disabled) i {
  transform: translateX(4px);
}

.contact-form-submit-spinner {
  display: none;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 2.5px solid rgba(255, 255, 255, 0.35);
  border-top-color: var(--color-white);
}

.contact-form-submit.is-loading .contact-form-submit-spinner {
  display: inline-block;
  animation: contactSpin .7s linear infinite;
}

.contact-form-submit.is-loading .contact-form-submit-label {
  opacity: .85;
}

.contact-form-submit.is-loading i {
  display: none;
}

@keyframes contactSpin {
  to { transform: rotate(360deg); }
}

.contact-form-note {
  margin-top: 15px;
  color: #748196;
  font-size: 12px;
  line-height: 1.6;
  text-align: center;
}

/* TOAST BİLDİRİMLERİ — form gönderim geri bildirimi */
.armora-toast-stack {
  position: fixed;
  top: 20px;
  right: 20px;
  left: 20px;
  z-index: 100000;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
  pointer-events: none;
}

.armora-toast {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  max-width: 380px;
  width: 100%;
  padding: 16px 18px;
  border-radius: 16px;
  background: rgba(6, 10, 16, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px) saturate(160%);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.45);
  color: var(--color-white);
  pointer-events: auto;
  opacity: 0;
  transform: translateY(-16px) scale(0.97);
  animation: toastIn .4s cubic-bezier(.22,.9,.3,1) forwards;
}

.armora-toast.is-leaving {
  animation: toastOut .35s ease forwards;
}

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

@keyframes toastOut {
  to { opacity: 0; transform: translateY(-10px) scale(0.97); }
}

.armora-toast-icon {
  flex-shrink: 0;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
}

.armora-toast.success .armora-toast-icon {
  background: rgba(41, 197, 122, 0.16);
  color: #29c57a;
}

.armora-toast.error .armora-toast-icon {
  background: rgba(255, 107, 107, 0.16);
  color: #ff6b6b;
}

.armora-toast-text {
  font-size: 14px;
  line-height: 1.55;
  color: var(--color-text-pale);
  padding-top: 4px;
}

.armora-toast-text strong {
  display: block;
  color: var(--color-white);
  font-size: 15px;
  margin-bottom: 2px;
}

@media (max-width: 480px) {
  .armora-toast-stack {
    top: 12px;
    right: 12px;
    left: 12px;
    align-items: stretch;
  }
  .armora-toast {
    max-width: none;
  }
}

/* MAP */
.contact-map-head {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  align-items: end;
  gap: 60px;
  margin-bottom: 60px;
}

.contact-map-head h2 {
  max-width: 700px;
  margin-top: 24px;
  font-size: 52px;
  line-height: 1.08;
}

.contact-map-head > p {
  color: var(--color-text-faint);
  line-height: 1.85;
}

.contact-map-card {
  display: grid;
  grid-template-columns: 1.65fr .75fr;
  min-height: 560px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 28px;
  background: rgba(255,255,255,.035);
  box-shadow: 0 35px 100px rgba(0,0,0,.42);
}

.contact-map-frame {
  min-height: 560px;
}

.contact-map-frame iframe {
  width: 100%;
  height: 100%;
  min-height: 560px;
  filter: grayscale(.18) contrast(1.04);
}

.contact-map-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 46px;
}

.contact-map-label {
  color: var(--color-primary);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 2px;
}

.contact-map-info h3 {
  margin: 18px 0 12px;
  font-size: 31px;
  line-height: 1.2;
}

.contact-map-info > p {
  color: var(--color-text-muted);
}

.contact-map-info ul {
  display: grid;
  gap: 17px;
  margin: 34px 0;
  list-style: none;
}

.contact-map-info li {
  display: flex;
  align-items: center;
  gap: 13px;
  color: #d0d7e1;
}

.contact-map-info li i {
  width: 22px;
  color: var(--color-primary);
}

.contact-map-info li a {
  color: #d0d7e1;
  text-decoration: none;
}

.contact-map-actions {
  display: grid;
  gap: 13px;
}

/* FAQ */
.contact-faq-list {
  max-width: 920px;
  margin: 0 auto;
  display: grid;
  gap: 14px;
}

.contact-faq-item {
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 18px;
  background: rgba(255,255,255,.035);
}

.contact-faq-item summary {
  position: relative;
  padding: 24px 70px 24px 26px;
  cursor: pointer;
  list-style: none;
  font-size: 18px;
  font-weight: 800;
}

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

.contact-faq-item summary::after {
  content: "+";
  position: absolute;
  right: 26px;
  top: 50%;
  color: var(--color-primary);
  font-size: 28px;
  transform: translateY(-50%);
}

.contact-faq-item[open] summary::after {
  content: "−";
}

.contact-faq-item p {
  padding: 0 26px 26px;
  color: var(--color-text-muted);
  line-height: 1.8;
}

/* FINAL CTA */
.contact-final-cta {
  padding: 100px 0;
  background: var(--color-bg-900);
  color: var(--color-white);
}

.contact-final-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
  padding: 60px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 30px;
  background:
    radial-gradient(circle at 90% 50%, rgba(var(--color-primary-rgb),.26), transparent 34%),
    rgba(255,255,255,.04);
}

.contact-final-card > div:first-child {
  max-width: 720px;
}

.contact-final-card span {
  color: var(--color-primary);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 3px;
}

.contact-final-card h2 {
  margin: 18px 0;
  font-size: 48px;
  line-height: 1.08;
}

.contact-final-card p {
  color: var(--color-text-faint);
}

.contact-final-actions {
  display: flex;
  min-width: 270px;
  flex-direction: column;
  gap: 14px;
}

/* RESPONSIVE */
@media (max-width: 1100px) {
  .contact-info-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .contact-form-wrapper {
    grid-template-columns: 1fr;
  }
  .contact-form-content {
    max-width: 800px;
  }
  .contact-map-card {
    grid-template-columns: 1.25fr .75fr;
  }
}

@media (max-width: 900px) {
  .contact-map-head {
    grid-template-columns: 1fr;
    gap: 22px;
  }
  .contact-map-card {
    grid-template-columns: 1fr;
  }
  .contact-map-info {
    padding: 40px;
  }
  .contact-final-card {
    align-items: flex-start;
    flex-direction: column;
  }
  .contact-final-actions {
    width: 100%;
    flex-direction: row;
  }
}

@media (max-width: 768px) {
  .contact-page-hero {
    min-height: 690px;
  }
  .contact-page-hero-overlay {
    background: linear-gradient(0deg, rgba(3,6,11,.98), rgba(3,6,11,.54));
  }
  .contact-page-hero-content h1 {
    font-size: 48px;
    letter-spacing: -2px;
  }
  .contact-page-hero-note {
    display: none;
  }
  .contact-info-section,
  .contact-form-section,
  .contact-map-section,
  .contact-faq-section {
    padding: 90px 0;
  }
  .contact-section-head h2,
  .contact-form-content h2,
  .contact-map-head h2 {
    font-size: 38px;
  }
  .contact-form-card {
    padding: 30px;
  }
  .contact-form-grid {
    grid-template-columns: 1fr;
  }
  .contact-form-field-full {
    grid-column: auto;
  }
  .contact-map-frame,
  .contact-map-frame iframe {
    min-height: 440px;
  }
  .contact-final-card {
    padding: 40px;
  }
  .contact-final-card h2 {
    font-size: 38px;
  }
}

@media (max-width: 600px) {
  .contact-page-hero {
    min-height: 650px;
  }
  .contact-page-hero-content h1 {
    font-size: 40px;
    line-height: 1.05;
  }
  .contact-page-hero-content p {
    font-size: 15px;
  }
  .contact-page-hero-actions {
    flex-direction: column;
  }
  .contact-page-hero-actions a {
    width: 100%;
  }
  .contact-info-grid {
    grid-template-columns: 1fr;
  }
  .contact-info-card {
    min-height: auto;
    padding: 28px;
  }
  .contact-section-head > span {
    font-size: 11px;
    letter-spacing: 2px;
  }
  .contact-section-head > span::before,
  .contact-section-head > span::after {
    width: 22px;
  }
  .contact-section-head h2,
  .contact-form-content h2,
  .contact-map-head h2 {
    font-size: 32px;
  }
  .contact-form-card {
    padding: 24px;
    border-radius: 22px;
  }
  .contact-map-card {
    border-radius: 22px;
  }
  .contact-map-frame,
  .contact-map-frame iframe {
    min-height: 360px;
  }
  .contact-map-info {
    padding: 28px;
  }
  .contact-map-info h3 {
    font-size: 26px;
  }
  .contact-final-cta {
    padding: 75px 0;
  }
  .contact-final-card {
    padding: 30px 24px;
    border-radius: 24px;
  }
  .contact-final-card h2 {
    font-size: 32px;
  }
  .contact-final-actions {
    flex-direction: column;
  }
  .contact-final-actions a {
    width: 100%;
  }
}

/* =========================================
   PROJELER YAKINDA SAYFASI
========================================= */

.projects-coming-soon {
  position: relative;
  min-height: calc(100vh - 76px);
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 150px 0 110px;
  background:
    radial-gradient(
      circle at 20% 20%,
      rgba(255, 255, 255, 0.06),
      transparent 32%
    ),
    linear-gradient(
      135deg,
      var(--color-bg-900) 0%,
      #0b0e14 50%,
      var(--color-bg-900) 100%
    );
}

.projects-coming-background {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.projects-coming-background::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.1;
  background-image:
    linear-gradient(
      rgba(255, 255, 255, 0.08) 1px,
      transparent 1px
    ),
    linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.08) 1px,
      transparent 1px
    );
  background-size: 70px 70px;
  mask-image: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.8),
    transparent
  );
}

.projects-coming-light {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.16;
}

.projects-light-one {
  width: 420px;
  height: 420px;
  top: -120px;
  right: -100px;
  background: var(--color-white);
}

.projects-light-two {
  width: 300px;
  height: 300px;
  bottom: -100px;
  left: -80px;
  background: #707070;
}

.projects-coming-wrapper {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns:
    minmax(0, 1.1fr)
    minmax(350px, 0.9fr);
  align-items: center;
  gap: 85px;
}

.projects-coming-content {
  max-width: 760px;
}

.projects-coming-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 25px;
  color: var(--color-text-grey);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 4px;
}

.projects-coming-tag::before {
  content: "";
  width: 42px;
  height: 1px;
  background: rgba(255, 255, 255, 0.5);
}

.projects-coming-icon {
  width: 74px;
  height: 74px;
  display: grid;
  place-items: center;
  margin-bottom: 28px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 22px;
  color: var(--color-white);
  font-size: 29px;
  background: rgba(255, 255, 255, 0.06);
  box-shadow:
    0 20px 45px rgba(0, 0, 0, 0.3),
    inset 0 1px rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(16px);
}

.projects-coming-content h1 {
  margin: 0;
  max-width: 720px;
  color: var(--color-white);
  font-size: clamp(50px, 6.5vw, 92px);
  font-weight: 800;
  line-height: 0.98;
  letter-spacing: -4px;
}

.projects-coming-content h1 span {
  display: block;
  color: rgba(255, 255, 255, 0.34);
}

.projects-coming-content > p {
  max-width: 680px;
  margin: 30px 0 24px;
  color: var(--color-text-grey);
  font-size: 18px;
  line-height: 1.85;
}

.projects-coming-status {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  margin-top: 5px;
  color: #dce0e7;
  font-size: 14px;
  font-weight: 600;
}

.projects-status-dot {
  position: relative;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--color-white);
  box-shadow: 0 0 18px rgba(255, 255, 255, 0.7);
}

.projects-status-dot::after {
  content: "";
  position: absolute;
  inset: -7px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 50%;
  animation: projectsStatusPulse 1.8s infinite;
}

.projects-coming-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
  margin-top: 38px;
}

.projects-primary-btn,
.projects-secondary-btn {
  min-height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  padding: 0 25px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition:
    transform 0.3s ease,
    border-color 0.3s ease,
    background-color 0.3s ease,
    color 0.3s ease;
}

.projects-primary-btn {
  color: #080a0f;
  background: var(--color-white);
}

.projects-primary-btn:hover {
  transform: translateY(-4px);
  background: #e8e8e8;
}

.projects-secondary-btn {
  color: var(--color-white);
  border: 1px solid rgba(255, 255, 255, 0.17);
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(14px);
}

.projects-secondary-btn:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.1);
}

.projects-coming-features {
  display: grid;
  gap: 16px;
}

.projects-coming-card {
  position: relative;
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 22px;
  padding: 27px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.045);
  box-shadow: 0 20px 55px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(18px);
  transition:
    transform 0.35s ease,
    border-color 0.35s ease,
    background-color 0.35s ease;
}

.projects-coming-card:hover {
  transform: translateX(-8px);
  border-color: rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.075);
}

.projects-coming-card > span {
  color: rgba(255, 255, 255, 0.25);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 2px;
}

.projects-coming-card i {
  margin-bottom: 15px;
  color: var(--color-white);
  font-size: 24px;
}

.projects-coming-card h2 {
  margin: 0 0 10px;
  color: var(--color-white);
  font-size: 20px;
}

.projects-coming-card p {
  margin: 0;
  color: #9ca2ad;
  font-size: 14px;
  line-height: 1.7;
}

@keyframes projectsStatusPulse {
  0% {
    opacity: 1;
    transform: scale(0.7);
  }
  100% {
    opacity: 0;
    transform: scale(1.7);
  }
}

@media (max-width: 1050px) {
  .projects-coming-wrapper {
    grid-template-columns: 1fr;
    gap: 60px;
  }
  .projects-coming-content {
    max-width: 800px;
  }
  .projects-coming-features {
    grid-template-columns: repeat(3, 1fr);
  }
  .projects-coming-card {
    grid-template-columns: 1fr;
  }
  .projects-coming-card:hover {
    transform: translateY(-7px);
  }
}

@media (max-width: 760px) {
  .projects-coming-soon {
    min-height: auto;
    padding: 125px 0 80px;
  }
  .projects-coming-content h1 {
    font-size: clamp(46px, 15vw, 68px);
    letter-spacing: -2.5px;
  }
  .projects-coming-content > p {
    font-size: 16px;
    line-height: 1.75;
  }
  .projects-coming-actions {
    align-items: stretch;
    flex-direction: column;
  }
  .projects-primary-btn,
  .projects-secondary-btn {
    width: 100%;
  }
  .projects-coming-features {
    grid-template-columns: 1fr;
  }
  .projects-coming-card {
    grid-template-columns: 48px 1fr;
  }
}

@media (max-width: 480px) {
  .projects-coming-soon {
    padding-top: 110px;
  }
  .projects-coming-icon {
    width: 64px;
    height: 64px;
    border-radius: 18px;
    font-size: 25px;
  }
  .projects-coming-content h1 {
    font-size: 45px;
  }
  .projects-coming-card {
    grid-template-columns: 1fr;
    padding: 23px;
  }
}

/* =========================================
   ARMORA PPF DIŞ CEPHE / ATÖLYE TANITIM ALANI
========================================= */

.location-showcase {
  position: relative;
  padding: 120px 0;
  overflow: hidden;
  background:
    radial-gradient(
      circle at 85% 15%,
      rgba(255, 255, 255, 0.055),
      transparent 30%
    ),
    #080a0f;
}

.location-showcase::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: min(1200px, 90%);
  height: 1px;
  transform: translateX(-50%);
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.18),
    transparent
  );
}

.location-showcase-wrapper {
  display: grid;
  grid-template-columns:
    minmax(0, 1.08fr)
    minmax(380px, 0.92fr);
  align-items: center;
  gap: 80px;
}

.location-showcase-image {
  position: relative;
  min-height: 570px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 28px;
  background: #11141b;
  box-shadow: 0 35px 85px rgba(0, 0, 0, 0.38);
}

.location-showcase-image::before {
  content: "";
  position: absolute;
  z-index: 3;
  inset: 16px;
  pointer-events: none;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 19px;
}

.location-showcase-image img {
  width: 100%;
  height: 100%;
  min-height: 570px;
  display: block;
  object-fit: cover;
  object-position: center;
  transition: transform 0.8s ease;
}

.location-showcase-image:hover img {
  transform: scale(1.035);
}

.location-image-overlay {
  position: absolute;
  z-index: 1;
  inset: 0;
  background:
    linear-gradient(
      180deg,
      rgba(5, 7, 11, 0.02) 40%,
      rgba(5, 7, 11, 0.75) 100%
    );
}

.location-image-badge {
  position: absolute;
  z-index: 4;
  left: 35px;
  bottom: 35px;
  display: flex;
  align-items: center;
  gap: 15px;
  max-width: calc(100% - 70px);
  padding: 17px 20px;
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: 16px;
  background: rgba(7, 9, 13, 0.72);
  box-shadow: 0 18px 35px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(14px);
}

.location-badge-icon {
  width: 45px;
  height: 45px;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  border-radius: 12px;
  color: var(--color-white);
  font-size: 18px;
  background: rgba(255, 255, 255, 0.1);
}

.location-image-badge div {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.location-image-badge strong {
  color: var(--color-white);
  font-size: 15px;
}

.location-image-badge span {
  color: var(--color-text-grey);
  font-size: 13px;
}

.location-showcase-content {
  max-width: 630px;
}

.location-showcase-content .section-tag {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 23px;
  color: var(--color-text-grey);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 4px;
}

.location-showcase-content .section-tag::before {
  content: "";
  width: 42px;
  height: 1px;
  background: rgba(255, 255, 255, 0.55);
}

.location-showcase-content h2 {
  margin: 0 0 26px;
  color: var(--color-white);
  font-size: clamp(40px, 4.5vw, 65px);
  font-weight: 800;
  line-height: 1.04;
  letter-spacing: -2.7px;
}

.location-showcase-content h2 span {
  display: block;
  color: rgba(255, 255, 255, 0.37);
}

.location-showcase-content > p {
  margin: 0 0 17px;
  color: var(--color-text-grey);
  font-size: 16px;
  line-height: 1.85;
}

.location-showcase-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
  margin-top: 35px;
}

.location-feature {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.035);
  transition:
    transform 0.3s ease,
    border-color 0.3s ease,
    background-color 0.3s ease;
}

.location-feature:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.065);
}

.location-feature > span {
  width: 42px;
  height: 42px;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  border-radius: 12px;
  color: var(--color-white);
  font-size: 17px;
  background: rgba(255, 255, 255, 0.08);
}

.location-feature strong {
  display: block;
  margin-bottom: 7px;
  color: var(--color-white);
  font-size: 14px;
}

.location-feature p {
  margin: 0;
  color: #969ca7;
  font-size: 12px;
  line-height: 1.6;
}

.location-showcase-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 36px;
}

.location-primary-btn,
.location-secondary-btn {
  min-height: 55px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  padding: 0 24px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition:
    transform 0.3s ease,
    background-color 0.3s ease,
    border-color 0.3s ease;
}

.location-primary-btn {
  color: #07090d;
  background: var(--color-white);
}

.location-primary-btn:hover {
  transform: translateY(-4px);
  background: #e6e6e6;
}

.location-secondary-btn {
  color: var(--color-white);
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.035);
}

.location-secondary-btn:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.075);
}

@media (max-width: 1050px) {
  .location-showcase-wrapper {
    grid-template-columns: 1fr;
    gap: 55px;
  }
  .location-showcase-content {
    max-width: 800px;
  }
  .location-showcase-image,
  .location-showcase-image img {
    min-height: 520px;
  }
}

@media (max-width: 700px) {
  .location-showcase {
    padding: 80px 0;
  }
  .location-showcase-image,
  .location-showcase-image img {
    min-height: 420px;
  }
  .location-showcase-image {
    border-radius: 21px;
  }
  .location-image-badge {
    right: 22px;
    left: 22px;
    bottom: 22px;
    max-width: none;
  }
  .location-showcase-content h2 {
    font-size: clamp(37px, 11vw, 52px);
    letter-spacing: -1.8px;
  }
  .location-showcase-features {
    grid-template-columns: 1fr;
  }
  .location-showcase-actions {
    align-items: stretch;
    flex-direction: column;
  }
  .location-primary-btn,
  .location-secondary-btn {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .location-showcase {
    padding: 65px 0;
  }
  .location-showcase-image,
  .location-showcase-image img {
    min-height: 330px;
  }
  .location-image-badge {
    padding: 14px;
  }
  .location-badge-icon {
    width: 39px;
    height: 39px;
  }
  .location-image-badge strong {
    font-size: 13px;
  }
  .location-image-badge span {
    font-size: 11px;
  }
  .location-feature {
    padding: 17px;
  }
}

.hero {
  position: relative;
  height: 100vh;
  min-height: 620px;
  max-height: 1100px;
  overflow: hidden;
}

.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: heroZoom 20s ease-in-out infinite alternate;
}

@keyframes heroZoom {
  0%   { transform: scale(1); }
  100% { transform: scale(1.08); }
}

.overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(5, 7, 11, 0.75) 0%, rgba(5, 7, 11, 0.35) 45%, rgba(5, 7, 11, 0.85) 100%),
    radial-gradient(ellipse at center, transparent 40%, rgba(5, 7, 11, 0.45) 100%);
  z-index: 2;
}

.hero-content {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 5;
  width: 90%;
  max-width: 900px;
  text-align: center;
}

.hero-content > * {
  opacity: 0;
  transform: translateY(24px);
  animation: heroFadeUp 0.9s cubic-bezier(0.22, 0.9, 0.3, 1) forwards;
}

.hero-content .hero-subtitle { animation-delay: 0.05s; }
.hero-content h1             { animation-delay: 0.18s; }
.hero-content p              { animation-delay: 0.32s; }
.hero-content .hero-buttons  { animation-delay: 0.46s; }

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

@media (prefers-reduced-motion: reduce) {
  .hero-image { animation: none; }
  .hero-content > * {
    opacity: 1;
    transform: none;
    animation: none;
  }
}

.hero-subtitle {
  display: inline-block;
  padding: 10px 22px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(12px);
  border-radius: 40px;
  color: var(--color-white);
  margin-bottom: 24px;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2.5px;
}

.hero-content h1 {
  font-family: var(--font-heading);
  font-size: clamp(34px, 5.5vw, 68px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.12;
  color: var(--color-white);
  margin-bottom: 22px;
}

.hero-content p {
  font-size: clamp(15px, 1.6vw, 20px);
  color: var(--color-text-pale);
  line-height: 1.7;
  margin-bottom: 38px;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

.hero-buttons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--color-primary), #1a5fd9);
  color: var(--color-white);
  padding: 17px 32px;
  border-radius: 999px;
  border: 1px solid transparent;
  text-decoration: none;
  font-weight: 700;
  font-size: 15px;
  box-shadow: 0 14px 32px rgba(var(--color-primary-rgb), 0.35);
  transition: transform 0.35s cubic-bezier(0.22, 0.9, 0.3, 1),
              box-shadow 0.35s ease;
}

.btn-primary i {
  font-size: 13px;
  transition: transform 0.35s cubic-bezier(0.22, 0.9, 0.3, 1);
}

.btn-primary:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 45px rgba(var(--color-primary-rgb), 0.45);
}

.btn-primary:hover i {
  transform: translateX(4px);
}

.btn-primary:active {
  transform: translateY(-1px) scale(0.98);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(10px);
  padding: 17px 32px;
  border-radius: 999px;
  color: var(--color-white);
  text-decoration: none;
  font-weight: 700;
  font-size: 15px;
  transition: transform 0.35s cubic-bezier(0.22, 0.9, 0.3, 1),
              background 0.35s ease,
              border-color 0.35s ease;
}

.btn-secondary i {
  font-size: 18px;
  color: #25d366;
}

.btn-secondary:hover {
  background: var(--color-white);
  color: var(--color-dark);
  border-color: var(--color-white);
  transform: translateY(-4px);
}

.hero-scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 34px;
  z-index: 5;
  transform: translateX(-50%);
  width: 26px;
  height: 42px;
  border: 2px solid rgba(255, 255, 255, 0.4);
  border-radius: 999px;
  display: flex;
  justify-content: center;
  padding-top: 8px;
  text-decoration: none;
  opacity: 0;
  animation: heroFadeUp 0.9s cubic-bezier(0.22, 0.9, 0.3, 1) forwards;
  animation-delay: 0.7s;
}

.hero-scroll-cue span {
  width: 4px;
  height: 8px;
  border-radius: 999px;
  background: var(--color-white);
  animation: heroScrollDot 1.8s ease-in-out infinite;
}

@keyframes heroScrollDot {
  0%   { transform: translateY(0); opacity: 1; }
  60%  { transform: translateY(10px); opacity: 0.2; }
  61%  { transform: translateY(0); opacity: 0; }
  100% { transform: translateY(0); opacity: 1; }
}

@media (max-width: 768px) {
  .hero-scroll-cue { display: none; }
}

@media (max-width: 768px) {
  .hero {
    height: 92vh;
    min-height: 560px;
  }
  .hero-buttons {
    flex-direction: column;
    align-items: stretch;
  }
  .btn-primary,
  .btn-secondary {
    justify-content: center;
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .hero {
    height: 88vh;
    min-height: 520px;
  }
  .hero-subtitle {
    font-size: 11px;
    padding: 8px 16px;
  }
}