:root{
  /* Core */
  --bg-main: #fff;
  --bg-dark: #0b1220;

  /* Brand */
  --brand-gold: #c8a75a;
  --brand-gold-soft: #d6b56a;
  --brand-gold-hover: #e0c27a;

  /* Text */
  --text-dark: #0f172a;
  --text-light: #f5f3ea;
  --text-muted: rgba(15,23,42,.72);

  /* Glass / UI */
  --glass-light: rgba(255,255,255,.14);
  --glass-border: rgba(255,255,255,.18);
  --glass-dark: rgba(12,18,31,.72);

  /* Effects */
  --shadow-soft: 0 24px 50px rgba(0,0,0,.15);
  --shadow-strong: 0 24px 50px rgba(0,0,0,.2);

  /* Radius */
  --radius: 12px;
  --radius-xl: 22px;
  --radius-pill: 999px;
}


*{ box-sizing:border-box; }
html,body{ height:100%; }
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial;
  color:var(--text);
  background:var(--bg);
  overflow-x:hidden;
}
body {
  opacity: 0;
  transition: opacity .2s ease-in-out;
}

body.loaded {
  opacity: 1;
}

/* ===== Custom Scrollbar ===== */
html{
  scrollbar-gutter: stable; /* modern tarayıcılar */
}

body{
  overflow-y: scroll; /* scrollbar her zaman yer tutsun */
}

/* Firefox */
*{
  scrollbar-width: thin;
  scrollbar-color: var(--brand-gold) var(--bg-dark);
}

/* Chrome / Edge / Safari */
::-webkit-scrollbar{
  width: 10px;
}

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

::-webkit-scrollbar-thumb{
  background: linear-gradient(
    180deg,
    var(--brand-gold-soft),
    var(--brand-gold)
  );
  border-radius: 10px;
  border: 2px solid #0b1220;
}

::-webkit-scrollbar-thumb:hover{
  background: linear-gradient(
    180deg,
    var(--brand-gold-soft),
    var(--brand-gold)
  );
}

/* NAVBAR */
.nav-wrap{
  position:fixed;
  top:0; left:0; right:0;
  z-index:50;
  padding:14px 18px;
  pointer-events:none;
}
.nav{
  pointer-events:auto;
  max-width:1200px;
  margin:0 auto;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  padding:12px 14px;
  border-radius:999px;
  background: var(--glass-dark);
  border:1px solid var(--glass-border);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);

  box-shadow: 0 20px 60px rgba(0,0,0,.20);
  transform: translateY(0);
  transition: transform .35s ease, background .35s ease, border .35s ease;
}
/* TEXT LOGO */
.logo-wordmark{
  display:flex;
  flex-direction:column;
  line-height:1;
  margin-left: 6px;
}

.logo-main{
  font-weight:600;
  letter-spacing:.22em;
  font-size:18px;
  color: var(--text-light);
}

.logo-sub{
  margin-top:2px;
  font-size:12px;
  letter-spacing:.38em;
  color: var(--brand-gold);
}

.brand{
  display:flex; align-items:center; gap:10px;
  text-decoration:none;
  letter-spacing:.2px;
}


.nav-links{
  list-style:none;
  display:flex;
  gap:10px;
  margin:0;
  padding:0;
}
.nav-links a{
  display:inline-flex;
  align-items:center;
  height:38px;
  padding:0 12px;
  border-radius:999px;
  color: rgba(255,255,255,.92);
  text-decoration:none;
  font-size:13px;
  transition: background .2s ease, transform .2s ease, opacity .2s ease;
}
.nav-links a:hover{
  background: rgba(255,255,255,.12);
  transform: translateY(-1px);
}
.btn-link{
  background: rgba(255,255,255,.14);
  border:1px solid rgba(255,255,255,.18);
}
.btn-link:hover{ background: rgba(255,255,255,.18); }

.burger{
  display:none;
  width:44px; height:44px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.16);
  background: rgba(255,255,255,.10);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  cursor:pointer;
}
.burger span{
  display:block;
  width:18px; height:2px;
  background: var(--text-light);
  margin:4px auto;
  border-radius:2px;
  transition: transform .25s ease, opacity .25s ease;
}
.burger.is-open span:nth-child(1){ transform: translateY(6px) rotate(45deg); }
.burger.is-open span:nth-child(2){ opacity:0; }
.burger.is-open span:nth-child(3){ transform: translateY(-6px) rotate(-45deg); }

.backdrop{
  pointer-events:auto;
  position:fixed;
  inset:0;
  background: rgba(0,0,0,.48);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  opacity:0;
  transition: opacity .25s ease;
  z-index:49;
}
.backdrop.show{ opacity:1; }

.mobile-menu{
  pointer-events:auto;
  position:fixed;
  top:70px;
  right:18px;
  width:min(320px, calc(100vw - 36px));
  padding:12px;
  border-radius: 18px;
  background: rgba(12, 18, 31, .72);
  border:1px solid rgba(255,255,255,.14);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: var(--shadow);
  transform: translateY(-10px) scale(.98);
  opacity:0;
  transition: opacity .22s ease, transform .22s ease;
  z-index:60;
}
.mobile-menu.show{
  opacity:1;
  transform: translateY(0) scale(1);
}
.mobile-menu a{
  display:flex;
  align-items:center;
  height:46px;
  padding:0 12px;
  border-radius: 14px;
  color: var(--text-light);
  text-decoration:none;
  font-size:14px;
}
.mobile-menu a:hover{
  background: rgba(255,255,255,.10);
}

/* HERO */
.hero{
  position:relative;
  height:100vh;
  min-height: 560px;
  display:flex;
  align-items:stretch;
}
.hero-overlay{
  position:absolute;
  inset:0;
  background:
    radial-gradient(900px 600px at 18% 30%, rgba(0,0,0,.22), transparent 60%),
    linear-gradient(to top, rgba(0, 0, 0, 0.2), rgba(0,0,0,0.25) 55%, rgba(0,0,0,0.5));
  z-index:2;
  pointer-events:none;
}


.carousel{
  position:relative;
  width:100%;
  overflow:hidden;
}
.carousel{
  touch-action: pan-y; /* dikey scroll serbest, yatay swipe bize kalsın */
}

.track{
  display:flex;
  height:100%;
  will-change: transform;
  transition: transform .55s cubic-bezier(.2,.9,.2,1);
}
.slide{
  position:relative;
  flex: 0 0 100%;
  height:100%;
}
.hero-media{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
}

.hero-media img{
  width:100%;
  height:100%;
  object-fit:cover;
    object-position: center center; /* EKLE */
  transform: scale(1.02);
  filter: saturate(1.02) contrast(1.02);
  user-select:none;
  -webkit-user-drag:none;
}

.slide{ overflow:hidden; }
.track{ width:100%; }
.carousel{ overflow:hidden; }

.slide-content{
  position:absolute;
  z-index:3;
  left: max(18px, calc((100vw - 1200px)/2 + 18px));
  right:18px;
  bottom: clamp(86px, 16vh, 160px);
  max-width: 620px;
  color:var(--text-light);
  padding: 18px 18px 16px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.301);
  border: 1px solid rgba(255,255,255,.18);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 24px 80px rgba(0,0,0,.35);
  animation: floatIn .7s ease both;
}
@keyframes floatIn{
  from { opacity:0; transform: translateY(12px); }
  to { opacity:1; transform: translateY(0); }
}
.slide-content h1{
  margin:0 0 10px;
  font-size: clamp(28px, 4vw, 46px);
  line-height: 1.05;
  letter-spacing: -.02em;
}
.slide-content p{
  margin:0 0 14px;
  color: rgba(255,255,255,.86);
  font-size: clamp(14px, 1.4vw, 16px);
  line-height:1.5;
}
.cta-row{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
}
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  height:42px;
  padding:0 14px;
  border-radius: 999px;
  background: var(--text-light);
  color: var(--bg-dark);
  text-decoration:none;
  font-weight:600;
  font-size:13px;
  border: 1px solid rgba(255,255,255,.18);
  transition: transform .2s ease, filter .2s ease;
}
.btn:hover{ transform: translateY(-1px); filter: brightness(.98); }
.btn.ghost{
  background: transparent;
  color: var(--text-light);
  border:1px solid var(--glass-border);
}

.arrow{
  position:absolute;
  z-index:5;
  top:50%;
  transform: translateY(-50%);
  width:44px; height:44px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.18);
  background: rgba(0,0,0,.25);
  color:var(--text-light);
  cursor:pointer;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: transform .18s ease, background .18s ease, opacity .18s ease;
}
.arrow:hover{ transform: translateY(-50%) scale(1.04); background: rgba(0,0,0,.32); }
.arrow.prev{ left:18px; }
.arrow.next{ right:18px; }

.dots{
  position:absolute;
  z-index:6;
  left:50%;
  transform: translateX(-50%);
  bottom: 18px;
  display:flex;
  gap:8px;
  padding: 10px 12px;
  border-radius:999px;
  background: rgba(0,0,0,.22);
  border:1px solid rgba(255,255,255,.12);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.dot{
  width:8px; height:8px;
  border-radius:999px;
  border:0;
  background: rgba(255,255,255,.35);
  cursor:pointer;
  transition: transform .2s ease, background .2s ease, width .2s ease;
}
.dot.active{
  background: rgba(255,255,255,.92);
  width:22px;
}
.hero-hint{
  position:absolute;
  z-index:7;
  left:50%;
  transform: translateX(-50%);
  bottom: 64px;
  font-size: 12px;
  color: rgba(255,255,255,.72);
  letter-spacing:.2px;
  user-select:none;
  pointer-events:none;
}

/* Responsive */
@media (max-width: 860px){
  .nav-links{ display:none; }
  .burger{ display:inline-block; }
  .arrow{ display:none; } /* mobilde swipe + dots yeter */
  .slide-content{
    left:18px;
    bottom: 92px;
    max-width: 560px;
  }
}


/* ===== About (full-screen section) ===== */
.about{
  min-height: 100vh;
  display:flex;
  align-items:center;
  padding: 110px 18px 90px;
  background:
    radial-gradient(900px 600px at 18% 25%, rgba(200,167,90,.10), transparent 60%),
    radial-gradient(800px 520px at 80% 70%, rgba(11,18,32,.06), transparent 55%),
    var(--bg-main);
}

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

.about-grid{
  display:grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 26px;
  align-items:center;
}

.eyebrow{
  margin:0 0 10px;
  color: rgba(15,23,42,.60);
  letter-spacing: .28em;
  font-size: 12px;
  text-transform: uppercase;
}

.about-text h2{
  margin:0 0 12px;
  font-size: clamp(28px, 3.2vw, 44px);
  letter-spacing: -.02em;
  color: var(--text-dark);
}

.lead{
  margin:0 0 12px;
  font-size: 16px;
  line-height: 1.75;
  color: rgba(15,23,42,.76);
  max-width: 60ch;
}

.muted{
  margin:0 0 18px;
  line-height: 1.75;
  color: rgba(15,23,42,.62);
  max-width: 62ch;
}

.about-actions{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
}

.dark-outline{
  border: 1px solid rgba(15,23,42,.14);
  color: rgba(15,23,42,.85);
  background: rgba(255,255,255,.35);
}
.dark-outline:hover{
  background: rgba(255,255,255,.55);
}

.about-cards{
  display:grid;
  gap: 12px;
}

.mini-card{
  padding: 16px 16px;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(15,23,42,.10);
  background: rgba(255,255,255,.70);
  box-shadow: var(--shadow-soft);
  transition: transform .22s ease, box-shadow .22s ease;
}
.mini-card:hover{
  transform: translateY(-2px);
  box-shadow: 0 22px 65px rgba(0,0,0,.10);
}

.mini-title{
  font-weight: 700;
  letter-spacing: -.01em;
  margin-bottom: 6px;
  color: var(--text-dark);
}
.mini-desc{
  color: rgba(15,23,42,.66);
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 860px){
  .about{
    padding: 92px 18px 70px;
  }
  .about-grid{
    grid-template-columns: 1fr;
  }
  .about-cards{
    margin-top: 6px;
  }
}

/* ===== Products (compact, centered, full-screen) ===== */
.products{
  min-height: 100vh;
  padding: 90px 18px 80px;
  display:flex;
  flex-direction:column;
  justify-content:center;
  background:
    radial-gradient(900px 600px at 20% 30%, rgba(200,167,90,.06), transparent 60%),
    var(--bg-main);
}

.products-head{
  max-width: 980px;
  margin: 0 auto 26px;
  text-align:center;
}

.products-head .eyebrow{
  margin:0 0 10px;
  color: rgba(15,23,42,.60);
  letter-spacing: .28em;
  font-size: 12px;
  text-transform: uppercase;
}

.products-head h2{
  margin:0 0 10px;
  font-size: clamp(26px, 3vw, 38px);
  letter-spacing: -.02em;
  color: var(--text-dark);
}

.products-head .muted{
  max-width: 520px;
  margin: 0 auto;
  color: rgba(15,23,42,.62);
  line-height: 1.75;
}

/* GRID */
.products-grid{
  max-width: 980px;
  margin: 0 auto;
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.p-card{
  text-decoration:none;
  color: inherit;
  border-radius: var(--radius-xl);
  overflow:hidden;
  border: 1px solid rgba(15,23,42,.10);
  background: rgba(255,255,255,.78);
  box-shadow: var(--shadow-soft);
  transform: translateZ(0);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.p-card:hover{
  transform: translateY(-3px);
  border-color: rgba(200,167,90,.22);
  box-shadow: 0 28px 80px rgba(0,0,0,.12);
}

.p-media{
  aspect-ratio: 2.8 / 4; /* dikey ama daha kompakt */
  background: rgba(11,18,32,.06);
}

.p-media img{
  width:100%;
  height:100%;
  object-fit: cover;
  object-position: center;
  display:block;
}

.p-body{
  padding: 12px 12px 14px;

}

.p-title{
  font-weight: 750;
  letter-spacing: -.01em;
  margin-bottom: 6px;
  font-size: 18px;
  color: var(--text-dark);
}

.p-desc{
  color: rgba(15,23,42,.66);
  line-height: 1.6;
  font-size: 13px;
  margin-bottom: 12px;
}
.p-button{
  font-weight: 750;
  padding: 12px;
  font-size: 18px;
  background-color: #25d366;
  color: var(--text-light);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  transition: all 0.2s ease-in-out;
}
.p-button:hover{

  background-color: #22be5b;
  color: var(--text-light);

}
.p-button i{
  font-weight: 750;
  margin-right: 6px;
  font-size: 18px;
  color: var(--text-light);
}
/* CTA (bottom centered) */
.products-cta{
  margin-top: 26px;
  display:flex;
  justify-content:center;
}

/* Responsive */
@media (max-width: 960px){
  .products-grid{
    grid-template-columns: 1fr;
    max-width: 360px;
  }
}

/* ===== Contact (full-screen) ===== */
.contact{
  min-height: 100vh;
  padding: 90px 18px 80px;
  display:flex;
  align-items:center;
  background:
    radial-gradient(900px 600px at 70% 30%, rgba(200,167,90,.06), transparent 60%),
    radial-gradient(800px 520px at 20% 80%, rgba(11,18,32,.05), transparent 55%),
    var(--bg-main);
}

.contact-wrap{
  width:100%;
  display:flex;
  justify-content:center;
}

.contact-card{
  width: min(980px, 100%);
  border-radius: var(--radius-xl);
  border: 1px solid rgba(15,23,42,.10);
  background: rgba(255,255,255,.78);
  box-shadow: var(--shadow-soft);
  padding: 22px 18px;
  text-align:center;
}

.contact-card h2{
  margin:0 0 10px;
  font-size: clamp(26px, 3vw, 38px);
  letter-spacing:-.02em;
  color: var(--text-dark);
}

.contact-card .muted{
  max-width: 620px;
  margin: 0 auto 18px;
  color: rgba(15,23,42,.62);
  line-height: 1.75;
}

.contact-grid{
  max-width: 840px;
  margin: 0 auto 18px;
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.c-item{
  border-radius: 18px;
  border: 1px solid rgba(15,23,42,.10);
  background: rgba(255,255,255,.70);
  padding: 14px 14px;
  transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
}

.c-item:hover{
  transform: translateY(-2px);
  border-color: rgba(200,167,90,.22);
  box-shadow: 0 22px 65px rgba(0,0,0,.10);
}

.c-title{
  font-weight: 750;
  margin-bottom: 6px;
  color: var(--text-dark);
}

.c-desc{
  color: rgba(15,23,42,.66);
  line-height: 1.6;
  font-size: 13px;
}

.contact-actions{
  display:flex;
  gap:10px;
  justify-content:center;
  flex-wrap:wrap;
}

/* Responsive */
@media(max-width: 960px){
  .contact-grid{
    grid-template-columns: 1fr;
    max-width: 380px;
  }
}
/* Map box */
.contact-map{
  margin-top: 18px;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(15,23,42,.10);
  box-shadow: var(--shadow-soft);
}

.contact-map iframe{
  width:100%;
  height: 260px;
  border:0;
  display:block;
}


/* ===== Footer ===== */
.site-footer{
  background: var(--bg-dark);
  color: rgba(255,255,255,.86);
  padding: 64px 18px 26px;
}

.footer-grid{
  display:grid;
  grid-template-columns: 1.2fr .9fr .9fr;
  gap: 22px;
  align-items:start;
}

.footer-brand{
  display:inline-flex;
  margin-bottom: 12px;
  text-decoration:none;
}

.site-footer .logo-main{ color: rgba(255,255,255,.95); }
.site-footer .logo-sub{ color: var(--brand-gold); }

.f-text{
  margin: 0 0 14px;
  color: rgba(255,255,255,.70);
  line-height: 1.75;
  max-width: 52ch;
  font-size: 13px;
}

.f-badges{
  display:flex;
  gap:8px;
  flex-wrap:wrap;
}

.badge{
  font-size: 11px;
  padding: 7px 10px;
  border-radius: var(--radius-pill);
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.10);
  color: rgba(255,255,255,.78);
}

.f-title{
  font-weight: 750;
  margin: 6px 0 12px;
  letter-spacing: -.01em;
  color: rgba(255,255,255,.92);
}

.f-links{
  list-style:none;
  margin:0;
  padding:0;
  display:flex;
  flex-direction:column;
  gap:10px;
}

.f-links a{
  color: rgba(255,255,255,.74);
  text-decoration:none;
  font-size: 13px;
  transition: color .18s ease, transform .18s ease;
}

.f-links a:hover{
  color: rgba(255,255,255,.92);
  transform: translateX(2px);
}

.footer-cta{
  margin-top: 14px;
  background: rgba(255,255,255,.92);
  color: var(--bg-dark);
  border: 1px solid rgba(255,255,255,.14);
}

.footer-cta:hover{
  transform: translateY(-1px);
}

.footer-bottom{
  margin-top: 34px;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,.10);
  display:flex;
  justify-content:space-between;
  gap:10px;
  flex-wrap:wrap;
  color: rgba(255,255,255,.62);
  font-size: 12px;
}

.footer-bottom a{
  text-decoration: none;
  color: var(--text-light);
  transition: all 0.2s ease-in-out;
}
.footer-bottom a:hover{
  color: var(--brand-gold-hover);
}
.footer-note{
  color: rgba(255,255,255,.62);
}

/* Responsive */
@media (max-width: 960px){
  .footer-grid{
    grid-template-columns: 1fr;
  }
}
/* ===== Floating Action Buttons (Phone / WhatsApp / Instagram) ===== */

.fab{
  position: fixed;
  right: 0px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 80;
  display:flex;
  flex-direction:column;

}

.fab-btn{
  width:50px;
  height:50px;

  display:flex;
  align-items:center;
  justify-content:center;
  text-decoration:none;
  color:var(--text-light);
  box-shadow: 0 12px 35px rgba(0,0,0,.25);
  transition: transform .2s ease, box-shadow .2s ease;
}

.fab-btn i{
  font-size:20px;
  transition: transform .25s ease;
}

/* Hover */
.fab-btn:hover{
  transform: scale(1.06);
  box-shadow: 0 18px 45px rgba(0,0,0,.35);
}

.fab-btn:hover i{
  transform: scale(1.15);
}

/* Colors */
.fab-btn.phone{
  background: var(--bg-dark);
  border-top-left-radius: 18px;
}

.fab-btn.whatsapp{
  background: #25d366;
}

.fab-btn.instagram{
  background: linear-gradient(135deg,#833ab4,#fd1d1d,#fcb045);
  border-bottom-left-radius: 18px;
}

/* Mobile tweak */
@media(max-width:860px){
  .fab{
    right:0px;
  }
}


/* ===== About Page ===== */
.about-page{
  background: var(--bg-main);
}

.about-hero{
  padding: 120px 18px 70px;
}
.hero-image{
  position:relative;
  padding:140px 18px 100px;
  background:
    linear-gradient(to bottom, rgba(10,15,25,.55), rgba(10,15,25,.55)),
    url("/pc/bosphorus.png") center/cover no-repeat;
  color:var(--text-light);
}

.hero-image h1{
  color:var(--text-light);
}

.hero-image .about-sub{
  color:rgba(255,255,255,.85);
}

.hero-image .about-kicker{
  color:rgba(255,255,255,.75);
}

.about-kicker{
  margin:24px 0 12px;
  letter-spacing:.28em;
  text-transform:uppercase;
  font-size:16px;
  color: rgba(15,23,42,.58);
}

.about-hero h1{
  margin:0 0 14px;
  font-size: clamp(28px, 4vw, 52px);
  letter-spacing:-.02em;
  line-height: 1.12;
  max-width: 22ch;
  color: var(--text-light);
}

.about-sub{
  margin:0;
  max-width: 62ch;
  line-height:1.75;
  color: rgba(15,23,42,.70);
}

.about-section{
  padding: 55px 18px;
}

.about-section.alt{
  background: rgba(11,18,32,.03);
}

.card{
  border-radius: var(--radius-xl);
  border: 1px solid rgba(15,23,42,.10);
  background: rgba(255,255,255,.82);
  box-shadow: var(--shadow-soft);
  padding: 18px 18px;
}

.about-split{
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 16px;
  align-items:start;
}

.about-left p{
  color: rgba(15,23,42,.68);
  line-height: 1.75;
  margin: 0 0 12px;
}

.about-left p:last-child{ margin-bottom:0; }

.values{
  margin: 12px 0 16px;
  padding-left: 18px;
  color: rgba(15,23,42,.72);
  line-height: 1.7;
}

.about-cta{
  width:100%;
  justify-content:center;
}

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

.mini h3{
  margin: 0 0 8px;
  letter-spacing:-.01em;
}

.mini p{
  margin:0;
  color: rgba(15,23,42,.68);
  line-height:1.7;
}

.about-band{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 16px;
  padding: 18px;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(15,23,42,.10);
  background:
    radial-gradient(700px 420px at 20% 20%, rgba(200,167,90,.10), transparent 60%),
    rgba(255,255,255,.82);
  box-shadow: var(--shadow-soft);
}

.about-band h2{
  margin:0 0 6px;
  letter-spacing:-.02em;
}

.about-band .muted{
  margin:0;
  color: rgba(15,23,42,.62);
  line-height:1.7;
  max-width: 62ch;
}

/* Responsive */
@media (max-width: 960px){
  .about-hero{ padding: 96px 18px 56px; }
  .about-split{ grid-template-columns: 1fr; }
  .about-cards{ grid-template-columns: 1fr; }
  .about-band{ flex-direction:column; align-items:flex-start; }
  .about-band .btn{ width:100%; justify-content:center; }
}

/* ===== Contact Page ===== */
.contact-page{
  background: var(--bg-main);
}

.contact-hero{
  padding: 120px 18px 60px;

}
.hero-bg{
  position:relative;
  padding:140px 18px 100px;
  color:#fff;
  background:
    linear-gradient(to bottom, rgba(10,15,25,.65), rgba(10,15,25,.55)),
    url("/pc/dolmabahce.png") center/cover no-repeat;
}

.hero-bg h1{
  color:#fff;
}

.hero-bg .contact-sub{
  color:rgba(255,255,255,.85);
}

.hero-bg .contact-kicker{
  color:rgba(255,255,255,.75);
}

.contact-kicker{
  margin:24px 0 12px;
  letter-spacing:.28em;
  text-transform:uppercase;
  font-size:12px;
  color: rgba(15,23,42,.58);
}

.contact-hero h1{
  margin:0 0 12px;
  font-size: clamp(30px, 4vw, 48px);
  letter-spacing:-.02em;
  color: var(--text-light);
}

.contact-sub{
  margin:0;
  max-width: 70ch;
  color: rgba(15,23,42,.70);
  line-height: 1.75;
}

.contact-section{
  padding: 34px 18px;
}

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

/* reuse .card if you already have it; if not, keep this */
.card{
  border-radius: var(--radius-xl);
  border: 1px solid rgba(15,23,42,.10);
  background: rgba(255,255,255,.82);
  box-shadow: var(--shadow-soft);
  padding: 18px 18px;
}


.contact-buttons {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 20px;
}

.contact-btn {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  border-radius: 14px;
  background: var(--bg-main);
  color: var(--text-dark);
  text-decoration: none;
  box-shadow: var(--shadow-strong);
  transition: all .25s ease;
  font-weight: 500;
}

.contact-btn i {
  font-size: 22px;
}

.contact-btn:hover {

  background: var(--text-dark);
color: var(--text-light);
}

.contact-btn.whatsapp {
  background: #25d366;
  color: var(--text-light);
}

.contact-btn.whatsapp:hover {
  background: var(--text-dark);
}

.contact-btn.passive {
  cursor: default;
  opacity: .8;
}


/* Map */


.map-box iframe{
  width:100%;
  height: 320px;
  border:0;
  display:block;
}

/* Responsive */
@media (max-width: 960px){
  .contact-hero{ padding: 96px 18px 48px; }
  .contact-grid-2{ grid-template-columns: 1fr; }
  .map-box iframe{ height: 280px; }
}

/* ===== Global hero (all pages) ===== */
.page-hero{
  position:relative;
  padding:140px 18px 100px;
  color:#fff;
}

.page-hero::before{
  content:"";
  position:absolute;
  inset:0;
  background: linear-gradient(to bottom, rgba(10,15,25,.70), rgba(10,15,25,.55));
}

.page-hero > .container{
  position:relative;
  z-index:2;
}

.hero-kicker{
  margin:0 0 12px;
  letter-spacing:.28em;
  text-transform:uppercase;
  font-size:12px;
  color:rgba(255,255,255,.75);
}

.page-hero h1{
  margin:0 0 12px;
  font-size: clamp(32px, 4.2vw, 56px);
  letter-spacing:-.02em;
  color:#fff;
}

.hero-sub{
  margin:0;
  max-width: 70ch;
  color:rgba(255,255,255,.86);
  line-height:1.75;
}

/* ===== Products list page ===== */
.products-list{
  padding: 46px 18px 70px;
  background:
    radial-gradient(900px 600px at 20% 20%, rgba(200,167,90,.06), transparent 60%),
    var(--bg-main);
}

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

/* Card */
.pcard{
  border-radius: var(--radius-xl);
  overflow:hidden;
  border: 1px solid rgba(15,23,42,.10);
  background: rgba(255,255,255,.82);
  box-shadow: var(--shadow-soft);
  transform: translateZ(0);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.pcard:hover{
  transform: translateY(-4px);
  border-color: rgba(200,167,90,.24);
  box-shadow: 0 30px 90px rgba(0,0,0,.14);
}

.pcard-media{
  display:block;
  background: rgba(11,18,32,.05);
}

.pcard-media img{
  width:100%;
  height: 400px;
  object-fit: cover;
  object-position: center;
  display:block;
}

.pcard-body{
  padding: 14px 14px 16px;
  display:flex;
  flex-direction:column;
  gap: 8px;
}

.pcard-title{
  margin:0;
  font-size: 18px;
  letter-spacing:-.01em;
  color: var(--text-dark);
}

.pcard-desc{
  margin:0;
  color: rgba(15,23,42,.66);
  line-height: 1.65;
  font-size: 13px;
}

.pcard-btn{
  margin-top: 6px;
  width:100%;
  justify-content:center;
}

/* Responsive */
@media(max-width: 960px){
  .p-grid{ grid-template-columns: 1fr; }
  .pcard-media img{ height: 320px; }
}


/* ===== Product Detail Page ===== */
.product-section{
  padding: 46px 18px 70px;
  background:
    radial-gradient(900px 600px at 20% 20%, rgba(200,167,90,.06), transparent 60%),
    var(--bg-main);
}

.product-grid{
  display:grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 16px;
  align-items:start;
}

.card{
  border-radius: var(--radius-xl);
  border: 1px solid rgba(15,23,42,.10);
  background: rgba(255,255,255,.82);
  box-shadow: var(--shadow-soft);
  padding: 16px;
}

/* Gallery */
.gallery-main{
  border-radius: 18px;
  overflow:hidden;
  border: 1px solid rgba(15,23,42,.10);
  background: rgba(11,18,32,.04);
}

.zoom{
  position:relative;
  width:100%;
  aspect-ratio: 1 / 1;
  overflow:hidden;
  cursor: zoom-in;
  background: rgba(11,18,32,.04);
}

.zoom img{
  width:100%;
  height:100%;
  object-fit: contain;
  object-position:center;
  display:block;
  transform-origin: 50% 50%;
  transition: transform .12s ease;
  user-select:none;
  -webkit-user-select:none;
}

.zoom.is-zooming img{
  transform: scale(2);
}





.thumbs{
  display:flex;
  gap:10px;
  margin-top: 12px;
}

.thumb{
  border: 1px solid rgba(15,23,42,.12);
  background: rgba(255,255,255,.70);
  border-radius: 14px;
  padding: 6px;
  cursor:pointer;
  transition: transform .18s ease, border-color .18s ease;
}

.thumb img{
  width:72px;
  height:72px;
  object-fit: cover;
  border-radius: 10px;
  display:block;
}

.thumb:hover{ transform: translateY(-2px); }
.thumb.is-active{ border-color: rgba(200,167,90,.35); }

.tiny-note{
  margin: 12px 0 0;
  font-size: 12px;
  color: rgba(15,23,42,.60);
}

/* Info */
.pbadge{
  display:inline-flex;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(200,167,90,.12);
  border: 1px solid rgba(200,167,90,.18);
  color: rgba(15,23,42,.74);
  font-size: 12px;
  margin: 0 0 10px;
}

.ptitle{
  margin: 0 0 10px;
  font-size: 28px;
  letter-spacing:-.02em;
  color: var(--text-dark);
}

.pdesc{
  margin: 0 0 14px;
  color: rgba(15,23,42,.70);
  line-height: 1.75;
}

.pspecs{
  margin-top: 10px;
  padding-top: 12px;
  border-top: 1px solid rgba(15,23,42,.10);
}

.pspecs h3{
  margin: 0 0 10px;
  font-size: 14px;
  letter-spacing:-.01em;
}

.pspecs ul{
  margin:0;
  padding-left: 18px;
  color: rgba(15,23,42,.72);
  line-height: 1.8;
}

.pactions{
  margin-top: 14px;
  display:flex;
  gap:10px;
  flex-wrap:wrap;
}

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

.p-wp{
  background:#25d366;
  color:#fff;
  border: 1px solid rgba(0,0,0,.06);
}

.p-wp i{ font-size: 18px; }

.pmini{
  margin-top: 14px;
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:10px;
}

.pmini-item{
  border-radius: 16px;
  border: 1px solid rgba(15,23,42,.10);
  background: rgba(255,255,255,.70);
  padding: 12px;
}

.pmini-title{
  font-weight: 750;
  margin-bottom: 6px;
}

.pmini-text{
  font-size: 13px;
  color: rgba(15,23,42,.64);
  line-height: 1.6;
}

/* Mobile */
@media(max-width: 960px){
  .product-grid{ grid-template-columns: 1fr; }
  .zoom{ cursor: default; background-size: cover; background-position:center; }
  .zoom img{ opacity:1 !important; }
  .pmini{ grid-template-columns: 1fr; }
}


