::-webkit-scrollbar {
  width: 8px;
}
/* ===== KESİN OVERFLOW FIX ===== */

/* ============================================
   KAREM KÖKLERİ — ANA STİL DOSYASI
   Renk paleti: #11202e (koyu lacivert), #b0915a (altın), beyaz
   Font: Vogun (ana) + Cormorant Garamond (başlık) + Montserrat (fallback)
   ============================================ */

@font-face {
    font-family: 'Vogun';
    src: url('../assets/font/Vogun-Medium.woff') format('woff'),
         url('../assets/font/Vogun-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}


/* ===== MOBİL TAŞMA ÖNLEYİCİ ===== */
section, header, footer, main, div {
    max-width: 100%;
}
.container {
    width: 100%;
    overflow-x: hidden;
}

:root {
  --navy:   #11202e;
  --gold:   #b0915a;
  --gold2:  #c9a96e;
  --white:  #ffffff;
  --light:  #f8f7f4;
  --gray:   #6b7280;
  --border: #e5e7eb;
  --shadow: 0 4px 24px rgba(17,32,46,.10);
  --shadow-lg: 0 12px 48px rgba(17,32,46,.15);
  --radius: 1.5rem;
  --radius-sm: 0.75rem;
  --transition: .35s cubic-bezier(.4,0,.2,1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  scroll-behavior: smooth;
  overflow-x: hidden !important;
  max-width: 100vw;
}
body {
  font-family: 'Vogun', 'Montserrat', sans-serif;
  color: var(--navy);
  background: var(--white);
  overflow-x: hidden !important;
  max-width: 100vw;
  width: 100%;
  position: relative;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ========== TYPOGRAPHY ========== */
.heading-display {
  font-family: 'Vogun', 'Cormorant Garamond', serif;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.02em;
}
.section-label {
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ========== HEADER ========== */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  transition: background var(--transition), box-shadow var(--transition);
  background: var(--white);
  box-shadow: 0 2px 20px rgba(17,32,46,.08);
}
/* Hero olan sayfalarda header şeffaf başlar */
.site-header.hero-mode {
  background: transparent;
  box-shadow: none;
}
.site-header.scrolled {
  background: var(--white);
  box-shadow: 0 2px 20px rgba(17,32,46,.08);
}
.header-inner {
  max-width: 1280px; margin: 0 auto;
  padding: 1.2rem 2rem;
  display: flex; align-items: center; justify-content: space-between;
}
.logo { height: 40px; width: auto; transition: opacity var(--transition); }
.logo-dark  { display: block; }
.logo-light { display: none; }
.site-header.scrolled .logo-light { display: none; }
.site-header.scrolled .logo-dark  { display: block; }
.site-header.hero-mode .logo-light { display: block; }
.site-header.hero-mode .logo-dark  { display: none; }

.main-nav { display: flex; gap: 2.5rem; align-items: center; }
/* Hero modda nav linkler beyaz */
.site-header.hero-mode .nav-link { color: var(--white); }
.site-header.hero-mode .logo-light { display: block; }
.site-header.hero-mode .logo-dark  { display: none; }
/* Normal modda nav linkler navy */
.nav-link {
  font-size: .85rem; font-weight: 600; letter-spacing: .05em;
  color: var(--white); transition: color var(--transition); position: relative;
}
.nav-link::after {
  content: ''; position: absolute; bottom: -4px; left: 0;
  width: 0; height: 2px; background: var(--gold);
  transition: width var(--transition);
}
.nav-link:hover::after { width: 100%; }
.site-header.scrolled .nav-link { color: var(--navy); }
.nav-link:hover { color: var(--gold); }

.hamburger {
  display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px;
}
.hamburger span {
  display: block; width: 24px; height: 2px; background: var(--white);
  transition: all var(--transition);
}
.site-header.scrolled .hamburger span { background: var(--navy); }
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

.mobile-menu {
  display: none; flex-direction: column;
  background: var(--navy); padding: 1rem 2rem 1.5rem;
}
.mobile-menu.open { display: flex; }
.mob-link {
  color: var(--white); padding: .75rem 0;
  border-bottom: 1px solid rgba(255,255,255,.1);
  font-size: .9rem; font-weight: 600;
}
.mob-link:last-child { border-bottom: none; }

/* Mobile Bottom Nav */
.mobile-bottom-nav {
  display: none;
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 999;
  background: var(--white); border-top: 1px solid var(--border);
  box-shadow: 0 -4px 16px rgba(0,0,0,.06);
}
.mobile-bottom-nav a, .mobile-bottom-nav button {
  flex: 1; display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 3px; padding: .7rem .5rem;
  font-size: .6rem; font-weight: 600; letter-spacing: .05em; text-transform: uppercase;
  color: var(--navy); background: none; border: none; cursor: pointer;
}
.mobile-bottom-nav i { font-size: 1.1rem; }
.mobile-bottom-nav .fa-whatsapp { color: #25d366; }

/* ========== HERO / SLIDER ========== */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden; background: var(--navy);
  width: 100%; max-width: 100vw;
}
.hero-slider {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  overflow: hidden;
}
.hero-slide {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  opacity: 0; transition: opacity 1.2s ease;
  overflow: hidden;
}
.hero-slide.active { opacity: 1; }
.hero-slide img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  max-width: 100%;
}
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(17,32,46,.2) 0%, rgba(17,32,46,.5) 100%); }
.hero-content { position: relative; z-index: 2; text-align: center; color: var(--white); padding: 0 1.5rem; }
.hero-content h1 {
  font-family: 'Vogun', 'Cormorant Garamond', serif;
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 700; line-height: 1; margin-bottom: 1.5rem;
  text-shadow: 0 2px 20px rgba(0,0,0,.3);
}
.hero-scroll {
  position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%); z-index: 2;
  animation: bounce 2s infinite;
}
.scroll-mouse {
  width: 24px; height: 40px; border: 2px solid var(--white);
  border-radius: 12px; display: flex; justify-content: center; padding: 6px;
}
.scroll-dot { width: 4px; height: 10px; background: var(--white); border-radius: 2px; }
@keyframes bounce { 0%,100%{transform:translateX(-50%) translateY(0)} 50%{transform:translateX(-50%) translateY(8px)} }

/* ========== SECTIONS ========== */
.section { padding: 6rem 2rem; }
.section-light { background: var(--light); }
.container { max-width: 1280px; margin: 0 auto; }
.section-header { text-align: center; margin-bottom: 4rem; }
.section-header h2 {
  font-family: 'Vogun', 'Cormorant Garamond', serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700; color: var(--navy); margin-top: .75rem;
}

/* ========== PROJECT CARDS ========== */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(520px, 100%), 1fr));
  gap: 2.5rem;
}
.project-card {
  background: var(--white); border-radius: var(--radius);
  overflow: hidden; box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
  display: flex; flex-direction: column;
}
.project-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.card-img {
  position: relative; height: 280px; overflow: hidden;
}
.card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s ease; }
.project-card:hover .card-img img { transform: scale(1.05); }
.card-badge {
  position: absolute; top: 1.25rem; left: 1.25rem;
  padding: .35rem 1rem; border-radius: 2rem;
  font-size: .65rem; font-weight: 800; letter-spacing: .1em;
  color: var(--white); backdrop-filter: blur(6px);
}
.card-body { padding: 2.5rem; flex: 1; display: flex; flex-direction: column; }
.card-body h3 {
  font-family: 'Vogun', 'Cormorant Garamond', serif;
  font-size: 2.5rem; font-weight: 700; line-height: 1;
  text-transform: uppercase; letter-spacing: -.02em;
  color: var(--navy); margin-bottom: .75rem;
}
.card-desc { color: var(--gray); font-size: .85rem; line-height: 1.7; margin-bottom: 1.75rem; }
.card-features { display: flex; flex-wrap: wrap; gap: .6rem; margin-bottom: 2rem; }
.card-feature {
  display: flex; align-items: center; gap: .4rem;
  font-size: .7rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: .08em; color: var(--gray);
}
.card-feature i { font-size: .8rem; }
.card-actions { display: flex; gap: .75rem; align-items: center; margin-top: auto; }
.btn-incele {
  flex: 1; padding: .9rem; border-radius: var(--radius-sm);
  font-weight: 800; font-size: .8rem; letter-spacing: .1em; text-transform: uppercase;
  color: var(--white); text-align: center; transition: filter var(--transition);
}
.btn-incele:hover { filter: brightness(1.15); }
.card-icon-btns { display: flex; gap: .5rem; }
.icon-btn {
  width: 44px; height: 44px; border-radius: var(--radius-sm);
  background: var(--navy); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: .9rem; transition: background var(--transition);
}
.icon-btn:hover.phone  { background: #2563eb; }
.icon-btn:hover.wa     { background: #25d366; }
.icon-btn:hover.maps   { background: #dc2626; }

/* Filter bar */
.filter-bar {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: center;
  gap: 1.5rem; background: var(--white); padding: 1.25rem 2rem;
  border-radius: 3rem; box-shadow: var(--shadow);
  max-width: min(800px, calc(100% - 2rem)); width: calc(100% - 2rem);
  margin: 0 auto 3rem; border: 1px solid var(--border);
  box-sizing: border-box;
}
.filter-bar select {
  background: transparent; border: none; outline: none;
  font-family: 'Vogun', 'Montserrat', sans-serif; font-weight: 700; font-size: .85rem;
  color: var(--navy); cursor: pointer;
}
.filter-divider { width: 1px; height: 24px; background: var(--border); }
.btn-listele {
  background: var(--navy); color: var(--white);
  padding: .65rem 2rem; border-radius: 2rem; border: none;
  font-family: 'Vogun', 'Montserrat', sans-serif; font-weight: 800;
  font-size: .75rem; letter-spacing: .1em; text-transform: uppercase;
  cursor: pointer; transition: background var(--transition);
}
.btn-listele:hover { background: var(--gold); }

/* ========== ABOUT ========== */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.about-text h2 {
  font-family: 'Vogun', 'Cormorant Garamond', serif;
  font-size: clamp(2.5rem, 4vw, 3.5rem); font-weight: 700;
  color: var(--navy); margin-bottom: 1.5rem;
}
.about-text p { color: var(--gray); line-height: 1.9; margin-bottom: 1rem; font-size: .95rem; }
.about-img {
  border-radius: var(--radius); overflow: hidden;
  height: 480px; box-shadow: var(--shadow-lg);
}
.about-img img { width: 100%; height: 100%; object-fit: cover; }

/* Kampanyalar */
.kampanyalar-title {
  font-family: 'Vogun', 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 3rem); font-weight: 700;
  color: var(--navy); margin-bottom: 2rem; margin-top: 5rem;
}
.kampanyalar-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.kampanya-card {
  position: relative; border-radius: var(--radius-sm); overflow: hidden;
  aspect-ratio: 16/9; cursor: zoom-in; box-shadow: var(--shadow);
}
.kampanya-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.kampanya-card:hover img { transform: scale(1.08); }
.kampanya-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(17,32,46,.85) 0%, transparent 60%);
  display: flex; flex-direction: column; justify-content: flex-end; padding: 1.25rem;
  color: var(--white);
}
.kampanya-badge {
  background: rgba(176,145,90,.9); backdrop-filter: blur(4px);
  padding: .3rem .75rem; border-radius: 2rem; font-size: .65rem; font-weight: 700;
  width: fit-content; margin-bottom: .5rem; letter-spacing: .08em;
}
.kampanya-overlay h3 { font-size: .95rem; font-weight: 700; }

/* Lightbox */
.lightbox {
  display: none; position: fixed; inset: 0; z-index: 9999;
  background: rgba(0,0,0,.95); align-items: center; justify-content: center; padding: 1rem;
}
.lightbox.open { display: flex; }
.lightbox img { max-width: 90vw; max-height: 90vh; object-fit: contain; border-radius: .5rem; }
.lightbox-close {
  position: absolute; top: 1.5rem; right: 1.5rem;
  color: var(--white); font-size: 2.5rem; background: none; border: none;
  cursor: pointer; line-height: 1; opacity: .7;
}
.lightbox-close:hover { opacity: 1; }

/* ========== CONTACT ========== */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; }
.contact-form h3 { font-family: 'Vogun', 'Cormorant Garamond', serif; font-size: 2rem; font-weight: 700; margin-bottom: 2rem; }
.form-group { margin-bottom: 1.25rem; }
.form-group label { display: block; font-size: .8rem; font-weight: 600; margin-bottom: .5rem; color: var(--navy); }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; padding: .9rem 1.1rem;
  border: 1.5px solid var(--border); border-radius: var(--radius-sm);
  font-family: 'Vogun', 'Montserrat', sans-serif; font-size: .85rem;
  transition: border-color var(--transition), box-shadow var(--transition);
  background: var(--white); color: var(--navy);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none; border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(176,145,90,.15);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group textarea { resize: vertical; min-height: 130px; }
.btn-gonder {
  width: 100%; padding: 1rem; border: none; border-radius: var(--radius-sm);
  background: var(--navy); color: var(--white);
  font-family: 'Vogun', 'Montserrat', sans-serif; font-size: .85rem; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  cursor: pointer; transition: background var(--transition);
  display: flex; align-items: center; justify-content: center; gap: .75rem;
}
.btn-gonder:hover { background: var(--gold); }
.btn-gonder:disabled { opacity: .7; cursor: not-allowed; }

.contact-info h3 { font-family: 'Vogun', 'Cormorant Garamond', serif; font-size: 2rem; font-weight: 700; margin-bottom: 2rem; }
.contact-cards { display: flex; flex-direction: column; gap: 1rem; margin-bottom: 2rem; }
.contact-card {
  display: flex; align-items: flex-start; gap: 1rem;
  padding: 1.25rem; background: var(--light); border-radius: var(--radius-sm);
  transition: box-shadow var(--transition);
}
.contact-card:hover { box-shadow: var(--shadow); }
.contact-icon {
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(176,145,90,.15); display: flex; align-items: center; justify-content: center;
  color: var(--gold); font-size: 1rem; flex-shrink: 0;
}
.contact-card h4 { font-size: .8rem; font-weight: 700; margin-bottom: .25rem; }
.contact-card a { font-size: .85rem; color: var(--gray); transition: color var(--transition); }
.contact-card a:hover { color: var(--gold); }
.hours-box {
  padding: 1.5rem; background: var(--light); border-radius: var(--radius-sm);
}
.hours-box h4 { font-size: .85rem; font-weight: 700; margin-bottom: 1rem; }
.hours-row { display: flex; justify-content: space-between; font-size: .85rem; color: var(--gray); margin-bottom: .5rem; }
.hours-row span:last-child { font-weight: 600; color: var(--navy); }

/* Alerts */
.alert { padding: 1rem 1.25rem; border-radius: var(--radius-sm); margin-bottom: 1rem; font-size: .85rem; font-weight: 500; }
.alert-success { background: #f0fdf4; border: 1px solid #bbf7d0; color: #166534; }
.alert-error   { background: #fef2f2; border: 1px solid #fecaca; color: #991b1b; }

/* ========== PROJECT DETAIL ========== */
.project-hero {
  position: relative; height: 70vh; min-height: 500px;
  overflow: hidden; background: var(--navy);
}
.project-hero img { width: 100%; height: 100%; object-fit: cover; opacity: .7; }
.project-hero-content {
  position: absolute; inset: 0; display: flex; flex-direction: column;
  justify-content: flex-end; padding: 4rem;
  background: linear-gradient(to top, rgba(17,32,46,.9) 0%, transparent 60%);
  color: var(--white);
}
.project-hero-content h1 {
  font-family: 'Vogun', 'Cormorant Garamond', serif;
  font-size: clamp(3rem,7vw,6rem); font-weight: 700; line-height: 1;
  text-transform: uppercase;
}
.project-breadcrumb {
  display: flex; gap: .5rem; align-items: center;
  font-size: .75rem; font-weight: 600; letter-spacing: .1em;
  text-transform: uppercase; color: rgba(255,255,255,.6);
  margin-bottom: 1rem;
}
.project-breadcrumb a { color: var(--gold); }
.project-breadcrumb span { color: rgba(255,255,255,.4); }

.project-meta-bar {
  display: flex; flex-wrap: wrap; gap: 2rem;
  padding: 2rem; background: var(--white);
  border-radius: 0 0 var(--radius) var(--radius);
  box-shadow: var(--shadow); margin-bottom: 4rem;
}
.meta-item { display: flex; flex-direction: column; gap: .3rem; }
.meta-label { font-size: .65rem; font-weight: 700; text-transform: uppercase; letter-spacing: .15em; color: var(--gray); }
.meta-value { font-size: .95rem; font-weight: 700; color: var(--navy); }

.project-description { color: var(--gray); line-height: 2; font-size: .95rem; max-width: 800px; margin-bottom: 3rem; }

/* Gallery tabs */
.gallery-tabs { display: flex; gap: .5rem; margin-bottom: 2rem; border-bottom: 2px solid var(--border); }
.tab-btn {
  padding: .75rem 1.5rem; background: none; border: none;
  font-family: 'Vogun', 'Montserrat', sans-serif; font-size: .8rem; font-weight: 700;
  color: var(--gray); cursor: pointer; border-bottom: 2px solid transparent;
  margin-bottom: -2px; transition: all var(--transition);
}
.tab-btn.active { color: var(--navy); border-bottom-color: var(--gold); }
.tab-panel { display: none; }
.tab-panel.active { display: block; }
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px,1fr)); gap: 1rem; }
.gallery-item {
  border-radius: var(--radius-sm); overflow: hidden;
  aspect-ratio: 4/3; cursor: zoom-in; position: relative;
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.gallery-item:hover img { transform: scale(1.05); }

/* Features icons */
.features-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(180px,1fr)); gap: 1.5rem; margin-bottom: 3rem; }
.feature-item {
  display: flex; flex-direction: column; align-items: center;
  text-align: center; padding: 1.75rem 1rem;
  background: var(--light); border-radius: var(--radius-sm);
}
.feature-item i { font-size: 1.75rem; color: var(--gold); margin-bottom: 1rem; }
.feature-item h4 { font-size: .8rem; font-weight: 700; margin-bottom: .3rem; }
.feature-item p { font-size: .8rem; color: var(--gray); }

/* CTA box */
.cta-box {
  background: var(--navy); border-radius: var(--radius);
  padding: 3rem; color: var(--white); text-align: center; margin-top: 3rem;
}
.cta-box h3 {
  font-family: 'Vogun', 'Cormorant Garamond', serif;
  font-size: 2.5rem; font-weight: 700; margin-bottom: 1rem;
}
.cta-box p { color: rgba(255,255,255,.7); margin-bottom: 2rem; }
.cta-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.btn-gold {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .9rem 2rem; border-radius: var(--radius-sm);
  background: var(--gold); color: var(--white);
  font-weight: 700; font-size: .85rem; letter-spacing: .08em; text-transform: uppercase;
  transition: filter var(--transition);
}
.btn-gold:hover { filter: brightness(1.1); }
.btn-outline-white {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .9rem 2rem; border-radius: var(--radius-sm);
  border: 2px solid rgba(255,255,255,.4); color: var(--white);
  font-weight: 700; font-size: .85rem; letter-spacing: .08em; text-transform: uppercase;
  transition: border-color var(--transition), background var(--transition);
}
.btn-outline-white:hover { border-color: var(--white); background: rgba(255,255,255,.1); }

/* ========== FOOTER ========== */
.site-footer { background: #0a141e; color: rgba(255,255,255,.7); padding: 5rem 2rem 0; }
.footer-inner { max-width: 1280px; margin: 0 auto; display: grid; grid-template-columns: 1.5fr 1fr 1.5fr; gap: 4rem; padding-bottom: 3rem; }
.footer-logo { height: 36px; width: auto; margin-bottom: 1.25rem; }
.footer-desc { font-size: .85rem; line-height: 1.8; margin-bottom: 1.5rem; }
.footer-socials { display: flex; gap: 30px; align-items: center; flex-wrap: wrap; margin-top:24px;}
.footer-socials a {
  font-size: 24px; color: rgba(255,255,255,.7);
  flex-shrink: 0;
  transition: background var(--transition), color var(--transition);
  text-decoration: none;
}
.footer-socials a i { font-size: 24px; 
    margin: 0;
    padding: 0;line-height: 1; }
.footer-socials a:hover { background: var(--gold); color: var(--white); }
.footer-col h4 { color: var(--white); font-size: .9rem; font-weight: 700; margin-bottom: 1.5rem; letter-spacing: .08em; text-transform: uppercase; }
.footer-col a { display: block; font-size: .85rem; margin-bottom: .75rem; transition: color var(--transition); }
.footer-col a:hover { color: var(--gold); }
.footer-contact a { display: flex; align-items: flex-start; gap: .75rem; font-size: .85rem; margin-bottom: 1rem; }
.footer-contact i { color: var(--gold); margin-top: 2px; flex-shrink: 0; }
.footer-hours { margin-top: 1.5rem; font-size: .8rem; line-height: 1.8; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  max-width: 1280px; margin: 0 auto;
  padding: 1.5rem 0;
  display: flex; justify-content: space-between; align-items: center;
  font-size: .8rem; flex-wrap: wrap; gap: 1rem;
}
.footer-links { display: flex; gap: 1.5rem; }
.footer-links a { transition: color var(--transition); }
.footer-links a:hover { color: var(--gold); }

/* Cookie */
.cookie-bar {
  position: fixed; bottom: 1rem; right: 1rem; z-index: 9998;
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-sm); box-shadow: var(--shadow-lg);
  padding: 1.5rem; max-width: 340px; display: none;
}
.cookie-bar.show { display: block; }
.cookie-content > div:first-child strong { font-size: .9rem; display: block; margin-bottom: .4rem; }
.cookie-content > div:first-child p { font-size: .8rem; color: var(--gray); margin-bottom: 1rem; }
.cookie-btns { display: flex; gap: .75rem; }
.btn-cookie-reject {
  flex: 1; padding: .6rem; border-radius: .5rem; border: 1.5px solid var(--border);
  background: none; font-family: 'Vogun', 'Montserrat', sans-serif;
  font-size: .8rem; font-weight: 600; cursor: pointer; transition: background var(--transition);
}
.btn-cookie-reject:hover { background: var(--light); }
.btn-cookie-accept {
  flex: 1; padding: .6rem; border-radius: .5rem; border: none;
  background: var(--navy); color: var(--white);
  font-family: 'Vogun', 'Montserrat', sans-serif; font-size: .8rem; font-weight: 600;
  cursor: pointer; transition: background var(--transition);
}
.btn-cookie-accept:hover { background: var(--gold); }

/* ========== ADMIN ========== */
.admin-body { background: #f1f5f9; min-height: 100vh; font-family: 'Vogun', 'Montserrat', sans-serif; }
.admin-layout { display: flex; min-height: 100vh; }
.admin-sidebar {
  width: 260px; background: var(--navy); color: var(--white);
  display: flex; flex-direction: column; position: fixed; top: 0; left: 0; bottom: 0;
  z-index: 100;
}
.admin-sidebar-logo {
  padding: 1.75rem 1.5rem; border-bottom: 1px solid rgba(255,255,255,.1);
  display: flex; align-items: center; gap: .75rem;
}
.admin-sidebar-logo img { height: 32px; }
.admin-sidebar-logo span { font-weight: 700; font-size: .85rem; }
.admin-nav { flex: 1; padding: 1rem 0; overflow-y: auto; }
.admin-nav-item {
  display: flex; align-items: center; gap: .75rem;
  padding: .85rem 1.5rem; font-size: .85rem; font-weight: 500;
  color: rgba(255,255,255,.65); transition: all var(--transition); cursor: pointer;
  border-left: 3px solid transparent;
}
.admin-nav-item i { width: 18px; text-align: center; }
.admin-nav-item:hover, .admin-nav-item.active {
  color: var(--white); background: rgba(255,255,255,.07);
  border-left-color: var(--gold);
}
.admin-nav-section {
  padding: .5rem 1.5rem; font-size: .65rem; font-weight: 700;
  letter-spacing: .15em; text-transform: uppercase;
  color: rgba(255,255,255,.3); margin-top: .75rem;
}
.admin-content { margin-left: 260px; flex: 1; }
.admin-topbar {
  background: var(--white); padding: 1rem 2rem;
  display: flex; align-items: center; justify-content: space-between;
  box-shadow: 0 1px 4px rgba(0,0,0,.06); position: sticky; top: 0; z-index: 50;
}
.admin-topbar h1 { font-size: 1.1rem; font-weight: 700; }
.admin-topbar-right { display: flex; align-items: center; gap: 1rem; }
.admin-user { display: flex; align-items: center; gap: .5rem; font-size: .85rem; font-weight: 600; }
.admin-avatar {
  width: 34px; height: 34px; border-radius: 50%;
  background: var(--navy); color: var(--white);
  display: flex; align-items: center; justify-content: center; font-size: .8rem; font-weight: 700;
}
.admin-main { padding: 2rem; }

/* Admin cards */
.stat-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px,1fr)); gap: 1.5rem; margin-bottom: 2rem; }
.stat-card {
  background: var(--white); border-radius: var(--radius-sm);
  padding: 1.5rem; box-shadow: 0 1px 4px rgba(0,0,0,.06);
  display: flex; align-items: center; gap: 1rem;
}
.stat-icon {
  width: 50px; height: 50px; border-radius: .75rem;
  display: flex; align-items: center; justify-content: center; font-size: 1.25rem;
}
.stat-icon.blue   { background: #dbeafe; color: #2563eb; }
.stat-icon.green  { background: #dcfce7; color: #16a34a; }
.stat-icon.gold   { background: #fef9c3; color: #ca8a04; }
.stat-icon.red    { background: #fee2e2; color: #dc2626; }
.stat-info h3 { font-size: 1.75rem; font-weight: 800; color: var(--navy); }
.stat-info p  { font-size: .75rem; color: var(--gray); font-weight: 500; }

.admin-card {
  background: var(--white); border-radius: var(--radius-sm);
  padding: 1.5rem; box-shadow: 0 1px 4px rgba(0,0,0,.06); margin-bottom: 1.5rem;
}
.admin-card-header {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 1.5rem; padding-bottom: 1rem; border-bottom: 1px solid var(--border);
}
.admin-card-header h2 { font-size: 1rem; font-weight: 700; }

/* Admin table */
.admin-table { width: 100%; border-collapse: collapse; font-size: .85rem; }
.admin-table th {
  padding: .75rem 1rem; text-align: left;
  font-size: .7rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: .08em; color: var(--gray); border-bottom: 2px solid var(--border);
}
.admin-table td { padding: .9rem 1rem; border-bottom: 1px solid var(--border); vertical-align: middle; }
.admin-table tr:last-child td { border-bottom: none; }
.admin-table tr:hover td { background: var(--light); }
.table-img { width: 52px; height: 40px; object-fit: cover; border-radius: .4rem; }
.badge { padding: .3rem .75rem; border-radius: 2rem; font-size: .7rem; font-weight: 700; }
.badge-green  { background: #dcfce7; color: #166534; }
.badge-blue   { background: #dbeafe; color: #1d4ed8; }
.badge-yellow { background: #fef9c3; color: #854d0e; }
.badge-red    { background: #fee2e2; color: #991b1b; }

/* Admin buttons */
.btn-admin {
  display: inline-flex; align-items: center; gap: .4rem;
  padding: .55rem 1.1rem; border-radius: .5rem; border: none;
  font-family: 'Vogun', 'Montserrat', sans-serif; font-size: .78rem; font-weight: 700;
  cursor: pointer; transition: all var(--transition); text-decoration: none;
}
.btn-primary   { background: var(--navy); color: var(--white); }
.btn-primary:hover  { background: var(--gold); }
.btn-success   { background: #16a34a; color: var(--white); }
.btn-success:hover  { background: #15803d; }
.btn-warning   { background: #ca8a04; color: var(--white); }
.btn-warning:hover  { background: #a16207; }
.btn-danger    { background: #dc2626; color: var(--white); }
.btn-danger:hover   { background: #b91c1c; }
.btn-outline   { background: none; border: 1.5px solid var(--border); color: var(--navy); }
.btn-outline:hover  { border-color: var(--navy); }
.btn-sm { padding: .4rem .8rem; font-size: .72rem; }

/* Admin form */
.form-admin input, .form-admin select, .form-admin textarea {
  width: 100%; padding: .75rem 1rem; border: 1.5px solid var(--border);
  border-radius: .5rem; font-family: 'Vogun', 'Montserrat', sans-serif; font-size: .85rem;
  transition: border-color var(--transition); background: var(--white);
}
.form-admin input:focus, .form-admin select:focus, .form-admin textarea:focus {
  outline: none; border-color: var(--gold);
}
.form-admin label { display: block; font-size: .78rem; font-weight: 700; margin-bottom: .4rem; color: var(--navy); }
.form-admin .form-group { margin-bottom: 1.25rem; }
.form-admin textarea { resize: vertical; min-height: 100px; }
.form-admin .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

/* Login */
.login-page {
  min-height: 100vh; background: var(--navy);
  display: flex; align-items: center; justify-content: center;
}
.login-box { background: var(--white); border-radius: var(--radius); padding: 3rem; width: 100%; max-width: 420px; }
.login-logo { text-align: center; margin-bottom: 2rem; }
.login-logo img { height: 48px; margin: 0 auto; }
.login-box h1 { font-family: 'Vogun', 'Cormorant Garamond', serif; font-size: 1.75rem; font-weight: 700; text-align: center; margin-bottom: .5rem; }
.login-box p { text-align: center; color: var(--gray); font-size: .85rem; margin-bottom: 2rem; }

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
  .projects-grid { grid-template-columns: 1fr; }
  .about-grid    { grid-template-columns: 1fr; gap: 3rem; }
  .contact-grid  { grid-template-columns: 1fr; gap: 3rem; }
  .footer-inner  { grid-template-columns: 1fr 1fr; }
  .kampanyalar-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .hamburger { display: flex; }
  .main-nav  { display: none; }
  .mobile-bottom-nav { display: flex; padding-bottom: env(safe-area-inset-bottom); }
  body { padding-bottom: 60px; }
  .footer-inner  { grid-template-columns: 1fr; gap: 2.5rem; }
  .kampanyalar-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .cta-btns { flex-direction: column; align-items: center; }
  .admin-sidebar { display: none; }
  .admin-content { margin-left: 0; }
  .project-hero { height: 50vh; }
  .project-hero-content { padding: 2rem; }
  .features-grid { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 480px) {
  .section { padding: 4rem 1.25rem; }
  .card-body { padding: 1.75rem; }
  .features-grid { grid-template-columns: 1fr 1fr; }
}

/* ========== ANIMATIONS ========== */
.fade-up {
  opacity: 0; transform: translateY(30px);
  transition: opacity .7s ease, transform .7s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }
.fade-up.delay-1 { transition-delay: .1s; }
.fade-up.delay-2 { transition-delay: .2s; }
.fade-up.delay-3 { transition-delay: .3s; }

/* ============================================
   PROJE DETAY SAYFASI v3
   ============================================ */

/* Hero — tam ekran */
.pd-hero {
    position: relative;
    width: 100%;
    height: 55vh;
    min-height: 320px;
    overflow: hidden;
    background: var(--navy);
}
.pd-hero-img {
    width: 100%; height: 100%;
    object-fit: cover;
    display: block;
}
.pd-hero-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to bottom, rgba(17,32,46,.45) 0%, rgba(17,32,46,.25) 60%, rgba(17,32,46,.6) 100%);
}

/* Hero topbar — logo + sosyal */
.pd-hero-topbar {
    position: absolute; top: 0; left: 0; right: 0; z-index: 10;
    display: flex; align-items: center; justify-content: space-between;
    padding: 1.25rem 1.5rem;
}
.pd-topbar-logo { height: 36px; width: auto; object-fit: contain; }
.pd-topbar-socials { display: flex; gap: .75rem; }
.pd-topbar-socials a {
    width: 34px; height: 34px; border-radius: 50%;
    background: rgba(255,255,255,.15); backdrop-filter: blur(6px);
    display: flex; align-items: center; justify-content: center;
    color: var(--white); font-size: .85rem;
    transition: background var(--transition);
}
.pd-topbar-socials a:hover { background: var(--gold); }

/* INFO KARTI — hero'nun üzerine binen beyaz kart */
.pd-info-card-wrap {
    position: relative; z-index: 20;
    padding: 0 1rem;
    margin-top: -80px;
    margin-bottom: 0;
}
.pd-info-card {
    background: var(--white);
    border-radius: 1.25rem;
    box-shadow: 0 8px 40px rgba(17,32,46,.14);
    padding: 1.5rem;
    max-width: 680px;
    margin: 0 auto;
}

/* Durum badge */
.pd-status-badge {
    display: flex; align-items: center; gap: .6rem;
    margin-bottom: 1rem;
}
.pd-status-dot {
    width: 8px; height: 8px; border-radius: 50%;
    background: #22c55e; flex-shrink: 0;
    box-shadow: 0 0 0 3px rgba(34,197,94,.2);
}
.pd-status-label {
    font-size: .7rem; font-weight: 700; text-transform: uppercase;
    letter-spacing: .12em; color: var(--gray);
}
.pd-status-value {
    font-size: .8rem; font-weight: 700; color: var(--navy);
    margin-left: auto;
    background: #f0fdf4; color: #16a34a;
    padding: .2rem .75rem; border-radius: 2rem;
}
.pd-info-divider {
    height: 1px; background: var(--border); margin-bottom: 1.25rem;
}

/* Meta satırları */
.pd-meta-rows { display: flex; flex-direction: column; gap: 1rem; }
.pd-meta-row {
    display: flex; align-items: flex-start; gap: .9rem;
}
.pd-meta-icon {
    width: 40px; height: 40px; border-radius: .6rem;
    background: var(--light); display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.pd-meta-icon svg { width: 20px; height: 20px; color: var(--navy); }
.pd-meta-text { display: flex; flex-direction: column; gap: .15rem; justify-content: center; }
.pd-meta-key {
    font-size: .65rem; font-weight: 700; text-transform: uppercase;
    letter-spacing: .1em; color: var(--gray);
}
.pd-meta-val { font-size: .9rem; font-weight: 700; color: var(--navy); }

/* İnline meta (blok + kat yan yana) */
.pd-meta-row-inline { flex-wrap: wrap; gap: .75rem; }
.pd-meta-inline-item {
    display: flex; align-items: center; gap: .6rem;
    flex: 1; min-width: 100px;
}
.pd-meta-inline-item .pd-meta-icon {
    width: 32px; height: 32px; border-radius: .5rem;
}
.pd-meta-inline-item .pd-meta-icon svg { width: 16px; height: 16px; }

/* İletişim butonları (kart içi) */
.pd-contact-btns {
    display: flex; align-items: center; gap: .5rem; flex-wrap: wrap; flex: 1;
}
.pd-contact-btn {
    display: inline-flex; align-items: center; gap: .4rem;
    padding: .55rem 1rem; border-radius: .6rem;
    font-size: .8rem; font-weight: 700; border: none; cursor: pointer;
    transition: filter var(--transition);
    text-decoration: none;
}
.pd-contact-btn:hover { filter: brightness(1.1); }
.pd-contact-phone {
    background: var(--navy); color: var(--white);
    flex: 1; justify-content: center;
}
.pd-contact-wa    { background: #25d366; color: var(--white); padding: .55rem .9rem; }
.pd-contact-maps  { background: #ef4444; color: var(--white); padding: .55rem .9rem; }
.pd-contact-share { background: var(--light); color: var(--navy); padding: .55rem .9rem; }

/* ÖZELLİKLER GRID */
.pd-features-section {
    padding: 2rem 1rem 1.5rem;
    max-width: 680px; margin: 0 auto;
}
.pd-features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}
.pd-feature-item {
    display: flex; flex-direction: column; align-items: center;
    text-align: center; gap: .4rem;
}
.pd-feature-icon {
    width: 52px; height: 52px; border-radius: .75rem;
    background: var(--light);
    display: flex; align-items: center; justify-content: center;
    margin-bottom: .1rem;
}
.pd-feature-icon svg { width: 28px; height: 28px; color: var(--navy); stroke-width: 1.5; }
.pd-feature-label {
    font-size: .7rem; font-weight: 600; color: var(--navy);
    line-height: 1.3; text-align: center;
}
.pd-feature-val { font-size: .65rem; color: var(--gray); }

/* GALERİ */
.pd-gallery-section {
    padding: 1rem 1rem 2rem;
    max-width: 680px; margin: 0 auto;
}
.pd-gallery-tabs {
    display: flex; gap: .4rem; margin-bottom: 1rem;
    border-bottom: 2px solid var(--border); padding-bottom: 0;
}
.pd-tab-btn {
    padding: .6rem 1.1rem; background: none; border: none;
    font-family: 'Vogun', 'Montserrat', sans-serif;
    font-size: .75rem; font-weight: 700; color: var(--gray);
    cursor: pointer; border-bottom: 2px solid transparent;
    margin-bottom: -2px; transition: all var(--transition);
    white-space: nowrap;
}
.pd-tab-btn.active { color: var(--navy); border-bottom-color: var(--gold); }
.pd-tab-panel { display: none; }
.pd-tab-panel.active { display: block; }

/* Galeri grid — masonry benzeri */
.pd-gallery-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: .6rem;
}
.pd-gallery-item {
    border-radius: .75rem; overflow: hidden;
    cursor: zoom-in; position: relative;
    aspect-ratio: 4/3;
}
.pd-gallery-item img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform .5s ease;
    display: block;
}
.pd-gallery-item:hover img { transform: scale(1.04); }
/* İlk görsel tam genişlik */
.pd-gallery-big {
    grid-column: 1 / -1;
    aspect-ratio: 16/9;
}

/* ---- DESKTOP'TA genişlet ---- */
@media (min-width: 768px) {
    .pd-hero { height: 70vh; }
    .pd-info-card-wrap { padding: 0 2rem; margin-top: -100px; }
    .pd-info-card { padding: 2rem 2.5rem; }
    .pd-features-section { padding: 2.5rem 2rem; max-width: 860px; }
    .pd-features-grid { grid-template-columns: repeat(5, 1fr); gap: 1.5rem; }
    .pd-feature-icon { width: 64px; height: 64px; }
    .pd-feature-icon svg { width: 32px; height: 32px; }
    .pd-gallery-section { max-width: 860px; padding: 1.5rem 2rem 3rem; }
    .pd-gallery-grid { grid-template-columns: repeat(3, 1fr); gap: .75rem; }
    .pd-gallery-big { grid-column: 1 / -1; aspect-ratio: 21/9; }
}

@media (min-width: 1024px) {
    .pd-hero { height: 75vh; }
    .pd-info-card-wrap { max-width: 1100px; margin: -110px auto 0; padding: 0 3rem; }
    .pd-info-card { max-width: 520px; }
    .pd-features-section { max-width: 1100px; padding: 3rem; }
    .pd-features-grid { grid-template-columns: repeat(7, 1fr); }
    .pd-gallery-section { max-width: 1100px; padding: 2rem 3rem 4rem; }
    .pd-gallery-grid { grid-template-columns: repeat(4, 1fr); }
}

/* ============================================
   BLOG KARTI — Anasayfa
============================================ */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.blog-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  cursor: pointer;
  transition: transform .3s, box-shadow .3s;
  display: flex;
  flex-direction: column;
}
.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.blog-card-img {
  aspect-ratio: 16/9;
  overflow: hidden;
}
.blog-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s;
}
.blog-card:hover .blog-card-img img { transform: scale(1.05); }
.blog-card-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: .6rem;
  flex: 1;
}
.blog-date {
  font-size: .72rem;
  color: var(--gold);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: .35rem;
}
.blog-card-body h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.4;
}
.blog-card-body p {
  font-size: .82rem;
  color: var(--gray);
  line-height: 1.7;
  flex: 1;
}
.blog-read-more {
  font-size: .78rem;
  font-weight: 700;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  text-decoration: none;
  transition: gap .2s;
  margin-top: .25rem;
}
.blog-read-more:hover { gap: .7rem; }

.btn-tum-blog {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  padding: .85rem 2.5rem;
  background: var(--navy);
  color: var(--white);
  border-radius: 3rem;
  font-size: .82rem;
  font-weight: 700;
  text-decoration: none;
  letter-spacing: .05em;
  transition: background .2s, transform .2s;
}
.btn-tum-blog:hover { background: var(--gold); transform: translateY(-2px); }

@media (max-width: 1024px) { .blog-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px)  { .blog-grid { grid-template-columns: 1fr; } }

/* ===== MOBİL TAŞMA KESİN FİX ===== */
@media (max-width: 768px) {
  html, body {
    overflow-x: hidden !important;
    max-width: 100vw !important;
  }
  .hero, .hero-slider, .hero-slide {
    width: 100vw !important;
    max-width: 100vw !important;
    left: 0 !important;
  }
  .section, .container, .projects-grid,
  .filter-bar, .about-grid, .kampanyalar-grid,
  .blog-grid, .video-grid, .contact-grid,
  .footer-inner {
    max-width: 100% !important;
    overflow-x: hidden !important;
  }
  picture, picture source, picture img {
    width: 100% !important;
    max-width: 100% !important;
  }
}

/* Hero olmayan sayfalarda header daima koyu */
.site-header.no-hero {
  background: var(--white) !important;
  box-shadow: 0 2px 20px rgba(17,32,46,.08) !important;
}
.site-header.no-hero .nav-link { color: var(--navy) !important; }
.site-header.no-hero .logo-light { display: none !important; }
.site-header.no-hero .logo-dark  { display: block !important; }
.site-header.no-hero .hamburger span { background: var(--navy) !important; }
