:root{
  --bg:#0b0d10;
  --text:rgba(255,255,255,.88);
  --muted:rgba(255,255,255,.62);
  --gold:#d4b46a;
  --gold2:#f1d89a;

  --shadow:0 18px 60px rgba(0,0,0,.45);
  --shadow2:0 30px 90px rgba(0,0,0,.60);

  --radius:18px;
  --radius2:24px;
  --max:1180px;
  --blur:blur(12px);
}

*{ box-sizing:border-box; }
html,body{ height:100%; }
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, "Noto Sans";
  background:
    radial-gradient(1100px 700px at 70% -10%, rgba(212,180,106,.20), transparent 60%),
    radial-gradient(900px 650px at 10% 0%, rgba(241,216,154,.12), transparent 55%),
    var(--bg);
  color:var(--text);
  overflow-x:hidden;
}
a{ color:inherit; text-decoration:none; }
img{ max-width:100%; display:block; }
.container{ width:min(var(--max), calc(100% - 40px)); margin:0 auto; }
[hidden]{ display:none !important; }

/* =========================
   HEADER / NAV (PC/TABLET)
========================= */
.site-header{
  position:fixed;
  inset:0 0 auto 0;
  z-index:200;
  transition: transform .35s ease, opacity .35s ease;
  /* ÖNEMLİ: Header içinde tıklanabilirlik */
  pointer-events:auto;
}
.site-header.is-hidden{ transform:translateY(-120%); opacity:0; }

.nav-wrap{
  width:min(var(--max), calc(100% - 32px));
  margin:14px auto 0;
  border-radius:999px;
  background: rgba(10,12,16,.28);
  backdrop-filter: var(--blur);
  -webkit-backdrop-filter: var(--blur);
  border:1px solid rgba(255,255,255,.10);
  box-shadow:0 14px 40px rgba(0,0,0,.28);
  padding:10px 14px;
  position:relative;
}

.nav{
  display:grid;
  grid-template-columns: 1fr auto 1fr;
  align-items:center;
  gap:10px;
}

.nav-group{
  list-style:none;
  margin:0;
  padding:0;
  display:flex;
  gap:10px;
  align-items:center;
}
.nav-left{ justify-content:flex-start; }
.nav-right{ justify-content:flex-end; }

.nav-logo{
  font-weight:800;
  letter-spacing:.22em;
  font-size:14px;
  text-transform:uppercase;
  padding:10px 14px;
  border-radius:999px;
  background: rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.10);
}

.nav-item{ position:relative; }
.nav-link{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:10px 12px;
  border-radius:999px;
  font-size:13px;
  color:var(--text);
  opacity:.92;
  transition: background .2s ease, opacity .2s ease, transform .2s ease;
}
.nav-link:hover{
  background: rgba(255,255,255,.08);
  opacity:1;
  transform: translateY(-1px);
}
.nav-link .chev{ display:none; } /* desktopta ok yok */

/* Desktop submenu: hover + köprü fix */
.has-sub{ position:relative; padding-bottom:10px; }
.has-sub::after{
  content:"";
  position:absolute;
  left:0; right:0;
  top:100%;
  height:14px;
}
.has-sub .sub-menu{
  position:absolute;
  top:100%;
  left:0;
  margin-top:12px;
  min-width:220px;
  padding:10px;
  border-radius:14px;
  background: rgba(10,12,16,.70);
  backdrop-filter: var(--blur);
  -webkit-backdrop-filter: var(--blur);
  border:1px solid rgba(255,255,255,.10);
  box-shadow: var(--shadow2);
  list-style:none;

  opacity:0;
  transform: translateY(6px);
  pointer-events:none;
  transition: opacity .18s ease, transform .18s ease;
  z-index:300;
}
.has-sub:hover .sub-menu,
.has-sub:focus-within .sub-menu{
  opacity:1;
  transform: translateY(0);
  pointer-events:auto;
}
.sub-menu a{
  display:flex;
  padding:10px 10px;
  border-radius:12px;
  font-size:13px;
  transition: background .18s ease;
}
.sub-menu a:hover{ background: rgba(212,180,106,.14); }

/* =========================
   MOBİL MENÜ (PREMIUM DRAWER)
========================= */
.nav-burger{
  display:none;
  position:absolute;
  left:12px;
  top:50%;
  transform:translateY(-50%);
  width:44px; height:44px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.06);
  cursor:pointer;
}
.nav-burger span{
  display:block;
  height:2px;
  width:18px;
  background: rgba(255,255,255,.88);
  margin:5px auto;
  border-radius:10px;
}
.nav-close{
  display:none;
  width:44px; height:44px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.06);
  cursor:pointer;
  color:var(--text);
  font-size:18px;
  align-items:center;
  justify-content:center;
}

/* Backdrop: menü açılınca arkayı KAPATIR */
.nav-backdrop{
  position: fixed;
  inset: 0;
  z-index: 150;
  background: rgba(0,0,0,.72);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  opacity:0;
  pointer-events:none;
  transition: opacity .2s ease;
}
.nav-backdrop.show{
  opacity:1;
  pointer-events:auto;
}

/* =========================
   BUTTON / SECTION
========================= */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:11px 14px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.06);
  color: var(--text);
  font-size:13px;
  font-weight:650;
  letter-spacing:.02em;
  transition: transform .18s ease, border-color .18s ease, background .18s ease;
  cursor:pointer;
}
.btn:hover{ transform: translateY(-1px); border-color: rgba(212,180,106,.35); }
.btn-primary{
  background: linear-gradient(135deg, rgba(212,180,106,.95), rgba(241,216,154,.80));
  color:#17140d;
  border-color: rgba(212,180,106,.45);
}
.btn-ghost{ background: rgba(10,12,16,.25); }

.section{ padding:64px 0; }
.section-head{ margin-bottom:18px; }
.section-title{
  margin:0 0 8px;
  color: var(--gold);
  font-size:22px;
  letter-spacing:.02em;
}
.section-desc{
  margin:0;
  color: var(--muted);
  max-width:820px;
  line-height:1.7;
  font-size:14px;
}

/* =========================
   INDEX: HERO
========================= */
.hero{ min-height:82vh; display:flex; align-items:stretch; position:relative; }
.hero-media{
  width:min(var(--max), calc(100% - 40px));
  margin:92px auto 0;
  min-height:420px;
  background-size:cover;
  background-position:center;
  border-radius:28px;
  overflow:hidden;
  box-shadow: var(--shadow2);
  border:1px solid rgba(255,255,255,.10);
  position:relative;
}
.hero-overlay{
  position:absolute; inset:0;
  background:
    linear-gradient(90deg, rgba(0,0,0,.70), rgba(0,0,0,.20) 60%, rgba(0,0,0,.60)),
    radial-gradient(900px 520px at 30% 20%, rgba(212,180,106,.20), transparent 60%);
}
.hero-content{
  position:relative;
  padding: clamp(22px, 4vw, 44px);
  max-width: 720px;
}
.hero-kicker{
  margin:0 0 10px;
  color: var(--gold2);
  letter-spacing:.18em;
  text-transform: uppercase;
  font-size:12px;
}
.hero-slogan{
  margin:0 0 10px;
  font-size: clamp(26px, 3.2vw, 44px);
  line-height:1.08;
}
.hero-sub{
  margin:0 0 18px;
  color: var(--muted);
  font-size:14px;
  line-height:1.7;
}
.hero-cta{ display:flex; gap:10px; flex-wrap:wrap; }

.hero-controls{
  position:absolute;
  left:18px;
  bottom:16px;
  display:flex;
  align-items:center;
  gap:10px;
  padding:8px 10px;
  border-radius:999px;
  background: rgba(10,12,16,.55);
  backdrop-filter: var(--blur);
  -webkit-backdrop-filter: var(--blur);
  border:1px solid rgba(255,255,255,.10);
}
.ctrl{
  width:34px;height:34px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.06);
  color: rgba(255,255,255,.92);
  cursor:pointer;
  font-size:18px;
}
.ctrl:hover{ border-color: rgba(212,180,106,.38); }
.dots{ display:flex; gap:8px; align-items:center; }
.dot{
  width:8px;height:8px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.25);
  background: rgba(255,255,255,.10);
  cursor:pointer;
}
.dot.active{
  background: rgba(212,180,106,.95);
  border-color: rgba(212,180,106,.95);
  box-shadow: 0 0 0 5px rgba(212,180,106,.16);
}

/* =========================
   WORKS
========================= */
.card-grid{
  margin-top:22px;
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:18px;
}
.work-card{
  border-radius: var(--radius2);
  overflow:hidden;
  border:1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.04);
  box-shadow: 0 18px 55px rgba(0,0,0,.35);
  transition: transform .22s ease, border-color .22s ease, background .22s ease;
}
.work-card:hover{
  transform: translateY(-4px);
  border-color: rgba(212,180,106,.28);
  background: rgba(255,255,255,.06);
}
.work-img{
  height:190px;
  background-size:cover;
  background-position:center;
}
.work-body{ padding:14px 14px 16px; }
.work-title{ margin:0 0 6px; color: var(--gold); font-size:16px; }
.work-text{ margin:0; color: var(--muted); font-size:13px; line-height:1.65; }

/* =========================
   ABOUT
========================= */
.about-grid{
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap:18px;
  align-items:start;
  margin-top:18px;
}
.about-video{
  border-radius: var(--radius2);
  overflow:hidden;
  border:1px solid rgba(255,255,255,.10);
  box-shadow: var(--shadow2);
  background: rgba(255,255,255,.03);
}
.about-video video{ width:100%; height:340px; object-fit:cover; display:block; }
.about-video-wrap{ position:relative; }
.about-btn{
  position:absolute;
  right:-10px;
  top:18px;
  display:flex;
  align-items:center;
  gap:10px;
  padding:12px 14px;
  border-radius:16px;
  border:1px solid rgba(212,180,106,.38);
  background: rgba(10,12,16,.60);
  backdrop-filter: var(--blur);
  -webkit-backdrop-filter: var(--blur);
  cursor:pointer;
  box-shadow: 0 18px 45px rgba(0,0,0,.35);
}
.about-btn .chev{ color: var(--gold2); transition: transform .2s ease; }
.about-btn[aria-expanded="true"] .chev{ transform: rotate(180deg); }
.about-panel{
  border-radius: var(--radius2);
  border:1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.04);
  padding:16px;
}
.about-text{ color: var(--muted); font-size:14px; line-height:1.75; }

/* =========================
   PAGE-1: BANNER + ZIGZAG
========================= */
.page-hero{ padding-top:92px; }
.banner{
  position:relative;
  border-radius:26px;
  overflow:hidden;
  min-height:260px;
  border:1px solid rgba(255,255,255,.10);
  box-shadow: var(--shadow2);
  background:
    radial-gradient(900px 450px at 15% 20%, rgba(212,180,106,.22), transparent 55%),
    linear-gradient(135deg, rgba(255,255,255,.06), rgba(255,255,255,.02)),
    url("fairwork1.png");
  background-size: cover;
  background-position:center;
}
.banner-overlay{ position:absolute; inset:0; background: linear-gradient(90deg, rgba(0,0,0,.74), rgba(0,0,0,.25) 65%, rgba(0,0,0,.72)); }
.banner-content{ position:relative; padding: clamp(18px, 3.5vw, 34px); max-width: 820px; }
.banner-kicker{ margin:0 0 10px; color: var(--gold2); letter-spacing:.18em; text-transform: uppercase; font-size:12px; }
.banner-title{ margin:0 0 10px; font-size: clamp(24px, 3vw, 40px); line-height:1.08; }
.banner-sub{ margin:0 0 16px; color: var(--muted); line-height:1.7; font-size:14px; }

.zigzag{ display:flex; flex-direction:column; gap:22px; }
.zz-item{
  border-radius: var(--radius2);
  border:1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.04);
  overflow:hidden;
  box-shadow: 0 18px 55px rgba(0,0,0,.28);
}
.zz-top{ display:grid; grid-template-columns:1fr 1fr; }
.zz-photo{ min-height:260px; background-size:cover; background-position:center; }
.zz-cap{
  padding:16px;
  display:flex;
  flex-direction:column;
  justify-content:center;
  gap:8px;
  border-left:1px solid rgba(255,255,255,.08);
}
.zz-title{ margin:0; color: var(--gold); font-size:18px; }
.zz-mini{ margin:0 0 6px; color: var(--muted); font-size:13px; line-height:1.6; }
.zz-acc{
  margin-top:10px;
  padding:12px;
  border-radius:16px;
  border:1px solid rgba(212,180,106,.22);
  background: rgba(10,12,16,.30);
  color: var(--muted);
  line-height:1.75;
  font-size:14px;
}
.zz-cross{
  display:grid;
  grid-template-columns:1fr 1fr;
  border-top:1px solid rgba(255,255,255,.08);
}
.zz-text{ padding:16px; }
.zz-cross-title{ margin:0 0 8px; color: var(--gold); font-size:16px; }
.zz-text p{ margin:0 0 10px; color: var(--muted); line-height:1.75; font-size:14px; }
.zz-list{ margin:0; padding-left:18px; color: rgba(255,255,255,.70); line-height:1.75; font-size:13px; }
.zz-cross-photo{ min-height:240px; background-size:cover; background-position:center; }
.zz-cross--right .zz-text{ order:1; } .zz-cross--right .zz-cross-photo{ order:2; }
.zz-cross--left .zz-cross-photo{ order:1; } .zz-cross--left .zz-text{ order:2; }

/* =========================
   VISIT
========================= */
.visit-grid{ display:grid; grid-template-columns:1fr 1fr; gap:18px; align-items:stretch; }
.visit-left{
  border-radius: var(--radius2);
  border:1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.04);
  padding:18px;
}
.visit-info{ color: var(--muted); line-height:1.75; font-size:14px; }
.visit-info strong{ color: rgba(255,255,255,.86); }
.visit-actions{ margin-top:14px; display:flex; gap:10px; flex-wrap:wrap; }
.visit-right{
  border-radius: var(--radius2);
  overflow:hidden;
  border:1px solid rgba(255,255,255,.10);
  box-shadow: var(--shadow2);
}
.visit-photo{ width:100%; height:100%; min-height:320px; background-size:cover; background-position:center; }

/* =========================
   CONTACT
========================= */
.contact-top{ padding-top:92px; }
.contact-grid{
  margin-top:16px;
  display:grid;
  grid-template-columns: 1fr 1.25fr 1fr;
  gap:18px;
}
.contact-card{
  border-radius: var(--radius2);
  border:1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.04);
  box-shadow: 0 18px 55px rgba(0,0,0,.28);
  padding:16px;
}
.card-title{ margin:0 0 12px; color: var(--gold); font-size:16px; }
.contact-row{
  display:grid;
  grid-template-columns: 90px 1fr;
  gap:12px;
  padding:10px 0;
  border-top:1px solid rgba(255,255,255,.08);
}
.contact-row:first-of-type{ border-top:none; padding-top:0; }
.chip{
  display:inline-flex;
  width:fit-content;
  padding:6px 10px;
  border-radius:999px;
  border:1px solid rgba(212,180,106,.22);
  background: rgba(10,12,16,.25);
  color: var(--gold2);
  font-size:12px;
}
.contact-link:hover{ color: var(--gold2); }
.small-muted{ color: var(--muted); font-size:12.5px; margin-top:4px; }
.map-embed{
  border-radius:18px;
  overflow:hidden;
  border:1px solid rgba(255,255,255,.10);
  background: rgba(0,0,0,.20);
}
.map-embed iframe{ width:100%; height:310px; border:0; display:block; }
.hours{ list-style:none; padding:0; margin:0 0 12px; border-top:1px solid rgba(255,255,255,.08); }
.hours li{
  display:flex; justify-content:space-between; gap:12px;
  padding:10px 0;
  border-bottom:1px solid rgba(255,255,255,.08);
  color: rgba(255,255,255,.78);
  font-size:13px;
}
.addr-title{ margin:0 0 8px; color: var(--gold); font-size:15px; }
.addr p{ margin:0; color: var(--muted); line-height:1.75; font-size:14px; }

.form-wrap{ margin-top:26px; }
.contact-form{
  border-radius: var(--radius2);
  border:1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.04);
  box-shadow: 0 18px 55px rgba(0,0,0,.25);
  padding:16px;
}
.field-grid{ display:grid; grid-template-columns:1fr 1fr; gap:12px; }
.field{ display:flex; flex-direction:column; gap:6px; margin-bottom:12px; }
.field span{ color: rgba(255,255,255,.78); font-size:13px; }
.field input,.field textarea{
  border-radius:14px;
  border:1px solid rgba(255,255,255,.10);
  background: rgba(10,12,16,.40);
  color: rgba(255,255,255,.90);
  padding:12px;
  outline:none;
}
.field input:focus,.field textarea:focus{ border-color: rgba(212,180,106,.35); }
.form-actions{ display:flex; gap:10px; flex-wrap:wrap; align-items:center; margin-top:6px; }

/* =========================
   FOOTER
========================= */
.footer{
  padding:26px 0 34px;
  border-top:1px solid rgba(255,255,255,.08);
  background: rgba(0,0,0,.20);
}
.footer-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  flex-wrap:wrap;
}
.footer-copy{ margin:0; color: rgba(255,255,255,.58); font-size:13px; }
.social{ display:flex; gap:10px; align-items:center; }
.social-btn{
  width:42px;height:42px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.05);
  transition: transform .18s ease, border-color .18s ease;
}
.social-btn:hover{ transform: translateY(-2px); border-color: rgba(212,180,106,.32); }
.social-btn svg{ width:20px; height:20px; fill: rgba(255,255,255,.84); }

/* =========================
   RESPONSIVE BREAKPOINTS
========================= */
@media (max-width: 1050px){
  .card-grid{ grid-template-columns:1fr; }
  .about-grid{ grid-template-columns:1fr; }
  .about-btn{ right:14px; }
  .visit-grid{ grid-template-columns:1fr; }
  .contact-grid{ grid-template-columns:1fr; }
  .field-grid{ grid-template-columns:1fr; }
}

@media (max-width: 820px){
  .nav-burger{ display:block; }

  /* drawer (mobile) */
  .nav{
    position: fixed;
    top: 0; right: 0; bottom: 0;
    width: min(380px, 86vw);
    z-index: 220;
    display:flex;             /* grid yerine flex */
    flex-direction: column;
    gap:10px;

    padding: 14px 14px 16px;
    background: rgba(12,14,18,.94);
    border-left: 1px solid rgba(255,255,255,.10);
    box-shadow: -30px 0 90px rgba(0,0,0,.65);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);

    transform: translateX(110%);
    pointer-events:none;
    transition: transform .22s ease;
  }
  .nav.is-open{ transform: translateX(0); pointer-events:auto; }

  .nav-close{ display:inline-flex; align-self:flex-end; }

  .nav-logo{ margin: 2px auto 6px; }

  .nav-group{
    flex-direction: column;
    align-items: stretch;
    gap: 6px;
    padding: 0;
  }

  .nav-link{
    width:100%;
    justify-content: space-between;
    border-radius: 14px;
    padding: 12px 12px;
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(255,255,255,.10);
  }
  .nav-link .chev{
    display:inline-block;
    color: var(--gold2);
    transition: transform .18s ease;
  }

  /* mobilde hover köprüsü yok */
  .has-sub{ padding-bottom:0; }
  .has-sub::after{ display:none; }

  /* mobilde submenu KAPALI - tıkla aç */
  .has-sub .sub-menu{
    position: static;
    margin-top: 6px;
    padding: 8px;
    border-radius: 14px;
    background: rgba(255,255,255,.03);
    border: 1px solid rgba(255,255,255,.10);
    box-shadow: none;

    display:none; /* KAPALI */
    opacity:1;
    transform:none;
    pointer-events:auto;
  }
  .has-sub.sub-open .sub-menu{ display:block; }
  .has-sub.sub-open .nav-link .chev{ transform: rotate(180deg); }

  /* content responsive */
  .zz-top{ grid-template-columns:1fr; }
  .zz-cap{ border-left:none; border-top:1px solid rgba(255,255,255,.08); }
  .zz-cross{ grid-template-columns:1fr; }
  .zz-cross-photo{ min-height:260px; }
}

@media (prefers-reduced-motion: reduce){
  *{ transition:none !important; animation:none !important; }
}

/* === KESİN ÇÖZÜM: Mobil menü panel arka planı === */
@media (max-width: 820px){
  /* nav container: sadece taşıyıcı */
  #mainNav{
    position: fixed !important;
    top: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    width: min(380px, 86vw) !important;
    height: 100dvh !important;
    background: transparent !important;  /* nav’a değil panel’e vereceğiz */
    padding: 0 !important;
    margin: 0 !important;
    z-index: 220 !important;
  }

  /* asıl opak panel */
  #mainNav .drawer-panel{
    position: absolute !important;
    inset: 0 !important;               /* tam doldur */
    height: 100% !important;
    background: #0b0d10 !important;    /* FULL opak */
    border-left: 1px solid rgba(255,255,255,.10) !important;
    box-shadow: -30px 0 90px rgba(0,0,0,.85) !important;

    /* içerik düzeni */
    display: flex !important;
    flex-direction: column !important;
    gap: 10px !important;
    padding: 14px 14px 16px !important;

    overflow-y: auto !important;
  }

  /* okunurluk */
  #mainNav .nav-link{
    background: rgba(255,255,255,.10) !important;
    border: 1px solid rgba(255,255,255,.16) !important;
  }
  #mainNav .has-sub .sub-menu{
    background: rgba(255,255,255,.07) !important;
    border: 1px solid rgba(255,255,255,.14) !important;
  }
}

/* =========================
   FİRMALARIMIZ SLIDER
========================= */

.partners{
  padding: 70px 0;
  overflow: hidden;
}

.partners-title{
  text-align: center;
  color: var(--gold);
  font-size: 28px;
  margin-bottom: 40px;
}

.partners-slider{
  position: relative;
  width: 100%;
  overflow: hidden;
}

.partners-track{
  display: flex;
  gap: 40px;
  animation: partnersScroll 25s linear infinite;
}

.partner-item{
  min-width: 220px;
  height: 90px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 18px;

  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.10);

  color: var(--gold);
  font-weight: 600;
  font-size: 18px;

  backdrop-filter: blur(6px);
}

/* Sonsuz kayma animasyonu */

@keyframes partnersScroll{
  from{
    transform: translateX(0);
  }
  to{
    transform: translateX(-50%);
  }
}

/* mobil */

@media (max-width:768px){

  .partner-item{
    min-width:160px;
    height:70px;
    font-size:15px;
  }

}

/* Galeri kart görselleri: resmin TAMAMI görünsün */
.gallery-grid .gmedia{
  background-size: contain !important;   /* <-- ÖNEMLİ: cover değil contain */
  background-position: center !important;
  background-repeat: no-repeat !important;

  /* boş kalan yerler çirkin durmasın diye */
  background-color: rgba(0,0,0,.25) !important;
}

/* =========================
   WHATSAPP FLOATING BUTTON
========================= */
.fw-whatsapp-float{
  position:fixed !important;
  right:16px !important;
  bottom:16px !important;
  width:58px !important;
  height:58px !important;
  display:flex !important;
  align-items:center !important;
  justify-content:center !important;
  border-radius:999px !important;
  background:#25D366 !important;
  color:#fff !important;
  text-decoration:none !important;
  box-shadow:0 12px 30px rgba(0,0,0,.28) !important;
  z-index:2147483000 !important;
  transform:none !important;
  float:none !important;
  max-width:none !important;
  min-width:0 !important;
  min-height:0 !important;
  padding:0 !important;
  margin:0 !important;
  inset:auto 16px 16px auto !important;
  overflow:hidden !important;
}
.fw-whatsapp-float:hover{ color:#fff !important; }
.fw-whatsapp-icon{
  width:28px !important;
  height:28px !important;
  display:flex !important;
  align-items:center !important;
  justify-content:center !important;
  flex:0 0 28px !important;
}
.fw-whatsapp-icon svg{
  width:28px !important;
  height:28px !important;
  display:block !important;
  fill:currentColor !important;
  flex:none !important;
  max-width:28px !important;
  max-height:28px !important;
}
.fw-whatsapp-bubble{
  position:fixed !important;
  right:86px !important;
  bottom:23px !important;
  display:flex !important;
  align-items:center !important;
  gap:10px !important;
  max-width:calc(100vw - 110px) !important;
  padding:11px 14px !important;
  border-radius:999px !important;
  background:rgba(17,17,17,.94) !important;
  color:#fff !important;
  box-shadow:0 10px 26px rgba(0,0,0,.25) !important;
  z-index:2147482999 !important;
  font-size:14px !important;
  line-height:1.2 !important;
  white-space:nowrap !important;
  transform:none !important;
  margin:0 !important;
}
.fw-whatsapp-bubble span{
  display:block !important;
  overflow:hidden !important;
  text-overflow:ellipsis !important;
}
.fw-whatsapp-close{
  appearance:none !important;
  -webkit-appearance:none !important;
  border:0 !important;
  background:rgba(255,255,255,.14) !important;
  color:#fff !important;
  width:24px !important;
  height:24px !important;
  min-width:24px !important;
  border-radius:999px !important;
  cursor:pointer !important;
  padding:0 !important;
  font-size:16px !important;
  line-height:24px !important;
}
.fw-whatsapp-bubble.is-hidden{ display:none !important; }
@media (max-width:768px){
  .fw-whatsapp-float{
    right:12px !important;
    bottom:12px !important;
    width:54px !important;
    height:54px !important;
    inset:auto 12px 12px auto !important;
  }
  .fw-whatsapp-icon,
  .fw-whatsapp-icon svg{
    width:26px !important;
    height:26px !important;
    max-width:26px !important;
    max-height:26px !important;
  }
  .fw-whatsapp-bubble{
    right:74px !important;
    bottom:18px !important;
    max-width:min(220px, calc(100vw - 86px)) !important;
    font-size:13px !important;
    padding:10px 12px !important;
  }
}


/* === Modern appointment & blog === */
img,video,iframe{max-width:100%}
.work-img,.blog-cover,.blog-single-cover{background-size:cover;background-position:center}
.appointment-section{padding-top:20px}
.appointment-shell{display:grid;grid-template-columns:1fr 1.1fr;gap:22px;align-items:stretch}
.appointment-copy,.appointment-panel,.blog-card,.blog-single{background:linear-gradient(180deg,rgba(255,255,255,.05),rgba(255,255,255,.03));border:1px solid rgba(255,255,255,.10);border-radius:28px;box-shadow:var(--shadow2)}
.appointment-copy{padding:28px}.appointment-panel{padding:24px}.appointment-points{margin:22px 0 0;padding:0;list-style:none;display:grid;gap:12px}.appointment-points li{padding:13px 14px;border-radius:16px;background:rgba(255,255,255,.05);border:1px solid rgba(255,255,255,.08);color:var(--muted)}
.compact-grid{grid-template-columns:repeat(2,minmax(0,1fr))}
.field{display:flex;flex-direction:column;gap:8px}.field span{font-size:13px;font-weight:700;color:var(--gold)}
.appointment-form input,.appointment-form select,.appointment-form textarea,.contact-form input,.contact-form select,.contact-form textarea{background:rgba(255,255,255,.06);border:1px solid rgba(255,255,255,.12);color:var(--text);border-radius:16px;padding:13px 14px}
.appointment-message{margin-bottom:14px;padding:14px 16px;border-radius:16px;font-size:14px;font-weight:700}.appointment-message.success{background:rgba(34,197,94,.16);color:#baf3c8;border:1px solid rgba(34,197,94,.28)}.appointment-message.error{background:rgba(239,68,68,.16);color:#fecaca;border:1px solid rgba(239,68,68,.28)}
.blog-preview-grid,.blog-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:18px}.blog-card{overflow:hidden}.blog-cover{height:220px}.blog-body{padding:20px}.blog-title{margin:8px 0 12px;font-size:22px}.blog-excerpt,.blog-meta,.blog-paragraph{color:var(--muted)}.blog-meta{font-size:13px}.blog-empty{padding:24px;border-radius:20px;border:1px dashed rgba(255,255,255,.12);color:var(--muted)}
.blog-single{overflow:hidden}.blog-single-cover{height:360px}.blog-single-body{padding:28px;max-width:900px;margin:auto}.blog-paragraph{line-height:1.9;font-size:16px;margin:0 0 16px}
@media (max-width:980px){.appointment-shell,.blog-preview-grid,.blog-grid{grid-template-columns:1fr}.blog-single-cover{height:260px}}
@media (max-width:640px){.appointment-copy,.appointment-panel,.blog-body,.blog-single-body{padding:18px}.compact-grid{grid-template-columns:1fr}.blog-cover{height:200px}}


.contact-cta-shell{display:grid;grid-template-columns:1fr 1.05fr;gap:22px;align-items:stretch}.contact-cta-copy,.contact-cta-panel{background:linear-gradient(180deg,rgba(255,255,255,.05),rgba(255,255,255,.03));border:1px solid rgba(255,255,255,.10);border-radius:28px;box-shadow:var(--shadow2)}.contact-cta-copy{padding:28px}.contact-cta-panel{padding:24px;display:grid;gap:14px}.contact-cta-list{margin:18px 0 0;padding:0;list-style:none;display:grid;gap:12px}.contact-cta-list li{padding:13px 14px;border-radius:16px;background:rgba(255,255,255,.05);border:1px solid rgba(255,255,255,.08);color:var(--muted)}.contact-cta-panel .mini-card{padding:16px;border-radius:18px;background:rgba(255,255,255,.05);border:1px solid rgba(255,255,255,.08)}@media (max-width:980px){.contact-cta-shell{grid-template-columns:1fr}}
