/* =========================================
   GÜNEY ANAHTAR — styles.css v4.0
   Mobile-first, production-grade
   ========================================= */

:root {
  --gold: #FFD700;
  --gold-dim: rgba(255, 215, 0, 0.18);
  --red: #E8272D;
  --red-h: #C91F25;
  --red-glow: rgba(232, 39, 45, 0.38);
  --dark: #04152D;
  --dark-mid: #0A2540;
  --dark-light: #0F3460;
  --bg: #fff;
  --bg-light: #F5F7FA;
  --text: #2D3748;
  --text-muted: #718096;
  --border: rgba(0, 0, 0, 0.08);
  --white: #fff;

  --f-head: 'Syne', sans-serif;
  --f-body: 'DM Sans', sans-serif;

  --max-w: 1200px;
  --h-height: 74px;

  --sh-xs: 0 1px 4px rgba(0, 0, 0, 0.05);
  --sh-sm: 0 4px 16px rgba(10, 37, 64, 0.09);
  --sh-md: 0 12px 36px rgba(10, 37, 64, 0.14);
  --sh-lg: 0 24px 56px rgba(10, 37, 64, 0.2);

  --r-sm: 8px;
  --r-md: 14px;
  --r-lg: 22px;
  --r-full: 9999px;

  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --spring: cubic-bezier(0.16, 1, 0.3, 1);
  --t: all .3s var(--ease);
  --ts: all .55s var(--spring);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--f-body);
  color: var(--text);
  background: var(--bg);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

body.is-loading {
  overflow: hidden;
}

@media (prefers-reduced-motion:reduce) {

  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    transition-duration: .01ms !important;
  }
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--t);
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* LAYOUT */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 20px;
}

.section {
  padding: 90px 0;
}

.bg-light {
  background: var(--bg-light);
}

/* TYPOGRAPHY */
h1,
h2,
h3,
h4 {
  font-family: var(--f-head);
  color: var(--dark-mid);
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.gold {
  color: var(--gold);
}

.eyebrow {
  display: inline-block;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--red);
  padding: 4px 14px;
  background: rgba(232, 39, 45, .08);
  border: 1px solid rgba(232, 39, 45, .18);
  border-radius: var(--r-full);
  margin-bottom: 12px;
}

.sec-head {
  text-align: center;
  margin-bottom: 56px;
}

.sec-head h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 800;
  margin-bottom: 12px;
}

.sec-head p {
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 540px;
  margin: 0 auto;
  line-height: 1.8;
}

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: var(--r-md);
  font-weight: 700;
  font-family: var(--f-head);
  font-size: 1rem;
  cursor: pointer;
  border: 2px solid transparent;
  outline: none;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
  transition: var(--t);
}

.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, .12);
  opacity: 0;
  transition: opacity .2s;
}

.btn:hover::after {
  opacity: 1;
}

.btn:active {
  transform: scale(.97);
}

.btn-red {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
  box-shadow: 0 4px 16px var(--red-glow);
}

.btn-red:hover {
  background: var(--red-h);
  border-color: var(--red-h);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px var(--red-glow);
}

.btn-ghost {
  background: transparent;
  border-color: rgba(255, 255, 255, .45);
  color: var(--white);
  backdrop-filter: blur(4px);
}

.btn-ghost:hover {
  background: var(--white);
  border-color: var(--white);
  color: var(--dark-mid);
}

.btn-lg {
  padding: 17px 38px;
  font-size: 1.1rem;
  border-radius: var(--r-lg);
}

.btn-sm {
  padding: 9px 20px;
  font-size: .9rem;
  border-radius: var(--r-sm);
}

.mt-2 {
  margin-top: 10px;
}

.btn-glow {
  animation: glow 2.2s ease-in-out infinite;
}

@keyframes glow {
  0% {
    box-shadow: 0 0 0 0 rgba(232, 39, 45, .6);
  }

  60% {
    box-shadow: 0 0 0 14px rgba(232, 39, 45, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(232, 39, 45, 0);
  }
}

/* ─── LOADER ─── */
#loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: #060d1a;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.loader-stars {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.star {
  position: absolute;
  border-radius: 50%;
  background: #fff;
  opacity: 0;
  animation: twinkle var(--d, 3s) var(--dl, 0s) ease-in-out infinite;
}

@keyframes twinkle {

  0%,
  100% {
    opacity: 0;
    transform: scale(.5);
  }

  50% {
    opacity: var(--op, .4);
    transform: scale(1);
  }
}

.loader-scene {
  position: relative;
  width: 130px;
  height: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 32px;
}

.pulse-ring {
  position: absolute;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 215, 0, .15);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  opacity: 0;
  animation: ring-out 2s ease-out infinite;
}

.r1 {
  width: 150px;
  height: 150px;
  animation-delay: 0s;
}

.r2 {
  width: 190px;
  height: 190px;
  animation-delay: .35s;
}

.r3 {
  width: 230px;
  height: 230px;
  animation-delay: .7s;
}

@keyframes ring-out {
  0% {
    transform: translate(-50%, -50%) scale(.6);
    opacity: 0;
  }

  40% {
    opacity: 1;
  }

  100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0;
  }
}

#sparks {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.spark {
  position: absolute;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--gold);
  opacity: 0;
  animation: spark-fly .65s var(--sd, 1.5s) ease-out forwards;
}

@keyframes spark-fly {
  0% {
    opacity: 1;
    transform: translate(0, 0) scale(1);
  }

  100% {
    opacity: 0;
    transform: translate(var(--sx, 20px), var(--sy, -30px)) scale(0);
  }
}

/* Lock parts */
.lock-svg {
  width: 100px;
  height: 130px;
  filter: drop-shadow(0 0 12px rgba(255, 215, 0, .35));
}

.lb {
  opacity: 0;
  animation: fade-up .45s .25s var(--spring) forwards;
}

.ls {
  opacity: 0;
  animation: fade-up .3s .35s ease forwards;
}

@keyframes fade-up {
  0% {
    opacity: 0;
    transform: translateY(6px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.lsh {
  transform-origin: 50px 56px;
  transform: translateY(-20px) rotate(-15deg);
  opacity: 0;

  stroke: #FFD700 !important;
  /* 🔥 KRİTİK */

  animation:
    sh-appear .3s .4s ease forwards,
    sh-drop .65s .85s cubic-bezier(.36, 0, .66, -.56) forwards;
}

@keyframes sh-appear {
  to {
    opacity: 1;
  }
}

@keyframes sh-drop {
  0% {
    transform: translateY(-20px) rotate(-15deg);
  }

  65% {
    transform: translateY(4px) rotate(2deg);
  }

  100% {
    transform: translateY(0) rotate(0);
  }
}

.lk {
  opacity: 0;
  animation: kh-in .35s 1.45s ease forwards;
}

@keyframes kh-in {
  0% {
    opacity: 0;
    transform: scale(0);
  }

  100% {
    opacity: 1;
    transform: scale(1);
  }
}

/* Loader text */
.loader-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  opacity: 0;
  transform: translateY(14px);
  animation: text-rise .7s 1.1s var(--spring) forwards;
}

@keyframes text-rise {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.lt-brand {
  font-family: var(--f-head);
  font-size: clamp(1.6rem, 5vw, 2.2rem);
  font-weight: 800;
  color: var(--gold);
  letter-spacing: -.02em;
}

.lt-tag {
  font-size: .88rem;
  color: rgba(255, 255, 255, .45);
  letter-spacing: .05em;
}

/* Progress bar */
.loader-bar-wrap {
  margin-top: 36px;
  width: 180px;
  height: 2px;
  background: rgba(255, 255, 255, .08);
  border-radius: var(--r-full);
  overflow: hidden;
  opacity: 0;
  animation: fade-in .4s 1.4s ease forwards;
}

@keyframes fade-in {
  to {
    opacity: 1;
  }
}

.loader-bar {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--gold), #ff9a00);
  border-radius: var(--r-full);
  animation: fill 1.7s 1.4s var(--ease) forwards;
}

@keyframes fill {
  to {
    width: 100%;
  }
}

#loader.out {
  animation: loader-exit .65s var(--ease) forwards;
}

@keyframes loader-exit {
  to {
    opacity: 0;
    pointer-events: none;
  }
}

/* ─── HEADER ─── */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--h-height);
  background: transparent;
  z-index: 1000;
  transition: background .4s var(--ease), backdrop-filter .4s var(--ease), box-shadow .4s var(--ease);
}

.header.scrolled {
  background: rgba(4, 21, 45, .95);
  backdrop-filter: blur(16px) saturate(160%);
  -webkit-backdrop-filter: blur(16px) saturate(160%);
  box-shadow: 0 1px 0 rgba(255, 255, 255, .06), 0 8px 28px rgba(0, 0, 0, .25);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--h-height);
}

.logo {
  display: flex;
  align-items: center;
  gap: 7px;
  font-family: var(--f-head);
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -.02em;
  flex-shrink: 0;
}

.logo i {
  color: var(--gold);
  font-size: 1.6rem;
}

.logo em {
  color: var(--gold);
  font-style: normal;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-link {
  color: rgba(255, 255, 255, .72);
  font-weight: 500;
  font-size: .92rem;
  position: relative;
  padding-bottom: 3px;
  transition: color .25s;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  border-radius: var(--r-full);
  transition: width .35s var(--spring);
}

.nav-link:hover,
.nav-link.active {
  color: var(--gold);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 14px;
}


/* Burger */
.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  z-index: 1001;
}

.burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--t);
  transform-origin: center;
}

.burger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.burger.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.burger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.nav-mobile-cta {
  display: none;
}

.nav-overlay {
  visibility: hidden;
  pointer-events: none;
  position: fixed;
  inset: 0;
  background: rgba(4, 21, 45, .6);
  z-index: 998;
  backdrop-filter: blur(2px);
  opacity: 0;
  transition: opacity .35s ease, visibility .35s ease;
}

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

/* ─── HERO ─── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: var(--h-height);
  background: var(--dark);
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

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

.hero-fallback {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #04152D 0%, #0F3460 100%);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(105deg, rgba(4, 21, 45, .97) 0%, rgba(10, 37, 64, .83) 50%, rgba(10, 37, 64, .3) 100%),
    linear-gradient(to bottom, transparent 50%, rgba(4, 21, 45, .6) 100%);
}

.hero-inner {
  position: relative;
  z-index: 2;
  padding: 60px 0 80px;
}

.hero-content {
  color: var(--white);
  max-width: 640px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 6px 16px;
  border-radius: var(--r-full);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
  background: rgba(255, 51, 102, .1);
  color: #FFB3C6;
  border: 1px solid rgba(255, 51, 102, .25);
  margin-bottom: 22px;
  animation: badge-pulse 2s ease-in-out infinite;
}

@keyframes badge-pulse {

  0%,
  100% {
    opacity: 1
  }

  50% {
    opacity: .65
  }
}

.hero-content h1 {
  font-size: clamp(2.4rem, 5.5vw, 4.2rem);
  color: var(--white);
  margin-bottom: 22px;
  line-height: 1.07;
  letter-spacing: -.03em;
}

.hero-desc {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, .77);
  margin-bottom: 40px;
  line-height: 1.85;
  max-width: 490px;
}

.hero-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 48px;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  border-top: 1px solid rgba(255, 255, 255, .1);
  padding-top: 28px;
}

.ti {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .86rem;
  font-weight: 600;
  color: rgba(255, 255, 255, .85);
}

.ti i {
  color: var(--gold);
  font-size: 1.1rem;
}

.scroll-hint {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 3;
}

.scroll-line {
  width: 1px;
  height: 44px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, .3), transparent);
  animation: scroll-anim 1.8s ease-in-out infinite;
}

@keyframes scroll-anim {

  0%,
  100% {
    transform: scaleY(1);
    opacity: .4
  }

  50% {
    transform: scaleY(1.3);
    opacity: .9
  }
}

/* ─── CARDS (SERVICES) ─── */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.card {
  background: var(--bg);
  border-radius: var(--r-md);
  border: 1px solid var(--border);
  box-shadow: var(--sh-xs);
  overflow: hidden;
  position: relative;
  transition: var(--ts);
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--dark-mid), var(--dark-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .45s var(--spring);
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: var(--sh-md);
}

.card:hover::before {
  transform: scaleX(1);
}

.card-img {
  width: 100%;
  height: 175px;
  overflow: hidden;
  position: relative;
  background: var(--bg-light);
}

.card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .55s var(--spring);
}

.card:hover .card-img img {
  transform: scale(1.07);
}

.img-ph {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #e8ecf0, #f5f7fa);
  color: var(--text-muted);
  font-size: 2.2rem;
  opacity: 0;
}

.card-img:not(:has(img[src])) .img-ph,
.card-img.no-img .img-ph {
  opacity: 1;
}

.card-body {
  padding: 26px 26px 30px;
}

.card-icon {
  width: 50px;
  height: 50px;
  background: var(--bg-light);
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: var(--dark-mid);
  border: 1px solid var(--border);
  margin-bottom: 16px;
  transition: var(--t);
}

.card:hover .card-icon {
  background: var(--dark-mid);
  color: var(--gold);
  border-color: transparent;
  transform: rotate(-4deg) scale(1.06);
}

.card-body h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.card-body p {
  color: var(--text-muted);
  font-size: .92rem;
  line-height: 1.75;
  margin-bottom: 18px;
}

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-weight: 700;
  font-size: .9rem;
  color: var(--dark-mid);
  transition: var(--t);
}

.card-link i {
  transition: transform .3s var(--spring);
}

.card-link:hover {
  color: var(--red);
}

.card-link:hover i {
  transform: translateX(4px);
}

.card-featured {
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-light) 100%);
  border: none;
  box-shadow: var(--sh-md);
}

.card-featured::before {
  background: linear-gradient(90deg, var(--red), rgba(232, 39, 45, .3));
  transform: scaleX(1);
}

.card-featured:hover {
  box-shadow: var(--sh-lg);
}

.card-featured .card-icon {
  background: rgba(232, 39, 45, .12);
  color: var(--red);
  border-color: rgba(232, 39, 45, .2);
}

.card-featured:hover .card-icon {
  background: var(--red);
  color: var(--white);
}

.card-featured h3 {
  color: var(--white);
}

.card-featured .card-body p {
  color: rgba(255, 255, 255, .72);
}

.card-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  background: var(--red);
  color: var(--white);
  font-size: .7rem;
  font-weight: 800;
  padding: 3px 10px;
  border-radius: var(--r-full);
  letter-spacing: .06em;
}

/* ─── ABOUT ─── */
.about-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 68px;
  align-items: center;
  margin-bottom: 68px;
}

.about-content h2 {
  font-size: clamp(1.8rem, 3.2vw, 2.5rem);
  font-weight: 800;
  margin-bottom: 14px;
}

.about-desc {
  color: var(--text-muted);
  font-size: 1.03rem;
  margin-bottom: 32px;
  line-height: 1.85;
}

.features {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.feat {
  display: flex;
  gap: 15px;
  align-items: flex-start;
}

.feat>i {
  font-size: 1.45rem;
  color: var(--dark-mid);
  background: var(--bg-light);
  width: 48px;
  height: 48px;
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  flex-shrink: 0;
  transition: var(--t);
}

.feat:hover>i {
  background: var(--dark-mid);
  color: var(--gold);
  border-color: transparent;
}

.feat h4 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.feat p {
  color: var(--text-muted);
  font-size: .91rem;
  line-height: 1.7;
}

.about-visual {
  position: relative;
  height: 440px;
}

.av-main {
  position: absolute;
  top: 0;
  left: 0;
  width: 78%;
  height: 78%;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--sh-md);
  background: var(--bg-light);
}

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

.av-ph {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: linear-gradient(135deg, #e8ecf0, #f5f7fa);
  color: var(--text-muted);
  text-align: center;
  font-size: .82rem;
}

.av-ph i {
  font-size: 2.2rem;
}

.av-ph.small i {
  font-size: 1.6rem;
}

.av-main:has(img[src]) .av-ph,
.av-small:has(img[src]) .av-ph {
  display: none;
}


.av-small {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 50%;
  height: 50%;
  border-radius: var(--r-md);
  overflow: hidden;
  box-shadow: var(--sh-lg);
  border: 4px solid var(--white);
  background: var(--bg-light);
}

.av-badge {
  position: absolute;
  top: 50%;
  left: -20px;
  transform: translateY(-50%);
  background: var(--dark-mid);
  color: var(--white);
  padding: 14px 18px;
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: var(--sh-md);
  z-index: 2;
}

.av-badge i {
  font-size: 1.5rem;
  color: var(--gold);
}

.av-badge strong {
  display: block;
  font-size: 1.3rem;
  font-weight: 800;
  font-family: var(--f-head);
  color: var(--gold);
  line-height: 1;
}

.av-badge span {
  font-size: .75rem;
  color: rgba(255, 255, 255, .6);
}

/* Stats */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.stat {
  background: var(--bg);
  padding: 28px 18px;
  border-radius: var(--r-md);
  text-align: center;
  border: 1px solid var(--border);
  box-shadow: var(--sh-xs);
  position: relative;
  overflow: hidden;
  transition: var(--ts);
}

.stat::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), transparent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .45s var(--spring);
}

.stat:hover {
  transform: translateY(-6px);
  box-shadow: var(--sh-md);
}

.stat:hover::after {
  transform: scaleX(1);
}

.stat strong {
  display: block;
  font-family: var(--f-head);
  font-size: clamp(2rem, 4vw, 2.6rem);
  font-weight: 900;
  color: var(--dark-mid);
  line-height: 1;
  margin-bottom: 8px;
  letter-spacing: -.03em;
}

.stat strong span {
  font-size: 1.3rem;
  color: var(--red);
}

.stat p {
  color: var(--text-muted);
  font-weight: 500;
  font-size: .84rem;
}

/* ─── GALLERY ─── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 220px 220px;
  gap: 14px;
}

.gi {
  border-radius: var(--r-md);
  overflow: hidden;
  position: relative;
  background: var(--bg-light);
  cursor: pointer;
}

.gi img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .55s var(--spring);
  display: block;
}

.gi-tall {
  grid-row: span 2;
}

.gi.text-box {
  background: var(--dark-mid);
  display: flex;
  align-items: center;
  padding: 30px;
  border: 1px solid var(--border);
  transition: var(--t);
  box-shadow: var(--sh-xs);
}

.gi.text-box:hover {
  background: var(--dark);
  transform: translateY(-5px);
  box-shadow: var(--sh-md);
  border-color: rgba(255, 215, 0, 0.3);
}

.tb-content h3 {
  color: var(--gold);
  font-size: 1.25rem;
  margin-bottom: 12px;
  font-family: var(--f-head);
  font-weight: 800;
}

.tb-content p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.95rem;
  line-height: 1.6;
}

.g-ph {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 7px;
  background: linear-gradient(135deg, #e4e8ec, #f0f4f8);
  color: var(--text-muted);
  font-size: .78rem;
}

.g-ph i {
  font-size: 1.8rem;
}

.gi:has(img[src]) .g-ph {
  display: none;
}

.gi.no-img .g-ph {
  display: flex;
}

.g-cap {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(4, 21, 45, .8) 0%, transparent 55%);
  display: flex;
  align-items: flex-end;
  padding: 18px;
  opacity: 0;
  transition: var(--t);
}

.g-cap {
  color: var(--white);
  font-weight: 700;
  font-family: var(--f-head);
  font-size: .95rem;
  transform: translateY(6px);
  transition: opacity .3s, transform .35s var(--spring);
}

.gi:hover .g-cap {
  opacity: 1;
  transform: translateY(0);
}

.gi:hover img {
  transform: scale(1.06);
}

/* ─── FAQ ─── */
.faq-list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.faq-item {
  background: var(--bg);
  border-radius: var(--r-md);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: box-shadow .3s, border-color .3s;
}

.faq-item.open {
  box-shadow: var(--sh-sm);
  border-color: rgba(10, 37, 64, .15);
}

.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 20px 24px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--f-head);
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark-mid);
  text-align: left;
  transition: color .25s;
}

.faq-q:hover {
  color: var(--red);
}

.faq-q i {
  font-size: 1.3rem;
  color: var(--red);
  flex-shrink: 0;
  transition: transform .35s var(--spring);
}

.faq-item.open .faq-q i {
  transform: rotate(45deg);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .45s var(--spring);
  padding: 0 24px;
}

.faq-a p {
  color: var(--text-muted);
  font-size: .95rem;
  line-height: 1.8;
  padding-bottom: 20px;
}

.faq-item.open .faq-a {
  max-height: 280px;
}

/* ─── CTA BAND ─── */
.cta-band {
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-light) 100%);
  position: relative;
  overflow: hidden;
}

.cta-band::before {
  content: '';
  position: absolute;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 215, 0, .07) 0%, transparent 70%);
  top: -200px;
  right: -80px;
  pointer-events: none;
}

.cta-inner {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 56px 0;
}

.cta-icon-wrap {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: rgba(255, 215, 0, .1);
  border: 1px solid rgba(255, 215, 0, .22);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.9rem;
  color: var(--gold);
  margin: 0 auto 22px;
}

.cta-inner h2 {
  color: var(--white);
  font-size: clamp(1.9rem, 4vw, 3rem);
  font-weight: 900;
  margin-bottom: 14px;
  letter-spacing: -.03em;
}

.cta-inner p {
  color: rgba(255, 255, 255, .7);
  font-size: 1.1rem;
  margin-bottom: 38px;
}

/* ─── FOOTER ─── */
.footer {
  background: var(--bg);
  padding-top: 80px;
  border-top: 1px solid var(--border);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.4fr 1.7fr;
  gap: 44px;
  margin-bottom: 52px;
}

.f-brand .logo {
  margin-bottom: 16px;
  color: var(--dark-mid);
}

.f-brand p {
  color: var(--text-muted);
  font-size: .91rem;
  line-height: 1.8;
  margin-bottom: 24px;
  max-width: 290px;
}

.socials {
  display: flex;
  gap: 10px;
}

.socials a {
  width: 38px;
  height: 38px;
  background: var(--bg-light);
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--dark-mid);
  font-size: 1.1rem;
  transition: var(--t);
}

.socials a:hover {
  background: var(--dark-mid);
  color: var(--gold);
  border-color: transparent;
  transform: translateY(-3px);
}

.f-col h4 {
  font-family: var(--f-head);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 10px;
  color: var(--dark-mid);
  position: relative;
}

.f-col h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 28px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
  border-radius: var(--r-full);
}

.f-col ul {
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.f-col ul a {
  color: var(--text-muted);
  font-size: .91rem;
  transition: color .25s, padding-left .3s var(--spring);
}

.f-col ul a:hover {
  color: var(--dark-mid);
  padding-left: 5px;
}

.f-contact {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.f-contact li {
  display: flex;
  gap: 11px;
  color: var(--text-muted);
  align-items: flex-start;
  font-size: .91rem;
  line-height: 1.6;
}

.f-contact i {
  font-size: 1rem;
  color: var(--gold);
  margin-top: 2px;
  flex-shrink: 0;
}

.f-contact a:hover {
  color: var(--dark-mid);
}

.f-map {
  border-radius: var(--r-md);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--sh-xs);
  margin-top: 4px;
}

.f-map iframe {
  display: block;
  filter: grayscale(20%);
  transition: filter .3s;
}

.f-map:hover iframe {
  filter: grayscale(0%);
}

.footer-bottom {
  background: var(--bg-light);
  border-top: 1px solid var(--border);
  padding: 20px 0;
  text-align: center;
  color: var(--text-muted);
  font-size: .84rem;
}

/* ─── REVEAL ANIMATIONS ─── */
.reveal-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .75s var(--spring), transform .75s var(--spring);
}

.reveal-up.active {
  opacity: 1;
  transform: translateY(0);
}

/* ═══════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════ */

/* ── Tablet 992 ── */
@media (max-width:992px) {
  .about-wrap {
    grid-template-columns: 1fr;
    gap: 44px;
    margin-bottom: 48px;
  }

  .about-visual {
    height: 320px;
    max-width: 520px;
    margin: 0 auto;
  }

  .av-badge {
    left: -8px;
  }

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

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }

  .hero-inner {
    padding-top: 36px;
  }

  .hero-content {
    max-width: 100%;
    text-align: center;
  }

  .hero-desc {
    margin: 0 auto 40px;
  }

  .hero-btns {
    justify-content: center;
  }

  .hero-trust {
    justify-content: center;
  }

  .hero-overlay {
    background: rgba(4, 21, 45, .88);
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
  }

  .gi-tall {
    grid-row: span 1;
    height: 220px;
  }

  .gi {
    height: 180px;
  }
}

/* ── Mobile 768 ── */
@media (max-width:768px) {
  .section {
    padding: 64px 0;
  }

  /* Header */
  .btn-desktop {
    display: none;
  }

  .burger {
    display: flex;
  }

  .navbar {
    position: fixed;
    top: 0;
    right: -100%;
    width: 86%;
    max-width: 310px;
    height: 100vh;
    background: var(--white);
    box-shadow: var(--sh-lg);
    display: flex;
    flex-direction: column;
    padding: 86px 24px 36px;
    transition: right .42s var(--spring);
    z-index: 999;
    overflow-y: auto;
  }

  .navbar.open {
    right: 0;
  }

  .nav-list {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    width: 100%;
  }

  .nav-link {
    color: var(--dark-mid);
    font-size: 1.05rem;
    font-weight: 600;
    display: block;
    width: 100%;
    padding: 13px 0;
    border-bottom: 1px solid var(--border);
  }

  .nav-link::after {
    display: none;
  }

  .nav-link.active {
    color: var(--red);
  }

  .nav-mobile-cta {
    display: block;
    margin-top: auto;
    padding-top: 24px;
    width: 100%;
  }

  .nav-mobile-cta .btn {
    width: 100%;
    justify-content: center;
  }

  /* Hero */
  .hero-content h1 {
    font-size: clamp(2rem, 7.5vw, 2.8rem);
  }

  .hero-desc {
    font-size: 1rem;
  }

  .hero-btns {
    flex-direction: column;
    gap: 12px;
  }

  .btn-lg {
    padding: 15px 28px;
    width: 100%;
  }

  .hero-trust {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }

  .scroll-hint {
    display: none;
  }

  /* Services */
  .cards-grid {
    grid-template-columns: 1fr;
  }

  /* Gallery */
  .gallery-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .gi,
  .gi-tall {
    height: 190px;
  }

  /* About */
  .about-visual {
    height: 260px;
  }

  .av-badge {
    left: 50%;
    top: auto;
    bottom: -18px;
    transform: translateX(-50%);
  }

  /* Footer */
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .f-brand p {
    max-width: 100%;
  }
}

/* ── Small 480 ── */
@media (max-width:480px) {
  .stats {
    grid-template-columns: 1fr;
  }

  .hero-content h1 {
    font-size: clamp(1.8rem, 8vw, 2.4rem);
  }

  .lt-brand {
    font-size: 1.7rem;
  }

  .loader-bar-wrap {
    width: 160px;
  }

  .about-visual,
  .av-main,
  .av-small {
    height: auto !important;
    /* container yüksekliği */
    width: auto !important;
    overflow: visible !important;
    /* resimleri gizleme */
    position: relative !important;
  }

  .av-main img,
  .av-small img {
    display: block !important;
    opacity: 1 !important;
    transform: none !important;
    position: relative !important;
    z-index: 2 !important;
    /* overlay’lerin üstünde */
  }

  .av-ph {
    display: none !important;
    /* placeholder overlay kapat */
  }

}