:root{
  --bg:#ffffff;
  --panel:#ffffff;
  --text:#111111;
  --muted:#6b6b6b;

  --accent:#c6a75e;  /* gold */
  --accent2:#2bb7a6; /* teal */
  --line:rgba(0,0,0,.08);

  --shadow:0 22px 70px rgba(0,0,0,.09);
  --shadow2:0 14px 44px rgba(0,0,0,.10);

  --radius:24px;
  --max:1200px;
  --pad:clamp(16px, 3vw, 56px);

  --header-h:76px;
}

*{box-sizing:border-box}
html, body{height:100%}
body{
  margin:0;
  font-family:'Inter',sans-serif;
  background: var(--bg);
  color:var(--text);
  overflow-x:hidden; /* NO horizontal scroll */
}
img, svg{max-width:90%; height:auto; display:block}
a{color:inherit; text-decoration:none}
h1,h2,h3{
  font-family:'Playfair Display',serif;
  letter-spacing:-0.02em;
  margin:0;
}
.wrap{padding:0 var(--pad)}
.container{max-width:var(--max); margin:0 auto; width:90%}

/* HEADER */
header{
  position:sticky; top:0; z-index:80;
  background:rgba(255,255,255,.90);
  backdrop-filter: blur(12px);
  border-bottom:1px solid var(--line);
}
.nav{
  height:var(--header-h);
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
}

/* =========================
   ✅ LOGO (FIXED - NOT ROUND)
   ========================= */
.brand{
  display:flex;
  align-items:center;
  min-width:80px;
  flex:0 0 auto;
  padding-left: 10px; /* çok sola yapışmasın */
}

/* Artık rozet değil, “logo container” */
.logo-box{
  height:80px;                 /* navbar yüksekliğine yakın */
  width:auto;                  /* genişliği logoya göre */
  border-radius:0;             /* ✅ yuvarlak yok */
  border:0;                    /* ✅ çerçeve yok */
  background:transparent;      /* ✅ rozet görünümü yok */
  display:flex;
  align-items:center;
  justify-content:center;
  box-shadow:none;             /* ✅ rozet gölgesi yok */
  overflow:visible;            /* ✅ kırpma yok */
  padding:0;                   /* ✅ ekstra boşluk yok */
}

/* Logo oran korunur */
.logo-box img{
  height:80px;                 /* istediğin kadar büyüt/azalt */
  width:auto;                  /* ✅ kareye sıkıştırma yok */
  max-width:260px;             /* uzun logo taşmasın */
  object-fit:contain;
}

/* Logo yoksa placeholder */
.logo-placeholder{
  height:80px;
  width:auto;
  padding: 0 14px;
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(198,167,94,1), rgba(43,183,166,.92));
  display:flex;
  align-items:center;
  justify-content:center;
  color:white;
  font-family:'Playfair Display',serif;
  font-weight:600;
  font-size:18px;
}

/* NAV */
nav ul{
  list-style:none;
  display:flex;
  align-items:center;
  gap:26px;
  margin:0;
  padding:0;
}
nav a{
  font-size:15px;
  letter-spacing:.045em;
  font-weight:500;
  color: rgba(17,17,17,.70);
  white-space:nowrap;
  transition:.2s color;
}
nav a:hover{color: var(--accent)}
nav a::after{display:none !important}

.nav-right{
  display:flex;
  align-items:center;
  gap:10px;
  flex:0 0 auto;
  min-width:0;
}
.btn{
  padding:12px 18px;
  border-radius:999px;
  font-weight:600;
  border:1px solid rgba(198,167,94,.95);
  color:var(--accent);
  background:transparent;
  transition:.25s;
  white-space:nowrap;
}
.btn:hover{
  background:linear-gradient(90deg, rgba(198,167,94,1), rgba(43,183,166,.92));
  border-color: transparent;
  color:white;
  box-shadow: 0 18px 60px rgba(43,183,166,.18);
}
.btn.secondary{
  border:1px solid rgba(0,0,0,.10);
  color: rgba(17,17,17,.72);
}
.btn.secondary:hover{
  background: rgba(0,0,0,.04);
  border-color: rgba(0,0,0,.12);
  color: rgba(17,17,17,.86);
  box-shadow:none;
}

/* Hamburger */
.hamburger{
  width:46px; height:46px;
  border-radius:999px;
  border:1px solid var(--line);
  background: rgba(255,255,255,.92);
  display:none;
  align-items:center;
  justify-content:center;
  cursor:pointer;
  transition:.2s transform, .2s box-shadow;
  flex:0 0 auto;
}
.hamburger:hover{transform:translateY(-1px); box-shadow:0 16px 40px rgba(0,0,0,.08)}
.h-lines{width:18px; height:12px; position:relative}
.h-lines span{position:absolute; left:0; right:0; height:2px; border-radius:2px; background: rgba(17,17,17,.75)}
.h-lines span:nth-child(1){top:0}
.h-lines span:nth-child(2){top:5px; width:70%}
.h-lines span:nth-child(3){bottom:0}

/* DRAWER */
.overlay{
  position:fixed; inset:0;
  background:rgba(0,0,0,.32);
  opacity:0; pointer-events:none;
  transition:.25s;
  z-index:90;
}
.overlay.open{opacity:1; pointer-events:auto}
.drawer{
  position:fixed; top:0; right:0;
  width:min(420px, 86vw);
  height:100vh;
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(10px);
  border-left:1px solid rgba(0,0,0,.08);
  box-shadow: -20px 0 70px rgba(0,0,0,.12);
  transform: translateX(110%);
  transition:.28s ease;
  z-index:95;
  display:flex;
  flex-direction:column;
}
.drawer.open{transform: translateX(0)}
.drawer-head{
  display:flex; align-items:center; justify-content:space-between;
  padding:16px 16px;
  border-bottom:1px solid rgba(0,0,0,.08);
}
.close-btn{
  width:42px; height:42px;
  border-radius:999px;
  border:1px solid rgba(0,0,0,.10);
  background: rgba(255,255,255,.95);
  cursor:pointer;
  display:flex; align-items:center; justify-content:center;
  flex:0 0 auto;
}
.drawer-body{padding: 14px 16px}
.drawer a{
  display:flex; align-items:center; justify-content:space-between;
  padding:14px 14px;
  border-radius:16px;
  border:1px solid rgba(0,0,0,.07);
  background: rgba(255,255,255,.96);
  margin-bottom:10px;
  color: rgba(17,17,17,.82);
  font-weight:600;
  letter-spacing:.02em;
  min-width:0;
}
.drawer a:hover{
  border-color: rgba(198,167,94,.30);
  box-shadow: 0 14px 40px rgba(0,0,0,.08);
}
.drawer .cta-btn{
  margin-top:10px;
  border:1px solid rgba(198,167,94,.55);
  background: linear-gradient(90deg, rgba(198,167,94,1), rgba(43,183,166,.92));
  color:white;
}

/* CONTENT */
.page-hero{padding: 28px 0 10px}
.hero-shell{
  border:1px solid rgba(0,0,0,.06);
  border-radius: 30px;
  background:#fff;
  box-shadow: var(--shadow);
  overflow:hidden;
  width:100%;
  max-width:100%;
}
.page-hero-inner{
  padding: 40px;
  position:relative;
}
.page-hero-inner:before{
  content:"";
  position:absolute;
  inset:-140px -160px auto auto;
  width:460px; height:460px;
  background: radial-gradient(circle at 30% 30%, rgba(198,167,94,.13), transparent 60%),
              radial-gradient(circle at 70% 65%, rgba(43,183,166,.10), transparent 62%);
  transform: rotate(12deg);
  pointer-events:none;
}
.page-title{
  position:relative; z-index:1;
  font-size: clamp(32px, 3.5vw, 56px);
  line-height:1.05;
  word-break: break-word;
  overflow-wrap:anywhere;
  hyphens:auto;
}
.page-sub{
  position:relative; z-index:1;
  margin-top:14px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.85;
  max-width: 75ch;
  overflow-wrap:anywhere;
}

.section{padding: 56px 0}
.section-head{
  text-align:center;
  max-width: 820px;
  margin: 0 auto 30px;
  padding: 0 2px;
}
.section-head h2{font-size: 34px; line-height:1.12}
.section-head p{
  margin-top:14px;
  color: var(--muted);
  line-height:1.85;
  font-size: 16px;
}

.grid-3{
  display:grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 18px;
}
.grid-2{
  display:grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 18px;
}
.card{
  background: rgba(255,255,255,.98);
  border:1px solid rgba(0,0,0,.06);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 26px;
  position:relative;
  overflow:hidden;
  min-width:0;
  transition:.25s transform, .25s box-shadow;
}
.card:hover{transform: translateY(-4px); box-shadow: 0 30px 90px rgba(0,0,0,.11)}
.kicker{
  display:inline-flex; align-items:center; gap:8px;
  font-size:12px; letter-spacing:.10em;
  text-transform:uppercase; color: rgba(17,17,17,.55);
  margin-bottom:10px;
}
.dot{
  width:8px; height:8px; border-radius:999px;
  background: linear-gradient(90deg, var(--accent), var(--accent2));
  display:inline-block;
}
.card h3{font-size:22px; margin:0 0 10px}
.card p{
  margin:0;
  color: var(--muted);
  line-height:1.75;
  overflow-wrap:anywhere;
  word-break: break-word;
  hyphens:auto;
}

/* Gallery */
.gallery{
  display:grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 12px;
}
.g-item{
  border-radius: 18px;
  overflow:hidden;
  border:1px solid rgba(0,0,0,.08);
  box-shadow: 0 18px 50px rgba(0,0,0,.08);
  background:#fff;
  cursor:pointer;
  transition:.2s transform, .2s box-shadow;
  min-width:0;
}
.g-item:hover{transform:translateY(-3px); box-shadow:0 26px 80px rgba(0,0,0,.10)}
.g-item img{width:100%; height:240px; object-fit:cover}

/* Lightbox */
.lightbox{
  position:fixed; inset:0;
  background: rgba(0,0,0,.75);
  display:none;
  place-items:center;
  padding:18px;
  z-index:110;
}
.lightbox.open{display:grid}
.lightbox img{
  max-width: min(1100px, 96vw);
  max-height: 86vh;
  border-radius: 18px;
  border:1px solid rgba(255,255,255,.18);
}

/* Contact (base inputs) */
.form-grid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
label{display:block; font-size:13px; color:var(--muted); margin:0 0 6px}
input, textarea{
  width:100%;
  border-radius: 16px;
  border:1px solid rgba(0,0,0,.10);
  background: rgba(255,255,255,.98);
  padding: 12px 12px;
  font-size:14px;
  outline:none;
}
input:focus, textarea:focus{border-color: rgba(198,167,94,.55)}
textarea{min-height:140px; resize:vertical}
.alert{
  border:1px solid rgba(0,0,0,.10);
  border-radius:16px;
  padding: 12px 14px;
  background: rgba(255,255,255,.95);
  margin-bottom:12px;
  color: rgba(17,17,17,.84);
}

/* Footer */
footer{
  padding: 36px 0;
  border-top:1px solid rgba(0,0,0,.06);
  text-align:center;
  color: var(--muted);
  background: #fff;
}
.footer-links{
  margin-top: 10px;
  display:flex;
  justify-content:center;
  gap:12px;
  flex-wrap:wrap;
  padding: 0 2px;
}
.footer-links a{
  border:1px solid rgba(0,0,0,.08);
  background: rgba(255,255,255,.95);
  padding:8px 12px;
  border-radius:999px;
  font-size:13px;
  color: rgba(17,17,17,.62);
  transition:.2s;
}
.footer-links a:hover{color: var(--accent); border-color: rgba(198,167,94,.45)}

/* Cookie Banner */
.cookie-banner{
  position:fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 120;
  display:none;
}
.cookie-banner.open{display:block}
.cookie-box{
  max-width: 980px;
  margin: 0 auto;
  background: rgba(255,255,255,.96);
  border:1px solid rgba(0,0,0,.10);
  border-radius: 22px;
  box-shadow: 0 28px 90px rgba(0,0,0,.14);
  padding: 16px 16px;
}
.cookie-row{
  display:flex;
  gap: 14px;
  align-items:flex-start;
  justify-content:space-between;
  flex-wrap:wrap;
}
.cookie-text{
  min-width: 240px;
  flex: 1 1 520px;
}
.cookie-text strong{
  display:block;
  font-family:'Playfair Display',serif;
  font-size: 18px;
}
.cookie-text p{
  margin: 8px 0 0;
  color: var(--muted);
  line-height: 1.6;
  font-size: 13px;
}
.cookie-actions{
  display:flex;
  gap: 10px;
  flex: 0 0 auto;
  align-items:center;
}
.btn.small{padding:10px 14px; font-size:13px}
.btn.ghost{
  border:1px solid rgba(0,0,0,.10);
  color: rgba(17,17,17,.72);
}
.btn.ghost:hover{
  background: rgba(0,0,0,.04);
  border-color: rgba(0,0,0,.12);
  color: rgba(17,17,17,.86);
  box-shadow:none;
}

/* Responsive */
@media (max-width: 1000px){
  nav ul{display:none}
  .hamburger{display:flex}
  .btn.top-cta{display:none}
}
@media (max-width: 900px){
  .page-hero-inner{padding: 26px 18px}
  .section{padding: 46px 0}
  .grid-3{grid-template-columns: 1fr}
  .grid-2{grid-template-columns: 1fr}
  .gallery{grid-template-columns: 1fr}
  .g-item img{height: 210px}
  .form-grid{grid-template-columns: 1fr}
}

/* =========================================================
   PREMIUM CONTACT UPGRADE (Floating label + icons + animation)
   ========================================================= */

/* subtle fade-in on page */
.fade-in{
  animation: fadeInUp .55s ease both;
}
@keyframes fadeInUp{
  from{opacity:0; transform:translateY(10px)}
  to{opacity:1; transform:translateY(0)}
}

/* submit hover animation */
.btn.btn-submit{
  position:relative;
  overflow:hidden;
  will-change: transform, box-shadow;
}
.btn.btn-submit:hover{
  transform: translateY(-2px);
  box-shadow: 0 18px 60px rgba(43,183,166,.20);
}
.btn.btn-submit:active{
  transform: translateY(0);
}
.btn.btn-submit::before{
  content:"";
  position:absolute;
  inset:-2px;
  background: linear-gradient(90deg, rgba(198,167,94,.55), rgba(43,183,166,.45));
  opacity:0;
  transition:.25s;
}
.btn.btn-submit:hover::before{opacity:1}
.btn.btn-submit > span{position:relative; z-index:1}

/* floating labels */
.f-field{position:relative; margin-top:14px}
.f-input{
  width:100%;
  border-radius:16px;
  border:1px solid rgba(0,0,0,.10);
  background: rgba(255,255,255,.98);
  padding: 18px 14px 14px;
  font-size:14px;
  outline:none;
  transition: .2s border-color, .2s box-shadow;
}
.f-input:focus{
  border-color: rgba(198,167,94,.55);
  box-shadow: 0 0 0 6px rgba(198,167,94,.10);
}
.f-label{
  position:absolute;
  left:14px;
  top:14px;
  color: rgba(17,17,17,.55);
  font-size:13px;
  transition:.18s ease;
  pointer-events:none;
  padding:0 6px;
}
.f-input:focus + .f-label,
.f-input:not(:placeholder-shown) + .f-label{
  top:6px;
  font-size:11px;
  letter-spacing:.08em;
  text-transform:uppercase;
  color: rgba(17,17,17,.60);
}
.f-textarea{min-height:150px; resize:vertical}

/* override contact grid spacing nicer */
.form-grid{
  gap: 14px;
}

/* company info list with icons */
.info-list{
  display:grid;
  gap:12px;
  margin-top:16px;
}
.info-item{
  display:flex;
  gap:12px;
  align-items:flex-start;
  border:1px solid rgba(0,0,0,.06);
  border-radius:18px;
  padding:14px;
  background: rgba(255,255,255,.96);
}
.ico{
  width:38px; height:38px;
  border-radius:14px;
  border:1px solid rgba(0,0,0,.07);
  background: linear-gradient(135deg, rgba(198,167,94,.20), rgba(43,183,166,.14));
  display:grid;
  place-items:center;
  flex:0 0 auto;
}
.ico svg{
  width:18px; height:18px;
  fill:none;
  stroke: rgba(17,17,17,.78);
  stroke-width:1.8;
}
.info-item strong{
  display:block;
  font-size:12px;
  letter-spacing:.10em;
  text-transform:uppercase;
  color: rgba(17,17,17,.60);
}
.info-item div{
  color: rgba(17,17,17,.84);
  line-height:1.6;
  font-size:14px;
}
.info-item a{color: rgba(17,17,17,.84)}
.info-item a:hover{color: var(--accent)}

@media (max-width: 900px){
  .form-grid{grid-template-columns: 1fr}
}

/* =========================
   INDEX HERO (right image)
   ========================= */
.hero{padding: 26px 0 10px;}
.hero-shell{
  border:1px solid rgba(0,0,0,.06);
  border-radius: 30px;
  background:#fff;
  box-shadow: var(--shadow);
  overflow:hidden;
  width:100%;
  max-width:100%;
}
.hero-grid{
  display:grid;
  grid-template-columns: 1.05fr .95fr;
  gap:0;
  align-items:stretch;
}
.hero-left{
  padding: 44px 44px 40px;
  position:relative;
  max-width:100%;
}
.hero-right{
  position:relative;
  min-height: 420px;
  border-left: 1px solid rgba(0,0,0,.06);
  overflow:hidden;
  max-width:100%;
}

/* ✅ BURADAKİ URL artık banyo resmi */
.hero-right:before{
  content:"";
  position:absolute;
  inset:0;
  background:
    linear-gradient(135deg, rgba(198,167,94,.18), rgba(43,183,166,.10)),
    url("https://images.unsplash.com/photo-1584622781564-1d987f7333c1?auto=format&fit=crop&w=1600&q=80");
  background-size: cover;
  background-position:center;
  filter: saturate(1.05);
  transform: scale(1.02);
}

/* soft white overlay (premium) */
.hero-right:after{
  content:"";
  position:absolute;
  inset:0;
  background: linear-gradient(90deg, rgba(255,255,255,.92), rgba(255,255,255,.18));
}

.hero-right-inner{
  position:relative;
  z-index:1;
  height:100%;
  padding: 34px;
  display:flex;
  flex-direction:column;
  justify-content:flex-end;
  gap:12px;
}
.hero-card{
  background: rgba(255,255,255,.88);
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 22px;
  box-shadow: var(--shadow2);
  padding: 16px 16px;
  max-width: 360px;
}
.hero-card strong{
  display:block;
  font-family:'Playfair Display',serif;
  font-size:18px;
}
.hero-card span{
  display:block;
  margin-top:6px;
  color: var(--muted);
  line-height:1.6;
  font-size:13px;
}

@media (max-width: 900px){
  .hero-grid{grid-template-columns: 1fr}
  .hero-right{border-left:none; border-top:1px solid rgba(0,0,0,.06); min-height:280px}
  .hero-left{padding: 26px 18px 22px}
  .hero-right-inner{padding:18px}
  .hero-card{max-width:100%}
}

/* Over ons centered hero */
.page-hero-inner.centered{
  text-align:center;
  max-width: 820px;
  margin: 0 auto;
}
.page-hero-inner.centered .page-title{
  margin-left:auto;
  margin-right:auto;
}
.page-hero-inner.centered .page-sub{
  margin: 18px auto 0;
  max-width: 70ch;
}
/* ===== LOGO FORCE FIX (en alta ekle) ===== */
header .brand .logo-box{
  border-radius: 0 !important;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  overflow: visible !important;
  width: auto !important;
  height: 56px !important;
  padding: 0 !important;
}

header .brand .logo-box img{
  height: 56px !important;
  width: auto !important;
  max-width: 260px !important;
  object-fit: contain !important;
}