@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,700;0,900;1,400&family=Montserrat:wght@300;400;500;600;700&display=swap');

:root {
  --black: #0a0a0a;
  --dark: #111;
  --dark2: #1a1a1a;
  --grey: #888;
  --grey-light: #bbb;
  --grey-mid: #444;
  --gold: #c9a84c;
  --gold-light: #e2bf6a;
  --gold-dark: #9a7a30;
  --white: #f4f4ef;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Montserrat', sans-serif;
  background: var(--black);
  color: var(--white);
  overflow-x: hidden;
}

::-webkit-scrollbar {
  width: 3px;
}

::-webkit-scrollbar-track {
  background: var(--dark);
}

::-webkit-scrollbar-thumb {
  background: var(--gold);
}






/* ── FOOTER LOGO ── */
.logo {
  position: relative;
  text-decoration: none;
  display: inline-block;
}

.logo img {
  height: 150px;
  width: auto;
  display: block;
  transition: filter .3s, transform .3s;
  filter: drop-shadow(0 2px 8px rgba(201, 168, 76, .15));
}

.logo:hover img {
  filter: drop-shadow(0 0 14px rgba(201, 168, 76, .45));
  transform: scale(1.03);
}



/* ── BAĞIMSIZ SAĞ ÜST LOGO ── */
.site-logo-fixed {
  position: fixed;
  top: 50px;
  right: 50px;
  z-index: 1000;
  display: block;
  text-decoration: none;
  transition: transform .3s, filter .3s;
}

.site-logo-fixed img {
  height: 220px;
  width: auto;
  display: block;
  filter: drop-shadow(0 2px 12px rgba(201, 168, 76, .25));
}

.site-logo-fixed:hover img {
  transform: scale(1.04);
  filter: drop-shadow(0 0 20px rgba(201, 168, 76, .55));
}

@media (max-width: 1024px) {
  .site-logo-fixed {
    top: 10px;
    right: 14px;
  }

  .site-logo-fixed img {
    height: 70px;
  }
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 900;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 24px 54px;
  transition: all .35s;
  height: auto;
}

nav.scrolled {
  padding: 14px 54px;
  background: rgba(10, 10, 10, .96);
  border-bottom: 1px solid rgba(201, 168, 76, .12);
  backdrop-filter: blur(10px);
}

.nav-links {
  display: flex;
  gap: 34px;
  list-style: none;
}

.nav-links a {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--grey-light);
  text-decoration: none;
  transition: color .25s;
  position: relative;
  padding-bottom: 3px;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width .3s;
}

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

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

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--white);
  transition: all .3s;
}

.mob-menu {
  position: fixed;
  inset: 0;
  background: var(--black);
  z-index: 890;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s;
}

.mob-menu.open {
  opacity: 1;
  pointer-events: all;
}

.mob-menu a {
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  font-weight: 700;
  color: var(--white);
  text-decoration: none;
  transition: color .25s;
}

.mob-menu a:hover {
  color: var(--gold);
}

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  padding: 120px 54px 64px;
  background: var(--dark);
  border-bottom: 1px solid rgba(201, 168, 76, .1);
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23c9a84c' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4z'/%3E%3C/g%3E%3C/svg%3E");
}

.page-hero .inner {
  position: relative;
  z-index: 1;
  max-width: 700px;
}

.breadcrumb {
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--grey);
  margin-bottom: 18px;
}

.breadcrumb a {
  color: var(--grey);
  text-decoration: none;
}

.breadcrumb a:hover {
  color: var(--gold);
}

.breadcrumb span {
  color: var(--gold);
  margin: 0 6px;
}

.page-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(40px, 6vw, 72px);
  font-weight: 900;
  line-height: 1.05;
}

.page-hero h1 em {
  color: var(--gold);
  font-style: italic;
}

.page-hero p {
  font-size: 15px;
  font-weight: 300;
  color: var(--grey-light);
  margin-top: 16px;
  line-height: 1.8;
  max-width: 520px;
}

/* ── COMMON ── */
.sec {
  padding: 90px 54px;
}

.sec-sm {
  padding: 60px 54px;
}

.sec-label {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.sec-label::before {
  content: '';
  width: 26px;
  height: 1px;
  background: var(--gold);
}

.sec-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(30px, 4vw, 52px);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 18px;
}

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

.gdiv {
  width: 44px;
  height: 2px;
  background: var(--gold);
  margin: 14px 0 24px;
}

.btn-gold {
  display: inline-block;
  padding: 14px 36px;
  background: var(--gold);
  color: var(--black);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  transition: background .3s;
  border: none;
  cursor: pointer;
  font-family: 'Montserrat', sans-serif;
}

.btn-gold:hover {
  background: var(--gold-light);
}

.btn-outline-g {
  display: inline-block;
  padding: 12px 28px;
  border: 1px solid rgba(201, 168, 76, .4);
  color: var(--gold);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  transition: all .3s;
}

.btn-outline-g:hover {
  background: var(--gold);
  color: var(--black);
}

/* ── REVEAL ── */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity .7s, transform .7s;
}

.reveal.on {
  opacity: 1;
  transform: translateY(0);
}

/* ── HERO (index) ── */
#hero {
  height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--black);
}

.hero-city {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 58%;
  z-index: 0;
}

.hero-city svg {
  width: 100%;
  height: 100%;
}

.hero-fade {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(to right, #0a0a0a 0%, #0a0a0a 38%, rgba(10, 10, 10, .75) 58%, rgba(10, 10, 10, .15) 100%);
}

.hero-inner {
  position: relative;
  z-index: 2;
  padding: 0 54px;
  max-width: 700px;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 26px;
  opacity: 0;
  animation: fadeUp .8s .2s forwards;
}

.hero-tag::before {
  content: '';
  width: 36px;
  height: 1px;
  background: var(--gold);
}

.hero-h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(46px, 7vw, 88px);
  font-weight: 900;
  line-height: .97;
  margin-bottom: 24px;
  opacity: 0;
  animation: fadeUp .8s .4s forwards;
}

.hero-h1 em {
  display: block;
  color: var(--gold);
  font-style: italic;
}

.hero-sub {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.9;
  color: var(--grey-light);
  max-width: 420px;
  margin-bottom: 40px;
  opacity: 0;
  animation: fadeUp .8s .6s forwards;
}

.hero-btns {
  display: flex;
  gap: 18px;
  align-items: center;
  opacity: 0;
  animation: fadeUp .8s .8s forwards;
}

.hero-stats {
  position: absolute;
  bottom: 44px;
  left: 54px;
  z-index: 2;
  display: flex;
  gap: 44px;
  opacity: 0;
  animation: fadeUp .8s 1s forwards;
}

.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 38px;
  font-weight: 900;
  line-height: 1;
}

.stat-num sup {
  color: var(--gold);
  font-size: 22px;
}

.stat-lbl {
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--grey);
  margin-top: 3px;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(28px)
  }

  to {
    opacity: 1;
    transform: translateY(0)
  }
}

/* ── MARQUEE ── */
.marquee-bar {
  overflow: hidden;
  border-top: 1px solid rgba(201, 168, 76, .12);
  border-bottom: 1px solid rgba(201, 168, 76, .12);
  background: var(--dark);
  padding: 16px 0;
}

.marquee-track {
  display: flex;
  white-space: nowrap;
  animation: mrq 28s linear infinite;
}

.m-item {
  display: inline-flex;
  align-items: center;
  gap: 24px;
  padding: 0 24px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--grey);
}

.m-dot {
  width: 4px;
  height: 4px;
  background: var(--gold);
  border-radius: 50%;
}

@keyframes mrq {
  from {
    transform: translateX(0)
  }

  to {
    transform: translateX(-50%)
  }
}

/* ── HOME: ABOUT STRIP ── */
.home-about {
  background: var(--dark);
}

.ha-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}

.ha-text p {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.9;
  color: var(--grey-light);
  margin-bottom: 16px;
}

.ha-nums {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.ha-num-card {
  background: var(--dark2);
  border: 1px solid rgba(201, 168, 76, .07);
  padding: 28px 22px;
  transition: border-color .3s;
}

.ha-num-card:hover {
  border-color: rgba(201, 168, 76, .22);
}

.ha-num-card.gl {
  background: var(--gold);
}

.ha-n {
  font-family: 'Playfair Display', serif;
  font-size: 38px;
  font-weight: 900;
  line-height: 1;
}

.ha-n sup {
  font-size: 22px;
  color: var(--gold);
}

.ha-num-card.gl .ha-n {
  color: var(--black);
}

.ha-num-card.gl .ha-n sup {
  color: rgba(0, 0, 0, .5);
}

.ha-num-card.gl .ha-lbl {
  color: rgba(0, 0, 0, .6);
}

.ha-lbl {
  font-size: 11px;
  color: var(--grey);
  margin-top: 5px;
  letter-spacing: 1px;
}

/* ── HOME: SERVICES PREVIEW ── */
.home-srv {
  background: var(--black);
}

.srv-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  max-width: 1200px;
  margin: 0 auto;
}

.srv-card {
  background: var(--dark);
  padding: 40px 32px;
  border: 1px solid transparent;
  transition: all .3s;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  display: block;
}

.srv-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform .3s;
}

.srv-card:hover {
  background: var(--dark2);
  border-color: rgba(201, 168, 76, .1);
  transform: translateY(-3px);
}

.srv-card:hover::after {
  transform: scaleX(1);
}

.srv-ico {
  width: 44px;
  height: 44px;
  color: var(--gold);
  margin-bottom: 20px;
}

.srv-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 19px;
  font-weight: 700;
  margin-bottom: 10px;
}

.srv-card p {
  font-size: 13px;
  font-weight: 300;
  color: var(--grey);
  line-height: 1.75;
}

/* ── HOME: PROJECT PREVIEW ── */
.home-proj {
  background: var(--dark);
}

.hp-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 40px;
  gap: 24px;
}

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

.prv-card {
  position: relative;
  overflow: hidden;
  height: 300px;
  background: var(--dark2);
  cursor: pointer;
}

.prv-card .thumb {
  width: 100%;
  height: 100%;
  transition: transform .6s;
}

.prv-card:hover .thumb {
  transform: scale(1.05);
}

.prv-ov {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, .88) 0%, transparent 55%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 22px;
}

.prv-cat {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 4px;
}

.prv-name {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-weight: 700;
}

/* ── CTA BAND ── */
.cta-band {
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  padding: 52px 54px;
}

.cta-in {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.cta-in h3 {
  font-family: 'Playfair Display', serif;
  font-size: 26px;
  font-weight: 700;
  color: var(--black);
}

.cta-in p {
  font-size: 14px;
  color: rgba(0, 0, 0, .6);
  margin-top: 5px;
}

.btn-dark {
  background: var(--black);
  color: var(--white);
  padding: 14px 34px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  transition: background .3s;
  white-space: nowrap;
  border: none;
  cursor: pointer;
  font-family: 'Montserrat', sans-serif;
}

.btn-dark:hover {
  background: var(--dark2);
}

/* ── FOOTER ── */
footer {
  background: #0d0d0d;
  border-top: 1px solid rgba(201, 168, 76, .15);
  padding: 64px 54px 0;
  position: relative;
}

footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 54px;
  right: 54px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: .4;
}

.ft-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 54px;
  margin-bottom: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, .04);
}

.ft-brand .logo {
  position: static;
  transform: none;
  margin-bottom: 18px;
  display: inline-block;
}

.ft-brand p {
  font-size: 13px;
  font-weight: 300;
  color: var(--grey);
  line-height: 1.8;
  max-width: 260px;
  margin-top: 12px;
}

.ft-social {
  display: flex;
  gap: 8px;
  margin-top: 22px;
}

.ft-s {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(201, 168, 76, .2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--grey);
  text-decoration: none;
  font-size: 11px;
  font-weight: 700;
  transition: all .3s;
  position: relative;
  overflow: hidden;
}

.ft-s::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gold);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform .3s;
}

.ft-s:hover::before {
  transform: scaleY(1);
}

.ft-s:hover {
  color: var(--black);
  border-color: var(--gold);
}

.ft-s span,
.ft-s {
  z-index: 1;
}

.ft-col h4 {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.ft-col h4::after {
  content: '';
  flex: 1;
  height: 1px;
  background: rgba(201, 168, 76, .15);
}

.ft-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.ft-col a {
  font-size: 13px;
  font-weight: 300;
  color: var(--grey);
  text-decoration: none;
  transition: color .25s, padding-left .25s;
  display: inline-block;
}

.ft-col a:hover {
  color: var(--gold);
  padding-left: 6px;
}

.ft-bot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  font-size: 11px;
  color: rgba(136, 136, 136, .6);
  flex-wrap: wrap;
  gap: 10px;
  letter-spacing: .5px;
}

.ft-bot a {
  color: rgba(201, 168, 76, .5);
  text-decoration: none;
  transition: color .3s;
}

.ft-bot a:hover {
  color: var(--gold);
}

/* ══════════════════════════════════════════
   HİZMETLER PAGE
══════════════════════════════════════════ */
.srv-full {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  max-width: 1100px;
  margin: 0 auto;
}

.srv-big {
  background: var(--dark);
  padding: 48px 40px;
  border: 1px solid transparent;
  transition: all .3s;
  position: relative;
  overflow: hidden;
}

.srv-big::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform .3s;
}

.srv-big:hover {
  background: var(--dark2);
  border-color: rgba(201, 168, 76, .1);
}

.srv-big:hover::after {
  transform: scaleX(1);
}

.srv-big .num {
  font-family: 'Playfair Display', serif;
  font-size: 52px;
  font-weight: 900;
  color: rgba(201, 168, 76, .07);
  line-height: 1;
  margin-bottom: 20px;
}

.srv-big h3 {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 12px;
}

.srv-big p {
  font-size: 14px;
  font-weight: 300;
  color: var(--grey);
  line-height: 1.8;
}

.srv-big ul {
  margin-top: 18px;
  display: flex;
  flex-direction: column;
  gap: 7px;
  list-style: none;
}

.srv-big li {
  font-size: 13px;
  color: var(--grey-light);
  padding-left: 14px;
  position: relative;
}

.srv-big li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 11px;
}

/* ══════════════════════════════════════════
   PROJELER PAGE
══════════════════════════════════════════ */
.prj-tabs {
  display: flex;
  gap: 6px;
  margin-bottom: 44px;
  flex-wrap: wrap;
}

.tab-btn {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 10px 22px;
  border: 1px solid var(--grey-mid);
  background: transparent;
  color: var(--grey);
  cursor: pointer;
  transition: all .25s;
  font-family: 'Montserrat', sans-serif;
}

.tab-btn:hover,
.tab-btn.active {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
}

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

.prj-card {
  background: var(--dark);
  border: 1px solid rgba(201, 168, 76, .07);
  overflow: hidden;
  cursor: pointer;
  transition: all .3s;
}

.prj-card:hover {
  border-color: rgba(201, 168, 76, .25);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, .4);
}

.prj-thumb {
  width: 100%;
  height: 220px;
  overflow: hidden;
  position: relative;
}

.prj-thumb svg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s;
  display: block;
}

.prj-card:hover .prj-thumb svg {
  transform: scale(1.06);
}

.prj-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 2px;
}

.prj-badge.biten {
  background: var(--gold);
  color: var(--black);
}

.prj-badge.devam {
  background: rgba(10, 10, 10, .85);
  color: var(--gold);
  border: 1px solid var(--gold);
}

.prj-body {
  padding: 20px 22px 24px;
}

.prj-cat {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
}

.prj-title {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 6px;
  line-height: 1.2;
}

.prj-meta {
  font-size: 12px;
  color: var(--grey);
}

.prj-zoom {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 14px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold-dark);
  transition: color .25s;
}

.prj-card:hover .prj-zoom {
  color: var(--gold);
}

/* ══════════════════════════════════════════
   MODAL / LIGHTBOX
══════════════════════════════════════════ */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 9000;
  background: rgba(0, 0, 0, .92);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s;
  padding: 20px;
}

.modal-overlay.open {
  opacity: 1;
  pointer-events: all;
}

.modal-box {
  background: var(--dark);
  width: 100%;
  max-width: 900px;
  border: 1px solid rgba(201, 168, 76, .15);
  position: relative;
  max-height: 92vh;
  overflow-y: auto;
  transform: scale(.93);
  transition: transform .3s;
}

.modal-overlay.open .modal-box {
  transform: scale(1);
}

.modal-close {
  position: absolute;
  top: 14px;
  right: 16px;
  z-index: 10;
  background: none;
  border: none;
  color: var(--grey-light);
  font-size: 26px;
  cursor: pointer;
  line-height: 1;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color .25s;
}

.modal-close:hover {
  color: var(--gold);
}

/* Slider */
.slider {
  position: relative;
  width: 100%;
  background: var(--black);
  overflow: hidden;
  height: 460px;
}

.slides {
  display: flex;
  transition: transform .4s ease;
  height: 100%;
}

.slide {
  min-width: 100%;
  height: 100%;
  overflow: hidden;
}

.slide svg,
.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  background: rgba(0, 0, 0, .6);
  border: 1px solid rgba(201, 168, 76, .3);
  color: var(--gold);
  width: 44px;
  height: 44px;
  cursor: pointer;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .25s;
}

.slider-btn:hover {
  background: var(--gold);
  color: var(--black);
}

.slider-btn.prev {
  left: 14px;
}

.slider-btn.next {
  right: 14px;
}

.slider-dots {
  position: absolute;
  bottom: 14px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 7px;
}

.slider-dots span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  border: 1px solid var(--gold);
  background: transparent;
  cursor: pointer;
  transition: background .25s;
}

.slider-dots span.active {
  background: var(--gold);
}

.slider-count {
  position: absolute;
  top: 14px;
  left: 14px;
  font-size: 11px;
  color: var(--white);
  background: rgba(0, 0, 0, .6);
  padding: 4px 10px;
}

.modal-info {
  padding: 28px 32px;
}

.modal-badge {
  display: inline-block;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 4px 10px;
  margin-bottom: 12px;
}

.modal-badge.biten {
  background: var(--gold);
  color: var(--black);
}

.modal-badge.devam {
  border: 1px solid var(--gold);
  color: var(--gold);
}

.modal-title {
  font-family: 'Playfair Display', serif;
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 8px;
}

.modal-sub {
  font-size: 12px;
  color: var(--gold);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.modal-desc {
  font-size: 14px;
  font-weight: 300;
  color: var(--grey-light);
  line-height: 1.85;
  margin-bottom: 22px;
}

.modal-specs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.mspec {
  background: var(--dark2);
  padding: 14px 16px;
  border-left: 2px solid var(--gold);
}

.mspec .sk {
  font-size: 10px;
  color: var(--grey);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 4px;
}

.mspec .sv {
  font-size: 14px;
  font-weight: 600;
}

/* ══════════════════════════════════════════
   İLETİŞİM PAGE
══════════════════════════════════════════ */
.iletisim-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 70px;
  max-width: 1100px;
  margin: 0 auto;
  align-items: start;
}

.ilet-info p {
  font-size: 14px;
  font-weight: 300;
  color: var(--grey-light);
  line-height: 1.9;
  margin-bottom: 36px;
}

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

.ilet-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.ilet-ico {
  width: 42px;
  height: 42px;
  border: 1px solid rgba(201, 168, 76, .25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
}

.ilet-lbl {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--grey);
  margin-bottom: 3px;
}

.ilet-val {
  font-size: 14px;
  color: var(--white);
  line-height: 1.6;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.fg {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.fg label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--grey);
}

.fg input,
.fg select,
.fg textarea {
  background: var(--dark);
  border: 1px solid var(--grey-mid);
  color: var(--white);
  padding: 13px 15px;
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 300;
  outline: none;
  transition: border-color .3s;
  resize: none;
  appearance: none;
}

.fg input:focus,
.fg select:focus,
.fg textarea:focus {
  border-color: var(--gold);
}

.fg select option {
  background: var(--dark2);
}

/* ══════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════ */
@media(max-width:1024px) {
  nav {
    padding: 20px 24px;
  }

  nav.scrolled {
    padding: 13px 24px;
  }

  .nav-links {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .sec {
    padding: 70px 24px;
  }

  .sec-sm {
    padding: 48px 24px;
  }

  .page-hero {
    padding: 100px 24px 52px;
  }

  .ha-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .srv-grid {
    grid-template-columns: 1fr 1fr;
  }

  .prv-grid {
    grid-template-columns: 1fr 1fr;
  }

  .prj-grid {
    grid-template-columns: 1fr 1fr;
  }

  .srv-full {
    grid-template-columns: 1fr;
  }

  .iletisim-grid {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .modal-specs {
    grid-template-columns: 1fr 1fr;
  }

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

  footer {
    padding: 50px 24px 0;
  }

  footer::before {
    left: 24px;
    right: 24px;
  }

  .hero-stats {
    right: 24px;
    gap: 28px;
  }

  .hero-inner {
    padding: 0 24px;
  }

  .cta-band {
    padding: 40px 24px;
  }

  .cta-in {
    flex-direction: column;
    gap: 22px;
  }
}

@media(max-width:600px) {

  .srv-grid,
  .prv-grid,
  .prj-grid {
    grid-template-columns: 1fr;
  }

  .ha-nums {
    grid-template-columns: 1fr 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .modal-specs {
    grid-template-columns: 1fr;
  }

  .ft-top {
    grid-template-columns: 1fr;
  }

  .slider {
    height: 260px;
  }

  .hero-stats {
    flex-direction: row;
    flex-wrap: wrap;
    position: static;
    margin-top: 36px;
    padding: 0 24px;
    gap: 24px;
  }

  .hero-inner {
    display: flex;
    flex-direction: column;
  }
}

.hero-inner {
  max-width: 640px;
}

.hero-h1 {
  letter-spacing: -1px;
}

.hero-sub {
  font-size: 15px;
  max-width: 480px;
}

.hero-btns a {
  min-width: 160px;
  text-align: center;
}

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

/* ── Kart kapak fotoğrafı ── */
.prj-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .6s;
}

.prj-card:hover .prj-thumb img {
  transform: scale(1.06);
}

/* ── Fotoğraf yüklenemezse gösterilen placeholder ── */
.prj-noimg {
  display: none;
  position: absolute;
  inset: 0;
  /* img'in üstünü kapatmaz */
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--dark2);
  font-size: 11px;
  color: var(--grey);
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

/* ── Modal slayt placeholder ── */
.slide-noimg {
  display: none;
  width: 100%;
  height: 100%;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: #0d0d0d;
  font-size: 11px;
  color: #555;
  letter-spacing: 1.5px;
}

/* ── Modal slayt img ── */
.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}


/* MOBİL NAVBAR DÜZELTME */
@media (max-width:768px) {

  nav {
    padding: 12px 18px;
  }

}


.whatsapp-btn {
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
  z-index: 9999;
  transition: 0.3s;
}

.whatsapp-btn:hover {
  transform: scale(1.1);
}


.ft-s img {
  width: 18px;
  height: 18px;
}



 /* --- CHATBOT WIDGET STYLING --- */
        body { font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; background: #f4f7f6; }
        
        #chat-widget {
            position: fixed; bottom: 20px; right: 20px;
            width: 350px; max-height: 500px;
            background: white; border-radius: 15px;
            box-shadow: 0 5px 25px rgba(0,0,0,0.1);
            display: flex; flex-direction: column; overflow: hidden;
            border: 1px solid #eee;
        }

        #chat-header {
            background: #007bff; color: white;
            padding: 15px; font-weight: bold; text-align: center;
        }

        #chat-body {
            flex: 1; padding: 15px; overflow-y: auto;
            display: flex; flex-direction: column; gap: 10px;
            background: #f9f9f9; min-height: 300px;
        }

        .msg { padding: 10px 14px; border-radius: 18px; max-width: 80%; font-size: 14px; line-height: 1.4; }
        .bot-msg { background: #e1e1e1; align-self: flex-start; border-bottom-left-radius: 2px; }
        .user-msg { background: #007bff; color: white; align-self: flex-end; border-bottom-right-radius: 2px; }

        #chat-options {
            padding: 10px; display: flex; flex-wrap: wrap;
            gap: 8px; border-top: 1px solid #eee; background: white;
        }

        .option-btn {
            background: white; border: 1px solid #007bff; color: #007bff;
            padding: 6px 12px; border-radius: 20px; cursor: pointer;
            font-size: 13px; transition: 0.2s;
        }

        .option-btn:hover { background: #007bff; color: white; }

/* ══════════════════════════════════════════════════
   SAYFA GEÇİŞ ANİMASYONU — LOGO OVERLAY
══════════════════════════════════════════════════ */
#page-transition {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

#page-transition .pt-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}

#page-transition .pt-logo img {
  height: 120px;
  width: auto;
  filter: drop-shadow(0 0 30px rgba(201,168,76,0.5));
}

#page-transition .pt-bar {
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  border-radius: 2px;
  transition: none;
}

/* Sayfa ilk açılış: overlay görünür → kaybolur */
#page-transition.pt-entering {
  animation: pt-fade-in-out 1.1s ease forwards;
}

/* Sayfa çıkış: overlay görünür olur */
#page-transition.pt-leaving {
  animation: pt-fade-in 0.35s ease forwards;
  pointer-events: all;
}

@keyframes pt-fade-in-out {
  0%   { opacity: 1; }
  65%  { opacity: 1; }
  100% { opacity: 0; pointer-events: none; }
}

@keyframes pt-fade-in {
  0%   { opacity: 0; }
  100% { opacity: 1; }
}

#page-transition.pt-entering .pt-logo {
  animation: pt-logo-pop 1.1s ease forwards;
}

@keyframes pt-logo-pop {
  0%   { transform: scale(0.7) translateY(10px); opacity: 0; }
  30%  { transform: scale(1.05) translateY(0);   opacity: 1; }
  65%  { transform: scale(1)    translateY(0);   opacity: 1; }
  100% { transform: scale(1.08) translateY(-4px); opacity: 0; }
}

#page-transition.pt-entering .pt-bar {
  animation: pt-bar-grow 0.6s ease 0.25s forwards;
}

@keyframes pt-bar-grow {
  0%   { width: 0;     opacity: 0; }
  50%  { width: 160px; opacity: 1; }
  100% { width: 200px; opacity: 0; }
}

#page-transition.pt-leaving .pt-logo {
  animation: pt-logo-leave 0.35s ease forwards;
}

@keyframes pt-logo-leave {
  0%   { transform: scale(0.85) translateY(6px); opacity: 0; }
  100% { transform: scale(1)    translateY(0);   opacity: 1; }
}


/* ══════════════════════════════════════════════════
   VİDEO SLIDE DESTEĞİ
══════════════════════════════════════════════════ */
.slide video {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #000;
  border-radius: 4px;
}

.slide-video-wrap {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #000;
}

.slide-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 64px;
  height: 64px;
  background: rgba(201,168,76,0.85);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
  border: none;
  outline: none;
  z-index: 5;
}

.slide-play-btn:hover {
  background: var(--gold);
  transform: translate(-50%, -50%) scale(1.1);
}

.slide-play-btn svg {
  width: 28px;
  height: 28px;
  fill: #fff;
  margin-left: 4px;
}

.slide-video-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(201,168,76,0.9);
  color: #000;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 4px 10px;
  border-radius: 20px;
  z-index: 5;
  pointer-events: none;
}

.slide video:focus {
  outline: 1px solid var(--gold);
}
