/*
  Armanç İnşaat "“ style.css
  Tasarım & Geliştirme: Çankaya Web Tasarım | https://cankayawebtasarim.net
*/

/* ═══ FONTS ═══ */
@font-face {
  font-family: 'Playfair Display';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('fonts/playfair-display-v40-latin-regular.woff2') format('woff2');
}
@font-face {
  font-family: 'Playfair Display';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('fonts/playfair-display-v40-latin-600.woff2') format('woff2');
}
@font-face {
  font-family: 'Playfair Display';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('fonts/playfair-display-v40-latin-700.woff2') format('woff2');
}
@font-face {
  font-family: 'Playfair Display';
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url('fonts/playfair-display-v40-latin-italic.woff2') format('woff2');
}
@font-face {
  font-family: 'Jost';
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url('fonts/jost-v20-latin-300.woff2') format('woff2');
}
@font-face {
  font-family: 'Jost';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('fonts/jost-v20-latin-regular.woff2') format('woff2');
}
@font-face {
  font-family: 'Jost';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('fonts/jost-v20-latin-500.woff2') format('woff2');
}

/* ═══ RESET & BASE ═══ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --gold:        #b8922a;
  --gold-light:  #d4aa4e;
  --gold-pale:   #e8cc7a;
  --gold-dim:    rgba(184,146,42,0.15);
  --dark:        #0a0a0a;
  --dark2:       #111111;
  --dark3:       #191919;
  --dark4:       #222222;
  --text:        #e2d8c8;
  --text-muted:  #7a7060;
  --text-sub:    #a09080;
  --white:       #ffffff;
  --nav-h:       80px;
  --radius:      2px;
  --transition:  0.3s ease;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'Jost', 'Segoe UI', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  background: var(--dark);
  color: var(--text);
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 18px; /* 16px'den 18px'e ï¿½ikarildi */
  line-height: 1.7;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, select, textarea { font-family: inherit; }

/* ═══ TYPOGRAPHY ═══ */
.section-eyebrow {
  font-size: 11px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 400;
  line-height: 1.15;
  color: var(--white);
  margin-bottom: 20px;
}

.section-title em {
  font-style: italic;
  color: var(--gold-light);
}

.section-sub {
  color: var(--text-sub);
  max-width: 560px;
  margin: 0 auto;
}

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

/* ═══ CONTAINER ═══ */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding:0px 24px;
  /* padding: 0 clamp(20px, 5vw, 60px); */
}

/* ═══ SECTION ═══ */
.section {
  padding: clamp(72px, 10vw, 120px) 0;
  position: relative;
}

/* ═══ BUTTONS ═══ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: var(--transition);
  cursor: pointer;
  border: 1px solid transparent;
}

.btn--primary {
  background: var(--gold);
  color: var(--dark);
  border-color: var(--gold);
}
.btn--primary:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(184,146,42,0.3);
}

.btn--outline {
  background: transparent;
  color: var(--text);
  border-color: rgba(184,146,42,0.4);
}
.btn--outline:hover {
  border-color: var(--gold-light);
  color: var(--gold-light);
  transform: translateY(-2px);
}

.btn--full { width: 100%; justify-content: center; }

/* ═══ REVEAL ANIMATIONS ═══ */
.reveal, .reveal-card {

  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible, .reveal-card.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-card:nth-child(2) { transition-delay: 0.1s; }
.reveal-card:nth-child(3) { transition-delay: 0.2s; }
.reveal-card:nth-child(4) { transition-delay: 0.3s; }
.reveal-card:nth-child(5) { transition-delay: 0.15s; }
.reveal-card:nth-child(6) { transition-delay: 0.25s; }

/* ═══ NAVBAR ═══ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  background: rgba(10,10,10,0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(184,146,42,0.12);
  transition: background 0.4s, box-shadow 0.4s;
}

.navbar.scrolled {
  background: rgba(10,10,10,0.98);
  box-shadow: 0 1px 0 rgba(184,146,42,0.18);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  flex-direction: column;
  gap: 1px;
  flex-shrink: 0;
  line-height: 1;
}
.nav-logo-name {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-light);
  line-height: 1;
  text-shadow: 0 1px 12px rgba(0,0,0,0.8);
}
.nav-logo-sub {
  font-size: 9px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  text-shadow: 0 1px 6px rgba(0,0,0,0.8);
  white-space: nowrap;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 2px;
}

.nav-link {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.82);
  padding: 10px 16px;
  border-radius: var(--radius);
  transition: color var(--transition);
  display: flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}
.nav-link:hover, .nav-link.active { color: var(--gold-light); }

/* Dropdown */
.nav-dropdown { position: relative; }

.nav-dropdown::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  height: 16px;
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 16px);
  left: 50%;
  transform: translateX(-50%) translateY(-6px);
  background: #161616;
  border: 1px solid rgba(184,146,42,0.28);
  border-top: 2px solid var(--gold);
  border-radius: var(--radius);
  min-width: 220px;
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s;
  box-shadow: 0 20px 56px rgba(0,0,0,0.85);
  z-index: 100;
}

.nav-dropdown:hover .dropdown-menu,
.nav-dropdown:focus-within .dropdown-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.dropdown-menu li a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 20px;
  font-size: 13px;
  letter-spacing: 0.06em;
  color: rgba(226,216,200,0.88);
  transition: color var(--transition), background var(--transition), padding-left var(--transition);
}
.dropdown-menu li a::before {
  content: '';
  display: block;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
  opacity: 0.6;
  transition: opacity var(--transition);
}
.dropdown-menu li a:hover {
  color: var(--gold-light);
  background: rgba(184,146,42,0.08);
  padding-left: 24px;
}
.dropdown-menu li a:hover::before { opacity: 1; }
.dropdown-menu li + li { border-top: 1px solid rgba(255,255,255,0.04); }

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 8px;
  flex-shrink: 0;
  border-radius: var(--radius);
  background: rgba(184,146,42,0.08);
  border: 1px solid rgba(184,146,42,0.2);
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--gold-light);
  border-radius: 2px;
  transition: var(--transition);
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ═══ HERO SLIDER ═══ */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  height: 100dvh;
  overflow: hidden;
}

/* Slider container */
.slider {
  position: absolute;
  inset: 0;
}

/* Individual slide */
.slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.9s ease;
  pointer-events: none;
}
.slide--active {
  opacity: 1;
  pointer-events: auto;
}

/* Background image area */
.slide-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1);
}
.slide--active .slide-bg {
  animation: kenburns 8s ease-out both;
}
@keyframes kenburns {
  from { transform: scale(1.07); }
  to   { transform: scale(1); }
}

/* Placeholder (görseller eklenince kaldırılacak) */
.slide-ph {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  background: var(--dark3);
  color: rgba(255,255,255,0.15);
  font-size: 13px;
  letter-spacing: 0.15em;
}
.slide-ph svg {
  width: clamp(80px, 12vw, 140px);
  height: clamp(80px, 12vw, 140px);
  opacity: 0.12;
}

/* Villa slide tint */
.slide-bg--villa  { background-color: #141210; }
/* Plaza slide tint */
.slide-bg--plaza  { background-color: #0e1014; }

/* Dark overlay */
.slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.35) 0%,
    rgba(0,0,0,0.15) 40%,
    rgba(0,0,0,0.55) 100%
  );
}

/* Slide text content */
.slide-content {
  position: relative;
  z-index: 2;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
  padding: 0 clamp(20px, 8vw, 100px);
  transform: translateY(20px);
  opacity: 0;
  transition: transform 0.8s 0.3s ease, opacity 0.8s 0.3s ease;
}
.slide--active .slide-content {
  transform: translateY(0);
  opacity: 1;
}

.slide-tag {
  font-size: 11px;
  letter-spacing: 0.45em;
  text-transform: uppercase;
  color: var(--gold-pale);
  border: 1px solid rgba(184,146,42,0.35);
  padding: 6px 18px;
  border-radius: 2px;
  backdrop-filter: blur(4px);
}

.slide-title {
  font-family: var(--font-display);
  font-size: clamp(44px, 8vw, 110px);
  font-weight: 400;
  line-height: 1;
  color: #fff;
  text-shadow: 0 2px 32px rgba(0,0,0,0.4);
}
.slide-title em {
  font-style: italic;
  color: var(--gold-light);
}

/* Arrow buttons */
.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: rgba(0,0,0,0.25);
  backdrop-filter: blur(8px);
  transition: background var(--transition), border-color var(--transition), transform var(--transition);
  cursor: pointer;
}
.slider-arrow svg { width: 20px; height: 20px; }
.slider-arrow--prev { left: clamp(16px, 3vw, 40px); }
.slider-arrow--next { right: clamp(16px, 3vw, 40px); }
.slider-arrow:hover {
  background: rgba(184,146,42,0.3);
  border-color: rgba(184,146,42,0.6);
  transform: translateY(-50%) scale(1.08);
}

/* Dots */
.slider-dots {
  position: absolute;
  bottom: 100px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  gap: 10px;
}
.slider-dot {
  width: 28px;
  height: 3px;
  background: rgba(255,255,255,0.3);
  border-radius: 2px;
  cursor: pointer;
  transition: background var(--transition), width var(--transition);
  border: none;
}
.slider-dot.active {
  background: var(--gold-light);
  width: 48px;
}

/* Progress bar */
.slider-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: rgba(255,255,255,0.1);
  z-index: 10;
}
.slider-progress-bar {
  height: 100%;
  width: 0%;
  background: var(--gold);
  transition: width linear;
}

/* Stats strip */
.hero-stats {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  align-items: center;
  background: rgba(10,10,10,0.6);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(184,146,42,0.15);
  border-radius: 2px;
  overflow: hidden;
  white-space: nowrap;
}

.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 16px 32px;
}
.stat-num {
  font-family: var(--font-display);
  font-size: clamp(20px, 2.5vw, 30px);
  font-weight: 600;
  color: var(--gold-light);
  line-height: 1;
}
.stat-label {
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 4px;
}
.stat-div {
  width: 1px;
  height: 36px;
  background: rgba(184,146,42,0.18);
  flex-shrink: 0;
}

/* Scroll hint */
.hero-scroll {
  position: absolute;
  bottom: 90px;
  right: clamp(20px, 3vw, 48px);
  z-index: 10;
  color: rgba(255,255,255,0.4);
  animation: bounce 2s ease infinite;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 50%;
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color var(--transition), border-color var(--transition);
}
.hero-scroll:hover { color: var(--gold-light); border-color: var(--gold); }

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(7px); }
}

/* Mobile adjustments */
@media (max-width: 768px) {
  .stat { padding: 12px 18px; }
  .stat-div { display: none; }
  .hero-stats { bottom: 8px; }
  .slider-dots { bottom: 80px; }
  .hero-scroll { bottom: 72px; right: 16px; }
  .slide-title { font-size: clamp(36px, 11vw, 64px); }
  .slider-arrow { width: 40px; height: 40px; }
  .slider-arrow svg { width: 16px; height: 16px; }
}

@media (max-width: 480px) {
  .hero-stats {
    width: 100%;
    justify-content: space-around;
    border-left: none;
    border-right: none;
    border-radius: 0;
  }
}


/* ═══ ABOUT ═══ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-visual { position: relative; }

.about-img-wrap { position: relative; }

.about-img-placeholder {
  width: 100%;
  aspect-ratio: 4/5;
  background: var(--dark3);
  border: 1px solid rgba(184,146,42,0.1);
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  color: var(--text-muted);
  font-size: 13px;
  letter-spacing: 0.1em;
}
.about-img-placeholder svg { opacity: 0.3; }

.about-badge {
  position: absolute;
  bottom: -24px;
  right: -24px;
  width: 100px;
  height: 100px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--dark);
  box-shadow: 0 8px 32px rgba(184,146,42,0.4);
}
.about-badge-num {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  line-height: 1;
}
.about-badge-txt {
  font-size: 10px;
  letter-spacing: 0.1em;
  text-align: center;
  line-height: 1.3;
  font-weight: 500;
}

.about-text p {
  color: var(--text-sub);
  margin-bottom: 16px;
}

.about-list {
  margin: 28px 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.about-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--text);
}
.about-list li svg { color: var(--gold); flex-shrink: 0; }

/* ═══ SERVICES ═══ */
.services { overflow: hidden; position: relative; }

.services-bg {
  position: absolute;
  inset: 0;
  background: var(--dark2);
  z-index: -1;
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: rgba(184,146,42,0.12);
  border: 1px solid rgba(184,146,42,0.12);
  border-radius: var(--radius);
  overflow: hidden;
}

/* Sağ sütun: 3 kartı dikey istifle */
.services-stack {
  display: flex;
  flex-direction: column;
}
.services-stack .service-card--compact {
  flex: 1;
}
.services-stack .service-card--compact + .service-card--compact {
  border-top: 1px solid rgba(184,146,42,0.12);
}

/* Numara aksesuarı */
.service-card-num {
  font-family: var(--font-display);
  font-size: 56px;
  font-weight: 700;
  line-height: 1;
  color: rgba(184,146,42,0.10);
  letter-spacing: -0.02em;
  margin-bottom: 20px;
  transition: color var(--transition);
}

/* â”€â”€ Öne çıkan (büyük) kart â”€â”€ */
.service-card--featured {
  background: var(--dark2);
  padding: 52px 44px;
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
  transition: background var(--transition);
  overflow: hidden;
}
.service-card--featured::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--gold) 0%, transparent 100%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}
.service-card--featured:hover { background: var(--dark3); }
.service-card--featured:hover::before { transform: scaleX(1); }
.service-card--featured:hover .service-card-num { color: rgba(184,146,42,0.22); }

.service-card--featured .service-icon {
  width: 58px;
  height: 58px;
  border: 1px solid rgba(184,146,42,0.25);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  margin-bottom: 28px;
  transition: border-color var(--transition), background var(--transition);
}
.service-card--featured:hover .service-icon {
  border-color: var(--gold);
  background: rgba(184,146,42,0.08);
}
.service-card--featured .service-icon svg { width: 28px; height: 28px; }

.service-card--featured h3 {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 16px;
  line-height: 1.2;
}
.service-card--featured p {
  font-size: 15px;
  color: var(--text-sub);
  line-height: 1.75;
  margin-bottom: 24px;
  flex: 1;
}

/* Özellik listesi (sadece featured kartta) */
.service-features {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 32px;
}
.service-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--text-sub);
}
.service-features li::before {
  content: '';
  display: block;
  width: 16px;
  height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}

/* â”€â”€ Kompakt kart â”€â”€ */
.service-card--compact {
  background: var(--dark2);
  padding: 0;
  transition: background var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card--compact:hover { background: var(--dark3); }

.service-card-inner {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 28px 32px;
  height: 100%;
}

.service-card--compact .service-card-num {
  position: absolute;
  top: 12px; right: 20px;
  font-size: 36px;
  margin-bottom: 0;
  line-height: 1;
}
.service-card--compact:hover .service-card-num { color: rgba(184,146,42,0.18); }

.service-card--compact .service-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  border: 1px solid rgba(184,146,42,0.2);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  margin-top: 4px;
  transition: border-color var(--transition), background var(--transition);
}
.service-card--compact:hover .service-icon {
  border-color: var(--gold);
  background: rgba(184,146,42,0.08);
}
.service-card--compact .service-icon svg { width: 20px; height: 20px; }

.service-card-body {
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
}
.service-card-body h3 {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 600;
  color: var(--white);
  line-height: 1.3;
}
.service-card-body p {
  font-size: 13px;
  color: var(--text-sub);
  line-height: 1.65;
  margin-bottom: 10px;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  transition: gap var(--transition);
  margin-top: auto;
}
.service-link:hover { gap: 10px; color: var(--gold-light); }

/* ═══ PROJECTS ═══ */
.projects-filter {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-bottom: 40px;
}

.filter-btn {
  cursor: pointer;
  padding: 8px 22px;
  border: 1.5px solid rgba(201,168,76,0.35);
  background: transparent;
  color: inherit;
  border-radius: 4px;
  font-size: 13px;
  letter-spacing: .06em;
  transition: background .25s, color .25s, border-color .25s, box-shadow .25s;
}
.filter-btn:hover {
  border-color: var(--gold);
  color: var(--gold);
}
.filter-btn.active {
  background: var(--gold);
  color: #0a0a0a;
  border-color: var(--gold);
  box-shadow: 0 4px 18px rgba(201,168,76,.35);
  font-weight: 600;
}

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

.project-card {
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--dark2);
  border: 1px solid rgba(184,146,42,0.08);
  transition: transform var(--transition), box-shadow var(--transition);
}
.project-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 48px rgba(0,0,0,0.5);
}
.project-card.hidden { display: none; }

.project-img {
  aspect-ratio: 4/5;
  position: relative;
  overflow: hidden;
}

.project-img-ph {
  width: 100%;
  height: 100%;
  background: var(--dark3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  transition: transform 0.5s ease;
}
.project-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.project-img-ph svg { width: 48px; height: 48px; opacity: 0.2; }
.project-card:hover .project-img-ph { transform: scale(1.04); }

.project-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10,10,10,0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition);
}
.project-card:hover .project-overlay { opacity: 1; }

.project-cta {
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--dark);
  background: var(--gold);
  padding: 10px 24px;
  border-radius: var(--radius);
  transition: background var(--transition);
}
.project-cta:hover { background: var(--gold-light); }

.project-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--dark);
  background: var(--gold);
  padding: 4px 10px;
  border-radius: 2px;
}
.project-badge--active {
  background: #22c55e;
  color: var(--white);
}
.project-badge--first {
  position: absolute;
  top: 0;
  right: 0;
  background: linear-gradient(135deg, #b8860b 0%, var(--gold) 50%, #ffe066 100%);
  color: #1a0a00;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 14px 6px 18px;
  border-bottom-left-radius: 12px;
  box-shadow: -2px 2px 8px rgba(0,0,0,0.28);
  display: flex;
  align-items: center;
  gap: 5px;
  z-index: 3;
  line-height: 1.2;
}
.project-badge--first::before {
  content: "🎗️";
  font-size: 13px;
  line-height: 1;
}
.project-badge--first-ribbon {
  position: absolute;
  top: 0;
  right: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 64px 64px 0;
  border-color: transparent #b8860b transparent transparent;
  z-index: 2;
}
.project-card--first {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

.project-info {
  padding: 20px 22px 24px;
}
.project-cat {
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
}
.project-info h3 {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 600;
  color: var(--white);
  margin: 6px 0 4px;
}
.project-info p { font-size: 13px; color: var(--text-muted); }

/* ═══ WHY US ═══ */
.whyus { overflow: hidden; }
.whyus-bg {
  position: absolute;
  inset: 0;
  background: var(--dark2);
  z-index: -1;
}

.whyus-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(184,146,42,0.1);
  border: 1px solid rgba(184,146,42,0.1);
  border-radius: var(--radius);
  overflow: hidden;
}

.why-item {
  background: var(--dark2);
  padding: 44px 32px;
  transition: background var(--transition);
}
.why-item:hover { background: var(--dark3); }

.why-num {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 700;
  color: rgba(184,146,42,0.15);
  line-height: 1;
  margin-bottom: 20px;
}

.why-item h3 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 12px;
}

.why-item p { font-size: 14px; color: var(--text-sub); line-height: 1.7; }

/* duyurular & haberler */
.media-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto;
  gap: 12px;
}

.media-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--dark2);
  border: 1px solid rgba(184,146,42,0.08);
  cursor: pointer;
}

.media-card--large {
  grid-row: 1 / 3;
}

.media-ph {
  aspect-ratio: 16/9;
  width: 100%;
  overflow: hidden;
  background: var(--dark3);
  transition: transform 0.4s ease;
}
.media-ph img { width: 100%; height: 100%; object-fit: cover; display: block; }
.media-card:hover .media-ph { transform: scale(1.03); }

.media-card--large .media-ph { aspect-ratio: unset; height: 100%; min-height: 320px; }

.media-caption {
  position: relative;
  background: none;
  padding: 16px 18px 18px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.media-tag {
  font-size: 11px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
}

.media-title {
  font-size: 20px;
  color: var(--white);
  font-family: var(--font-display);
  line-height: 1.35;
  font-weight: 600;
}

.media-excerpt {
  font-size: 15px;
  color: var(--text-sub);
  line-height: 1.65;
  margin: 0;
}

.media-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid rgba(255,255,255,0.07);
}

.media-card-date {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  color: rgba(255,255,255,0.35);
  letter-spacing: 0.03em;
}

.media-card-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  text-decoration: none;
  transition: gap var(--transition), color var(--transition);
}
.media-card-btn:hover { gap: 10px; color: var(--gold-light); }
.media-card-btn svg { transition: transform var(--transition); }
.media-card-btn:hover svg { transform: translateX(3px); }

/* ═══ CONTACT ═══ */
.contact { overflow: hidden; }
.contact-bg {
  position: absolute;
  inset: 0;
  background: var(--dark2);
  z-index: -1;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.contact-info p {
  color: var(--text-sub);
  margin-bottom: 32px;
}

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

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 20px;
  border: 1px solid rgba(184,146,42,0.12);
  border-radius: var(--radius);
  transition: border-color var(--transition), background var(--transition);
  color: var(--text);
}
.contact-item:hover {
  border-color: rgba(184,146,42,0.35);
  background: rgba(184,146,42,0.04);
}

.contact-item-icon {
  width: 38px;
  height: 38px;
  border: 1px solid rgba(184,146,42,0.2);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
}
.contact-item-icon svg { width: 18px; height: 18px; }

.contact-item strong {
  display: block;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 2px;
}
.contact-item span {
  font-size: 13px;
  color: var(--text-sub);
}

/* Form */
.contact-form-wrap {
  background: var(--dark3);
  border: 1px solid rgba(184,146,42,0.1);
  border-radius: var(--radius);
  padding: 40px;
}

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

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
  background: var(--dark2);
  border: 1px solid rgba(184,146,42,0.15);
  border-radius: var(--radius);
  color: var(--text);
  padding: 12px 16px;
  font-size: 14px;
  font-weight: 300;
  transition: border-color var(--transition);
  outline: none;
  width: 100%;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-muted); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: rgba(184,146,42,0.5); }
.form-group select { appearance: none; cursor: pointer; }
.form-group select option { background: var(--dark2); }

.form-note {
  text-align: center;
  font-size: 13px;
  color: var(--text-muted);
}
.form-note a { color: var(--gold); text-decoration: underline; text-underline-offset: 3px; }

/* ═══ FOOTER ═══ */
.footer {
  background: var(--dark);
  border-top: 1px solid rgba(184,146,42,0.12);
  padding: 72px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  margin-bottom: 56px;
}

.footer-logo-name {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--gold-light);
  text-transform: uppercase;
}
.footer-logo-sub {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  margin-bottom: 16px;
}
.footer-brand p {
  font-size: 14px;
  color: var(--text-sub);
  margin-bottom: 24px;
  max-width: 280px;
}

.footer-social {
  display: flex;
  gap: 10px;
}
.footer-social a {
  width: 38px;
  height: 38px;
  border: 1px solid rgba(184,146,42,0.2);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  transition: color var(--transition), border-color var(--transition);
}
.footer-social a svg { width: 18px; height: 18px; }
.footer-social a:hover { color: var(--gold-light); border-color: var(--gold); }

.footer-links h4,
.footer-contact h4 {
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 20px;
}

.footer-links ul { display: flex; flex-direction: column; gap: 10px; }
.footer-links li a {
  font-size: 14px;
  color: var(--text-sub);
  transition: color var(--transition);
}
.footer-links li a:hover { color: var(--gold-light); }

.footer-contact p {
  font-size: 13px;
  color: var(--text-sub);
  margin-bottom: 10px;
  line-height: 1.5;
}
.footer-contact a {
  color: var(--text-sub);
  transition: color var(--transition);
}
.footer-contact a:hover { color: var(--gold-light); }

.footer-bottom {
  border-top: 1px solid rgba(184,146,42,0.08);
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 12px;
  color: var(--text-muted);
  letter-spacing: 0.05em;
}
.footer-bottom a {
  color: var(--gold);
  transition: color var(--transition);
}
.footer-bottom a:hover { color: var(--gold-light); }

/* ═══ WHATSAPP FLOAT ═══ */
.wa-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  display: flex;
  align-items: center;
  gap: 0;
  background: #25D366;
  color: #fff;
  border-radius: 50px;
  box-shadow: 0 8px 32px rgba(37,211,102,0.35);
  text-decoration: none;
  overflow: hidden;
  transition: box-shadow var(--transition), transform var(--transition);
  animation: popIn 0.5s 1s cubic-bezier(0.175,0.885,0.32,1.275) both;
}
.wa-float:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 40px rgba(37,211,102,0.5);
}
.wa-float svg {
  width: 56px;
  height: 56px;
  padding: 14px;
  flex-shrink: 0;
}
.wa-float span {
  max-width: 0;
  overflow: hidden;
  white-space: nowrap;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.05em;
  opacity: 0;
  transition: max-width 0.4s ease, padding 0.4s ease, opacity 0.3s ease;
}
.wa-float:hover span {
  max-width: 140px;
  padding: 0 18px 0 0;
  opacity: 1;
}
.wa-float-pulse {
  position: absolute;
  inset: 0;
  border-radius: 50px;
  border: 2px solid #25D366;
  animation: pulse 2.5s ease-out 2s infinite;
  pointer-events: none;
}

@keyframes popIn {
  from { opacity: 0; transform: scale(0.4); }
  to   { opacity: 1; transform: scale(1); }
}
@keyframes pulse {
  0%   { transform: scale(1); opacity: 0.7; }
  100% { transform: scale(1.7); opacity: 0; }
}

/* ═══ RESPONSIVE ═══ */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: 1fr; }
  .services-stack { flex-direction: row; flex-wrap: wrap; }
  .services-stack .service-card--compact { flex: 1 1 calc(50% - 1px); min-width: 240px; }
  .services-stack .service-card--compact + .service-card--compact { border-top: none; border-left: 1px solid rgba(184,146,42,0.12); }
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-visual { max-width: 480px; margin: 0 auto; }
  .about-img-placeholder { aspect-ratio: 16/9; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .whyus-grid { grid-template-columns: repeat(2, 1fr); }
  .projects-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
}

@media (max-width: 768px) {
  :root { --nav-h: 64px; }

  .navbar {
    background: #0a0a0a;
    border-bottom: 1px solid rgba(184,146,42,0.25);
  }
  .navbar.scrolled { background: #0a0a0a; }

  .nav-inner {
    padding: 0 16px;
  }

  .nav-toggle { display: flex; }

  .nav-menu {
    position: fixed;
    top: var(--nav-h);
    left: 0; right: 0;
    background: #0d0d0d;
    border-top: 1px solid rgba(184,146,42,0.15);
    border-bottom: 1px solid rgba(184,146,42,0.15);
    flex-direction: column;
    align-items: stretch;
    padding: 12px 16px 28px;
    gap: 0;
    transform: translateY(-110%);
    opacity: 0;
    transition: transform 0.35s cubic-bezier(0.4,0,0.2,1), opacity 0.3s ease;
    max-height: calc(100dvh - var(--nav-h));
    overflow-y: auto;
    pointer-events: none;
  }
  .nav-menu.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav-link {
    padding: 13px 8px;
    font-size: 12px;
    letter-spacing: 0.14em;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    justify-content: space-between;
  }
  .nav-menu > li:last-child .nav-link { border-bottom: none; }

  .nav-dropdown { position: static; }
  .dropdown-menu {
    position: static;
    transform: none !important;
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto;
    background: rgba(184,146,42,0.06);
    border: none;
    border-left: 2px solid rgba(184,146,42,0.35);
    border-radius: 0;
    box-shadow: none;
    padding: 4px 0 8px 12px;
    margin: 4px 0 8px 8px;
    display: none;
    min-width: unset;
  }
  .nav-dropdown.open .dropdown-menu { display: block; }
  .nav-dropdown.open .nav-link--drop { color: var(--gold-light); }
  .dropdown-menu li a {
    padding: 10px 14px;
    font-size: 13px;
    letter-spacing: 0.06em;
    color: rgba(226,216,200,0.9);
    border-bottom: 1px solid rgba(255,255,255,0.04);
  }
  .dropdown-menu li a::before { display: none; }
  .dropdown-menu li:last-child a { border-bottom: none; }
  .dropdown-menu li + li { border-top: none; }

  .hero-stats {
    flex-wrap: wrap;
    justify-content: center;
  }
  .stat { padding: 16px 24px; }
  .stat-div { display: none; }

  .services-grid { grid-template-columns: 1fr; }
  .services-stack { flex-direction: column; }
  .services-stack .service-card--compact { flex: auto; min-width: unset; }
  .services-stack .service-card--compact + .service-card--compact { border-left: none; border-top: 1px solid rgba(184,146,42,0.12); }
  .service-card--featured { padding: 36px 28px; }
  .service-card-inner { padding: 22px 24px; }
  .projects-grid { grid-template-columns: 1fr; }

  .media-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }
  .media-card--large { grid-row: auto; grid-column: 1 / -1; }

  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }

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

  .contact-form-wrap { padding: 28px 20px; }
  .form-row { grid-template-columns: 1fr; }

  .about-badge { right: 0; bottom: -16px; width: 80px; height: 80px; }
  .about-badge-num { font-size: 22px; }

  .wa-float { bottom: 16px; right: 16px; }
  .wa-float svg { width: 50px; height: 50px; padding: 12px; }
}

@media (max-width: 480px) {
  .hero-title { font-size: clamp(40px, 13vw, 60px); }
  .btn { padding: 12px 24px; font-size: 11px; }
  .stat { padding: 14px 16px; }
  .service-card { padding: 28px 24px; }
  .why-item { padding: 32px 24px; }
}






@media (max-width: 768px) {


  .media-grid {
    grid-template-columns: 1fr !important; /* Tek sï¿½tun yapisina zorla */
    gap: 20px;
  }

  .media-card--large { 
    grid-row: auto; 
    grid-column: auto; 
  }
}





.media-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 4px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  transition: gap var(--transition), color var(--transition);
}
.media-more:hover {
  color: var(--gold-light);
  gap: 10px;
}








/* ═══ PAGE HEADER ═══ */
.page-header {
  position: relative;
  height: 45vh; /* Header yüksekliği */
  min-height: 350px;
  background-size: cover;
  background-position: center;
  background-attachment: fixed; /* Parallax etkisi */
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: var(--nav-h);
}

.page-header-content {
  position: relative;
  z-index: 5;
  text-align: center;
}

/* Mevcut contact grid yapısını desteklemek için mobil düzenleme */
@media (max-width: 1024px) {
  .page-header {
    height: 35vh;
    background-attachment: scroll; /* Mobilde performans için sabitliği kaldır */
  }
}









/* ═══ HABER DETAY ÖZELLİKLERİ ═══ */
.breadcrumb {
  margin-top: 15px;
  font-size: 13px;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.5);
}
.breadcrumb a { color: var(--gold-light); transition: color 0.3s; }
.breadcrumb a:hover { color: var(--white); }

.news-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 60px;
  align-items: start;
}

.news-meta {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.news-date { color: var(--text-muted); display: flex; align-items: center; gap: 6px; }
.news-category { color: var(--gold); font-weight: 500; }

.article-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 42px);
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 30px;
}

.article-main-image {
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 40px;
  border: 1px solid rgba(184,146,42,0.1);
}

.article-content {
  color: var(--text-sub);
  font-size: 18px;
  line-height: 1.8;
}
.article-content p { margin-bottom: 25px; }
.article-content blockquote {
  border-left: 3px solid var(--gold);
  padding: 20px 30px;
  margin: 40px 0;
  background: var(--dark2);
  font-style: italic;
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--text);
}

.article-share {
  margin-top: 50px;
  padding-top: 30px;
  border-top: 1px solid rgba(184,146,42,0.1);
  display: flex;
  align-items: center;
  gap: 20px;
}
.share-links { display: flex; gap: 12px; }
.share-links a {
  width: 40px; height: 40px;
  border: 1px solid rgba(184,146,42,0.2);
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%; color: var(--text-muted);
  transition: all 0.3s ease;
}
.share-links a:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-3px); }

/* Sidebar */
.sidebar-widget {
  background: var(--dark2);
  padding: 30px;
  border: 1px solid rgba(184,146,42,0.1);
  margin-bottom: 30px;
}
.sidebar-widget h4 {
  font-family: var(--font-display);
  color: var(--gold-light);
  margin-bottom: 20px;
  font-size: 18px;
}
.recent-posts { display: flex; flex-direction: column; gap: 20px; }
.recent-posts li a { display: flex; gap: 15px; align-items: center; }
.recent-posts img { width: 70px; height: 70px; object-fit: cover; border-radius: 2px; }
.post-info h6 { color: var(--text); font-size: 14px; line-height: 1.4; transition: 0.3s; }
.recent-posts li a:hover h6 { color: var(--gold-light); }
.post-date { font-size: 11px; color: var(--text-muted); text-transform: uppercase; }

.sidebar-cta {
  background: linear-gradient(135deg, var(--dark3) 0%, var(--dark) 100%);
  padding: 30px;
  border: 1px solid var(--gold);
  text-align: center;
}
.sidebar-cta h5 { font-family: var(--font-display); font-size: 20px; margin-bottom: 10px; }
.sidebar-cta p { font-size: 14px; color: var(--text-muted); margin-bottom: 20px; }

/* Responsive */
@media (max-width: 1024px) {
  .news-layout { grid-template-columns: 1fr; }
  .news-sidebar { order: 2; }
}
































/* ═══ HABER LİSTESİ V3 (KÜÇÜK RESİM & YENİ TARİH YERİ) ═══ */

/* Haber Listesi Ana Alan */
.news-list-v3 {
  background: var(--dark);
  padding-top: 80px;
  padding-bottom: 80px;
}

/* Haber Ögesi (Liste Elemanı - İki Kolonlu Grid) */
.news-entry-v3 {
  display: grid;
  grid-template-columns: 180px 1fr; /* Sol: Küçük Resim, Sağ: İçerik */
  gap: 30px;
  padding: 40px 0;
  border-bottom: 1px solid rgba(184,146,42,0.1);
  transition: all 0.4s ease;
  align-items: start; /* Resim ve metni yukarı hizala */
}
.news-entry-v3:first-child { padding-top: 0; }
.news-entry-v3:last-child { border-bottom: none; }

/* Küçük Resim Alanı (Thumbnail) */
.news-entry-thumb {
  width: 100%;
  aspect-ratio: 1 / 1; /* Kare resim */
  border-radius: var(--radius); /* Mevcut radius değişkeni */
  overflow: hidden;
  border: 1px solid rgba(184,146,42,0.1); /* Hafif border */
  transition: border-color 0.3s ease, transform 0.3s ease;
}
.news-entry-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Resmi sığdır */
  transition: transform 0.5s ease;
}

/* Hover Efektleri */
.news-entry-v3:hover .news-entry-thumb {
  border-color: var(--gold);
}
.news-entry-v3:hover .news-entry-thumb img {
  transform: scale(1.05); /* Resmi hafifçe büyüt */
}

/* İçerik Alanı */
.news-entry-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

/* Tarih ve Kategori Meta Verisi (Yeni Stil) */
.news-entry-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  text-transform: uppercase;
  margin-bottom: 12px;
}
.news-entry-meta .date {
  color: var(--text-sub);
}
.news-entry-meta .sep {
  color: rgba(184,146,42,0.2);
}
.news-entry-meta .category {
  color: var(--gold);
  font-weight: 500;
}

/* Başlık */
.news-entry-title {
  font-family: var(--font-display);
  font-size: clamp(20px, 2.5vw, 26px); /* Biraz küçülttük */
  line-height: 1.3;
  margin-bottom: 15px;
}
.news-entry-title a {
  color: var(--white);
  transition: color 0.3s ease;
}
.news-entry-title a:hover {
  color: var(--gold-light);
}

/* Özet Metin */
.news-entry-excerpt {
  color: var(--text-sub);
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 20px;
  /* Metni 2 satırla sınırla */
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Devamını Oku Linki */
.news-entry-link {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--gold-light);
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  transition: all 0.3s ease;
}
.news-entry-link svg {
  transition: transform 0.3s ease;
}
.news-entry-link:hover {
  color: var(--white);
}
.news-entry-link:hover svg {
  transform: translateX(5px);
}

/* Minimal Sayfalama (Öncekiyle Aynı) */
.pagination--minimal {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 60px;
  padding-top: 30px;
  border-top: 1px solid rgba(184,146,42,0.1);
}
.page-info {
  font-size: 14px;
  color: var(--text-muted);
}
.pagination--minimal .page-link {
  width: auto; height: auto;
  padding: 10px 20px;
  display: flex; align-items: center; gap: 8px;
  background: none;
  border: 1px solid rgba(184,146,42,0.2);
  color: var(--text-sub);
}
.pagination--minimal .page-link:hover {
  background: rgba(184,146,42,0.05);
  border-color: var(--gold);
  color: var(--gold);
}

/* Responsive Ayarlar */
@media (max-width: 768px) {
  .news-entry-v3 {
    grid-template-columns: 1fr; /* Mobilde alt alta (resim üstte, metin altta) */
    gap: 20px;
    padding: 30px 0;
  }
  .news-entry-thumb {
    width: 100px; /* Mobilde resmi küçült */
    height: 100px;
    margin-bottom: 10px;
  }
  
  .news-entry-title { font-size: 20px; }
  
  .pagination--minimal {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }
}

















/* ═══ PROJE DETAY SAYFASI ═══ */

/* Durum Etiketleri */
.project-status-tag {
    display: inline-block;
    padding: 6px 16px;
    font-size: 11px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 15px;
    border-radius: 2px;
}
.project-status-tag.ongoing { background: var(--gold); color: var(--dark); }
.project-status-tag.completed { background: #22c55e; color: var(--white); }

/* Proje Grid */
.project-main-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    margin-bottom: 80px;
    align-items: center;
}

/* Teknik Tablo */
.project-specs {
    margin-top: 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    border-top: 1px solid rgba(184,146,42,0.1);
    padding-top: 30px;
}
.spec-item {
    display: flex;
    flex-direction: column;
    gap: 5px;
}
.spec-item span {
    font-size: 11px;
    text-transform: uppercase;
    color: var(--gold);
    letter-spacing: 0.1em;
}
.spec-item strong {
    font-size: 16px;
    color: var(--text);
    font-weight: 400;
}

/* Galeri / Görsel */
.main-image-wrap {
    border: 1px solid rgba(184,146,42,0.15);
    padding: 10px;
    background: var(--dark2);
}
.main-image-wrap img {
    width: 100%;
    height: auto;
}

/* Video Alanı */
.project-video-section {
    margin: 60px 0;
}
.video-container {
    position: relative;
    width: 100%;
    aspect-ratio: 21 / 9; /* Geniş sinematik görünüm */
    border-radius: 2px;
    overflow: hidden;
}
.video-placeholder {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.play-btn {
    position: relative;
    z-index: 2;
    width: 80px;
    height: 80px;
    background: var(--gold);
    color: var(--dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
    box-shadow: 0 0 0 0 rgba(184,146,42,0.4);
    animation: pulse-gold 2s infinite;
}
.play-btn svg { width: 30px; height: 30px; margin-left: 5px; }
.play-btn:hover { transform: scale(1.1); background: var(--gold-light); }

.video-label {
    position: relative;
    z-index: 2;
    margin-top: 20px;
    font-size: 12px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--white);
}

/* Footer Actions */
.project-footer-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    border-top: 1px solid rgba(184,146,42,0.1);
    padding-top: 60px;
}

@keyframes pulse-gold {
    0% { box-shadow: 0 0 0 0 rgba(184,146,42,0.7); }
    70% { box-shadow: 0 0 0 20px rgba(184,146,42,0); }
    100% { box-shadow: 0 0 0 0 rgba(184,146,42,0); }
}

/* Responsive */
@media (max-width: 992px) {
    .project-main-grid { grid-template-columns: 1fr; gap: 40px; }
    .video-container { aspect-ratio: 16 / 9; }
}




/* ═══ ESNEK PROJE GALERİSİ ═══ */
.flexible-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 8px;   /* hafif */
  background: var(--dark2);
  border: 1px solid rgba(184,146,42,0.1);
  aspect-ratio: 3/4;
}

.project-gallery-section .gallery-item {
  aspect-ratio: 3/4;
}


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

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

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(184,146,42,0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

@media (max-width: 1024px) {
  .flexible-gallery { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
  .flexible-gallery { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .flexible-gallery { grid-template-columns: 1fr; }
}























/* ═══ DEVAM EDEN PROJELER LİSTESİ ═══ */

.ongoing-projects {
    background: var(--dark);
}

.projects-stack {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.ongoing-card {
    display: grid;
    grid-template-columns: 450px 1fr;
    gap: 50px;
    background: var(--dark2);
    border: 1px solid rgba(184,146,42,0.1);
    padding: 30px;
    align-items: center;
    transition: transform 0.4s ease, border-color 0.4s ease;
}

.ongoing-card:hover {
    border-color: rgba(184,146,42,0.3);
    transform: translateY(-5px);
}

.ongoing-card-img {
    position: relative;
    height: 350px;
    overflow: hidden;
}

.ongoing-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

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

.ongoing-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--gold);
    color: var(--dark);
    padding: 6px 14px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* Kart İçerik */
.ongoing-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 13px;
    color: var(--gold-light);
    margin-bottom: 15px;
    text-transform: uppercase;
}

.ongoing-title {
    font-family: var(--font-display);
    font-size: 32px;
    color: var(--white);
    margin-bottom: 15px;
}

.ongoing-excerpt {
    color: var(--text-sub);
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 30px;
}

/* Progress Bar (İlerleme Çubuğu) */
.project-progress-wrap {
    margin-bottom: 35px;
    max-width: 400px;
}

.progress-labels {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    margin-bottom: 8px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.progress-bar-bg {
    width: 100%;
    height: 4px;
    background: rgba(255,255,255,0.05);
    border-radius: 2px;
    overflow: hidden;
}

.progress-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--gold) 0%, var(--gold-light) 100%);
    transition: width 1.5s cubic-bezier(0.1, 0, 0.2, 1);
}

/* Footer Bilgi */
.ongoing-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid rgba(184,146,42,0.1);
    padding-top: 25px;
}

.delivery-info small {
    display: block;
    font-size: 11px;
    color: var(--text-muted);
    text-transform: uppercase;
}

.delivery-info strong {
    font-size: 18px;
    color: var(--gold);
    font-family: var(--font-display);
}

/* Responsive */
@media (max-width: 992px) {
    .ongoing-card {
        grid-template-columns: 1fr;
        padding: 20px;
    }
    .ongoing-card-img {
        height: 250px;
    }
}













































/* ═══ TAMAMLANAN PROJELER V4 (DİKEY GÖRSEL ODAKLI) ═══ */

.completed-v4 {
    background: var(--dark);
    padding-top: 80px;
}

.projects-list-v4 {
    display: flex;
    flex-direction: column;
    gap: 80px; /* Kartlar arası geniş boşluk */
    max-width: 1000px; /* Okunabilirlik için konteyner daraltıldı */
    margin: 0 auto;
}

.project-entry-v4 {
    display: grid;
    grid-template-columns: 350px 1fr; /* 350px dikey resim için ideal genişlik */
    gap: 60px;
    background: var(--dark2);
    border: 1px solid rgba(184, 146, 42, 0.1);
    transition: all var(--transition);
    align-items: stretch;
}

.project-entry-v4:hover {
    border-color: rgba(184, 146, 42, 0.3);
}

/* Medya Alanı */
.project-entry-v4-media {
    position: relative;
    overflow: hidden;
    height: 500px; /* Dikey resim için yüksek alan */
    background: var(--dark3);
}

.project-entry-v4-media img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Resmi yamultmadan doldurur */
    transition: transform 0.8s ease;
}

.project-entry-v4:hover .project-entry-v4-media img {
    transform: scale(1.05);
}

/* Yıl Etiketi */
.project-entry-v4-year {
    position: absolute;
    top: 30px;
    left: 30px;
    background: var(--gold);
    color: var(--dark);
    padding: 10px 15px;
    text-align: center;
    line-height: 1;
    border-radius: var(--radius);
    z-index: 2;
}

.project-entry-v4-year span {
    display: block;
    font-size: 9px;
    letter-spacing: 0.1em;
    font-weight: 600;
    margin-bottom: 4px;
}

.project-entry-v4-year strong {
    display: block;
    font-family: var(--font-display);
    font-size: 20px;
}

/* İçerik Alanı */
.project-entry-v4-body {
    padding: 50px 50px 50px 0; /* Sol boşluk grid gap'ten geliyor */
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.project-entry-v4-cat {
    font-size: 11px;
    letter-spacing: 0.25em;
    color: var(--gold);
    text-transform: uppercase;
    margin-bottom: 15px;
    display: block;
}

.project-entry-v4-title {
    font-family: var(--font-display);
    font-size: 36px;
    color: var(--white);
    margin-bottom: 25px;
    line-height: 1.2;
}

.project-entry-v4-text {
    color: var(--text-sub);
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 40px;
}

/* Teknik Bilgiler (Specs) */
.project-entry-v4-specs {
    display: flex;
    gap: 40px;
    margin-bottom: 40px;
    border-top: 1px solid rgba(255,255,255,0.05);
    padding-top: 30px;
}

.spec-v4 small {
    display: block;
    font-size: 10px;
    color: var(--text-muted);
    letter-spacing: 0.1em;
    margin-bottom: 6px;
}

.spec-v4 p {
    font-size: 14px;
    color: var(--text);
}

.status-done {
    color: #22c55e !important;
    font-weight: 600;
}

/* Footer Link */
.project-entry-v4-footer {
    margin-top: auto;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
    .project-entry-v4 {
        grid-template-columns: 1fr;
        gap: 0;
    }
    .project-entry-v4-body {
        padding: 40px;
    }
    .project-entry-v4-media {
        height: 400px;
    }
}

@media (max-width: 768px) {
    .project-entry-v4-specs {
        flex-direction: column;
        gap: 20px;
    }
    .project-entry-v4-title {
        font-size: 28px;
    }
}




/* ═══ HAKKIMIZDA SAYFA STİLLERİ ═══ */

.about-page {
  padding-bottom: 60px;
}

/* Vizyon & Misyon Grid */
.vm-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 40px;
}

.vm-card {
  background: var(--dark2);
  border: 1px solid rgba(184, 146, 42, 0.12);
  padding: 40px 30px;
  text-align: center;
  transition: all var(--transition);
  border-radius: var(--radius);
}

.vm-card:hover {
  border-color: var(--gold);
  transform: translateY(-5px);
  background: var(--dark3);
}

.vm-icon {
  width: 60px;
  height: 60px;
  background: rgba(184, 146, 42, 0.08);
  border: 1px solid var(--gold-dim);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  color: var(--gold);
  transition: all var(--transition);
}

.vm-card:hover .vm-icon {
  background: var(--gold);
  color: var(--dark);
}

.vm-card h3 {
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--white);
  margin-bottom: 16px;
  letter-spacing: 0.05em;
}

.vm-card p {
  font-size: 15px;
  color: var(--text-sub);
  line-height: 1.7;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .vm-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .vm-grid {
    grid-template-columns: 1fr;
  }
  .about-visual {
    margin-bottom: 40px;
  }
}


























/* Villa Hizmet Sayfası Özel Stilleri */

.service-detail {
    background: var(--dark);
}

/* Sayfa başlığı için parallax etkisi desteği */
.page-header {
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

/* Hakkımızda grid yapısını hizmet sayfası için optimize etme */
.service-detail .about-grid {
    align-items: center;
}

.about-img-wrap img {
    width: 100%;
    height: auto;
    border-radius: var(--radius);
    border: 1px solid rgba(184, 146, 42, 0.15);
    padding: 10px;
    background: var(--dark2);
}

/* Süreç Kartları (why-item stilini kullanıyoruz) */
.whyus-bg {
    background: var(--dark2);
}

.why-item {
    border: 1px solid rgba(184, 146, 42, 0.05);
}

.why-item:hover {
    border-color: var(--gold);
    transform: translateY(-8px);
}

/* CTA Bölümü */
.cta-service {
    padding: 80px 0;
    background: linear-gradient(rgba(10,10,10,0.8), rgba(10,10,10,0.8)), url('images/pattern-bg.jpg');
    background-size: cover;
}

/* Mobil Uyumluluk */
@media (max-width: 1024px) {
    .page-header {
        height: 40vh;
        background-attachment: scroll;
    }
}

@media (max-width: 768px) {
    .service-detail .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-visual {
        order: 2;
    }
    
    .about-text {
        order: 1;
    }
}




















/* HİZMETLER SAYFASI ÖZEL STİLLERİ */

.services-intro {
  padding-bottom: 40px;
}

.s-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* 2x2 düzeni */
  gap: 30px;
}

.s-card {
  background: var(--dark2);
  border: 1px solid rgba(184, 146, 42, 0.1);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all 0.4s ease;
  display: flex;
  flex-direction: column;
}

.s-card:hover {
  border-color: var(--gold);
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

.s-card-img {
  position: relative;
  height: 280px;
  overflow: hidden;
}

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

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

/* Kart üzerindeki ikon dairesi */
.s-card-icon {
  position: absolute;
  bottom: -25px;
  right: 30px;
  width: 60px;
  height: 60px;
  background: var(--gold);
  color: var(--dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 20px rgba(184, 146, 42, 0.3);
  z-index: 2;
  transition: transform 0.4s ease;
}

.s-card:hover .s-card-icon {
  transform: rotateY(180deg);
  background: var(--gold-light);
}

.s-card-icon svg {
  width: 28px;
  height: 28px;
}

.s-card-body {
  padding: 40px 30px 30px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.s-card-body h3 {
  font-family: var(--font-display);
  font-size: 24px;
  color: var(--white);
  margin-bottom: 15px;
}

.s-card-body p {
  font-size: 15px;
  color: var(--text-sub);
  line-height: 1.7;
  margin-bottom: 25px;
  flex-grow: 1;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .s-grid {
    grid-template-columns: 1fr; /* Mobilde tek sütun */
  }
  
  .s-card-img {
    height: 220px;
  }
}

@media (max-width: 480px) {
  .s-card-body {
    padding: 30px 20px 20px;
  }
  
  .s-card-body h3 {
    font-size: 20px;
  }
}








/* Sadece Haber Detay Sayfası İçin Özel Başlık Boyutu */
.news-detail-title {
    font-size: 1.75rem !important; 
    font-weight: 700;
    line-height: 1.3;
    margin: 10px 0 15px 0;
    text-transform: none; 
    letter-spacing: -0.02em;
    color: #ffffff;
}


.single-haber .breadcrumb {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
}

.single-haber .breadcrumb a {
    color: rgba(255, 255, 255, 0.9);
    transition: all 0.3s ease;
}

/* Mobil uyumluluk */
@media (max-width: 768px) {
    .single-haber .news-detail-title {
        font-size: 1.5rem !important;
    }
}




/* Aktif Haber Listesi Öğesi Stili */
.recent-posts li.active-news {
    background: rgba(184, 146, 42, 0.08); /* Hafif gold arka plan */
    border-radius: var(--radius);
    position: relative;
    border: 1px solid rgba(184, 146, 42, 0.3);
}

/* Sol tarafa dikey bir gold çizgi ekleyelim */
.recent-posts li.active-news::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10%;
    height: 80%;
    width: 3px;
    background: var(--gold);
}

/* Aktif haberin başlık rengini değiştir */
.recent-posts li.active-news h6 {
    color: var(--gold-light) !important;
    font-weight: 600;
}

/* Aktif haberin görseline hafif bir parlama ekle */
.recent-posts li.active-news img {
    border-color: var(--gold);
    opacity: 1;
    filter: brightness(1.1);
}

/* Hover efektini aktif haberde sabitleyelim */
.recent-posts li.active-news a {
    cursor: default; /* Zaten o sayfada olduğu için imleci değiştir */
}





/* Sidebar CTA SEO & Okunabilirlik Güncellemesi */
.sidebar-cta {
    background: linear-gradient(135deg, var(--dark3) 0%, var(--dark) 100%); /* Mevcut stil korundu[cite: 3] */
    padding: 40px 30px; /* İç boşluğu biraz artırarak ferahlık sağladık */
    border: 1px solid var(--gold);
    text-align: center;
    border-radius: var(--radius);
}

.sidebar-cta .cta-title {
    font-family: var(--font-display);
    font-size: 24px; /* 20px'den 24px'e çıkarıldı[cite: 3] */
    color: var(--gold-light);
    margin-bottom: 15px;
    font-weight: 600;
    line-height: 1.2;
}

.sidebar-cta .cta-text {
    font-size: 16px; /* 14px'den 16px'e çıkarıldı[cite: 3] */
    color: var(--white); /* Daha yüksek kontrast için beyaz tonuna çekildi */
    margin-bottom: 25px;
    line-height: 1.6;
    font-weight: 400;
}

/* Butonun metin boyutu genel buton stilinden gelmekle beraber, 
   burada daha baskın durması için ufak bir dokunuş yapabilirsin */
.sidebar-cta .btn {
    font-size: 13px;
    letter-spacing: 0.15em;
}






/* Hizmet Detay Özet Bloğu */
.service-highlight-text {
    margin-top: 25px;
    padding: 20px;
    border-left: 3px solid var(--gold); /* Temandaki gold rengi */
    background: rgba(184, 146, 42, 0.05); /* Hafif şeffaf gold arka plan */
    font-family: var(--font-display); /* Playfair Display */
    font-style: italic;
    font-size: 1.25rem;
    line-height: 1.6;
    color: var(--text);
    position: relative;
}

/* Mobilde yazı boyutunu biraz küçültelim */
@media (max-width: 768px) {
    .service-highlight-text {
        font-size: 1.1rem;
        padding: 15px;
    }
}





.proje_adi_buyuk {
  font-size: clamp(22px, 4vw, 55px); 
  font-weight: 400;
  line-height: 1.1; 
  color: #fff;
  text-shadow: 0 2px 32px rgba(0,0,0,0.4);
}























/* --- PROJECT CATEGORIES PAGE --- */

.project-categories {
  background: var(--dark);
}

.categories-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  margin-top: 20px;
}

.category-card {
  display: block;
  background: var(--dark2);
  border: 1px solid rgba(184, 146, 42, 0.1);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

.category-card:hover {
  border-color: var(--gold);
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.category-img {
  position: relative;
  height: 400px;
  overflow: hidden;
}

.category-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

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

.category-overlay-dark {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 40%, rgba(10, 10, 10, 0.8) 100%);
}

.category-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  background: var(--gold);
  color: var(--dark);
  padding: 6px 16px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 2px;
}

.category-info {
  padding: 40px;
  position: relative;
}

.category-num {
  font-family: var(--font-display);
  font-size: 60px;
  font-weight: 700;
  color: rgba(184, 146, 42, 0.05);
  position: absolute;
  top: 10px;
  right: 30px;
  line-height: 1;
}

.category-info h3 {
  font-family: var(--font-display);
  font-size: 28px;
  color: var(--white);
  margin-bottom: 15px;
  position: relative;
}

.category-info p {
  color: var(--text-sub);
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 25px;
  max-width: 90%;
}

.category-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--gold-light);
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  transition: gap 0.3s ease;
}

.category-card:hover .category-link {
  gap: 15px;
  color: var(--white);
}

/* Responsive Ayarlar */
@media (max-width: 992px) {
  .categories-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .category-img {
    height: 300px;
  }
  
  .category-info {
    padding: 30px;
  }
}








/* --- PROJE NAVIGASYON --- */
.project-footer-actions {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 20px;
  margin-top: 60px;
  padding-top: 40px;
  border-top: 1px solid rgba(184,146,42,0.15);
}

.project-nav-center {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-shrink: 0;
}

.project-nav-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  border: 1px solid rgba(184,146,42,0.2);
  border-radius: var(--radius);
  transition: all 0.3s ease;
  color: var(--text);
  min-width: 0;
}
.project-nav-btn:hover {
  border-color: var(--gold);
  color: var(--gold-light);
  background: rgba(184,146,42,0.05);
}
.project-nav-btn span {
  display: flex;
  flex-direction: column;
  gap: 3px;
  overflow: hidden;
}
.project-nav-btn span small {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}
.project-nav-btn--prev { justify-content: flex-start; }
.project-nav-btn--next { justify-content: flex-end; text-align: right; }
.project-nav-btn svg { flex-shrink: 0; }

@media (max-width: 768px) {
  .project-footer-actions {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .project-nav-center { order: -1; }
  .project-nav-btn--next { justify-content: flex-start; text-align: left; }
}