@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=Playfair+Display:wght@600;700&display=swap');

/* ==================================================
   DESIGN TOKENS / CSS VARIABLES
   Premium dark theme — tek kaynaktan yönetilen
   renk, boşluk, radius, gölge ve geçiş sistemi.
================================================== */
:root {
  /* --- Colors --- */
  --bg: #0D0F12;
  --bg-rgb: 13, 15, 18;
  --surface: #161A20;
  --surface-rgb: 22, 26, 32;
  --card: #1D2228;
  --card-rgb: 29, 34, 40;

  --primary: #C8873A;
  --primary-rgb: 200, 135, 58;
  --hover: #E0A458;
  --hover-rgb: 224, 164, 88;

  --text: #F5F5F5;
  --text-rgb: 245, 245, 245;
  --muted: #9CA3AF;
  --muted-rgb: 156, 163, 175;

  --border: rgba(255, 255, 255, 0.08);
  --border-strong: rgba(255, 255, 255, 0.16);

  /* --- Typography --- */
  --font-base: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  --font-display: 'Playfair Display', 'Inter', serif;
  --fw-regular: 400;
  --fw-medium: 500;
  --fw-semibold: 600;
  --fw-bold: 700;
  --fw-black: 800;

  /* --- Spacing scale --- */
  --space-xs: 8px;
  --space-sm: 16px;
  --space-md: 24px;
  --space-lg: 40px;
  --space-xl: 64px;
  --space-2xl: 96px;
  --space-3xl: 140px;

  /* --- Border radius scale --- */
  --radius-xs: 10px;
  --radius-sm: 14px;
  --radius-md: 18px;
  --radius-lg: 24px;
  --radius-xl: 30px;
  --radius-pill: 999px;
  --radius-circle: 50%;

  /* --- Shadows --- */
  --shadow-sm: 0 8px 20px rgba(0, 0, 0, 0.28);
  --shadow-md: 0 18px 45px rgba(0, 0, 0, 0.35);
  --shadow-lg: 0 28px 70px rgba(0, 0, 0, 0.4);
  --shadow-xl: 0 40px 110px rgba(0, 0, 0, 0.5);
  --shadow-glow: 0 18px 45px rgba(var(--primary-rgb), 0.35);
  --shadow-glow-strong: 0 0 45px rgba(var(--primary-rgb), 0.45);
  --shadow-inset: inset 0 1px 0 rgba(255, 255, 255, 0.06);

  /* --- Transitions --- */
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --transition-fast: 0.2s var(--ease);
  --transition-base: 0.3s var(--ease);
  --transition-slow: 0.55s var(--ease);

  /* --- Layout --- */
  --container-width: 1200px;
  --header-height: 90px;
}

/* ==================================================
   GLOBAL ENHANCEMENTS — Scrollbar / Selection / Focus
================================================== */
::selection {
  background: var(--primary);
  color: var(--bg);
}

html {
  scrollbar-color: var(--primary) var(--surface);
  scrollbar-width: thin;
}

::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}

::-webkit-scrollbar-track {
  background: var(--surface);
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--primary), var(--hover));
  border-radius: var(--radius-pill);
  border: 2px solid var(--surface);
}

::-webkit-scrollbar-thumb:hover {
  background: var(--hover);
}

:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 3px;
  border-radius: var(--radius-xs);
}

/* 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-base);
  background: var(--bg);
  color: var(--text);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
}

input, button, textarea, select {
  font: inherit;
}

p, h1, h2, h3, h4, h5, h6 {
  overflow-wrap: break-word;
}

p {
  text-wrap: pretty;
}

h1, h2, h3, h4, h5, h6 {
  text-wrap: balance;
}

#root, #__next {
  isolation: isolate;
}

/* GLOBAL */
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

.section-subtitle {
  color: var(--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(--text);
}

.stats p,
.services-desc,
.before-after-desc {
  max-width: 720px;
  margin: 25px auto 70px;
  color: var(--muted);
  line-height: 1.8;
}

/* HEADER */
.header {
  width: 100%;
  background: rgba(var(--bg-rgb), 0.55);
  backdrop-filter: blur(16px) saturate(140%);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
  border-bottom: 1px solid var(--border);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  transition: var(--transition-base);
}

.header .container {
  height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* LOGO */
.logo-img {
  width: 180px;
  height: auto;
  display: block;
}

/* MENU */
.menu {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.menu li a {
  text-decoration: none;
  color: var(--text);
  font-size: 15px;
  font-weight: 500;
  transition: var(--transition-base);
}

.menu li a:hover {
  color: var(--primary);
}

.menu li:last-child a {
  padding: 10px 20px;
  border: 1px solid var(--primary);
  border-radius: var(--radius-pill);
  color: var(--primary);
  transition: var(--transition-base);
}

.menu li:last-child a:hover {
  background: var(--primary);
  border-color: var(--hover);
  color: var(--bg);
  box-shadow: var(--shadow-glow);
  transform: translateY(-2px);
}



/* PROJECT SHOWCASE */
.project-showcase {
  padding: 120px 0;
  background: var(--surface);
  color: var(--text);
  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(200, 135, 58,.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 span {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--primary);
  font-size: 13px;
  letter-spacing: 4px;
  font-weight: 800;
}

.project-head span::before {
  content: "";
  width: 42px;
  height: 2px;
  background: var(--primary);
}

.project-head h2 {
  margin-top: 22px;
  font-size: 52px;
  line-height: 1.1;
}

.project-head p {
  margin-top: 22px;
  color: var(--muted);
  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: var(--radius-lg);
  overflow: hidden;
  background: var(--card);
  border: 1px solid var(--border);
  cursor: pointer;
  box-shadow: var(--shadow-lg);
  transition: var(--transition-base);
}

.project-card:hover {
  transform: translateY(-8px);
  border-color: var(--border-strong);
}

.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)
  );
}

.active-card {
  width: 330px;
  height: 520px;
  z-index: 3;
  border: 1px solid rgba(200, 135, 58,.8);
  box-shadow:
    0 0 45px rgba(200, 135, 58,.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: var(--radius-circle);
  border: 1px solid rgba(255,255,255,.65);
  background: rgba(0,0,0,.35);
  backdrop-filter: blur(8px);
  color: var(--text);
  display: grid;
  place-items: center;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  cursor: pointer;
}

.project-card h3 {
  position: absolute;
  z-index: 3;
  left: 0;
  right: 0;
  bottom: 28px;
  text-align: center;
  font-size: 19px;
  color: var(--text);
}

.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: var(--radius-circle);
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.18);
  color: var(--text);
  font-size: 34px;
  line-height: 1;
  cursor: pointer;
  transition: var(--transition-base);
  display: grid;
  place-items: center;
}

.slider-btn:hover {
  background: var(--primary);
  border-color: var(--primary);
}

.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: var(--radius-pill);
  background: rgba(255,255,255,.25);
}

.project-dots span.active {
  width: 28px;
  background: var(--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: var(--bg);
  border-radius: var(--radius-md);
  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: var(--radius-circle);
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.2);
  color: var(--text);
  font-size: 32px;
  cursor: pointer;
  transition: var(--transition-base);
}

.close-video:hover {
  background: var(--text);
  color: var(--bg);
}

/* 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(--surface);
  color: var(--text);
  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(--primary);
  font-size: 13px;
  letter-spacing: 4px;
  font-weight: 800;
}

.comparison-head span::before {
  content: "";
  width: 42px;
  height: 2px;
  background: var(--primary);
}

.comparison-head h2 {
  margin-top: 22px;
  font-size: 52px;
  line-height: 1.1;
}

.comparison-head p {
  margin-top: 22px;
  color: var(--muted);
  line-height: 1.8;
}

.comparison-wrapper {
  position: relative;
  width: 100%;
  max-width: 980px;
  height: 560px;
  margin: 0 auto;
  border-radius: var(--radius-xl);
  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(200, 135, 58,.8);
}

.comparison-handle {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 64px;
  height: 64px;
  transform: translate(-50%, -50%);
  border-radius: var(--radius-circle);
  border: 0;
  background: linear-gradient(135deg, var(--primary), var(--hover));
  color: var(--text);
  font-weight: 900;
  font-size: 20px;
  cursor: ew-resize;
  box-shadow: 0 0 35px rgba(200, 135, 58,.65);
}

.comparison-label {
  position: absolute;
  bottom: 24px;
  z-index: 5;
  padding: 12px 22px;
  border-radius: var(--radius-pill);
  background: rgba(0,0,0,.55);
  backdrop-filter: blur(8px);
  color: var(--text);
  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(200, 135, 58,.65);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .comparison-section {
    padding: 80px 0;
  }

  .comparison-head h2 {
    font-size: 34px;
  }

  .comparison-wrapper {
    height: 420px;
    border-radius: var(--radius-lg);
  }

  .after-img {
    width: calc(90vw);
  }

  .comparison-label {
    font-size: 11px;
    padding: 10px 14px;
  }
}



/* ABOUT PREMIUM */
.about-premium {
  padding: 130px 0;
  background: var(--surface);
  color: var(--text);
  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(200, 135, 58,.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(--primary);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 4px;
}

.section-tag::before {
  content: "";
  width: 42px;
  height: 2px;
  background: var(--primary);
}

.about-left h2 {
  margin: 26px 0;
  max-width: 620px;
  font-size: 58px;
  line-height: 1.05;
  color: var(--text);
}

.about-left > p {
  max-width: 600px;
  color: var(--muted);
  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(--primary);
  color: var(--bg);
  text-decoration: none;
  font-weight: 800;
  border-radius: var(--radius-pill);
  transition: var(--transition-base);
}

.about-btn:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-glow);
}

.about-link {
  color: var(--text);
  text-decoration: none;
  font-weight: 700;
}

.about-right {
  position: relative;
}

.about-right img {
  width: 100%;
  height: 560px;
  object-fit: cover;
  border-radius: var(--radius-xl);
  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: var(--radius-lg);
  box-shadow: 0 25px 70px rgba(0,0,0,.35);
}

.glass-card strong {
  display: block;
  color: var(--primary);
  font-size: 38px;
  margin-bottom: 6px;
}

.glass-card span {
  color: var(--text);
  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: var(--radius-xl);
  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(--primary);
  font-weight: 900;
}

.about-feature h3 {
  margin-bottom: 10px;
  font-size: 20px;
  color: var(--text);
}

.about-feature p {
  color: var(--muted);
  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: 165px;
  }

  .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: 155px;
  }

  .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: var(--radius-lg);
  }

  .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: var(--radius-lg);
  }

  .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: 150px;
  }




  .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: var(--radius-md);
  }

  .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: var(--radius-md);
  }

  .close-video {
    top: 16px;
    right: 16px;
    width: 42px;
    height: 42px;
    font-size: 28px;
  }

  .comparison-wrapper {
    height: 330px;
    border-radius: var(--radius-md);
  }

  .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: var(--radius-lg);
  }

  .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: var(--radius-lg);
  }

  .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(--bg);
  color: var(--text);
  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(--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(--primary);
}

.brand-head h2 {
  margin-top: 24px;
  color: var(--text);
  font-size: 52px;
  line-height: 1.1;
}

.brand-head p {
  max-width: 850px;
  margin: 24px auto 0;
  color: var(--muted);
  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(--bg) 0%, transparent 100%);
}

.brand-marquee::after {
  right: 0;
  background: linear-gradient(to left, var(--bg) 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(200, 135, 58,.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(--bg);
  color: var(--text);
  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(--primary);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 4px;
}

.gallery-head span::before {
  content: "";
  width: 42px;
  height: 2px;
  background: var(--primary);
}

.gallery-head h2 {
  margin-top: 22px;
  font-size: 52px;
  line-height: 1.1;
  color: var(--text);
}

.gallery-head p {
  margin-top: 22px;
  color: var(--muted);
  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: var(--radius-lg);
  border: 1px solid rgba(255,255,255,.08);
  background: var(--card);
  display: block;
  text-decoration: none;
  transition: var(--transition-base);
}

.gallery-item.large {
  grid-row: span 2;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-slow);
}

.gallery-item::before {
  content: "↗";
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 3;
  width: 38px;
  height: 38px;
  border-radius: var(--radius-circle);
  background: rgba(200, 135, 58,.9);
  color: var(--text);
  display: grid;
  place-items: center;
  opacity: 0;
  transform: translateY(-8px);
  transition: var(--transition-base);
}

.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(--text);
  font-weight: 800;
  line-height: 1.5;
  opacity: 0;
  transform: translateY(14px);
  transition: var(--transition-base);
}

.gallery-item:hover {
  border-color: var(--primary);
  box-shadow: 0 0 35px rgba(200, 135, 58,.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: var(--radius-pill);
  background: var(--primary);
  color: var(--bg);
  text-decoration: none;
  font-weight: 800;
  transition: var(--transition-base);
}

.gallery-btn:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-glow);
}

/* 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: var(--radius-md);
  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: var(--radius-circle);
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.2);
  color: var(--text);
  font-size: 32px;
  cursor: pointer;
}

.lightbox-close:hover {
  background: var(--text);
  color: var(--bg);
}

@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(--bg);
  color: var(--text);
  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(--primary);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 4px;
}

.booking-head span::before {
  content: "";
  width: 42px;
  height: 2px;
  background: var(--primary);
}

.booking-head h2 {
  margin-top: 22px;
  font-size: 52px;
  line-height: 1.1;
}

.booking-head p {
  margin-top: 22px;
  color: var(--muted);
  line-height: 1.8;
}

.booking-card {
  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: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 35px 100px rgba(0,0,0,.45);
  backdrop-filter: blur(14px);
}

.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: var(--radius-circle);
  overflow: hidden;
  margin-bottom: 18px;
  background: var(--card);
}

.booking-info span {
  color: var(--muted);
  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: var(--muted);
  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;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font-size: 24px;
}

.calendar-days,
.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 8px;
  text-align: center;
}

.calendar-days span {
  color: var(--text);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.calendar-grid {
  margin-top: 18px;
}

.calendar-grid button {
  height: 52px;
  border: 0;
  border-radius: var(--radius-xs);
  background: rgba(255,255,255,.11);
  color: var(--text);
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition-base);
}

.calendar-grid button:hover {
  background: rgba(200, 135, 58,.45);
}

.calendar-grid button.active {
  background: var(--text);
  color: var(--bg);
}

.time-top div {
  display: flex;
  gap: 6px;
}

.time-top span,
.time-top strong {
  padding: 6px 10px;
  border-radius: var(--radius-xs);
  background: rgba(255,255,255,.08);
  color: var(--muted);
  font-size: 13px;
}

.time-top strong {
  background: var(--text);
  color: var(--bg);
}

.booking-times button {
  width: 100%;
  height: 44px;
  margin-bottom: 12px;
  border-radius: var(--radius-xs);
  border: 1px solid rgba(255,255,255,.18);
  background: transparent;
  color: var(--text);
  cursor: pointer;
  transition: var(--transition-base);
}

.booking-times button:hover {
  border-color: var(--primary);
  background: rgba(200, 135, 58,.18);
}

.booking-submit {
  display: block;
  margin-top: 22px;
  padding: 15px 20px;
  border-radius: var(--radius-pill);
  background: var(--primary);
  color: var(--bg);
  text-align: center;
  text-decoration: none;
  font-weight: 800;
  transition: var(--transition-base);
}

.booking-submit:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-glow);
}

@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:var(--bg);
}

/* 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(200, 135, 58,.55),
        rgba(255,255,255,.18),
        rgba(200, 135, 58,.55),
        transparent
    );

    box-shadow:
        0 0 12px rgba(200, 135, 58,.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(--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: var(--radius-pill);

    background:var(--primary);

    color: var(--bg);

    text-decoration:none;

    font-weight:700;

    transition: var(--transition-base);
}

.footer-whatsapp:hover{

    transform:translateY(-5px);

    box-shadow:0 20px 40px rgba(200, 135, 58,.35);
}

/* Başlıklar */

.footer-col h3{

    font-size:18px;

    margin-bottom:24px;

    color:var(--text);
}

.footer-col a,
.footer-col p{

    display:block;

    text-decoration:none;

    color:var(--muted);

    margin-bottom:14px;

    transition: var(--transition-base);
}

.footer-col a:hover{

    color:var(--primary);

    transform:translateX(5px);
}

/* 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:var(--muted);

    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;
}

.project-card.playing .play-btn,
.project-card.playing h3 {
  opacity: 0;
  pointer-events: none;
}

















/* ================================
   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: var(--radius-sm);
  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(200, 135, 58, 0.75);
  background: rgba(200, 135, 58, 0.14);
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 5px auto;
  border-radius: var(--radius-pill);
  background: var(--text);
  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(200, 135, 58, 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(--text);
    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(--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(--primary);
    border-radius: var(--radius-pill);
    background: var(--primary);
    color: var(--bg);
  }

  .navbar .menu li:last-child a:hover {
    padding-left: 22px;
    background: var(--text);
    border-color: var(--text);
    color: var(--bg);
  }

  .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(--primary);
}

/* HERO */
.about-page-hero {
  position: relative;
  min-height: 760px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--bg);
  color: var(--text);
}

.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(13, 15, 18, .96) 0%, rgba(13, 15, 18, .72) 48%, rgba(13, 15, 18, .26) 100%),
    linear-gradient(0deg, rgba(13, 15, 18, .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(--muted);
  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: var(--radius-pill);
  color: var(--text);
  text-decoration: none;
  font-weight: 800;
  transition: var(--transition-base);
}

.about-page-outline-btn:hover {
  border-color: var(--primary);
  background: rgba(200, 135, 58, .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(--muted);
  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(--primary), transparent);
}

/* STORY */
.about-story {
  position: relative;
  overflow: hidden;
  padding: 140px 0;
  background: var(--surface);
  color: var(--text);
}

.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: var(--radius-xl);
  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(--surface);
  border-radius: var(--radius-lg);
  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: var(--radius-lg);
  background: rgba(22, 26, 32,.78);
  backdrop-filter: blur(16px);
}

.about-story-badge strong {
  display: block;
  color: var(--primary);
  font-size: 42px;
}

.about-story-badge span {
  color: var(--text);
  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(--muted);
  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: var(--muted);
  font-size: 14px;
}

.about-story-signature a {
  color: var(--text);
  text-decoration: none;
  font-weight: 800;
}

.about-story-signature a:hover {
  color: var(--primary);
}

/* VALUES */
.about-values {
  position: relative;
  overflow: hidden;
  padding: 130px 0;
  background: var(--bg);
  color: var(--text);
}

.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(--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(--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(--muted);
  line-height: 1.8;
}

.about-values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.about-value-card {
  min-height: 300px;
  padding: 34px;
  border: 1px solid rgba(255,255,255,.09);
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,.035);
  transition: var(--transition-base);
}

.about-value-card:hover {
  transform: translateY(-9px);
  border-color: rgba(200, 135, 58,.7);
  box-shadow: var(--shadow-lg);
}

.about-value-card > span {
  display: inline-flex;
  width: 54px;
  height: 54px;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-md);
  background: rgba(200, 135, 58,.13);
  color: var(--primary);
  font-weight: 900;
}

.about-value-card h3 {
  margin: 34px 0 14px;
  font-size: 23px;
}

.about-value-card p {
  color: var(--muted);
  line-height: 1.8;
}

/* MISSION */
.about-mission {
  padding: 120px 0;
  background: var(--surface);
  color: var(--text);
}

.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: var(--radius-xl);
  background:
    radial-gradient(circle at 100% 0%, rgba(200, 135, 58,.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(--muted);
  line-height: 1.85;
}

/* PROCESS */
.about-process {
  position: relative;
  overflow: hidden;
  padding: 130px 0;
  background: var(--bg);
  color: var(--text);
}

.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(200, 135, 58,.45);
  border-radius: var(--radius-circle);
  background: rgba(200, 135, 58,.09);
  color: var(--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(200, 135, 58,.55), rgba(255,255,255,.06));
}

.about-process-item h3 {
  margin: 32px 0 14px;
  font-size: 22px;
}

.about-process-item p {
  color: var(--muted);
  line-height: 1.8;
}

/* STATS */
.about-stats {
  padding: 70px 0;
  background: var(--primary);
  color: var(--bg);
}

.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(--surface);
  color: var(--text);
}

.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: var(--muted);
}

.about-workshop-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--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: var(--radius-lg);
  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(--bg);
  color: var(--text);
}

.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: var(--radius-md);
  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(--primary);
  font-size: 28px;
  transform: translateY(-50%);
}

.about-faq-item[open] summary::after {
  content: "−";
}

.about-faq-item p {
  padding: 0 26px 26px;
  color: var(--muted);
  line-height: 1.8;
}

/* CTA */
.about-cta {
  padding: 100px 0;
  background: var(--surface);
  color: var(--text);
}

.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: var(--radius-xl);
  background:
    radial-gradient(circle at 90% 50%, rgba(200, 135, 58,.26), transparent 34%),
    rgba(255,255,255,.04);
}

.about-cta-card > div:first-child {
  max-width: 720px;
}

.about-cta-card span {
  color: var(--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(--muted);
}

.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(13, 15, 18,.97), rgba(13, 15, 18,.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: var(--radius-lg);
  }

  .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: var(--radius-lg);
  }

  .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(--bg);
  color: var(--text);
}

.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(13, 15, 18,.97) 0%, rgba(13, 15, 18,.72) 48%, rgba(13, 15, 18,.24) 100%),
    linear-gradient(0deg, rgba(13, 15, 18,.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(--muted);
  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(--bg);
  color: var(--text);
}

.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(--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(--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(--muted);
  line-height: 1.8;
}

.services-overview-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.services-overview-card {
  min-height: 310px;
  padding: 34px;
  border: 1px solid rgba(255,255,255,.09);
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,.035);
  color: var(--text);
  text-decoration: none;
  transition: var(--transition-base);
}

.services-overview-card:hover {
  transform: translateY(-9px);
  border-color: rgba(200, 135, 58,.7);
  box-shadow: var(--shadow-lg);
}

.services-overview-card > span {
  display: inline-flex;
  width: 54px;
  height: 54px;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-md);
  background: rgba(200, 135, 58,.13);
  color: var(--primary);
  font-weight: 900;
}

.services-overview-card h3 {
  margin: 32px 0 14px;
  font-size: 24px;
}

.services-overview-card p {
  color: var(--muted);
  line-height: 1.8;
}

.services-overview-card strong {
  display: inline-block;
  margin-top: 28px;
  color: var(--primary);
  font-size: 14px;
}

/* SERVICE DETAIL */
.service-detail {
  padding: 130px 0;
  background: var(--surface);
  color: var(--text);
}

.service-detail:nth-of-type(even) {
  background: var(--bg);
}

.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: var(--radius-xl);
  box-shadow: var(--shadow-xl);
}

.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: var(--radius-md);
  background: rgba(22, 26, 32,.82);
  backdrop-filter: blur(16px);
}

.service-detail-label span,
.service-detail-label strong {
  display: block;
}

.service-detail-label span {
  color: var(--primary);
  font-weight: 900;
}

.service-detail-label strong {
  margin-top: 4px;
  color: var(--text);
}

.service-detail-content h2 {
  margin: 26px 0;
  font-size: 52px;
  line-height: 1.08;
}

.service-detail-content > p {
  margin-bottom: 18px;
  color: var(--muted);
  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: var(--muted);
}

.service-feature-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: 900;
}

/* PROCESS */
.services-process {
  position: relative;
  overflow: hidden;
  padding: 130px 0;
  background: var(--bg);
  color: var(--text);
}

.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: var(--radius-lg);
  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: var(--radius-circle);
  background: rgba(200, 135, 58,.12);
  color: var(--primary);
  font-weight: 900;
}

.services-process-card h3 {
  margin: 30px 0 14px;
  font-size: 23px;
}

.services-process-card p {
  color: var(--muted);
  line-height: 1.8;
}

/* WHY */
.services-why {
  padding: 140px 0;
  background: var(--surface);
  color: var(--text);
}

.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(--muted);
  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(--primary);
  font-size: 18px;
}

.services-why-item h3 {
  margin-bottom: 8px;
  font-size: 21px;
}

.services-why-item p {
  color: var(--muted);
  line-height: 1.7;
}

.services-why-media {
  position: relative;
}

.services-why-media img {
  width: 100%;
  height: 650px;
  object-fit: cover;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
}

.services-why-glass {
  position: absolute;
  right: -28px;
  bottom: 50px;
  padding: 24px 28px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: var(--radius-lg);
  background: rgba(22, 26, 32,.76);
  backdrop-filter: blur(16px);
}

.services-why-glass strong,
.services-why-glass span {
  display: block;
}

.services-why-glass strong {
  color: var(--primary);
  font-size: 40px;
}

.services-why-glass span {
  color: var(--text);
  font-weight: 700;
}

/* FAQ */
.services-faq {
  position: relative;
  overflow: hidden;
  padding: 130px 0;
  background: var(--bg);
  color: var(--text);
}

.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: var(--radius-md);
  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(--primary);
  font-size: 28px;
  transform: translateY(-50%);
}

.services-faq-item[open] summary::after {
  content: "−";
}

.services-faq-item p {
  padding: 0 26px 26px;
  color: var(--muted);
  line-height: 1.8;
}

/* CTA */
.services-cta {
  padding: 100px 0;
  background: var(--surface);
  color: var(--text);
}

.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: var(--radius-xl);
  background:
    radial-gradient(circle at 90% 50%, rgba(200, 135, 58,.26), transparent 34%),
    rgba(255,255,255,.04);
}

.services-cta-card > div:first-child {
  max-width: 720px;
}

.services-cta-card span {
  color: var(--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(--muted);
}

.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(13, 15, 18,.97), rgba(13, 15, 18,.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: var(--radius-lg);
  }

  .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: var(--radius-lg);
  }

  .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(--bg);
  color: var(--text);
}

.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(13, 15, 18,.98) 0%, rgba(13, 15, 18,.82) 48%, rgba(13, 15, 18,.34) 100%),
    linear-gradient(0deg, rgba(13, 15, 18,.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(--muted);
  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: var(--radius-md);
  background: rgba(22, 26, 32,.58);
  backdrop-filter: blur(16px);
}

.packages-summary-card span {
  color: var(--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: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

/* SELECTOR */
.package-selector {
  position: relative;
  overflow: hidden;
  padding: 140px 0;
  background: var(--bg);
  color: var(--text);
}

.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(--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(--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(--muted);
  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: var(--radius-pill);
  background: rgba(255,255,255,.035);
  color: var(--muted);
  cursor: pointer;
  transition: var(--transition-base);
}

.package-tab:hover,
.package-tab.active {
  border-color: var(--primary);
  background: var(--primary);
  color: var(--bg);
}

.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: var(--radius-xl);
  background:
    radial-gradient(circle at 100% 0%, rgba(200, 135, 58,.09), transparent 32%),
    rgba(255,255,255,.035);
  transition: var(--transition-base);
}

.premium-package-card:hover {
  transform: translateY(-8px);
  border-color: rgba(200, 135, 58,.7);
  box-shadow: 0 32px 80px rgba(0,0,0,.42);
}

.premium-package-card.featured {
  border-color: rgba(200, 135, 58,.8);
  box-shadow:
    0 0 0 1px rgba(200, 135, 58,.16),
    0 32px 90px rgba(200, 135, 58,.15);
}

.premium-package-popular {
  position: absolute;
  top: 24px;
  right: -42px;
  width: 190px;
  padding: 8px 0;
  background: var(--primary);
  color: var(--bg);
  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(--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(--muted);
  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: var(--radius-md);
  background: rgba(255,255,255,.025);
}

.premium-package-meta span,
.premium-package-meta strong {
  display: block;
}

.premium-package-meta span {
  color: var(--muted);
  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: var(--muted);
}

.premium-package-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--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: var(--muted);
  font-size: 12px;
}

.premium-package-price strong {
  margin-top: 5px;
  color: var(--text);
  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: var(--radius-pill);
  color: var(--text);
  text-decoration: none;
  font-weight: 800;
  transition: var(--transition-base);
}

.premium-package-btn:hover,
.premium-package-btn.primary {
  border-color: var(--primary);
  background: var(--primary);
  box-shadow: 0 16px 40px rgba(200, 135, 58,.28);
}

/* COMPARISON */
.package-comparison {
  position: relative;
  overflow: hidden;
  padding: 130px 0;
  background: var(--surface);
  color: var(--text);
}

.package-table-wrap {
  overflow-x: auto;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-lg);
  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(200, 135, 58,.08);
  color: var(--text);
  font-size: 14px;
}

.package-table td {
  color: var(--muted);
}

.package-table td:first-child {
  color: var(--text);
  font-weight: 700;
}

/* PROCESS */
.package-process {
  position: relative;
  overflow: hidden;
  padding: 130px 0;
  background: var(--bg);
  color: var(--text);
}

.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: var(--radius-lg);
  background: rgba(255,255,255,.035);
  transition: var(--transition-base);
}

.package-process-card:hover {
  transform: translateY(-8px);
  border-color: rgba(200, 135, 58,.65);
}

.package-process-card span {
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border-radius: var(--radius-circle);
  background: rgba(200, 135, 58,.12);
  color: var(--primary);
  font-weight: 900;
}

.package-process-card h3 {
  margin: 28px 0 14px;
  font-size: 22px;
}

.package-process-card p {
  color: var(--muted);
  line-height: 1.8;
}

/* BENEFITS */
.package-benefits {
  padding: 140px 0;
  background: var(--surface);
  color: var(--text);
}

.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: var(--radius-xl);
  box-shadow: var(--shadow-xl);
}

.package-benefit-glass {
  position: absolute;
  left: -26px;
  bottom: 46px;
  padding: 24px 28px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: var(--radius-lg);
  background: rgba(22, 26, 32,.78);
  backdrop-filter: blur(16px);
}

.package-benefit-glass strong,
.package-benefit-glass span {
  display: block;
}

.package-benefit-glass strong {
  color: var(--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(--muted);
  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(--primary);
}

.package-benefit-list span {
  color: var(--muted);
  font-weight: 700;
}

/* FAQ */
.package-faq {
  position: relative;
  overflow: hidden;
  padding: 130px 0;
  background: var(--bg);
  color: var(--text);
}

.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: var(--radius-md);
  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(--primary);
  font-size: 28px;
  transform: translateY(-50%);
}

.package-faq-item[open] summary::after {
  content: "−";
}

.package-faq-item p {
  padding: 0 26px 26px;
  color: var(--muted);
  line-height: 1.8;
}

/* FINAL CTA */
.package-final-cta {
  padding: 100px 0;
  background: var(--surface);
  color: var(--text);
}

.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: var(--radius-xl);
  background:
    radial-gradient(circle at 90% 50%, rgba(200, 135, 58,.27), transparent 34%),
    rgba(255,255,255,.04);
}

.package-final-card > div:first-child {
  max-width: 730px;
}

.package-final-card span {
  color: var(--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(--muted);
  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(13, 15, 18,.98), rgba(13, 15, 18,.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: var(--radius-lg);
  }

  .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: var(--radius-lg);
  }

  .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: var(--radius-lg);
  }

  .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(--bg);
  color: var(--text);
}

.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(13, 15, 18,.98) 0%, rgba(13, 15, 18,.78) 48%, rgba(13, 15, 18,.24) 100%),
    linear-gradient(0deg, rgba(13, 15, 18,.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(--muted);
  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: var(--radius-lg);
  background: rgba(22, 26, 32,.62);
  backdrop-filter: blur(16px);
}

.projects-page-hero-stat strong,
.projects-page-hero-stat span {
  display: block;
}

.projects-page-hero-stat strong {
  color: var(--primary);
  font-size: 44px;
}

.projects-page-hero-stat span {
  font-weight: 700;
}

/* INTRO */
.projects-showcase-intro {
  padding: 100px 0;
  background: var(--surface);
  color: var(--text);
}

.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(--muted);
  line-height: 1.9;
}

/* PORTFOLIO */
.projects-portfolio {
  position: relative;
  overflow: hidden;
  padding: 120px 0 140px;
  background: var(--bg);
  color: var(--text);
}

.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: var(--radius-pill);
  background: rgba(255,255,255,.035);
  color: var(--muted);
  cursor: pointer;
  transition: var(--transition-base);
}

.project-filter-btn:hover,
.project-filter-btn.active {
  border-color: var(--primary);
  background: var(--primary);
  color: var(--bg);
}

.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: var(--radius-xl);
  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(200, 135, 58,.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(--card);
}

.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(13, 15, 18,.82), transparent 56%),
    linear-gradient(90deg, rgba(13, 15, 18,.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: var(--radius-pill);
  background: rgba(22, 26, 32,.58);
  backdrop-filter: blur(10px);
  color: var(--text);
  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: var(--radius-circle);
  background: rgba(0,0,0,.35);
  backdrop-filter: blur(10px);
  color: var(--text);
  cursor: pointer;
  transform: translate(-50%, -50%);
  transition: var(--transition-base);
}

.project-video-trigger:hover {
  background: var(--primary);
  border-color: var(--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(--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(--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: var(--muted);
  font-size: 12px;
}

.project-portfolio-meta strong {
  margin: 5px 0 20px;
}

.project-portfolio-meta i {
  color: var(--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(--surface);
  color: var(--text);
}

.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(--muted);
  line-height: 1.9;
}

.project-comparison-wrapper {
  position: relative;
  height: 560px;
  overflow: hidden;
  border-radius: var(--radius-xl);
  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(200, 135, 58,.75);
}

.project-comparison-handle {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 64px;
  height: 64px;
  border: 0;
  border-radius: var(--radius-circle);
  background: linear-gradient(135deg, var(--primary), var(--hover));
  color: var(--text);
  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: var(--radius-pill);
  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(--bg);
  color: var(--text);
}

.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(--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(--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: var(--radius-lg);
  background: rgba(255,255,255,.035);
}

.projects-process-grid article > span {
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border-radius: var(--radius-circle);
  background: rgba(200, 135, 58,.12);
  color: var(--primary);
  font-weight: 900;
}

.projects-process-grid h3 {
  margin: 28px 0 14px;
  font-size: 22px;
}

.projects-process-grid p {
  color: var(--muted);
  line-height: 1.8;
}

/* CTA */
.projects-cta {
  padding: 100px 0;
  background: var(--surface);
  color: var(--text);
}

.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: var(--radius-xl);
  background:
    radial-gradient(circle at 90% 50%, rgba(200, 135, 58,.27), transparent 34%),
    rgba(255,255,255,.04);
}

.projects-cta-card > div:first-child {
  max-width: 730px;
}

.projects-cta-card span {
  color: var(--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(--muted);
  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(13, 15, 18,.98), rgba(13, 15, 18,.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: var(--radius-lg);
  }

  .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: var(--radius-lg);
  }

  .projects-cta-card h2 {
    font-size: 32px;
  }
}


/* ==================================================
   SABİT İLETİŞİM BUTONLARI
================================================== */

.floating-contact {
  position: fixed;
  right: 26px;
  bottom: 26px;
  z-index: 9999;

  display: flex;
  flex-direction: column;
  gap: 12px;

  padding: 9px;

  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);

  background: rgba(5, 9, 16, 0.76);

  -webkit-backdrop-filter: blur(22px);
  backdrop-filter: blur(22px);

  box-shadow:
    0 24px 65px rgba(0, 0, 0, 0.42),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.floating-contact::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;

  border-radius: inherit;

  background:
    linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.08),
      transparent 45%
    );

  pointer-events: none;
}

.floating-contact-btn {
  position: relative;
  isolation: isolate;
  overflow: hidden;

  width: 205px;
  min-height: 58px;

  display: flex;
  align-items: center;
  justify-content: center;
  gap: 11px;

  padding: 0 22px;

  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-md);

  color: var(--text);
  text-decoration: none;

  font-size: 14px;
  font-weight: 800;
  letter-spacing: -0.15px;

  box-shadow:
    0 13px 30px rgba(0, 0, 0, 0.26),
    inset 0 1px 0 rgba(255, 255, 255, 0.13);

  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    border-color 0.3s ease,
    filter 0.3s ease;
}

.floating-contact-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;

  width: 70%;
  height: 100%;

  z-index: -1;

  background: linear-gradient(
    110deg,
    transparent,
    rgba(255, 255, 255, 0.17),
    transparent
  );

  transform: skewX(-20deg);
  transition: left 0.6s ease;
}

.floating-contact-btn:hover::before {
  left: 140%;
}

.floating-contact-btn:hover {
  transform: translateY(-4px) scale(1.015);

  border-color: rgba(255, 255, 255, 0.22);

  box-shadow:
    0 20px 42px rgba(0, 0, 0, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.17);
}

.floating-contact-btn:active {
  transform: translateY(-1px) scale(0.985);
}

.floating-contact-icon {
  width: 24px;
  height: 24px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  flex-shrink: 0;

  font-size: 19px;
}

.floating-contact-text {
  white-space: nowrap;
}

.floating-call-btn {
  background:
    radial-gradient(
      circle at 15% 10%,
      rgba(75, 151, 255, 0.35),
      transparent 45%
    ),
    linear-gradient(
      135deg,
      #0c284f 0%,
      #114b91 55%,
      #1b63b8 100%
    );
}

.floating-whatsapp-btn {
  background:
    radial-gradient(
      circle at 15% 10%,
      rgba(111, 255, 174, 0.28),
      transparent 45%
    ),
    linear-gradient(
      135deg,
      #087842 0%,
      #139e56 55%,
      #20b965 100%
    );
}

/* Klavye erişilebilirliği */
.floating-contact-btn:focus-visible {
  outline: 3px solid rgba(200, 135, 58, 0.55);
  outline-offset: 4px;
}

/* ==================================================
   MOBİL
================================================== */

@media (max-width: 768px) {
  body {
    padding-bottom: 94px;
  }

  .floating-contact {
    left: 12px;
    right: 12px;
    bottom: max(12px, env(safe-area-inset-bottom));

    flex-direction: row;
    gap: 10px;

    padding: 8px;

    border-radius: var(--radius-lg);

    background: rgba(5, 9, 16, 0.82);
  }

  .floating-contact-btn {
    flex: 1;

    width: auto;
    min-width: 0;
    min-height: 56px;

    padding: 0 12px;

    border-radius: var(--radius-sm);

    font-size: 13px;
  }

  .floating-contact-icon {
    width: 22px;
    height: 22px;
    font-size: 18px;
  }
}

@media (max-width: 390px) {
  .floating-contact {
    left: 8px;
    right: 8px;
    gap: 7px;
    padding: 7px;
  }

  .floating-contact-btn {
    min-height: 54px;
    padding: 0 8px;
    gap: 8px;
    font-size: 12px;
  }

  .floating-contact-icon {
    font-size: 17px;
  }
}

/* Hareket azaltma tercihi */
@media (prefers-reduced-motion: reduce) {
  .floating-contact-btn,
  .floating-contact-btn::before {
    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(--bg);
  color: var(--text);
}

.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(13, 15, 18, .98) 0%, rgba(13, 15, 18, .78) 50%, rgba(13, 15, 18, .25) 100%),
    linear-gradient(0deg, rgba(13, 15, 18, .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: var(--muted);
  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: var(--radius-lg);
  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: var(--muted);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 2px;
}

.blog-page-hero-card strong {
  margin: 8px 0 2px;
  color: var(--primary);
  font-size: 48px;
  line-height: 1;
}

.blog-page-hero-card p {
  color: var(--text);
  font-size: 14px;
  font-weight: 700;
}


/* FEATURED */
.blog-featured-section {
  padding: 120px 0 80px;
  background: var(--surface);
  color: var(--text);
}

.blog-featured-card {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-xl);
  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: var(--radius-pill);
  background: rgba(5,9,16,.68);
  backdrop-filter: blur(12px);
  color: var(--text);
  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(--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(--text);
  text-decoration: none;
}

.blog-featured-content > p {
  color: var(--muted);
  line-height: 1.85;
}

.blog-article-meta {
  display: flex;
  gap: 16px;
  margin: 26px 0;
  color: var(--muted);
  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(--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(--bg);
  color: var(--text);
}

.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: var(--muted);
  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: var(--radius-pill);
  background: rgba(255,255,255,.035);
  color: var(--muted);
  cursor: pointer;
  transition: var(--transition-fast);
}

.blog-filter-btn:hover,
.blog-filter-btn.active {
  border-color: var(--primary);
  background: var(--primary);
  color: var(--bg);
}

.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: var(--radius-sm);
  background: rgba(255,255,255,.035);
}

.blog-search-box span {
  color: var(--muted);
  font-size: 22px;
}

.blog-search-box input {
  width: 100%;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--text);
  font: inherit;
}

.blog-search-box input::placeholder {
  color: var(--muted);
}

.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: var(--radius-lg);
  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(200, 135, 58,.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(13, 15, 18,.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: var(--radius-pill);
  background: rgba(4,8,15,.65);
  backdrop-filter: blur(10px);
  color: var(--text);
  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: var(--muted);
  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(--text);
  text-decoration: none;
}

.blog-card-content p {
  min-height: 79px;
  margin-bottom: 21px;
  color: var(--muted);
  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: var(--radius-lg);
  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: var(--muted);
}


/* CTA */
.blog-newsletter-section {
  padding: 100px 0;
  background: var(--surface);
  color: var(--text);
}

.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: var(--radius-xl);
  background:
    radial-gradient(circle at 90% 50%, rgba(200, 135, 58,.25), transparent 35%),
    rgba(255,255,255,.035);
}

.blog-newsletter-card > div:first-child {
  max-width: 760px;
}

.blog-newsletter-card span {
  color: var(--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: var(--muted);
  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(13, 15, 18,.98), rgba(13, 15, 18,.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: var(--bg);
  color: var(--text);
}

.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(13, 15, 18,.98) 0%, rgba(13, 15, 18,.68) 52%, rgba(13, 15, 18,.38) 100%),
    linear-gradient(90deg, rgba(13, 15, 18,.78), transparent 75%);
}

.article-hero-content {
  position: relative;
  z-index: 2;
}

.article-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-bottom: 35px;
  color: var(--muted);
  font-size: 13px;
}

.article-breadcrumb a {
  color: var(--muted);
  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: var(--muted);
  font-size: 19px;
  line-height: 1.85;
}

.article-hero-lead strong {
  color: var(--text);
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-top: 34px;
  color: var(--muted);
  font-size: 12px;
}

.article-meta span + span::before {
  content: "•";
  margin-right: 15px;
}


/* LAYOUT */
.article-layout-section {
  padding: 110px 0 140px;
  background: var(--bg);
  color: var(--text);
}

.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: var(--radius-md);
  background: rgba(255,255,255,.025);
}

.article-toc > span {
  margin-bottom: 12px;
  color: var(--primary);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 2px;
}

.article-toc a {
  padding: 9px 10px;
  border-radius: var(--radius-xs);
  color: var(--muted);
  text-decoration: none;
  font-size: 13px;
  line-height: 1.4;
  transition: var(--transition-fast);
}

.article-toc a:hover {
  background: rgba(200, 135, 58,.1);
  color: var(--text);
}

.article-sidebar-cta {
  margin-top: 20px;
  padding: 25px;
  border: 1px solid rgba(200, 135, 58,.25);
  border-radius: var(--radius-md);
  background:
    radial-gradient(circle at 80% 20%, rgba(200, 135, 58,.22), transparent 45%),
    rgba(255,255,255,.025);
}

.article-sidebar-cta span {
  color: var(--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(--primary);
  color: var(--bg);
  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: var(--muted);
  font-size: 17px;
  line-height: 1.95;
}

.article-content p {
  margin-bottom: 22px;
}

.article-content strong {
  color: var(--muted);
}

.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(200, 135, 58,.22);
  border-radius: var(--radius-md);
  background:
    radial-gradient(circle at 100% 0%, rgba(200, 135, 58,.18), transparent 35%),
    rgba(255,255,255,.03);
}

.article-intro-box > strong,
.article-note > strong {
  display: block;
  margin-bottom: 10px;
  color: var(--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: var(--radius-lg);
}

.article-image figcaption {
  margin-top: 13px;
  color: var(--muted);
  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: var(--radius-md);
  background: rgba(255,255,255,.025);
}

.article-feature-grid span,
.article-package-grid span {
  color: var(--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: var(--radius-md);
  background: rgba(255,255,255,.025);
}

.article-steps > li > span {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  border-radius: var(--radius-sm);
  background: rgba(200, 135, 58,.12);
  color: var(--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: var(--radius-sm);
  background: rgba(255,255,255,.02);
}

.article-check-list li::before {
  content: "✓";
  position: absolute;
  left: 20px;
  top: 20px;
  color: var(--primary);
  font-weight: 900;
}

.article-table-wrapper {
  overflow-x: auto;
  margin: 30px 0;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius-md);
}

.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: var(--muted);
  text-align: left;
}

.article-table th {
  background: rgba(200, 135, 58,.08);
  color: var(--text);
  font-size: 13px;
}

.article-table tr:last-child td {
  border-bottom: 0;
}

.article-section-heading > span {
  color: var(--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: var(--radius-md);
  background: rgba(255,255,255,.025);
}

.article-faq summary {
  position: relative;
  padding: 21px 55px 21px 22px;
  color: var(--text);
  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(--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(200, 135, 58,.28);
  border-radius: 26px;
  background:
    radial-gradient(circle at 90% 10%, rgba(200, 135, 58,.3), transparent 38%),
    rgba(255,255,255,.035);
}

.article-main-cta > span {
  color: var(--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: var(--radius-md);
  background: rgba(255,255,255,.025);
  color: var(--text);
  text-decoration: none;
  transition: var(--transition-fast);
}

.article-related-grid > a:hover {
  transform: translateY(-5px);
  border-color: rgba(200, 135, 58,.45);
}

.article-related-grid img {
  width: 100%;
  height: 155px;
  object-fit: cover;
}

.article-related-grid div {
  padding: 17px;
}

.article-related-grid span {
  color: var(--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(--bg);
  color: var(--text);
}

.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(13, 15, 18,.97) 0%, rgba(13, 15, 18,.78) 47%, rgba(13, 15, 18,.25) 100%),
    linear-gradient(0deg, rgba(13, 15, 18,.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(--muted);
  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: var(--radius-md);
  background: rgba(22, 26, 32,.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(--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(--text);
}

.contact-info-section {
  padding: 130px 0;
  background: var(--bg);
}

.contact-form-section {
  padding: 140px 0;
  background: var(--surface);
}

.contact-map-section {
  padding: 130px 0;
  background: var(--bg);
}

.contact-faq-section {
  padding: 130px 0;
  background: var(--surface);
}

.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(--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(--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(--muted);
  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: var(--radius-lg);
  background: rgba(255,255,255,.035);
  color: var(--text);
  text-decoration: none;
  transition: var(--transition-base);
}

.contact-info-card:hover {
  transform: translateY(-9px);
  border-color: rgba(200, 135, 58,.7);
  box-shadow: var(--shadow-lg);
}

.contact-info-icon {
  display: grid;
  width: 62px;
  height: 62px;
  place-items: center;
  border-radius: var(--radius-md);
  background: rgba(200, 135, 58,.13);
  color: var(--primary);
  font-size: 23px;
}

.contact-card-label {
  display: block;
  margin-top: 34px;
  color: var(--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(--muted);
  line-height: 1.8;
}

.contact-info-card strong {
  display: block;
  margin-top: 24px;
  color: var(--text);
  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(--muted);
  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: var(--muted);
}

.contact-form-benefits i {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border-radius: var(--radius-circle);
  background: rgba(200, 135, 58,.13);
  color: var(--primary);
  font-size: 12px;
}

.contact-direct-box {
  margin-top: 38px;
  padding: 25px 28px;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-md);
  background: rgba(255,255,255,.035);
}

.contact-direct-box span,
.contact-direct-box strong {
  display: block;
}

.contact-direct-box span {
  color: var(--muted);
  font-size: 13px;
}

.contact-direct-box strong {
  margin: 7px 0 14px;
  font-size: 18px;
}

.contact-direct-box a {
  color: var(--primary);
  text-decoration: none;
  font-weight: 800;
}

.contact-form-card {
  padding: 42px;
  border: 1px solid rgba(255,255,255,.11);
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at 100% 0%, rgba(200, 135, 58,.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(--primary);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 3px;
}

.contact-form-top p {
  margin-top: 8px;
  color: var(--muted);
}

.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: var(--muted);
  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: var(--radius-sm);
  outline: 0;
  background: rgba(13, 15, 18,.62);
  color: var(--text);
  transition: var(--transition-base);
}

.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: var(--muted);
}

.contact-form-field input:focus,
.contact-form-field select:focus,
.contact-form-field textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(200, 135, 58,.1);
}

.contact-form-field select option {
  background: var(--surface);
  color: var(--text);
}

.contact-form-submit {
  width: 100%;
  min-height: 56px;
  margin-top: 24px;
  border: 0;
  border-radius: var(--radius-pill);
  background: var(--primary);
  color: var(--bg);
  font-weight: 900;
  cursor: pointer;
  transition: var(--transition-base);
}

.contact-form-submit:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-glow);
}

.contact-form-submit i {
  margin-left: 9px;
}

.contact-form-note {
  margin-top: 15px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.6;
  text-align: center;
}

/* 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(--muted);
  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: var(--radius-xl);
  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(--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(--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: var(--muted);
}

.contact-map-info li i {
  width: 22px;
  color: var(--primary);
}

.contact-map-info li a {
  color: var(--muted);
  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: var(--radius-md);
  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(--primary);
  font-size: 28px;
  transform: translateY(-50%);
}

.contact-faq-item[open] summary::after {
  content: "−";
}

.contact-faq-item p {
  padding: 0 26px 26px;
  color: var(--muted);
  line-height: 1.8;
}

/* FINAL CTA */
.contact-final-cta {
  padding: 100px 0;
  background: var(--bg);
  color: var(--text);
}

.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: var(--radius-xl);
  background:
    radial-gradient(circle at 90% 50%, rgba(200, 135, 58,.26), transparent 34%),
    rgba(255,255,255,.04);
}

.contact-final-card > div:first-child {
  max-width: 720px;
}

.contact-final-card span {
  color: var(--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(--muted);
}

.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(13, 15, 18,.98), rgba(13, 15, 18,.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: var(--radius-lg);
  }

  .contact-map-card {
    border-radius: var(--radius-lg);
  }

  .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: var(--radius-lg);
  }

  .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(--bg) 0%,
      var(--surface) 50%,
      var(--bg) 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: var(--radius-circle);
  filter: blur(100px);
  opacity: 0.16;
}

.projects-light-one {
  width: 420px;
  height: 420px;
  top: -120px;
  right: -100px;
  background: var(--hover);
}

.projects-light-two {
  width: 300px;
  height: 300px;
  bottom: -100px;
  left: -80px;
  background: var(--primary);
}

.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(--muted);
  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: var(--radius-lg);
  color: var(--text);
  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(--text);
  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(--muted);
  font-size: 18px;
  line-height: 1.85;
}

.projects-coming-status {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  margin-top: 5px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
}

.projects-status-dot {
  position: relative;
  width: 9px;
  height: 9px;
  border-radius: var(--radius-circle);
  background: var(--text);
  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: var(--radius-circle);
  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: var(--radius-sm);
  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: var(--bg);
  background: var(--primary);
}

.projects-primary-btn:hover {
  transform: translateY(-4px);
  background: var(--hover);
}

.projects-secondary-btn {
  color: var(--text);
  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: var(--radius-lg);
  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(--text);
  font-size: 24px;
}

.projects-coming-card h2 {
  margin: 0 0 10px;
  color: var(--text);
  font-size: 20px;
}

.projects-coming-card p {
  margin: 0;
  color: var(--muted);
  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: var(--radius-md);
    font-size: 25px;
  }

  .projects-coming-content h1 {
    font-size: 45px;
  }

  .projects-coming-card {
    grid-template-columns: 1fr;
    padding: 23px;
  }
}



/* =========================================
   PPF LAB 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%
    ),
    var(--surface);
}

.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: var(--radius-xl);
  background: var(--card);
  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: var(--radius-md);
  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: var(--radius-sm);
  color: var(--text);
  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(--text);
  font-size: 15px;
}

.location-image-badge span {
  color: var(--muted);
  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(--muted);
  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(--text);
  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(--muted);
  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: var(--radius-md);
  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: var(--radius-sm);
  color: var(--text);
  font-size: 17px;
  background: rgba(255, 255, 255, 0.08);
}

.location-feature strong {
  display: block;
  margin-bottom: 7px;
  color: var(--text);
  font-size: 14px;
}

.location-feature p {
  margin: 0;
  color: var(--muted);
  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: var(--radius-sm);
  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: var(--bg);
  background: var(--primary);
}

.location-primary-btn:hover {
  transform: translateY(-4px);
  background: var(--hover);
}

.location-secondary-btn {
  color: var(--text);
  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: var(--radius-lg);
  }

  .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;
overflow:hidden;

}

.hero-image{

position:absolute;
width:100%;
height:100%;
object-fit:cover;
animation:heroZoom 18s ease-in-out infinite alternate;

}

@keyframes heroZoom{

0%{

transform:scale(1);

}

100%{

transform:scale(1.08);

}

}

.overlay{

position:absolute;
left:0;
top:0;
width:100%;
height:100%;

background:
linear-gradient(
rgba(0,0,0,.72),
rgba(0,0,0,.40)
);

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-subtitle{

display:inline-block;
padding:10px 22px;

border:1px solid rgba(255,255,255,.25);

backdrop-filter:blur(12px);

border-radius: var(--radius-pill);

color:var(--text);

margin-bottom:22px;

font-size:14px;

text-transform:uppercase;

letter-spacing:2px;

}

.hero-content h1{

font-size:64px;

font-weight:800;

line-height:1.1;

color:var(--text);

margin-bottom:20px;

}

.hero-content p{

font-size:20px;

color: var(--muted);

line-height:1.7;

margin-bottom:35px;

}

.hero-buttons{

display:flex;

justify-content:center;

gap:18px;

flex-wrap:wrap;

}

.btn-primary{

background: var(--primary);

color: var(--bg);

padding:16px 34px;

border-radius: var(--radius-pill);

text-decoration:none;

font-weight:700;

transition: var(--transition-base);

}

.btn-primary:hover{

transform:translateY(-4px);

}

.btn-secondary{

border:2px solid var(--text);

padding:16px 34px;

border-radius: var(--radius-pill);

color:var(--text);

text-decoration:none;

transition: var(--transition-base);

}

.btn-secondary:hover{

background:var(--text);

color: var(--bg);

}

@media(max-width:768px){

.hero{

height:75vh;

}

.hero-content h1{

font-size:36px;

}

.hero-content p{

font-size:16px;

}

.hero-buttons{

flex-direction:column;

align-items:center;

}

.btn-primary,
.btn-secondary{

width:240px;

text-align:center;

}

}

@media(max-width:480px){

.hero{

height:70vh;

}

.hero-content h1{

font-size:28px;

}

.hero-content p{

font-size:15px;

}

.hero-subtitle{

font-size:11px;

}

}







/* =====================================================================
   NOT GARAGE DENİZLİ — EK BLOK: Footer Sosyal Medya + Hizmet Bölgeleri
   (Denizli alt bölge/mahalle SEO anahtar kelimeleri için)
   ===================================================================== */

.footer-social{
    display:flex;
    align-items:center;
    gap:12px;

    margin-top:22px;
}

.footer-social a{
    display:flex;
    align-items:center;
    justify-content:center;

    width:42px;
    height:42px;

    border-radius:var(--radius-circle);

    background:var(--surface);
    border:1px solid var(--border);

    color:var(--muted);

    font-size:16px;

    transition:var(--transition-base);
}

.footer-social a:hover{
    background:var(--primary);
    border-color:var(--primary);
    color:var(--bg);

    transform:translateY(-4px);
}

.footer-areas{
    position:relative;
    z-index:5;

    display:flex;
    flex-wrap:wrap;
    align-items:center;
    gap:14px;

    padding:26px 0;

    border-top:1px solid rgba(255,255,255,.06);
}

.footer-areas-label{
    font-size:14px;
    font-weight:700;
    color:var(--text);
    white-space:nowrap;
}

.footer-areas-tags{
    display:flex;
    flex-wrap:wrap;
    gap:10px;
}

.footer-areas-tags span{
    padding:6px 16px;

    border-radius:var(--radius-pill);

    background:var(--surface);
    border:1px solid var(--border);

    color:var(--muted);

    font-size:13px;

    transition:var(--transition-base);
}

.footer-areas-tags span:hover{
    border-color:var(--primary);
    color:var(--primary);
}

@media(max-width:768px){

.footer-social{
    justify-content:center;
}

.footer-areas{
    flex-direction:column;
    align-items:flex-start;
    text-align:left;
}

.footer-areas-tags{
    justify-content:flex-start;
}

}
