
:root{
  --bg:#0e1014;
  --bg2:#141820;
  --card:#191d26;
  --card2:#202632;
  --text:#f5f1e9;
  --muted:#b9b2a6;
  --gold:#c9a45c;
  --gold2:#ead08a;
  --line:rgba(255,255,255,.12);
  --shadow:0 24px 80px rgba(0,0,0,.38);
  --radius:26px;
}

*{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth}
body{
  font-family:Arial,Helvetica,sans-serif;
  background:
    radial-gradient(circle at top left, rgba(201,164,92,.16), transparent 34%),
    radial-gradient(circle at 80% 12%, rgba(255,255,255,.07), transparent 28%),
    var(--bg);
  color:var(--text);
  line-height:1.65;
}
a{text-decoration:none;color:inherit}
.container{width:min(1180px,calc(100% - 40px));margin:auto}

.topbar{
  position:fixed;top:0;left:0;width:100%;z-index:99;
  background:rgba(14,16,20,.76);
  backdrop-filter:blur(18px);
  border-bottom:1px solid var(--line);
}
.nav{
  height:76px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:22px;
}
.logo{
  display:flex;
  align-items:center;
  gap:12px;
  font-weight:800;
  letter-spacing:.4px;
}
.logo-mark{
  width:42px;height:42px;border-radius:14px;
  background:linear-gradient(135deg,var(--gold2),var(--gold));
  color:#111;
  display:grid;place-items:center;
  font-weight:900;
  box-shadow:0 16px 34px rgba(201,164,92,.22);
}
.logo span{font-size:20px}
.menu{
  display:flex;
  align-items:center;
  gap:21px;
  color:var(--muted);
  font-size:14px;
}
.menu a{transition:.22s ease}
.menu a:hover,.menu a.active{color:var(--gold2)}
.nav-btn{
  padding:11px 18px;border-radius:999px;
  background:var(--text);color:#111;
  font-size:14px;font-weight:800;
  transition:.22s ease;
}
.nav-btn:hover{background:var(--gold2);transform:translateY(-2px)}
.menu-toggle{
  display:none;background:transparent;color:var(--text);
  border:1px solid var(--line);border-radius:12px;
  padding:9px 12px;font-size:20px;cursor:pointer;
}

.hero{
  min-height:92vh;
  padding:145px 0 80px;
  display:flex;
  align-items:center;
}
.hero-inner{
  display:grid;
  grid-template-columns:1.04fr .96fr;
  gap:50px;
  align-items:center;
}
.eyebrow{
  display:inline-flex;
  gap:10px;align-items:center;
  padding:8px 14px;border:1px solid var(--line);
  border-radius:999px;background:rgba(255,255,255,.04);
  color:var(--gold2);font-size:13px;margin-bottom:22px;
}
.eyebrow:before{
  content:"";width:8px;height:8px;border-radius:50%;
  background:var(--gold);box-shadow:0 0 18px var(--gold);
}
h1{
  font-size:clamp(42px,6vw,82px);
  line-height:.98;
  letter-spacing:-3px;
  margin-bottom:25px;
}
h1 strong{color:var(--gold2)}
.lead{
  color:var(--muted);
  font-size:18px;
  max-width:640px;
  margin-bottom:32px;
}
.actions{display:flex;flex-wrap:wrap;gap:14px}
.btn{
  min-height:50px;
  display:inline-flex;align-items:center;justify-content:center;
  padding:0 22px;border-radius:999px;
  border:1px solid transparent;
  font-weight:800;
  transition:.22s ease;
}
.btn:hover{transform:translateY(-3px)}
.btn-primary{background:linear-gradient(135deg,var(--gold2),var(--gold));color:#111;box-shadow:0 16px 36px rgba(201,164,92,.22)}
.btn-secondary{border-color:var(--line);background:rgba(255,255,255,.04);color:var(--text)}

.visual-card{
  min-height:540px;
  position:relative;
  border-radius:36px;
  overflow:hidden;
  border:1px solid var(--line);
  background:
    linear-gradient(160deg,rgba(255,255,255,.10),rgba(255,255,255,.02)),
    linear-gradient(135deg,#252b38,#101218);
  box-shadow:var(--shadow);
}
.visual-card:before{
  content:"";position:absolute;inset:26px;
  border:1px solid rgba(255,255,255,.11);
  border-radius:28px;
}
.visual-card:after{
  content:"";position:absolute;width:440px;height:440px;border-radius:50%;
  top:-160px;right:-170px;
  background:radial-gradient(circle,rgba(234,208,138,.34),transparent 68%);
}
.visual-title{
  position:absolute;z-index:3;left:36px;top:36px;
}
.visual-title small{color:var(--muted);display:block}
.visual-title b{font-size:28px;color:var(--gold2)}
.city{
  position:absolute;left:50%;bottom:36px;transform:translateX(-50%);
  width:74%;height:70%;
  display:grid;grid-template-columns:repeat(5,1fr);gap:10px;align-items:end;
}
.tower{
  border-radius:18px 18px 4px 4px;
  border:1px solid rgba(255,255,255,.13);
  background:linear-gradient(180deg,rgba(245,241,233,.23),rgba(245,241,233,.05));
  position:relative;overflow:hidden;
}
.tower:nth-child(1){height:52%}
.tower:nth-child(2){height:74%}
.tower:nth-child(3){height:100%;background:linear-gradient(180deg,rgba(234,208,138,.46),rgba(201,164,92,.12))}
.tower:nth-child(4){height:66%}
.tower:nth-child(5){height:46%}
.tower:before{
  content:"";position:absolute;inset:14px 10px;
  background-image:
    linear-gradient(rgba(255,255,255,.16) 1px,transparent 1px),
    linear-gradient(90deg,rgba(255,255,255,.12) 1px,transparent 1px);
  background-size:25px 25px;
}
section{padding:88px 0}
.section-head{
  display:flex;align-items:end;justify-content:space-between;gap:28px;
  margin-bottom:34px;
}
.section-head h2{
  font-size:clamp(31px,4vw,54px);
  line-height:1.05;
  letter-spacing:-1.6px;
}
.section-head p{color:var(--muted);max-width:560px}

.grid-5{display:grid;grid-template-columns:repeat(5,1fr);gap:18px}
.grid-3{display:grid;grid-template-columns:repeat(3,1fr);gap:18px}
.grid-2{display:grid;grid-template-columns:repeat(2,1fr);gap:18px}

.card{
  border-radius:var(--radius);
  background:linear-gradient(180deg,rgba(255,255,255,.07),rgba(255,255,255,.025));
  border:1px solid var(--line);
  padding:25px;
  transition:.22s ease;
  position:relative;
  overflow:hidden;
}
.card:hover{
  transform:translateY(-6px);
  border-color:rgba(234,208,138,.42);
  background:linear-gradient(180deg,rgba(234,208,138,.12),rgba(255,255,255,.025));
}
.card h3{font-size:22px;line-height:1.2;margin:18px 0 10px}
.card p{color:var(--muted);font-size:14.5px}
.icon{
  width:56px;height:56px;border-radius:19px;
  display:grid;place-items:center;
  border:1px solid rgba(234,208,138,.22);
  background:rgba(234,208,138,.11);
  color:var(--gold2);
  font-size:26px;
}
.read-more{
  display:inline-flex;
  margin-top:22px;
  color:var(--gold2);
  font-weight:800;
  font-size:14px;
}

.dark-section{
  background:rgba(255,255,255,.025);
  border-top:1px solid var(--line);
  border-bottom:1px solid var(--line);
}
.info-box{
  padding:38px;
  border-radius:34px;
  border:1px solid var(--line);
  background:
    linear-gradient(135deg,rgba(234,208,138,.15),rgba(255,255,255,.035)),
    var(--card);
  box-shadow:var(--shadow);
}
.info-box h2{
  font-size:clamp(32px,4vw,56px);
  line-height:1.04;
  letter-spacing:-1.5px;
  margin-bottom:18px;
}
.info-box p{color:var(--muted)}
.list{
  display:grid;
  gap:12px;
  margin-top:22px;
}
.list li{
  list-style:none;
  padding:16px 18px;
  border-radius:18px;
  border:1px solid var(--line);
  background:rgba(14,16,20,.38);
  color:var(--muted);
}
.list li b{color:var(--text)}
.page-hero{
  padding:145px 0 70px;
}
.page-title{
  display:grid;
  grid-template-columns:1fr .75fr;
  gap:40px;
  align-items:end;
}
.page-title h1{
  font-size:clamp(42px,6vw,76px);
}
.breadcrumb{
  color:var(--muted);
  font-size:14px;
  margin-bottom:14px;
}
.breadcrumb a{color:var(--gold2)}
.page-panel{
  border-radius:32px;
  padding:30px;
  border:1px solid var(--line);
  background:linear-gradient(135deg,rgba(234,208,138,.14),rgba(255,255,255,.035));
}
.page-panel b{
  color:var(--gold2);
  font-size:34px;
  display:block;
  line-height:1;
  margin-bottom:10px;
}
.page-panel span{color:var(--muted)}
.feature-card{
  min-height:240px;
}
.split{
  display:grid;
  grid-template-columns:.95fr 1.05fr;
  gap:22px;
  align-items:stretch;
}
.cta{
  padding:50px;
  border-radius:36px;
  border:1px solid var(--line);
  background:
    radial-gradient(circle at 80% 10%,rgba(234,208,138,.22),transparent 35%),
    linear-gradient(135deg,rgba(255,255,255,.08),rgba(255,255,255,.025));
}
.cta h2{
  font-size:clamp(32px,4vw,52px);
  line-height:1.06;
  letter-spacing:-1.3px;
  margin-bottom:16px;
}
.cta p{color:var(--muted);max-width:650px;margin-bottom:26px}
.contact-grid{
  display:grid;
  grid-template-columns:1fr .85fr;
  gap:24px;
}
.contact-row{
  padding:18px;border-radius:18px;
  border:1px solid var(--line);
  background:rgba(14,16,20,.42);
  color:var(--muted);
}
.contact-row b{display:block;color:var(--text);margin-bottom:4px}
.footer{
  padding:32px 0;
  border-top:1px solid var(--line);
  color:var(--muted);
  font-size:14px;
}
.footer-inner{display:flex;justify-content:space-between;gap:16px;flex-wrap:wrap}

@media(max-width:1120px){
  .grid-5{grid-template-columns:repeat(2,1fr)}
  .hero-inner,.page-title,.split,.contact-grid{grid-template-columns:1fr}
  .visual-card{min-height:430px}
}
@media(max-width:760px){
  .container{width:min(100% - 28px,1180px)}
  .nav{height:70px}
  .menu{
    display:none;
    position:fixed;
    left:14px;right:14px;top:82px;
    padding:18px;border-radius:22px;
    flex-direction:column;align-items:flex-start;
    background:rgba(14,16,20,.97);
    border:1px solid var(--line);
  }
  .menu.open{display:flex}
  .nav-btn{display:none}
  .menu-toggle{display:block}
  .hero,.page-hero{padding-top:115px}
  h1{letter-spacing:-2px}
  .grid-5,.grid-3,.grid-2{grid-template-columns:1fr}
  .section-head{display:block}
  .section-head p{margin-top:12px}
  .visual-card{min-height:350px}
  .city{width:84%;height:64%}
  .info-box,.cta{padding:26px}
  section{padding:66px 0}
}


/* ==============================
   OZBEN MIMARLIK SPECIAL PAGE
   ============================== */

.arch-body {
  background:
    radial-gradient(circle at 10% 0%, rgba(183,137,50,.15), transparent 28%),
    linear-gradient(180deg, #f2eee9 0%, #ebe6df 46%, #111216 46%, #111216 100%);
  color: #1c1b19;
}

.arch-body .topbar {
  background: rgba(242,238,233,.82);
  border-bottom: 1px solid rgba(120,88,32,.18);
}

.arch-body .menu {
  color: #5a554c;
}

.arch-body .menu a:hover,
.arch-body .menu a.active {
  color: #a67a22;
}

.arch-body .nav-btn {
  background: #151515;
  color: #f5f1e9;
}

.arch-body .menu-toggle {
  color: #151515;
  border-color: rgba(0,0,0,.15);
}

.arch-hero {
  padding: 128px 0 78px;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.arch-hero-grid {
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  gap: 46px;
  align-items: center;
}

.arch-logo-card {
  background: rgba(255,255,255,.54);
  border: 1px solid rgba(166,122,34,.25);
  border-radius: 34px;
  padding: 34px;
  box-shadow: 0 28px 80px rgba(54,43,23,.12);
}

.arch-logo-card img {
  width: 100%;
  border-radius: 24px;
  display: block;
  mix-blend-mode: multiply;
}

.arch-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #a67a22;
  border: 1px solid rgba(166,122,34,.28);
  background: rgba(255,255,255,.45);
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 20px;
}

.arch-kicker::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #a67a22;
}

.arch-title h1 {
  color: #171614;
  font-size: clamp(44px, 6vw, 82px);
  line-height: .96;
  letter-spacing: -3px;
  margin-bottom: 24px;
}

.arch-title h1 strong {
  color: #a67a22;
}

.arch-title p {
  color: #5e5a52;
  font-size: 18px;
  max-width: 690px;
  margin-bottom: 30px;
}

.arch-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.arch-btn-dark {
  background: #151515;
  color: #f5f1e9;
}

.arch-btn-outline {
  border-color: rgba(0,0,0,.15);
  color: #151515;
  background: rgba(255,255,255,.44);
}

.arch-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 34px;
}

.arch-stat {
  background: rgba(255,255,255,.45);
  border: 1px solid rgba(166,122,34,.20);
  border-radius: 22px;
  padding: 18px;
}

.arch-stat b {
  display: block;
  color: #a67a22;
  font-size: 26px;
  line-height: 1;
  margin-bottom: 7px;
}

.arch-stat span {
  color: #5e5a52;
  font-size: 13px;
}

.arch-dark {
  background: #111216;
  color: #f5f1e9;
  border-top: 1px solid rgba(255,255,255,.08);
}

.arch-dark .section-head h2,
.arch-dark h2,
.arch-dark h3 {
  color: #f5f1e9;
}

.arch-dark .section-head p,
.arch-dark p {
  color: #bdb6aa;
}

.arch-services {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.arch-service {
  background: linear-gradient(180deg, rgba(255,255,255,.07), rgba(255,255,255,.025));
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 26px;
  padding: 25px;
}

.arch-service span {
  color: #d4ad60;
  font-size: 28px;
}

.arch-service h3 {
  margin: 16px 0 9px;
  font-size: 21px;
}

.arch-gallery {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 18px;
}

.arch-project {
  grid-column: span 4;
  border-radius: 28px;
  overflow: hidden;
  background: #191b21;
  border: 1px solid rgba(255,255,255,.11);
  box-shadow: 0 24px 60px rgba(0,0,0,.22);
  transition: .25s ease;
}

.arch-project:hover {
  transform: translateY(-6px);
  border-color: rgba(212,173,96,.42);
}

.arch-project.featured {
  grid-column: span 8;
}

.arch-project img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
}

.arch-project.featured img {
  height: 380px;
}

.arch-project-content {
  padding: 22px;
}

.arch-project-content small {
  color: #d4ad60;
  font-weight: 800;
  letter-spacing: .8px;
}

.arch-project-content h3 {
  margin: 8px 0 8px;
  font-size: 24px;
}

.arch-project-content p {
  color: #bdb6aa;
  font-size: 14.5px;
}

.arch-about {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 24px;
  align-items: stretch;
}

.arch-about-card {
  border-radius: 32px;
  padding: 34px;
  background:
    radial-gradient(circle at 85% 10%, rgba(212,173,96,.20), transparent 34%),
    linear-gradient(135deg, rgba(255,255,255,.08), rgba(255,255,255,.025));
  border: 1px solid rgba(255,255,255,.11);
}

.arch-about-card h2 {
  font-size: clamp(32px, 4vw, 54px);
  line-height: 1.05;
  letter-spacing: -1.4px;
  margin-bottom: 16px;
}

.arch-list {
  display: grid;
  gap: 12px;
}

.arch-list li {
  list-style: none;
  padding: 17px 18px;
  border-radius: 18px;
  background: rgba(255,255,255,.045);
  border: 1px solid rgba(255,255,255,.10);
  color: #bdb6aa;
}

.arch-list b {
  color: #f5f1e9;
}

.arch-cta {
  background:
    linear-gradient(135deg, rgba(212,173,96,.18), rgba(255,255,255,.05)),
    #17191f;
  border: 1px solid rgba(255,255,255,.11);
  border-radius: 36px;
  padding: 48px;
  display: grid;
  grid-template-columns: 1fr .75fr;
  gap: 26px;
  align-items: center;
}

.arch-cta h2 {
  font-size: clamp(32px, 4vw, 54px);
  line-height: 1.05;
  letter-spacing: -1.3px;
  margin-bottom: 14px;
}

.arch-contact {
  display: grid;
  gap: 12px;
}

.arch-contact div {
  background: rgba(0,0,0,.22);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 18px;
  padding: 17px;
  color: #bdb6aa;
}

.arch-contact b {
  display: block;
  color: #f5f1e9;
}

.lightbox-modal {
  position: fixed;
  inset: 0;
  z-index: 999;
  background: rgba(0,0,0,.88);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 28px;
}

.lightbox-modal.open {
  display: flex;
}

.lightbox-modal img {
  max-width: min(96vw, 1500px);
  max-height: 88vh;
  border-radius: 18px;
  box-shadow: 0 30px 90px rgba(0,0,0,.45);
}

.lightbox-modal button {
  position: absolute;
  top: 22px;
  right: 24px;
  border: 1px solid rgba(255,255,255,.22);
  background: rgba(255,255,255,.10);
  color: white;
  border-radius: 999px;
  width: 44px;
  height: 44px;
  cursor: pointer;
  font-size: 22px;
}

@media(max-width: 1080px) {
  .arch-hero-grid,
  .arch-about,
  .arch-cta {
    grid-template-columns: 1fr;
  }

  .arch-services {
    grid-template-columns: repeat(2, 1fr);
  }

  .arch-project,
  .arch-project.featured {
    grid-column: span 6;
  }
}

@media(max-width: 760px) {
  .arch-hero {
    padding-top: 112px;
  }

  .arch-title h1 {
    letter-spacing: -2px;
  }

  .arch-stats,
  .arch-services {
    grid-template-columns: 1fr;
  }

  .arch-project,
  .arch-project.featured {
    grid-column: span 12;
  }

  .arch-project img,
  .arch-project.featured img {
    height: 235px;
  }

  .arch-logo-card,
  .arch-cta {
    padding: 24px;
  }

  .arch-body .menu {
    background: rgba(242,238,233,.98);
  }
}


/* ==============================
   BEN MOTORS SPECIAL PAGE
   ============================== */

.motors-body {
  background:
    radial-gradient(circle at 90% 10%, rgba(214,162,70,.16), transparent 26%),
    linear-gradient(180deg, #0d0e11 0%, #121419 58%, #0d0e11 100%);
  color: #f6f1e7;
}

.motors-body .topbar {
  background: rgba(13,14,17,.82);
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.motors-hero {
  min-height: 100vh;
  padding: 132px 0 80px;
  display: flex;
  align-items: center;
}

.motors-hero-grid {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 42px;
  align-items: center;
}

.motors-logo-card {
  padding: 28px;
  border-radius: 32px;
  background:
    linear-gradient(135deg, rgba(214,162,70,.18), rgba(255,255,255,.03)),
    #16181d;
  border: 1px solid rgba(255,255,255,.10);
  box-shadow: 0 28px 80px rgba(0,0,0,.38);
}

.motors-logo-card img {
  width: 100%;
  border-radius: 24px;
  display: block;
}

.motors-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(214,162,70,.28);
  background: rgba(214,162,70,.08);
  color: #d6a246;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 18px;
}

.motors-kicker::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #d6a246;
  box-shadow: 0 0 16px #d6a246;
}

.motors-title h1 {
  font-size: clamp(44px, 6vw, 82px);
  line-height: .97;
  letter-spacing: -3px;
  margin-bottom: 22px;
  color: #f6f1e7;
}

.motors-title h1 strong {
  color: #d6a246;
}

.motors-title p {
  color: #bdb6aa;
  font-size: 18px;
  max-width: 680px;
  margin-bottom: 28px;
}

.motors-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.motors-btn-dark {
  background: linear-gradient(135deg, #e0bb63, #b98525);
  color: #111;
}

.motors-btn-outline {
  border-color: rgba(255,255,255,.12);
  color: #f6f1e7;
  background: rgba(255,255,255,.04);
}

.motors-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 34px;
}

.motors-stat {
  padding: 18px;
  border-radius: 20px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.09);
}

.motors-stat b {
  display: block;
  color: #d6a246;
  font-size: 26px;
  line-height: 1;
  margin-bottom: 7px;
}

.motors-stat span {
  color: #bdb6aa;
  font-size: 13px;
}

.motors-dark {
  background: #0f1115;
  border-top: 1px solid rgba(255,255,255,.08);
}

.motors-dark .section-head h2,
.motors-dark h2,
.motors-dark h3 {
  color: #f6f1e7;
}

.motors-dark .section-head p,
.motors-dark p {
  color: #bdb6aa;
}

.motors-services {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.motors-service {
  border-radius: 24px;
  padding: 24px;
  background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.02));
  border: 1px solid rgba(255,255,255,.09);
}

.motors-service span {
  font-size: 28px;
  color: #d6a246;
}

.motors-service h3 {
  margin: 15px 0 8px;
  font-size: 21px;
}

.motors-service p {
  font-size: 14.5px;
  color: #bdb6aa;
}

.motors-inventory {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.motors-car {
  border-radius: 30px;
  overflow: hidden;
  background: #171a21;
  border: 1px solid rgba(255,255,255,.10);
  box-shadow: 0 24px 60px rgba(0,0,0,.26);
}

.motors-car img {
  width: 100%;
  height: 330px;
  object-fit: cover;
  display: block;
}

.motors-car-content {
  padding: 24px;
}

.motors-car-content small {
  display: inline-block;
  color: #d6a246;
  font-weight: 800;
  letter-spacing: .8px;
  margin-bottom: 8px;
}

.motors-car-content h3 {
  font-size: 27px;
  margin-bottom: 8px;
}

.motors-car-content p {
  color: #bdb6aa;
  margin-bottom: 16px;
}

.motors-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}

.motors-tags span {
  padding: 7px 11px;
  border-radius: 999px;
  background: rgba(214,162,70,.10);
  border: 1px solid rgba(214,162,70,.20);
  color: #e3c37e;
  font-size: 12px;
  font-weight: 700;
}

.motors-car-content .read-more {
  color: #e3c37e;
}

.motors-about {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 22px;
}

.motors-about-card {
  border-radius: 32px;
  padding: 34px;
  background:
    radial-gradient(circle at 85% 10%, rgba(214,162,70,.18), transparent 35%),
    linear-gradient(135deg, rgba(255,255,255,.08), rgba(255,255,255,.03));
  border: 1px solid rgba(255,255,255,.10);
}

.motors-about-card h2 {
  font-size: clamp(32px, 4vw, 54px);
  line-height: 1.05;
  letter-spacing: -1.3px;
  margin-bottom: 16px;
}

.motors-list {
  display: grid;
  gap: 12px;
}

.motors-list li {
  list-style: none;
  padding: 17px 18px;
  border-radius: 18px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.09);
  color: #bdb6aa;
}

.motors-list b {
  color: #f6f1e7;
}

.motors-cta {
  border-radius: 36px;
  padding: 48px;
  display: grid;
  grid-template-columns: 1fr .75fr;
  gap: 26px;
  align-items: center;
  background:
    linear-gradient(135deg, rgba(214,162,70,.18), rgba(255,255,255,.05)),
    #17191f;
  border: 1px solid rgba(255,255,255,.10);
}

.motors-cta h2 {
  font-size: clamp(32px, 4vw, 54px);
  line-height: 1.05;
  letter-spacing: -1.3px;
  margin-bottom: 14px;
}

.motors-contact {
  display: grid;
  gap: 12px;
}

.motors-contact div {
  background: rgba(0,0,0,.22);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 18px;
  padding: 17px;
  color: #bdb6aa;
}

.motors-contact b {
  display: block;
  color: #f6f1e7;
}

@media(max-width: 1080px) {
  .motors-hero-grid,
  .motors-about,
  .motors-cta,
  .motors-inventory {
    grid-template-columns: 1fr;
  }

  .motors-services {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media(max-width: 760px) {
  .motors-hero {
    padding-top: 112px;
  }

  .motors-title h1 {
    letter-spacing: -2px;
  }

  .motors-stats,
  .motors-services {
    grid-template-columns: 1fr;
  }

  .motors-car img {
    height: 240px;
  }

  .motors-logo-card,
  .motors-cta {
    padding: 24px;
  }
}


/* ==============================
   OZBEN INSAAT SPECIAL PAGE
   ============================== */

.insaat-body {
  background:
    radial-gradient(circle at 82% 8%, rgba(190,155,75,.24), transparent 30%),
    radial-gradient(circle at 12% 20%, rgba(255,255,255,.06), transparent 24%),
    #0f1115;
  color: #f5f1e9;
}

.insaat-body .topbar {
  background: rgba(15,17,21,.78);
  border-bottom: 1px solid rgba(255,255,255,.10);
}

.insaat-body .menu a.active,
.insaat-body .menu a:hover {
  color: #d9bc72;
}

.insaat-hero {
  min-height: 100vh;
  padding: 132px 0 82px;
  display: flex;
  align-items: center;
}

.insaat-hero-grid {
  display: grid;
  grid-template-columns: .86fr 1.14fr;
  gap: 48px;
  align-items: center;
}

.insaat-logo-card {
  position: relative;
  border-radius: 36px;
  padding: 30px;
  background:
    linear-gradient(145deg, rgba(217,188,114,.17), rgba(255,255,255,.045)),
    #171a21;
  border: 1px solid rgba(217,188,114,.24);
  box-shadow: 0 28px 80px rgba(0,0,0,.38);
  overflow: hidden;
}

.insaat-logo-card::before {
  content: "";
  position: absolute;
  width: 430px;
  height: 430px;
  top: -170px;
  right: -180px;
  background: radial-gradient(circle, rgba(217,188,114,.32), transparent 70%);
}

.insaat-logo-card img {
  width: 100%;
  border-radius: 28px;
  display: block;
  position: relative;
  z-index: 2;
  background: #fff;
}

.insaat-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #d9bc72;
  border: 1px solid rgba(217,188,114,.28);
  background: rgba(255,255,255,.045);
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
  margin-bottom: 20px;
}

.insaat-kicker::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #d9bc72;
  box-shadow: 0 0 18px #d9bc72;
}

.insaat-title h1 {
  font-size: clamp(44px, 6vw, 84px);
  line-height: .96;
  letter-spacing: -3px;
  margin-bottom: 24px;
}

.insaat-title h1 strong {
  color: #d9bc72;
}

.insaat-title p {
  color: #beb7ab;
  font-size: 18px;
  max-width: 720px;
  margin-bottom: 30px;
}

.insaat-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 34px;
}

.insaat-stat {
  background: rgba(255,255,255,.045);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 22px;
  padding: 18px;
}

.insaat-stat b {
  display: block;
  color: #d9bc72;
  font-size: 27px;
  line-height: 1;
  margin-bottom: 7px;
}

.insaat-stat span {
  color: #beb7ab;
  font-size: 13px;
}

.insaat-section {
  padding: 88px 0;
  background: #111216;
  border-top: 1px solid rgba(255,255,255,.08);
}

.insaat-section .section-head h2 {
  color: #f5f1e9;
}

.insaat-section .section-head p {
  color: #beb7ab;
}

.project-category {
  margin-bottom: 56px;
}

.category-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  margin-bottom: 22px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(255,255,255,.10);
}

.category-title h3 {
  font-size: clamp(28px, 4vw, 46px);
  line-height: 1.05;
  letter-spacing: -1.2px;
  color: #f5f1e9;
}

.category-title span {
  color: #d9bc72;
  font-weight: 900;
  border: 1px solid rgba(217,188,114,.25);
  background: rgba(217,188,114,.08);
  padding: 8px 13px;
  border-radius: 999px;
  font-size: 13px;
  white-space: nowrap;
}

.insaat-project-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.insaat-project-card {
  border-radius: 32px;
  overflow: hidden;
  background: #191b21;
  border: 1px solid rgba(255,255,255,.10);
  box-shadow: 0 24px 70px rgba(0,0,0,.26);
  transition: .24s ease;
}

.insaat-project-card:hover {
  transform: translateY(-7px);
  border-color: rgba(217,188,114,.42);
}

.insaat-project-card img {
  width: 100%;
  height: 410px;
  object-fit: cover;
  display: block;
}

.insaat-project-info {
  padding: 24px;
}

.insaat-project-info small {
  color: #d9bc72;
  font-weight: 900;
  letter-spacing: .8px;
}

.insaat-project-info h3 {
  font-size: 25px;
  color: #f5f1e9;
  margin: 8px 0 8px;
}

.insaat-project-info p {
  color: #beb7ab;
  font-size: 14.8px;
}

.insaat-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.insaat-tags span {
  font-size: 12px;
  color: #d9bc72;
  border: 1px solid rgba(217,188,114,.25);
  background: rgba(217,188,114,.08);
  border-radius: 999px;
  padding: 6px 10px;
}

.insaat-process {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 24px;
}

.insaat-panel {
  border-radius: 34px;
  padding: 34px;
  background:
    radial-gradient(circle at 80% 0%, rgba(217,188,114,.18), transparent 34%),
    linear-gradient(135deg, rgba(255,255,255,.08), rgba(255,255,255,.025));
  border: 1px solid rgba(255,255,255,.10);
}

.insaat-panel h2 {
  font-size: clamp(32px, 4vw, 54px);
  line-height: 1.05;
  letter-spacing: -1.4px;
  margin-bottom: 16px;
  color: #f5f1e9;
}

.insaat-panel p {
  color: #beb7ab;
}

.insaat-list {
  display: grid;
  gap: 12px;
}

.insaat-list li {
  list-style: none;
  padding: 17px 18px;
  border-radius: 18px;
  background: rgba(255,255,255,.045);
  border: 1px solid rgba(255,255,255,.10);
  color: #beb7ab;
}

.insaat-list b {
  color: #f5f1e9;
}

.insaat-cta {
  border-radius: 36px;
  padding: 48px;
  display: grid;
  grid-template-columns: 1fr .75fr;
  gap: 28px;
  align-items: center;
  background:
    linear-gradient(135deg, rgba(217,188,114,.18), rgba(255,255,255,.04)),
    #17191f;
  border: 1px solid rgba(255,255,255,.10);
}

.insaat-cta h2 {
  font-size: clamp(32px, 4vw, 54px);
  line-height: 1.05;
  letter-spacing: -1.4px;
  margin-bottom: 15px;
}

.insaat-cta p {
  color: #beb7ab;
  max-width: 650px;
  margin-bottom: 25px;
}

.insaat-contact {
  display: grid;
  gap: 12px;
}

.insaat-contact div {
  background: rgba(0,0,0,.22);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 18px;
  padding: 17px;
  color: #beb7ab;
}

.insaat-contact b {
  display: block;
  color: #f5f1e9;
}

@media(max-width: 1080px) {
  .insaat-hero-grid,
  .insaat-process,
  .insaat-cta {
    grid-template-columns: 1fr;
  }
}

@media(max-width: 820px) {
  .insaat-project-grid {
    grid-template-columns: 1fr;
  }

  .insaat-project-card img {
    height: 300px;
  }
}

@media(max-width: 760px) {
  .insaat-hero {
    padding-top: 112px;
  }

  .insaat-title h1 {
    letter-spacing: -2px;
  }

  .insaat-stats {
    grid-template-columns: 1fr;
  }

  .insaat-logo-card,
  .insaat-panel,
  .insaat-cta {
    padding: 24px;
  }

  .category-title {
    display: block;
  }

  .category-title span {
    display: inline-flex;
    margin-top: 12px;
  }
}


/* ==============================
   OZBEN YAPI MARKET SPECIAL PAGE
   ============================== */

.market-body {
  background:
    radial-gradient(circle at 80% 6%, rgba(203,164,82,.25), transparent 30%),
    radial-gradient(circle at 8% 18%, rgba(255,255,255,.06), transparent 24%),
    #0f1115;
  color: #f5f1e9;
}

.market-body .topbar {
  background: rgba(15,17,21,.78);
  border-bottom: 1px solid rgba(255,255,255,.10);
}

.market-body .menu a.active,
.market-body .menu a:hover {
  color: #d9bc72;
}

.market-hero {
  min-height: 100vh;
  padding: 132px 0 82px;
  display: flex;
  align-items: center;
}

.market-hero-grid {
  display: grid;
  grid-template-columns: .88fr 1.12fr;
  gap: 48px;
  align-items: center;
}

.market-logo-card {
  position: relative;
  border-radius: 36px;
  padding: 30px;
  background:
    linear-gradient(145deg, rgba(217,188,114,.17), rgba(255,255,255,.045)),
    #171a21;
  border: 1px solid rgba(217,188,114,.24);
  box-shadow: 0 28px 80px rgba(0,0,0,.38);
  overflow: hidden;
}

.market-logo-card::before {
  content: "";
  position: absolute;
  width: 430px;
  height: 430px;
  top: -170px;
  right: -180px;
  background: radial-gradient(circle, rgba(217,188,114,.32), transparent 70%);
}

.market-logo-card img {
  width: 100%;
  border-radius: 28px;
  display: block;
  position: relative;
  z-index: 2;
  background: #fff;
}

.market-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #d9bc72;
  border: 1px solid rgba(217,188,114,.28);
  background: rgba(255,255,255,.045);
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
  margin-bottom: 20px;
}

.market-kicker::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #d9bc72;
  box-shadow: 0 0 18px #d9bc72;
}

.market-title h1 {
  font-size: clamp(44px, 6vw, 84px);
  line-height: .96;
  letter-spacing: -3px;
  margin-bottom: 24px;
}

.market-title h1 strong {
  color: #d9bc72;
}

.market-title p {
  color: #beb7ab;
  font-size: 18px;
  max-width: 720px;
  margin-bottom: 30px;
}

.market-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 34px;
}

.market-stat {
  background: rgba(255,255,255,.045);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 22px;
  padding: 18px;
}

.market-stat b {
  display: block;
  color: #d9bc72;
  font-size: 27px;
  line-height: 1;
  margin-bottom: 7px;
}

.market-stat span {
  color: #beb7ab;
  font-size: 13px;
}

.market-section {
  padding: 88px 0;
  background: #111216;
  border-top: 1px solid rgba(255,255,255,.08);
}

.market-section .section-head h2 {
  color: #f5f1e9;
}

.market-section .section-head p {
  color: #beb7ab;
}

.market-category-strip {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
  margin-bottom: 34px;
}

.market-category {
  padding: 16px;
  border-radius: 18px;
  background: rgba(255,255,255,.045);
  border: 1px solid rgba(255,255,255,.10);
  color: #beb7ab;
  font-size: 13px;
  text-align: center;
  transition: .22s ease;
}

.market-category b {
  display: block;
  color: #d9bc72;
  font-size: 20px;
  margin-bottom: 5px;
}

.market-category:hover {
  transform: translateY(-4px);
  border-color: rgba(217,188,114,.42);
}

.market-showcase {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.market-product-card {
  overflow: hidden;
  border-radius: 30px;
  background: #191b21;
  border: 1px solid rgba(255,255,255,.10);
  box-shadow: 0 22px 60px rgba(0,0,0,.25);
  transition: .24s ease;
}

.market-product-card:hover {
  transform: translateY(-7px);
  border-color: rgba(217,188,114,.42);
}

.market-product-card img {
  width: 100%;
  height: 255px;
  object-fit: cover;
  display: block;
}

.market-product-info {
  padding: 22px;
}

.market-product-info small {
  color: #d9bc72;
  font-weight: 900;
  letter-spacing: .8px;
}

.market-product-info h3 {
  color: #f5f1e9;
  font-size: 24px;
  margin: 8px 0 8px;
}

.market-product-info p {
  color: #beb7ab;
  font-size: 14.5px;
}

.market-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.market-tags span {
  font-size: 12px;
  color: #d9bc72;
  border: 1px solid rgba(217,188,114,.25);
  background: rgba(217,188,114,.08);
  border-radius: 999px;
  padding: 6px 10px;
}

.brand-wall {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.brand-card {
  min-height: 190px;
  border-radius: 26px;
  padding: 23px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.07), rgba(255,255,255,.025));
  border: 1px solid rgba(255,255,255,.10);
  transition: .24s ease;
}

.brand-card:hover {
  transform: translateY(-6px);
  border-color: rgba(217,188,114,.42);
}

.brand-card small {
  color: #d9bc72;
  font-weight: 900;
  letter-spacing: .8px;
}

.brand-card h3 {
  color: #f5f1e9;
  font-size: 23px;
  margin: 10px 0 8px;
}

.brand-card p {
  color: #beb7ab;
  font-size: 14.5px;
}

.market-service-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 24px;
}

.market-panel {
  border-radius: 34px;
  padding: 34px;
  background:
    radial-gradient(circle at 80% 0%, rgba(217,188,114,.18), transparent 34%),
    linear-gradient(135deg, rgba(255,255,255,.08), rgba(255,255,255,.025));
  border: 1px solid rgba(255,255,255,.10);
}

.market-panel h2 {
  font-size: clamp(32px, 4vw, 54px);
  line-height: 1.05;
  letter-spacing: -1.4px;
  margin-bottom: 16px;
  color: #f5f1e9;
}

.market-panel p {
  color: #beb7ab;
}

.market-list {
  display: grid;
  gap: 12px;
}

.market-list li {
  list-style: none;
  padding: 17px 18px;
  border-radius: 18px;
  background: rgba(255,255,255,.045);
  border: 1px solid rgba(255,255,255,.10);
  color: #beb7ab;
}

.market-list b {
  color: #f5f1e9;
}

.market-cta {
  border-radius: 36px;
  padding: 48px;
  display: grid;
  grid-template-columns: 1fr .75fr;
  gap: 28px;
  align-items: center;
  background:
    linear-gradient(135deg, rgba(217,188,114,.18), rgba(255,255,255,.04)),
    #17191f;
  border: 1px solid rgba(255,255,255,.10);
}

.market-cta h2 {
  font-size: clamp(32px, 4vw, 54px);
  line-height: 1.05;
  letter-spacing: -1.4px;
  margin-bottom: 15px;
}

.market-cta p {
  color: #beb7ab;
  max-width: 650px;
  margin-bottom: 25px;
}

.market-contact {
  display: grid;
  gap: 12px;
}

.market-contact div {
  background: rgba(0,0,0,.22);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 18px;
  padding: 17px;
  color: #beb7ab;
}

.market-contact b {
  display: block;
  color: #f5f1e9;
}

@media(max-width: 1180px) {
  .market-category-strip {
    grid-template-columns: repeat(3, 1fr);
  }

  .market-showcase,
  .brand-wall {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media(max-width: 1080px) {
  .market-hero-grid,
  .market-service-grid,
  .market-cta {
    grid-template-columns: 1fr;
  }
}

@media(max-width: 760px) {
  .market-hero {
    padding-top: 112px;
  }

  .market-title h1 {
    letter-spacing: -2px;
  }

  .market-stats,
  .market-category-strip,
  .market-showcase,
  .brand-wall {
    grid-template-columns: 1fr;
  }

  .market-logo-card,
  .market-panel,
  .market-cta {
    padding: 24px;
  }

  .market-product-card img {
    height: 230px;
  }
}


/* ==============================
   GLOBAL HEADER LOGO ONLY + PRO ANIMATIONS
   ============================== */

.logo.logo-only {
  width: 86px;
  height: 62px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  overflow: visible;
}

.logo.logo-only img {
  width: 70px;
  height: 58px;
  object-fit: contain;
  display: block;
  border-radius: 10px;
  background: rgba(255,255,255,.92);
  padding: 3px;
  box-shadow: 0 12px 32px rgba(0,0,0,.18);
}

.topbar {
  transition: .28s ease;
}

.topbar.scrolled {
  background: rgba(15,17,21,.88) !important;
  box-shadow: 0 14px 40px rgba(0,0,0,.26);
}

.home-pro {
  background:
    radial-gradient(circle at 78% 8%, rgba(217,188,114,.24), transparent 30%),
    radial-gradient(circle at 8% 18%, rgba(255,255,255,.06), transparent 24%),
    #0f1115;
  color: #f5f1e9;
}

.home-hero-pro {
  min-height: 100vh;
  padding: 132px 0 82px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.home-hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(115deg, rgba(255,255,255,.04), transparent 32%),
    repeating-linear-gradient(90deg, rgba(255,255,255,.035) 0 1px, transparent 1px 120px);
  opacity: .65;
  animation: gridMove 18s linear infinite;
  pointer-events: none;
}

.home-hero-pro::before {
  content: "";
  position: absolute;
  width: 620px;
  height: 620px;
  border-radius: 50%;
  right: -260px;
  top: 120px;
  background: radial-gradient(circle, rgba(217,188,114,.24), transparent 68%);
  animation: glowPulse 5.4s ease-in-out infinite;
}

.home-hero-grid-pro {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  gap: 52px;
  align-items: center;
}

.home-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #d9bc72;
  border: 1px solid rgba(217,188,114,.28);
  background: rgba(255,255,255,.045);
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
  margin-bottom: 20px;
}

.home-eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #d9bc72;
  box-shadow: 0 0 18px #d9bc72;
}

.home-hero-content h1 {
  font-size: clamp(44px, 6vw, 86px);
  line-height: .94;
  letter-spacing: -3px;
  margin-bottom: 24px;
}

.home-hero-content h1 strong {
  color: #d9bc72;
}

.home-hero-content p {
  color: #beb7ab;
  font-size: 18px;
  max-width: 720px;
  margin-bottom: 30px;
}

.home-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 34px;
}

.home-metrics div {
  background: rgba(255,255,255,.045);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 22px;
  padding: 18px;
  backdrop-filter: blur(12px);
}

.home-metrics b {
  display: block;
  color: #d9bc72;
  font-size: 27px;
  line-height: 1;
  margin-bottom: 7px;
}

.home-metrics span {
  color: #beb7ab;
  font-size: 13px;
}

.home-hero-logo {
  display: flex;
  justify-content: center;
}

.home-logo-orbit {
  width: min(470px, 92vw);
  aspect-ratio: 1;
  border-radius: 50%;
  position: relative;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle, rgba(255,255,255,.08), rgba(255,255,255,.015) 62%, transparent 63%);
  border: 1px solid rgba(217,188,114,.20);
  box-shadow: 0 34px 90px rgba(0,0,0,.34);
}

.home-logo-orbit img {
  width: 72%;
  border-radius: 28px;
  background: rgba(255,255,255,.95);
  padding: 18px;
  position: relative;
  z-index: 3;
  box-shadow: 0 25px 70px rgba(0,0,0,.28);
  animation: logoFloat 4.6s ease-in-out infinite;
}

.orbit {
  position: absolute;
  inset: 22px;
  border-radius: 50%;
  border: 1px solid rgba(217,188,114,.28);
  animation: spin 18s linear infinite;
}

.orbit::after {
  content: "";
  position: absolute;
  width: 12px;
  height: 12px;
  background: #d9bc72;
  border-radius: 50%;
  top: 10%;
  left: 22%;
  box-shadow: 0 0 18px #d9bc72;
}

.orbit-2 {
  inset: 58px;
  border-color: rgba(255,255,255,.14);
  animation-duration: 26s;
  animation-direction: reverse;
}

.home-pro-section {
  padding: 88px 0;
  background: #111216;
  border-top: 1px solid rgba(255,255,255,.08);
}

.home-pro-section .section-head h2 {
  color: #f5f1e9;
}

.home-pro-section .section-head p {
  color: #beb7ab;
}

.business-grid-pro {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}

.business-card-pro {
  min-height: 390px;
  display: flex;
  flex-direction: column;
  border-radius: 30px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255,255,255,.075), rgba(255,255,255,.025));
  border: 1px solid rgba(255,255,255,.10);
  box-shadow: 0 22px 60px rgba(0,0,0,.22);
  transition: transform .28s ease, border-color .28s ease, box-shadow .28s ease;
  position: relative;
}

.business-card-pro::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 70% 8%, rgba(217,188,114,.18), transparent 34%);
  opacity: 0;
  transition: .28s ease;
}

.business-card-pro:hover {
  transform: translateY(-10px);
  border-color: rgba(217,188,114,.45);
  box-shadow: 0 32px 90px rgba(0,0,0,.34);
}

.business-card-pro:hover::before {
  opacity: 1;
}

.business-logo {
  height: 172px;
  background:
    linear-gradient(145deg, rgba(217,188,114,.12), rgba(255,255,255,.05)),
    rgba(255,255,255,.035);
  display: grid;
  place-items: center;
  padding: 18px;
  border-bottom: 1px solid rgba(255,255,255,.09);
  position: relative;
  z-index: 2;
}

.business-logo img {
  max-width: 100%;
  max-height: 128px;
  object-fit: contain;
  border-radius: 18px;
  background: rgba(255,255,255,.95);
  padding: 8px;
  transition: .28s ease;
}

.business-card-pro:hover .business-logo img {
  transform: scale(1.05);
}

.business-content {
  padding: 22px;
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.business-content small {
  color: #d9bc72;
  font-weight: 900;
  letter-spacing: .9px;
}

.business-content h3 {
  color: #f5f1e9;
  font-size: 23px;
  line-height: 1.15;
  margin: 9px 0 10px;
}

.business-content p {
  color: #beb7ab;
  font-size: 14.2px;
  margin-bottom: 20px;
}

.business-content span {
  color: #d9bc72;
  font-weight: 900;
  margin-top: auto;
}

.home-split-section {
  background:
    radial-gradient(circle at 15% 10%, rgba(217,188,114,.13), transparent 30%),
    #0f1115;
}

.home-split-pro {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 24px;
}

.home-split-card {
  border-radius: 34px;
  padding: 36px;
  background:
    linear-gradient(135deg, rgba(217,188,114,.16), rgba(255,255,255,.035)),
    #17191f;
  border: 1px solid rgba(255,255,255,.10);
}

.home-split-card h2 {
  color: #f5f1e9;
  font-size: clamp(32px, 4vw, 54px);
  line-height: 1.05;
  letter-spacing: -1.4px;
  margin-bottom: 16px;
}

.home-split-card p {
  color: #beb7ab;
}

.home-process-list {
  display: grid;
  gap: 14px;
}

.home-process-list div {
  display: grid;
  grid-template-columns: 58px 1fr;
  column-gap: 18px;
  padding: 22px;
  border-radius: 24px;
  background: rgba(255,255,255,.045);
  border: 1px solid rgba(255,255,255,.10);
}

.home-process-list b {
  width: 58px;
  height: 58px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  background: rgba(217,188,114,.12);
  border: 1px solid rgba(217,188,114,.25);
  color: #d9bc72;
  grid-row: span 2;
}

.home-process-list h3 {
  color: #f5f1e9;
  margin-bottom: 5px;
}

.home-process-list p {
  color: #beb7ab;
  font-size: 14.5px;
}

.home-cta-pro {
  border-radius: 38px;
  padding: 52px;
  background:
    linear-gradient(135deg, rgba(217,188,114,.18), rgba(255,255,255,.04)),
    #17191f;
  border: 1px solid rgba(255,255,255,.10);
  box-shadow: 0 28px 80px rgba(0,0,0,.28);
}

.home-cta-pro h2 {
  color: #f5f1e9;
  font-size: clamp(32px, 4vw, 56px);
  line-height: 1.05;
  letter-spacing: -1.4px;
  margin-bottom: 15px;
  max-width: 860px;
}

.home-cta-pro p {
  color: #beb7ab;
  max-width: 720px;
  margin-bottom: 25px;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .75s ease, transform .75s ease;
}

.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 { transition-delay: .08s; }
.delay-2 { transition-delay: .16s; }
.delay-3 { transition-delay: .24s; }
.delay-4 { transition-delay: .32s; }

.magnetic-btn {
  position: relative;
  overflow: hidden;
}

.magnetic-btn::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, transparent, rgba(255,255,255,.28), transparent);
  transform: translateX(-130%);
  transition: .55s ease;
}

.magnetic-btn:hover::after {
  transform: translateX(130%);
}

@keyframes gridMove {
  from { transform: translateX(0); }
  to { transform: translateX(-120px); }
}

@keyframes glowPulse {
  0%, 100% { opacity: .62; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.08); }
}

@keyframes logoFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

@media(max-width: 1180px) {
  .business-grid-pro {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media(max-width: 1080px) {
  .home-hero-grid-pro,
  .home-split-pro {
    grid-template-columns: 1fr;
  }

  .home-hero-logo {
    order: -1;
  }
}

@media(max-width: 760px) {
  .logo.logo-only {
    width: 72px;
    height: 56px;
  }

  .logo.logo-only img {
    width: 60px;
    height: 50px;
  }

  .home-hero-pro {
    padding-top: 112px;
  }

  .home-hero-content h1 {
    letter-spacing: -2px;
  }

  .home-metrics,
  .business-grid-pro {
    grid-template-columns: 1fr;
  }

  .home-logo-orbit {
    width: min(330px, 86vw);
  }

  .business-card-pro {
    min-height: auto;
  }

  .home-split-card,
  .home-cta-pro {
    padding: 26px;
  }

  .home-process-list div {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .home-process-list b {
    grid-row: auto;
  }
}


/* ==============================
   GLOBAL WHITE HEADER OVERRIDE
   ============================== */

.topbar,
.home-pro .topbar,
.market-body .topbar,
.insaat-body .topbar,
.motors-body .topbar,
.arch-body .topbar {
  background: rgba(255,255,255,.94) !important;
  border-bottom: 1px solid rgba(0,0,0,.08) !important;
  box-shadow: 0 10px 34px rgba(0,0,0,.08);
  backdrop-filter: blur(18px);
}

.topbar.scrolled,
.home-pro .topbar.scrolled,
.market-body .topbar.scrolled,
.insaat-body .topbar.scrolled,
.motors-body .topbar.scrolled,
.arch-body .topbar.scrolled {
  background: rgba(255,255,255,.98) !important;
  box-shadow: 0 16px 42px rgba(0,0,0,.12) !important;
}

.menu,
.home-pro .menu,
.market-body .menu,
.insaat-body .menu,
.motors-body .menu,
.arch-body .menu {
  color: #222222 !important;
}

.menu a,
.home-pro .menu a,
.market-body .menu a,
.insaat-body .menu a,
.motors-body .menu a,
.arch-body .menu a {
  color: #222222 !important;
}

.menu a:hover,
.menu a.active,
.home-pro .menu a:hover,
.home-pro .menu a.active,
.market-body .menu a:hover,
.market-body .menu a.active,
.insaat-body .menu a:hover,
.insaat-body .menu a.active,
.motors-body .menu a:hover,
.motors-body .menu a.active,
.arch-body .menu a:hover,
.arch-body .menu a.active {
  color: #a67a22 !important;
}

.nav-btn,
.home-pro .nav-btn,
.market-body .nav-btn,
.insaat-body .nav-btn,
.motors-body .nav-btn,
.arch-body .nav-btn {
  background: #111111 !important;
  color: #ffffff !important;
}

.nav-btn:hover,
.home-pro .nav-btn:hover,
.market-body .nav-btn:hover,
.insaat-body .nav-btn:hover,
.motors-body .nav-btn:hover,
.arch-body .nav-btn:hover {
  background: #c9a45c !important;
  color: #111111 !important;
}

.menu-toggle,
.home-pro .menu-toggle,
.market-body .menu-toggle,
.insaat-body .menu-toggle,
.motors-body .menu-toggle,
.arch-body .menu-toggle {
  color: #111111 !important;
  border-color: rgba(0,0,0,.18) !important;
  background: rgba(0,0,0,.03) !important;
}

.logo.logo-only img {
  background: transparent !important;
  box-shadow: none !important;
}

@media(max-width: 760px) {
  .menu,
  .home-pro .menu,
  .market-body .menu,
  .insaat-body .menu,
  .motors-body .menu,
  .arch-body .menu {
    background: rgba(255,255,255,.98) !important;
    border: 1px solid rgba(0,0,0,.10) !important;
    box-shadow: 0 18px 45px rgba(0,0,0,.14);
  }
}


/* ==============================
   OZBEN GAYRIMENKUL SPECIAL PAGE
   ============================== */

.real-body {
  background:
    radial-gradient(circle at 78% 8%, rgba(188,153,84,.22), transparent 30%),
    radial-gradient(circle at 8% 18%, rgba(255,255,255,.07), transparent 24%),
    #0f1115;
  color: #f5f1e9;
}

.real-body .topbar {
  background: rgba(255,255,255,.94) !important;
  border-bottom: 1px solid rgba(0,0,0,.08) !important;
}

.real-body .menu a.active,
.real-body .menu a:hover {
  color: #a67a22 !important;
}

.real-hero {
  min-height: 100vh;
  padding: 132px 0 82px;
  display: flex;
  align-items: center;
}

.real-hero-grid {
  display: grid;
  grid-template-columns: .88fr 1.12fr;
  gap: 48px;
  align-items: center;
}

.real-logo-card {
  position: relative;
  border-radius: 36px;
  padding: 30px;
  background:
    linear-gradient(145deg, rgba(217,188,114,.17), rgba(255,255,255,.045)),
    #171a21;
  border: 1px solid rgba(217,188,114,.24);
  box-shadow: 0 28px 80px rgba(0,0,0,.38);
  overflow: hidden;
}

.real-logo-card::before {
  content: "";
  position: absolute;
  width: 430px;
  height: 430px;
  top: -170px;
  right: -180px;
  background: radial-gradient(circle, rgba(217,188,114,.32), transparent 70%);
}

.real-logo-card img {
  width: 100%;
  border-radius: 28px;
  display: block;
  position: relative;
  z-index: 2;
  background: #fff;
}

.real-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #d9bc72;
  border: 1px solid rgba(217,188,114,.28);
  background: rgba(255,255,255,.045);
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
  margin-bottom: 20px;
}

.real-kicker::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #d9bc72;
  box-shadow: 0 0 18px #d9bc72;
}

.real-title h1 {
  font-size: clamp(44px, 6vw, 84px);
  line-height: .96;
  letter-spacing: -3px;
  margin-bottom: 24px;
}

.real-title h1 strong {
  color: #d9bc72;
}

.real-title p {
  color: #beb7ab;
  font-size: 18px;
  max-width: 720px;
  margin-bottom: 30px;
}

.real-search-box {
  margin-top: 34px;
  padding: 18px;
  border-radius: 28px;
  background: rgba(255,255,255,.055);
  border: 1px solid rgba(255,255,255,.12);
  display: grid;
  grid-template-columns: repeat(4, 1fr) auto;
  gap: 10px;
  backdrop-filter: blur(14px);
}

.real-search-box div {
  padding: 13px 14px;
  border-radius: 16px;
  background: rgba(0,0,0,.22);
  border: 1px solid rgba(255,255,255,.08);
  color: #beb7ab;
  font-size: 13px;
}

.real-search-box b {
  display: block;
  color: #f5f1e9;
  font-size: 14px;
  margin-bottom: 2px;
}

.real-section {
  padding: 88px 0;
  background: #111216;
  border-top: 1px solid rgba(255,255,255,.08);
}

.real-section .section-head h2 {
  color: #f5f1e9;
}

.real-section .section-head p {
  color: #beb7ab;
}

.real-filter-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 30px;
}

.real-tab {
  padding: 10px 15px;
  border-radius: 999px;
  border: 1px solid rgba(217,188,114,.25);
  background: rgba(217,188,114,.08);
  color: #d9bc72;
  font-weight: 800;
  font-size: 13px;
}

.listing-group {
  margin-bottom: 60px;
}

.listing-title {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 22px;
  padding-bottom: 18px;
  margin-bottom: 22px;
  border-bottom: 1px solid rgba(255,255,255,.10);
}

.listing-title h3 {
  color: #f5f1e9;
  font-size: clamp(28px, 4vw, 46px);
  line-height: 1.05;
  letter-spacing: -1.2px;
}

.listing-title span {
  color: #d9bc72;
  font-weight: 900;
  border: 1px solid rgba(217,188,114,.25);
  background: rgba(217,188,114,.08);
  padding: 8px 13px;
  border-radius: 999px;
  font-size: 13px;
  white-space: nowrap;
}

.real-listing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.real-card {
  border-radius: 30px;
  overflow: hidden;
  background: #191b21;
  border: 1px solid rgba(255,255,255,.10);
  box-shadow: 0 24px 70px rgba(0,0,0,.25);
  transition: .24s ease;
}

.real-card:hover {
  transform: translateY(-8px);
  border-color: rgba(217,188,114,.44);
  box-shadow: 0 32px 90px rgba(0,0,0,.34);
}

.real-card-img {
  position: relative;
  height: 260px;
  overflow: hidden;
}

.real-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: .35s ease;
}

.real-card:hover .real-card-img img {
  transform: scale(1.055);
}

.real-badge {
  position: absolute;
  left: 16px;
  top: 16px;
  background: rgba(0,0,0,.68);
  border: 1px solid rgba(255,255,255,.16);
  color: #fff;
  border-radius: 999px;
  padding: 8px 12px;
  font-size: 12px;
  font-weight: 900;
}

.real-badge.gold {
  color: #d9bc72;
}

.real-card-body {
  padding: 22px;
}

.real-card-body small {
  color: #d9bc72;
  font-weight: 900;
  letter-spacing: .8px;
}

.real-card-body h3 {
  color: #f5f1e9;
  font-size: 24px;
  margin: 7px 0 6px;
}

.real-location {
  color: #beb7ab;
  font-size: 14px;
  margin-bottom: 12px;
}

.real-price {
  color: #d9bc72;
  font-size: 23px;
  font-weight: 900;
  margin-bottom: 12px;
}

.real-card-body p {
  color: #beb7ab;
  font-size: 14.5px;
  margin-bottom: 18px;
}

.real-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}

.real-features span {
  padding: 8px 10px;
  border-radius: 12px;
  background: rgba(255,255,255,.045);
  border: 1px solid rgba(255,255,255,.08);
  color: #beb7ab;
  font-size: 12.5px;
}

.real-services {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 24px;
}

.real-panel {
  border-radius: 34px;
  padding: 34px;
  background:
    radial-gradient(circle at 80% 0%, rgba(217,188,114,.18), transparent 34%),
    linear-gradient(135deg, rgba(255,255,255,.08), rgba(255,255,255,.025));
  border: 1px solid rgba(255,255,255,.10);
}

.real-panel h2 {
  font-size: clamp(32px, 4vw, 54px);
  line-height: 1.05;
  letter-spacing: -1.4px;
  margin-bottom: 16px;
  color: #f5f1e9;
}

.real-panel p {
  color: #beb7ab;
}

.real-list {
  display: grid;
  gap: 12px;
}

.real-list li {
  list-style: none;
  padding: 17px 18px;
  border-radius: 18px;
  background: rgba(255,255,255,.045);
  border: 1px solid rgba(255,255,255,.10);
  color: #beb7ab;
}

.real-list b {
  color: #f5f1e9;
}

.real-cta {
  border-radius: 36px;
  padding: 48px;
  display: grid;
  grid-template-columns: 1fr .75fr;
  gap: 28px;
  align-items: center;
  background:
    linear-gradient(135deg, rgba(217,188,114,.18), rgba(255,255,255,.04)),
    #17191f;
  border: 1px solid rgba(255,255,255,.10);
}

.real-cta h2 {
  font-size: clamp(32px, 4vw, 54px);
  line-height: 1.05;
  letter-spacing: -1.4px;
  margin-bottom: 15px;
}

.real-cta p {
  color: #beb7ab;
  max-width: 650px;
  margin-bottom: 25px;
}

.real-contact {
  display: grid;
  gap: 12px;
}

.real-contact div {
  background: rgba(0,0,0,.22);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 18px;
  padding: 17px;
  color: #beb7ab;
}

.real-contact b {
  display: block;
  color: #f5f1e9;
}

@media(max-width: 1180px) {
  .real-listing-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .real-search-box {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media(max-width: 1080px) {
  .real-hero-grid,
  .real-services,
  .real-cta {
    grid-template-columns: 1fr;
  }
}

@media(max-width: 760px) {
  .real-hero {
    padding-top: 112px;
  }

  .real-title h1 {
    letter-spacing: -2px;
  }

  .real-listing-grid,
  .real-search-box {
    grid-template-columns: 1fr;
  }

  .real-logo-card,
  .real-panel,
  .real-cta {
    padding: 24px;
  }

  .listing-title {
    display: block;
  }

  .listing-title span {
    display: inline-flex;
    margin-top: 12px;
  }
}


/* ==============================
   OZBEN CONTACT PAGE
   ============================== */

.contact-body {
  background:
    radial-gradient(circle at 82% 6%, rgba(217,188,114,.22), transparent 30%),
    radial-gradient(circle at 8% 18%, rgba(255,255,255,.07), transparent 24%),
    #0f1115;
  color: #f5f1e9;
}

.contact-hero {
  min-height: 82vh;
  padding: 132px 0 82px;
  display: flex;
  align-items: center;
}

.contact-hero-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 48px;
  align-items: center;
}

.contact-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #d9bc72;
  border: 1px solid rgba(217,188,114,.28);
  background: rgba(255,255,255,.045);
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
  margin-bottom: 20px;
}

.contact-kicker::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #d9bc72;
  box-shadow: 0 0 18px #d9bc72;
}

.contact-hero-content h1 {
  font-size: clamp(44px, 6vw, 82px);
  line-height: .96;
  letter-spacing: -3px;
  margin-bottom: 24px;
}

.contact-hero-content h1 strong {
  color: #d9bc72;
}

.contact-hero-content p {
  color: #beb7ab;
  font-size: 18px;
  max-width: 720px;
  margin-bottom: 30px;
}

.contact-fast-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.contact-info-panel {
  border-radius: 36px;
  padding: 32px;
  background:
    radial-gradient(circle at 85% 10%, rgba(217,188,114,.18), transparent 34%),
    linear-gradient(135deg, rgba(255,255,255,.08), rgba(255,255,255,.025));
  border: 1px solid rgba(255,255,255,.10);
  box-shadow: 0 28px 80px rgba(0,0,0,.32);
  display: grid;
  gap: 14px;
}

.contact-info-panel div {
  padding: 20px;
  border-radius: 22px;
  background: rgba(0,0,0,.22);
  border: 1px solid rgba(255,255,255,.09);
}

.contact-info-panel small {
  color: #d9bc72;
  font-weight: 900;
  display: block;
  margin-bottom: 6px;
}

.contact-info-panel b {
  color: #f5f1e9;
  font-size: 18px;
}

.contact-section {
  padding: 88px 0;
  background: #111216;
  border-top: 1px solid rgba(255,255,255,.08);
}

.contact-section .section-head h2 {
  color: #f5f1e9;
}

.contact-section .section-head p {
  color: #beb7ab;
}

.contact-dark {
  background:
    radial-gradient(circle at 15% 10%, rgba(217,188,114,.13), transparent 30%),
    #0f1115;
}

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

.address-card {
  border-radius: 30px;
  padding: 26px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.075), rgba(255,255,255,.025));
  border: 1px solid rgba(255,255,255,.10);
  transition: .24s ease;
}

.address-card:hover {
  transform: translateY(-7px);
  border-color: rgba(217,188,114,.42);
}

.address-icon {
  width: 58px;
  height: 58px;
  border-radius: 20px;
  display: grid;
  place-items: center;
  background: rgba(217,188,114,.12);
  border: 1px solid rgba(217,188,114,.25);
  font-size: 26px;
  margin-bottom: 20px;
}

.address-card small {
  color: #d9bc72;
  font-weight: 900;
  letter-spacing: .8px;
}

.address-card h3 {
  color: #f5f1e9;
  margin: 8px 0 8px;
  font-size: 24px;
}

.address-card p {
  color: #beb7ab;
  font-size: 14.5px;
  margin-bottom: 18px;
}

.address-line {
  padding: 14px 15px;
  border-radius: 16px;
  background: rgba(0,0,0,.22);
  border: 1px solid rgba(255,255,255,.09);
  color: #f5f1e9;
  margin-bottom: 14px;
}

.address-link {
  color: #d9bc72;
  font-weight: 900;
}

.contact-form-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 28px;
  align-items: start;
}

.contact-form-intro h2 {
  font-size: clamp(32px, 4vw, 56px);
  line-height: 1.05;
  letter-spacing: -1.4px;
  margin-bottom: 16px;
  color: #f5f1e9;
}

.contact-form-intro p {
  color: #beb7ab;
  max-width: 620px;
}

.contact-note {
  margin-top: 24px;
  border-radius: 24px;
  padding: 22px;
  background: rgba(255,255,255,.055);
  border: 1px solid rgba(255,255,255,.10);
}

.contact-note b {
  display: block;
  color: #d9bc72;
  margin-bottom: 6px;
}

.contact-note span {
  color: #beb7ab;
}

.contact-form {
  border-radius: 34px;
  padding: 30px;
  background:
    linear-gradient(135deg, rgba(217,188,114,.16), rgba(255,255,255,.035)),
    #17191f;
  border: 1px solid rgba(255,255,255,.10);
  box-shadow: 0 28px 80px rgba(0,0,0,.28);
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: #f5f1e9;
  font-weight: 800;
  font-size: 14px;
  margin-bottom: 15px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(0,0,0,.24);
  color: #f5f1e9;
  border-radius: 16px;
  padding: 14px 15px;
  font: inherit;
  outline: none;
  transition: .22s ease;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: rgba(217,188,114,.62);
  box-shadow: 0 0 0 4px rgba(217,188,114,.11);
}

.contact-form textarea {
  resize: vertical;
}

.contact-submit {
  width: 100%;
  margin-top: 5px;
  border: none;
}

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

.instagram-card {
  min-height: 215px;
  border-radius: 28px;
  padding: 24px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.075), rgba(255,255,255,.025));
  border: 1px solid rgba(255,255,255,.10);
  transition: .24s ease;
  position: relative;
  overflow: hidden;
}

.instagram-card::before {
  content: "";
  position: absolute;
  width: 170px;
  height: 170px;
  border-radius: 50%;
  right: -80px;
  top: -80px;
  background: rgba(217,188,114,.13);
  transition: .24s ease;
}

.instagram-card:hover {
  transform: translateY(-7px);
  border-color: rgba(217,188,114,.42);
}

.instagram-card:hover::before {
  transform: scale(1.3);
}

.instagram-card span {
  position: relative;
  z-index: 2;
  color: #d9bc72;
  font-weight: 900;
  font-size: 13px;
}

.instagram-card h3 {
  position: relative;
  z-index: 2;
  color: #f5f1e9;
  font-size: 23px;
  margin: 12px 0 10px;
}

.instagram-card p {
  position: relative;
  z-index: 2;
  color: #beb7ab;
  font-size: 14.2px;
}

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

@media(max-width: 1080px) {
  .contact-hero-grid,
  .contact-form-grid {
    grid-template-columns: 1fr;
  }

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

@media(max-width: 760px) {
  .contact-hero {
    padding-top: 112px;
  }

  .contact-hero-content h1 {
    letter-spacing: -2px;
  }

  .form-row,
  .instagram-grid {
    grid-template-columns: 1fr;
  }

  .contact-form,
  .address-card {
    padding: 23px;
  }
}


/* ==============================
   OZBEN MIMARLIK PRO REVISION
   ============================== */

.arch-pro-body {
  background:
    radial-gradient(circle at 78% 8%, rgba(201,164,92,.22), transparent 30%),
    radial-gradient(circle at 8% 18%, rgba(255,255,255,.07), transparent 24%),
    #0f1115;
  color: #f5f1e9;
}

.arch-pro-hero {
  min-height: 100vh;
  padding: 132px 0 82px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.arch-pro-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(115deg, rgba(255,255,255,.04), transparent 32%),
    repeating-linear-gradient(90deg, rgba(255,255,255,.032) 0 1px, transparent 1px 120px);
  opacity: .56;
  pointer-events: none;
}

.arch-pro-hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  gap: 50px;
  align-items: center;
}

.arch-pro-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #d9bc72;
  border: 1px solid rgba(217,188,114,.28);
  background: rgba(255,255,255,.045);
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
  margin-bottom: 20px;
}

.arch-pro-kicker::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #d9bc72;
  box-shadow: 0 0 18px #d9bc72;
}

.arch-pro-content h1 {
  font-size: clamp(44px, 6vw, 84px);
  line-height: .96;
  letter-spacing: -3px;
  margin-bottom: 24px;
}

.arch-pro-content h1 strong {
  color: #d9bc72;
}

.arch-pro-content p {
  color: #beb7ab;
  font-size: 18px;
  max-width: 730px;
  margin-bottom: 30px;
}

.arch-pro-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 34px;
}

.arch-pro-metrics div {
  background: rgba(255,255,255,.045);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 22px;
  padding: 18px;
}

.arch-pro-metrics b {
  display: block;
  color: #d9bc72;
  font-size: 27px;
  line-height: 1;
  margin-bottom: 7px;
}

.arch-pro-metrics span {
  color: #beb7ab;
  font-size: 13px;
}

.arch-pro-visual {
  min-height: 520px;
  border-radius: 38px;
  background:
    radial-gradient(circle at 72% 5%, rgba(217,188,114,.25), transparent 34%),
    linear-gradient(145deg, rgba(255,255,255,.085), rgba(255,255,255,.025)),
    #17191f;
  border: 1px solid rgba(255,255,255,.10);
  box-shadow: 0 32px 90px rgba(0,0,0,.34);
  position: relative;
  display: grid;
  place-items: center;
  padding: 34px;
  overflow: hidden;
}

.arch-pro-visual::before {
  content: "";
  position: absolute;
  inset: 28px;
  border: 1px solid rgba(217,188,114,.18);
  border-radius: 30px;
}

.arch-pro-logo-box {
  position: relative;
  z-index: 3;
  width: min(380px, 82%);
  padding: 18px;
  border-radius: 28px;
  background: rgba(255,255,255,.92);
  box-shadow: 0 25px 70px rgba(0,0,0,.28);
  animation: logoFloat 4.6s ease-in-out infinite;
}

.arch-pro-logo-box img {
  width: 100%;
  display: block;
  border-radius: 20px;
}

.arch-pro-mini-card {
  position: absolute;
  z-index: 4;
  padding: 16px 18px;
  border-radius: 20px;
  background: rgba(15,17,21,.72);
  border: 1px solid rgba(255,255,255,.12);
  backdrop-filter: blur(16px);
}

.arch-pro-mini-card.top {
  top: 46px;
  left: 42px;
}

.arch-pro-mini-card.bottom {
  right: 42px;
  bottom: 46px;
}

.arch-pro-mini-card b {
  display: block;
  color: #d9bc72;
  margin-bottom: 4px;
}

.arch-pro-mini-card span {
  color: #beb7ab;
  font-size: 13px;
}

.arch-pro-section {
  padding: 88px 0;
  background: #111216;
  border-top: 1px solid rgba(255,255,255,.08);
}

.arch-pro-section .section-head h2 {
  color: #f5f1e9;
}

.arch-pro-section .section-head p {
  color: #beb7ab;
}

.arch-pro-light {
  background:
    radial-gradient(circle at 12% 8%, rgba(217,188,114,.12), transparent 28%),
    #0f1115;
}

.arch-pro-services {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.arch-pro-service {
  border-radius: 30px;
  padding: 26px;
  min-height: 255px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.075), rgba(255,255,255,.025));
  border: 1px solid rgba(255,255,255,.10);
  transition: .24s ease;
}

.arch-pro-service:hover {
  transform: translateY(-8px);
  border-color: rgba(217,188,114,.42);
}

.arch-pro-service span {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 20px;
  background: rgba(217,188,114,.12);
  border: 1px solid rgba(217,188,114,.25);
  font-size: 26px;
  margin-bottom: 20px;
}

.arch-pro-service h3 {
  color: #f5f1e9;
  font-size: 23px;
  line-height: 1.16;
  margin-bottom: 10px;
}

.arch-pro-service p {
  color: #beb7ab;
  font-size: 14.5px;
}

.arch-pro-about {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 24px;
}

.arch-pro-about-card,
.arch-pro-cta {
  border-radius: 36px;
  padding: 38px;
  background:
    linear-gradient(135deg, rgba(217,188,114,.16), rgba(255,255,255,.035)),
    #17191f;
  border: 1px solid rgba(255,255,255,.10);
  box-shadow: 0 28px 80px rgba(0,0,0,.24);
}

.arch-pro-about-card small,
.arch-pro-cta small {
  color: #d9bc72;
  font-weight: 900;
  letter-spacing: .8px;
}

.arch-pro-about-card h2,
.arch-pro-cta h2 {
  color: #f5f1e9;
  font-size: clamp(32px, 4vw, 56px);
  line-height: 1.05;
  letter-spacing: -1.4px;
  margin: 12px 0 16px;
}

.arch-pro-about-card p,
.arch-pro-cta p {
  color: #beb7ab;
}

.arch-pro-list {
  display: grid;
  gap: 14px;
}

.arch-pro-list div {
  display: grid;
  grid-template-columns: 58px 1fr;
  column-gap: 18px;
  padding: 22px;
  border-radius: 24px;
  background: rgba(255,255,255,.045);
  border: 1px solid rgba(255,255,255,.10);
}

.arch-pro-list b {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: rgba(217,188,114,.12);
  border: 1px solid rgba(217,188,114,.25);
  color: #d9bc72;
  grid-row: span 2;
}

.arch-pro-list h3 {
  color: #f5f1e9;
  margin-bottom: 5px;
}

.arch-pro-list p {
  color: #beb7ab;
  font-size: 14.5px;
}

.arch-pro-areas {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.arch-pro-areas article {
  min-height: 270px;
  border-radius: 30px;
  padding: 28px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.075), rgba(255,255,255,.025));
  border: 1px solid rgba(255,255,255,.10);
  transition: .24s ease;
}

.arch-pro-areas article:hover {
  transform: translateY(-8px);
  border-color: rgba(217,188,114,.42);
}

.arch-pro-areas small {
  color: #d9bc72;
  font-weight: 900;
  letter-spacing: .8px;
}

.arch-pro-areas h3 {
  color: #f5f1e9;
  font-size: 25px;
  line-height: 1.14;
  margin: 14px 0 12px;
}

.arch-pro-areas p {
  color: #beb7ab;
}

.arch-pro-projects {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 18px;
}

.arch-pro-project {
  grid-column: span 4;
  border-radius: 30px;
  overflow: hidden;
  background: #191b21;
  border: 1px solid rgba(255,255,255,.10);
  box-shadow: 0 24px 70px rgba(0,0,0,.25);
  transition: .24s ease;
}

.arch-pro-project.featured {
  grid-column: span 6;
}

.arch-pro-project:hover {
  transform: translateY(-8px);
  border-color: rgba(217,188,114,.42);
}

.arch-pro-project-img {
  position: relative;
  height: 275px;
  overflow: hidden;
}

.arch-pro-project.featured .arch-pro-project-img {
  height: 360px;
}

.arch-pro-project-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: .34s ease;
}

.arch-pro-project:hover .arch-pro-project-img img {
  transform: scale(1.045);
}

.arch-pro-project-img span {
  position: absolute;
  left: 16px;
  top: 16px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(0,0,0,.68);
  border: 1px solid rgba(255,255,255,.16);
  color: #d9bc72;
  font-weight: 900;
  font-size: 12px;
}

.arch-pro-project-body {
  padding: 22px;
}

.arch-pro-project-body small {
  color: #d9bc72;
  font-weight: 900;
  letter-spacing: .8px;
}

.arch-pro-project-body h3 {
  color: #f5f1e9;
  font-size: 24px;
  margin: 8px 0 8px;
}

.arch-pro-project-body p {
  color: #beb7ab;
  font-size: 14.5px;
}

.arch-pro-cta {
  display: grid;
  grid-template-columns: 1fr .72fr;
  gap: 28px;
  align-items: center;
}

.arch-pro-cta-actions {
  display: grid;
  gap: 12px;
}

.lightbox-modal {
  position: fixed;
  inset: 0;
  z-index: 999;
  background: rgba(0,0,0,.88);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 28px;
}

.lightbox-modal.open {
  display: flex;
}

.lightbox-modal img {
  max-width: min(96vw, 1500px);
  max-height: 88vh;
  border-radius: 18px;
  box-shadow: 0 30px 90px rgba(0,0,0,.45);
}

.lightbox-modal button {
  position: absolute;
  top: 22px;
  right: 24px;
  border: 1px solid rgba(255,255,255,.22);
  background: rgba(255,255,255,.10);
  color: white;
  border-radius: 999px;
  width: 44px;
  height: 44px;
  cursor: pointer;
  font-size: 22px;
}

@media(max-width: 1180px) {
  .arch-pro-services {
    grid-template-columns: repeat(2, 1fr);
  }

  .arch-pro-project,
  .arch-pro-project.featured {
    grid-column: span 6;
  }
}

@media(max-width: 1080px) {
  .arch-pro-hero-grid,
  .arch-pro-about,
  .arch-pro-cta {
    grid-template-columns: 1fr;
  }

  .arch-pro-visual {
    min-height: 430px;
    order: -1;
  }
}

@media(max-width: 760px) {
  .arch-pro-hero {
    padding-top: 112px;
  }

  .arch-pro-content h1 {
    letter-spacing: -2px;
  }

  .arch-pro-metrics,
  .arch-pro-services,
  .arch-pro-areas {
    grid-template-columns: 1fr;
  }

  .arch-pro-project,
  .arch-pro-project.featured {
    grid-column: span 12;
  }

  .arch-pro-project-img,
  .arch-pro-project.featured .arch-pro-project-img {
    height: 235px;
  }

  .arch-pro-about-card,
  .arch-pro-cta {
    padding: 26px;
  }

  .arch-pro-list div {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .arch-pro-list b {
    grid-row: auto;
  }

  .arch-pro-mini-card.top {
    top: 24px;
    left: 24px;
  }

  .arch-pro-mini-card.bottom {
    right: 24px;
    bottom: 24px;
  }
}


/* ==============================
   BEN MOTORS PROFESSIONAL LISTING REVISION
   ============================== */

.bm-pro-body {
  background:
    radial-gradient(circle at 78% 8%, rgba(222,181,91,.24), transparent 30%),
    radial-gradient(circle at 8% 18%, rgba(255,255,255,.06), transparent 24%),
    #0c0d10;
  color: #f5f1e9;
}

.bm-pro-body .topbar {
  background: rgba(255,255,255,.96) !important;
  border-bottom: 1px solid rgba(0,0,0,.08) !important;
}

.bm-pro-body .menu a,
.bm-pro-body .menu {
  color: #1d1d1d !important;
}

.bm-pro-body .menu a:hover,
.bm-pro-body .menu a.active {
  color: #a67a22 !important;
}

.bm-pro-hero {
  min-height: 100vh;
  padding: 132px 0 82px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.bm-hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(115deg, rgba(255,255,255,.04), transparent 32%),
    repeating-linear-gradient(90deg, rgba(255,255,255,.032) 0 1px, transparent 1px 120px);
  opacity: .58;
  pointer-events: none;
}

.bm-pro-hero::before {
  content: "";
  position: absolute;
  width: 640px;
  height: 640px;
  right: -270px;
  top: 100px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(222,181,91,.24), transparent 68%);
  animation: glowPulse 5.4s ease-in-out infinite;
}

.bm-hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  gap: 50px;
  align-items: center;
}

.bm-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #e4b85c;
  border: 1px solid rgba(228,184,92,.28);
  background: rgba(255,255,255,.045);
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
  margin-bottom: 20px;
}

.bm-kicker::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #e4b85c;
  box-shadow: 0 0 18px #e4b85c;
}

.bm-hero-content h1 {
  font-size: clamp(44px, 6vw, 84px);
  line-height: .96;
  letter-spacing: -3px;
  margin-bottom: 24px;
}

.bm-hero-content h1 strong {
  color: #e4b85c;
}

.bm-hero-content p {
  color: #beb7ab;
  font-size: 18px;
  max-width: 730px;
  margin-bottom: 30px;
}

.bm-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.bm-hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 34px;
}

.bm-hero-stats div {
  background: rgba(255,255,255,.045);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 22px;
  padding: 18px;
}

.bm-hero-stats b {
  display: block;
  color: #e4b85c;
  font-size: 27px;
  line-height: 1;
  margin-bottom: 7px;
}

.bm-hero-stats span {
  color: #beb7ab;
  font-size: 13px;
}

.bm-logo-panel {
  min-height: 520px;
  border-radius: 38px;
  background:
    radial-gradient(circle at 72% 5%, rgba(228,184,92,.25), transparent 34%),
    linear-gradient(145deg, rgba(255,255,255,.085), rgba(255,255,255,.025)),
    #17191f;
  border: 1px solid rgba(255,255,255,.10);
  box-shadow: 0 32px 90px rgba(0,0,0,.34);
  position: relative;
  display: grid;
  place-items: center;
  padding: 34px;
  overflow: hidden;
}

.bm-logo-panel::before {
  content: "";
  position: absolute;
  inset: 28px;
  border: 1px solid rgba(228,184,92,.18);
  border-radius: 30px;
}

.bm-logo-panel img {
  width: min(390px, 82%);
  position: relative;
  z-index: 2;
  border-radius: 28px;
  background: rgba(255,255,255,.94);
  padding: 18px;
  box-shadow: 0 25px 70px rgba(0,0,0,.28);
  animation: logoFloat 4.6s ease-in-out infinite;
}

.bm-floating-note {
  position: absolute;
  z-index: 3;
  padding: 16px 18px;
  border-radius: 20px;
  background: rgba(12,13,16,.76);
  border: 1px solid rgba(255,255,255,.12);
  backdrop-filter: blur(16px);
}

.bm-floating-note.top {
  top: 46px;
  left: 42px;
}

.bm-floating-note.bottom {
  right: 42px;
  bottom: 46px;
}

.bm-floating-note b {
  display: block;
  color: #e4b85c;
  margin-bottom: 4px;
}

.bm-floating-note span {
  color: #beb7ab;
  font-size: 13px;
}

.bm-pro-section {
  padding: 88px 0;
  background: #111216;
  border-top: 1px solid rgba(255,255,255,.08);
}

.bm-soft {
  background:
    radial-gradient(circle at 14% 8%, rgba(228,184,92,.12), transparent 30%),
    #0c0d10;
}

.bm-section-head {
  max-width: 860px;
  margin-bottom: 34px;
}

.bm-section-head small,
.bm-process-intro small,
.bm-cta small {
  color: #e4b85c;
  font-weight: 900;
  letter-spacing: .9px;
}

.bm-section-head h2,
.bm-process-intro h2,
.bm-cta h2 {
  color: #f5f1e9;
  font-size: clamp(32px, 4vw, 56px);
  line-height: 1.05;
  letter-spacing: -1.4px;
  margin: 10px 0 14px;
}

.bm-section-head p,
.bm-process-intro p,
.bm-cta p {
  color: #beb7ab;
}

.bm-service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.bm-service {
  min-height: 250px;
  border-radius: 30px;
  padding: 26px;
  background: linear-gradient(180deg, rgba(255,255,255,.075), rgba(255,255,255,.025));
  border: 1px solid rgba(255,255,255,.10);
  transition: .24s ease;
}

.bm-service:hover {
  transform: translateY(-8px);
  border-color: rgba(228,184,92,.42);
}

.bm-service span {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 20px;
  background: rgba(228,184,92,.12);
  border: 1px solid rgba(228,184,92,.25);
  font-size: 26px;
  margin-bottom: 20px;
}

.bm-service h3 {
  color: #f5f1e9;
  font-size: 23px;
  line-height: 1.16;
  margin-bottom: 10px;
}

.bm-service p {
  color: #beb7ab;
  font-size: 14.5px;
}

.bm-filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 26px;
}

.bm-filter-bar span {
  padding: 10px 14px;
  border-radius: 999px;
  color: #e4b85c;
  background: rgba(228,184,92,.08);
  border: 1px solid rgba(228,184,92,.25);
  font-weight: 800;
  font-size: 13px;
}

.bm-listing-grid {
  display: grid;
  gap: 24px;
}

.bm-listing-card {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  background: #191b21;
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 34px;
  overflow: hidden;
  box-shadow: 0 26px 80px rgba(0,0,0,.26);
  transition: .24s ease;
}

.bm-listing-card:hover {
  transform: translateY(-6px);
  border-color: rgba(228,184,92,.42);
}

.bm-car-image {
  min-height: 460px;
  position: relative;
  overflow: hidden;
}

.bm-car-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: .34s ease;
}

.bm-listing-card:hover .bm-car-image img {
  transform: scale(1.045);
}

.bm-badge,
.bm-location {
  position: absolute;
  left: 18px;
  border-radius: 999px;
  background: rgba(0,0,0,.70);
  border: 1px solid rgba(255,255,255,.16);
  color: #fff;
  font-size: 12px;
  font-weight: 900;
  padding: 8px 12px;
}

.bm-badge {
  top: 18px;
  color: #e4b85c;
}

.bm-location {
  bottom: 18px;
}

.bm-car-content {
  padding: 26px;
}

.bm-car-head {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: start;
  margin-bottom: 20px;
}

.bm-car-head small {
  color: #e4b85c;
  font-weight: 900;
  letter-spacing: .8px;
}

.bm-car-head h3 {
  color: #f5f1e9;
  font-size: 28px;
  line-height: 1.12;
  margin-top: 6px;
}

.bm-car-head strong {
  color: #e4b85c;
  font-size: 28px;
  white-space: nowrap;
}

.bm-quick-specs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-bottom: 18px;
}

.bm-quick-specs div,
.bm-detail-grid div {
  background: rgba(255,255,255,.045);
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 16px;
  padding: 12px;
}

.bm-quick-specs b {
  color: #f5f1e9;
  display: block;
  font-size: 16px;
  margin-bottom: 3px;
}

.bm-quick-specs span,
.bm-detail-grid span {
  color: #beb7ab;
  font-size: 12px;
}

.bm-detail-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 9px;
  margin-bottom: 18px;
}

.bm-detail-grid b {
  color: #f5f1e9;
  display: block;
  font-size: 14px;
  margin-top: 3px;
}

.bm-expert-box {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 14px;
  padding: 16px;
  border-radius: 22px;
  background:
    linear-gradient(135deg, rgba(228,184,92,.13), rgba(255,255,255,.035));
  border: 1px solid rgba(228,184,92,.22);
  margin-bottom: 18px;
}

.bm-expert-score {
  min-height: 120px;
  border-radius: 18px;
  background: rgba(0,0,0,.24);
  display: grid;
  place-items: center;
  text-align: center;
  padding: 14px;
}

.bm-expert-score b {
  color: #e4b85c;
  font-size: 30px;
  line-height: 1;
}

.bm-expert-score span {
  color: #beb7ab;
  font-size: 12px;
}

.bm-expert-summary h4 {
  color: #f5f1e9;
  font-size: 18px;
  margin-bottom: 7px;
}

.bm-expert-summary p,
.bm-expert-summary li {
  color: #beb7ab;
  font-size: 14px;
}

.bm-expert-summary ul {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  list-style: none;
  margin-top: 12px;
}

.bm-expert-summary li {
  background: rgba(0,0,0,.20);
  border-radius: 12px;
  padding: 9px;
}

.bm-expert-summary b {
  color: #f5f1e9;
}

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

.bm-process-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 24px;
}

.bm-process-intro,
.bm-cta {
  border-radius: 36px;
  padding: 38px;
  background:
    linear-gradient(135deg, rgba(228,184,92,.16), rgba(255,255,255,.035)),
    #17191f;
  border: 1px solid rgba(255,255,255,.10);
  box-shadow: 0 28px 80px rgba(0,0,0,.24);
}

.bm-process-list {
  display: grid;
  gap: 14px;
}

.bm-process-list div {
  display: grid;
  grid-template-columns: 58px 1fr;
  column-gap: 18px;
  padding: 22px;
  border-radius: 24px;
  background: rgba(255,255,255,.045);
  border: 1px solid rgba(255,255,255,.10);
}

.bm-process-list b {
  width: 58px;
  height: 58px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  background: rgba(228,184,92,.12);
  border: 1px solid rgba(228,184,92,.25);
  color: #e4b85c;
  grid-row: span 2;
}

.bm-process-list h3 {
  color: #f5f1e9;
  margin-bottom: 5px;
}

.bm-process-list p {
  color: #beb7ab;
  font-size: 14.5px;
}

.bm-cta {
  display: grid;
  grid-template-columns: 1fr .75fr;
  gap: 28px;
  align-items: center;
}

.bm-cta-actions {
  display: grid;
  gap: 12px;
}

@media(max-width: 1180px) {
  .bm-service-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .bm-listing-card {
    grid-template-columns: 1fr;
  }
  .bm-car-image {
    min-height: 360px;
  }
}

@media(max-width: 1080px) {
  .bm-hero-grid,
  .bm-process-grid,
  .bm-cta {
    grid-template-columns: 1fr;
  }
  .bm-logo-panel {
    order: -1;
    min-height: 430px;
  }
}

@media(max-width: 760px) {
  .bm-pro-hero {
    padding-top: 112px;
  }
  .bm-hero-content h1 {
    letter-spacing: -2px;
  }
  .bm-hero-stats,
  .bm-service-grid,
  .bm-quick-specs,
  .bm-detail-grid,
  .bm-expert-summary ul {
    grid-template-columns: 1fr;
  }
  .bm-car-head {
    display: block;
  }
  .bm-car-head strong {
    display: block;
    margin-top: 10px;
  }
  .bm-expert-box {
    grid-template-columns: 1fr;
  }
  .bm-logo-panel,
  .bm-process-intro,
  .bm-cta {
    padding: 24px;
  }
  .bm-process-list div {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .bm-process-list b {
    grid-row: auto;
  }
}


/* ==============================
   YAPI MARKET PROFESSIONAL SHOWCASE REVISION
   ============================== */

.ym-pro-body {
  background:
    radial-gradient(circle at 78% 8%, rgba(217,188,114,.24), transparent 30%),
    radial-gradient(circle at 8% 18%, rgba(255,255,255,.06), transparent 24%),
    #0f1115;
  color: #f5f1e9;
}

.ym-pro-body .topbar {
  background: rgba(255,255,255,.96) !important;
  border-bottom: 1px solid rgba(0,0,0,.08) !important;
}

.ym-pro-body .menu,
.ym-pro-body .menu a {
  color: #1d1d1d !important;
}

.ym-pro-body .menu a:hover,
.ym-pro-body .menu a.active {
  color: #a67a22 !important;
}

.ym-hero {
  min-height: 100vh;
  padding: 132px 0 82px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.ym-hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(115deg, rgba(255,255,255,.04), transparent 32%),
    repeating-linear-gradient(90deg, rgba(255,255,255,.032) 0 1px, transparent 1px 120px);
  opacity: .58;
  pointer-events: none;
}

.ym-hero::before {
  content: "";
  position: absolute;
  width: 640px;
  height: 640px;
  right: -270px;
  top: 100px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(217,188,114,.24), transparent 68%);
  animation: glowPulse 5.4s ease-in-out infinite;
}

.ym-hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  gap: 50px;
  align-items: center;
}

.ym-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #d9bc72;
  border: 1px solid rgba(217,188,114,.28);
  background: rgba(255,255,255,.045);
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
  margin-bottom: 20px;
}

.ym-kicker::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #d9bc72;
  box-shadow: 0 0 18px #d9bc72;
}

.ym-hero-content h1 {
  font-size: clamp(44px, 6vw, 84px);
  line-height: .96;
  letter-spacing: -3px;
  margin-bottom: 24px;
}

.ym-hero-content h1 strong {
  color: #d9bc72;
}

.ym-hero-content p {
  color: #beb7ab;
  font-size: 18px;
  max-width: 740px;
  margin-bottom: 30px;
}

.ym-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.ym-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 34px;
}

.ym-stats div {
  background: rgba(255,255,255,.045);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 22px;
  padding: 18px;
}

.ym-stats b {
  display: block;
  color: #d9bc72;
  font-size: 27px;
  line-height: 1;
  margin-bottom: 7px;
}

.ym-stats span {
  color: #beb7ab;
  font-size: 13px;
}

.ym-logo-panel {
  min-height: 520px;
  border-radius: 38px;
  background:
    radial-gradient(circle at 72% 5%, rgba(217,188,114,.25), transparent 34%),
    linear-gradient(145deg, rgba(255,255,255,.085), rgba(255,255,255,.025)),
    #17191f;
  border: 1px solid rgba(255,255,255,.10);
  box-shadow: 0 32px 90px rgba(0,0,0,.34);
  position: relative;
  display: grid;
  place-items: center;
  padding: 34px;
  overflow: hidden;
}

.ym-logo-panel::before {
  content: "";
  position: absolute;
  inset: 28px;
  border: 1px solid rgba(217,188,114,.18);
  border-radius: 30px;
}

.ym-logo-panel img {
  width: min(400px, 82%);
  position: relative;
  z-index: 2;
  border-radius: 28px;
  background: rgba(255,255,255,.94);
  padding: 18px;
  box-shadow: 0 25px 70px rgba(0,0,0,.28);
  animation: logoFloat 4.6s ease-in-out infinite;
}

.ym-floating-note {
  position: absolute;
  z-index: 3;
  padding: 16px 18px;
  border-radius: 20px;
  background: rgba(15,17,21,.76);
  border: 1px solid rgba(255,255,255,.12);
  backdrop-filter: blur(16px);
}

.ym-floating-note.top {
  top: 46px;
  left: 42px;
}

.ym-floating-note.bottom {
  right: 42px;
  bottom: 46px;
}

.ym-floating-note b {
  display: block;
  color: #d9bc72;
  margin-bottom: 4px;
}

.ym-floating-note span {
  color: #beb7ab;
  font-size: 13px;
}

.ym-section {
  padding: 88px 0;
  background: #111216;
  border-top: 1px solid rgba(255,255,255,.08);
}

.ym-soft {
  background:
    radial-gradient(circle at 14% 8%, rgba(217,188,114,.12), transparent 30%),
    #0f1115;
}

.ym-section-head {
  max-width: 900px;
  margin-bottom: 34px;
}

.ym-section-head small,
.ym-panel small,
.ym-cta small {
  color: #d9bc72;
  font-weight: 900;
  letter-spacing: .9px;
}

.ym-section-head h2,
.ym-panel h2,
.ym-cta h2 {
  color: #f5f1e9;
  font-size: clamp(32px, 4vw, 56px);
  line-height: 1.05;
  letter-spacing: -1.4px;
  margin: 10px 0 14px;
}

.ym-section-head p,
.ym-panel p,
.ym-cta p {
  color: #beb7ab;
}

.ym-info-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.ym-info-card {
  min-height: 260px;
  padding: 26px;
  border-radius: 30px;
  background: linear-gradient(180deg, rgba(255,255,255,.075), rgba(255,255,255,.025));
  border: 1px solid rgba(255,255,255,.10);
  transition: .24s ease;
}

.ym-info-card:hover {
  transform: translateY(-8px);
  border-color: rgba(217,188,114,.42);
}

.ym-info-card span {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 20px;
  background: rgba(217,188,114,.12);
  border: 1px solid rgba(217,188,114,.25);
  font-size: 26px;
  margin-bottom: 20px;
}

.ym-info-card h3 {
  color: #f5f1e9;
  font-size: 23px;
  line-height: 1.16;
  margin-bottom: 10px;
}

.ym-info-card p {
  color: #beb7ab;
  font-size: 14.5px;
}

.ym-brand-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.ym-brand-card {
  overflow: hidden;
  border-radius: 30px;
  background: #191b21;
  border: 1px solid rgba(255,255,255,.10);
  transition: .24s ease;
  box-shadow: 0 22px 60px rgba(0,0,0,.22);
}

.ym-brand-card:hover {
  transform: translateY(-8px);
  border-color: rgba(217,188,114,.42);
}

.ym-brand-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
}

.ym-brand-card div {
  padding: 22px;
}

.ym-brand-card small,
.ym-product-content small {
  color: #d9bc72;
  font-weight: 900;
  letter-spacing: .8px;
}

.ym-brand-card h3,
.ym-product-content h3 {
  color: #f5f1e9;
  font-size: 23px;
  line-height: 1.15;
  margin: 9px 0 10px;
}

.ym-brand-card p,
.ym-product-content p {
  color: #beb7ab;
  font-size: 14.5px;
}

.ym-product-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.ym-product-card {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  overflow: hidden;
  border-radius: 32px;
  background: #191b21;
  border: 1px solid rgba(255,255,255,.10);
  box-shadow: 0 24px 70px rgba(0,0,0,.24);
  transition: .24s ease;
}

.ym-product-card:hover {
  transform: translateY(-7px);
  border-color: rgba(217,188,114,.42);
}

.ym-product-img {
  min-height: 320px;
  position: relative;
  overflow: hidden;
}

.ym-product-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: .34s ease;
}

.ym-product-card:hover .ym-product-img img {
  transform: scale(1.045);
}

.ym-product-img span {
  position: absolute;
  left: 16px;
  top: 16px;
  border-radius: 999px;
  padding: 8px 12px;
  background: rgba(0,0,0,.70);
  color: #d9bc72;
  border: 1px solid rgba(255,255,255,.16);
  font-size: 12px;
  font-weight: 900;
}

.ym-product-content {
  padding: 24px;
}

.ym-product-content ul {
  list-style: none;
  display: grid;
  gap: 8px;
  margin-top: 18px;
}

.ym-product-content li {
  color: #beb7ab;
  font-size: 13.5px;
  padding: 9px 10px;
  border-radius: 12px;
  background: rgba(255,255,255,.045);
  border: 1px solid rgba(255,255,255,.08);
}

.ym-two-col {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 24px;
  align-items: start;
}

.ym-panel,
.ym-cta {
  border-radius: 36px;
  padding: 38px;
  background:
    linear-gradient(135deg, rgba(217,188,114,.16), rgba(255,255,255,.035)),
    #17191f;
  border: 1px solid rgba(255,255,255,.10);
  box-shadow: 0 28px 80px rgba(0,0,0,.24);
}

.ym-customer-list,
.ym-process {
  display: grid;
  gap: 14px;
}

.ym-customer-list div,
.ym-process div {
  display: grid;
  grid-template-columns: 58px 1fr;
  column-gap: 18px;
  padding: 22px;
  border-radius: 24px;
  background: rgba(255,255,255,.045);
  border: 1px solid rgba(255,255,255,.10);
}

.ym-customer-list b,
.ym-process b {
  width: 58px;
  height: 58px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  background: rgba(217,188,114,.12);
  border: 1px solid rgba(217,188,114,.25);
  color: #d9bc72;
  grid-row: span 2;
}

.ym-customer-list h3,
.ym-process h3 {
  color: #f5f1e9;
  margin-bottom: 5px;
}

.ym-customer-list p,
.ym-process p {
  color: #beb7ab;
  font-size: 14.5px;
}

.ym-cta {
  display: grid;
  grid-template-columns: 1fr .75fr;
  gap: 28px;
  align-items: center;
}

.ym-cta-actions {
  display: grid;
  gap: 12px;
}

@media(max-width: 1180px) {
  .ym-info-grid,
  .ym-brand-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .ym-product-grid {
    grid-template-columns: 1fr;
  }
}

@media(max-width: 1080px) {
  .ym-hero-grid,
  .ym-two-col,
  .ym-cta {
    grid-template-columns: 1fr;
  }
  .ym-logo-panel {
    order: -1;
    min-height: 430px;
  }
}

@media(max-width: 760px) {
  .ym-hero {
    padding-top: 112px;
  }
  .ym-hero-content h1 {
    letter-spacing: -2px;
  }
  .ym-stats,
  .ym-info-grid,
  .ym-brand-grid,
  .ym-product-card {
    grid-template-columns: 1fr;
  }
  .ym-product-img {
    min-height: 240px;
  }
  .ym-logo-panel,
  .ym-panel,
  .ym-cta {
    padding: 24px;
  }
  .ym-customer-list div,
  .ym-process div {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .ym-customer-list b,
  .ym-process b {
    grid-row: auto;
  }
}


/* ==============================
   GLOBAL DARK / BODY MATCH HEADER OVERRIDE
   ============================== */

.topbar,
.home-pro .topbar,
.market-body .topbar,
.ym-pro-body .topbar,
.insaat-body .topbar,
.contract-body .topbar,
.motors-body .topbar,
.bm-pro-body .topbar,
.arch-body .topbar,
.arch-pro-body .topbar,
.real-body .topbar,
.contact-body .topbar,
.enterprise-body .topbar {
  background: rgba(15, 17, 21, .72) !important;
  border-bottom: 1px solid rgba(255,255,255,.10) !important;
  box-shadow: none !important;
  backdrop-filter: blur(18px);
}

.topbar.scrolled,
.home-pro .topbar.scrolled,
.market-body .topbar.scrolled,
.ym-pro-body .topbar.scrolled,
.insaat-body .topbar.scrolled,
.contract-body .topbar.scrolled,
.motors-body .topbar.scrolled,
.bm-pro-body .topbar.scrolled,
.arch-body .topbar.scrolled,
.arch-pro-body .topbar.scrolled,
.real-body .topbar.scrolled,
.contact-body .topbar.scrolled,
.enterprise-body .topbar.scrolled {
  background: rgba(15, 17, 21, .88) !important;
  border-bottom: 1px solid rgba(255,255,255,.12) !important;
  box-shadow: 0 14px 40px rgba(0,0,0,.24) !important;
}

.menu,
.menu a,
.home-pro .menu,
.home-pro .menu a,
.market-body .menu,
.market-body .menu a,
.ym-pro-body .menu,
.ym-pro-body .menu a,
.insaat-body .menu,
.insaat-body .menu a,
.contract-body .menu,
.contract-body .menu a,
.motors-body .menu,
.motors-body .menu a,
.bm-pro-body .menu,
.bm-pro-body .menu a,
.arch-body .menu,
.arch-body .menu a,
.arch-pro-body .menu,
.arch-pro-body .menu a,
.real-body .menu,
.real-body .menu a,
.contact-body .menu,
.contact-body .menu a,
.enterprise-body .menu,
.enterprise-body .menu a {
  color: #f5f1e9 !important;
}

.menu a:hover,
.menu a.active,
.home-pro .menu a:hover,
.home-pro .menu a.active,
.market-body .menu a:hover,
.market-body .menu a.active,
.ym-pro-body .menu a:hover,
.ym-pro-body .menu a.active,
.insaat-body .menu a:hover,
.insaat-body .menu a.active,
.contract-body .menu a:hover,
.contract-body .menu a.active,
.motors-body .menu a:hover,
.motors-body .menu a.active,
.bm-pro-body .menu a:hover,
.bm-pro-body .menu a.active,
.arch-body .menu a:hover,
.arch-body .menu a.active,
.arch-pro-body .menu a:hover,
.arch-pro-body .menu a.active,
.real-body .menu a:hover,
.real-body .menu a.active,
.contact-body .menu a:hover,
.contact-body .menu a.active,
.enterprise-body .menu a:hover,
.enterprise-body .menu a.active {
  color: #d9bc72 !important;
}

.nav-btn,
.home-pro .nav-btn,
.market-body .nav-btn,
.ym-pro-body .nav-btn,
.insaat-body .nav-btn,
.contract-body .nav-btn,
.motors-body .nav-btn,
.bm-pro-body .nav-btn,
.arch-body .nav-btn,
.arch-pro-body .nav-btn,
.real-body .nav-btn,
.contact-body .nav-btn,
.enterprise-body .nav-btn {
  background: #f5f1e9 !important;
  color: #111111 !important;
}

.nav-btn:hover,
.home-pro .nav-btn:hover,
.market-body .nav-btn:hover,
.ym-pro-body .nav-btn:hover,
.insaat-body .nav-btn:hover,
.contract-body .nav-btn:hover,
.motors-body .nav-btn:hover,
.bm-pro-body .nav-btn:hover,
.arch-body .nav-btn:hover,
.arch-pro-body .nav-btn:hover,
.real-body .nav-btn:hover,
.contact-body .nav-btn:hover,
.enterprise-body .nav-btn:hover {
  background: #d9bc72 !important;
  color: #111111 !important;
}

.menu-toggle,
.home-pro .menu-toggle,
.market-body .menu-toggle,
.ym-pro-body .menu-toggle,
.insaat-body .menu-toggle,
.contract-body .menu-toggle,
.motors-body .menu-toggle,
.bm-pro-body .menu-toggle,
.arch-body .menu-toggle,
.arch-pro-body .menu-toggle,
.real-body .menu-toggle,
.contact-body .menu-toggle,
.enterprise-body .menu-toggle {
  color: #f5f1e9 !important;
  border-color: rgba(255,255,255,.18) !important;
  background: rgba(255,255,255,.04) !important;
}

.logo.logo-only img {
  background: transparent !important;
  box-shadow: none !important;
}

@media(max-width: 760px) {
  .menu,
  .home-pro .menu,
  .market-body .menu,
  .ym-pro-body .menu,
  .insaat-body .menu,
  .contract-body .menu,
  .motors-body .menu,
  .bm-pro-body .menu,
  .arch-body .menu,
  .arch-pro-body .menu,
  .real-body .menu,
  .contact-body .menu,
  .enterprise-body .menu {
    background: rgba(15,17,21,.97) !important;
    border: 1px solid rgba(255,255,255,.12) !important;
    box-shadow: 0 18px 45px rgba(0,0,0,.28);
  }
}


/* ==============================
   OZBEN INSAAT CONTRACTOR PROFESSIONAL REVISION
   ============================== */

.contract-body {
  background:
    radial-gradient(circle at 78% 8%, rgba(217,188,114,.24), transparent 30%),
    radial-gradient(circle at 8% 18%, rgba(255,255,255,.06), transparent 24%),
    #0f1115;
  color: #f5f1e9;
}

.contract-hero {
  min-height: 100vh;
  padding: 132px 0 82px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.contract-hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(115deg, rgba(255,255,255,.04), transparent 32%),
    repeating-linear-gradient(90deg, rgba(255,255,255,.032) 0 1px, transparent 1px 120px);
  opacity: .58;
  pointer-events: none;
}

.contract-hero::before {
  content: "";
  position: absolute;
  width: 640px;
  height: 640px;
  right: -270px;
  top: 100px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(217,188,114,.24), transparent 68%);
  animation: glowPulse 5.4s ease-in-out infinite;
}

.contract-hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  gap: 50px;
  align-items: center;
}

.contract-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #d9bc72;
  border: 1px solid rgba(217,188,114,.28);
  background: rgba(255,255,255,.045);
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
  margin-bottom: 20px;
}

.contract-kicker::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #d9bc72;
  box-shadow: 0 0 18px #d9bc72;
}

.contract-hero-content h1 {
  font-size: clamp(44px, 6vw, 84px);
  line-height: .96;
  letter-spacing: -3px;
  margin-bottom: 24px;
}

.contract-hero-content h1 strong {
  color: #d9bc72;
}

.contract-hero-content p {
  color: #beb7ab;
  font-size: 18px;
  max-width: 760px;
  margin-bottom: 30px;
}

.contract-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.contract-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 34px;
}

.contract-stats div {
  background: rgba(255,255,255,.045);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 22px;
  padding: 18px;
}

.contract-stats b {
  display: block;
  color: #d9bc72;
  font-size: 27px;
  line-height: 1;
  margin-bottom: 7px;
}

.contract-stats span {
  color: #beb7ab;
  font-size: 13px;
}

.contract-logo-panel {
  min-height: 520px;
  border-radius: 38px;
  background:
    radial-gradient(circle at 72% 5%, rgba(217,188,114,.25), transparent 34%),
    linear-gradient(145deg, rgba(255,255,255,.085), rgba(255,255,255,.025)),
    #17191f;
  border: 1px solid rgba(255,255,255,.10);
  box-shadow: 0 32px 90px rgba(0,0,0,.34);
  position: relative;
  display: grid;
  place-items: center;
  padding: 34px;
  overflow: hidden;
}

.contract-logo-panel::before {
  content: "";
  position: absolute;
  inset: 28px;
  border: 1px solid rgba(217,188,114,.18);
  border-radius: 30px;
}

.contract-logo-panel img {
  width: min(400px, 82%);
  position: relative;
  z-index: 2;
  border-radius: 28px;
  background: rgba(255,255,255,.94);
  padding: 18px;
  box-shadow: 0 25px 70px rgba(0,0,0,.28);
  animation: logoFloat 4.6s ease-in-out infinite;
}

.contract-floating-note {
  position: absolute;
  z-index: 3;
  padding: 16px 18px;
  border-radius: 20px;
  background: rgba(15,17,21,.76);
  border: 1px solid rgba(255,255,255,.12);
  backdrop-filter: blur(16px);
}

.contract-floating-note.top {
  top: 46px;
  left: 42px;
}

.contract-floating-note.bottom {
  right: 42px;
  bottom: 46px;
}

.contract-floating-note b {
  display: block;
  color: #d9bc72;
  margin-bottom: 4px;
}

.contract-floating-note span {
  color: #beb7ab;
  font-size: 13px;
}

.contract-section {
  padding: 88px 0;
  background: #111216;
  border-top: 1px solid rgba(255,255,255,.08);
}

.contract-soft {
  background:
    radial-gradient(circle at 14% 8%, rgba(217,188,114,.12), transparent 30%),
    #0f1115;
}

.contract-section-head {
  max-width: 900px;
  margin-bottom: 34px;
}

.contract-section-head small,
.contract-panel small,
.contract-cta small {
  color: #d9bc72;
  font-weight: 900;
  letter-spacing: .9px;
}

.contract-section-head h2,
.contract-panel h2,
.contract-cta h2 {
  color: #f5f1e9;
  font-size: clamp(32px, 4vw, 56px);
  line-height: 1.05;
  letter-spacing: -1.4px;
  margin: 10px 0 14px;
}

.contract-section-head p,
.contract-panel p,
.contract-cta p {
  color: #beb7ab;
}

.contract-service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.contract-service {
  min-height: 255px;
  padding: 26px;
  border-radius: 30px;
  background: linear-gradient(180deg, rgba(255,255,255,.075), rgba(255,255,255,.025));
  border: 1px solid rgba(255,255,255,.10);
  transition: .24s ease;
}

.contract-service:hover {
  transform: translateY(-8px);
  border-color: rgba(217,188,114,.42);
}

.contract-service span {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 20px;
  background: rgba(217,188,114,.12);
  border: 1px solid rgba(217,188,114,.25);
  font-size: 26px;
  margin-bottom: 20px;
}

.contract-service h3 {
  color: #f5f1e9;
  font-size: 23px;
  line-height: 1.16;
  margin-bottom: 10px;
}

.contract-service p {
  color: #beb7ab;
  font-size: 14.5px;
}

.contract-two-col {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 24px;
  align-items: start;
}

.contract-panel,
.contract-cta {
  border-radius: 36px;
  padding: 38px;
  background:
    linear-gradient(135deg, rgba(217,188,114,.16), rgba(255,255,255,.035)),
    #17191f;
  border: 1px solid rgba(255,255,255,.10);
  box-shadow: 0 28px 80px rgba(0,0,0,.24);
}

.contract-process-list,
.contract-scope-list {
  display: grid;
  gap: 14px;
}

.contract-process-list div,
.contract-scope-list div {
  display: grid;
  grid-template-columns: 58px 1fr;
  column-gap: 18px;
  padding: 22px;
  border-radius: 24px;
  background: rgba(255,255,255,.045);
  border: 1px solid rgba(255,255,255,.10);
}

.contract-process-list b,
.contract-scope-list b {
  width: 58px;
  height: 58px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  background: rgba(217,188,114,.12);
  border: 1px solid rgba(217,188,114,.25);
  color: #d9bc72;
  grid-row: span 2;
}

.contract-process-list h3,
.contract-scope-list h3 {
  color: #f5f1e9;
  margin-bottom: 5px;
}

.contract-process-list p,
.contract-scope-list p {
  color: #beb7ab;
  font-size: 14.5px;
}

.contract-filter-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 26px;
}

.contract-filter-tabs span {
  padding: 10px 14px;
  border-radius: 999px;
  color: #d9bc72;
  background: rgba(217,188,114,.08);
  border: 1px solid rgba(217,188,114,.25);
  font-weight: 800;
  font-size: 13px;
}

.contract-project-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.contract-project-card {
  border-radius: 34px;
  overflow: hidden;
  background: #191b21;
  border: 1px solid rgba(255,255,255,.10);
  box-shadow: 0 26px 80px rgba(0,0,0,.26);
  transition: .24s ease;
}

.contract-project-card:hover {
  transform: translateY(-8px);
  border-color: rgba(217,188,114,.42);
}

.contract-project-img {
  height: 360px;
  position: relative;
  overflow: hidden;
}

.contract-project-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: .34s ease;
}

.contract-project-card:hover .contract-project-img img {
  transform: scale(1.045);
}

.contract-project-img b {
  position: absolute;
  left: 18px;
  top: 18px;
  border-radius: 999px;
  background: rgba(0,0,0,.70);
  border: 1px solid rgba(255,255,255,.16);
  color: #d9bc72;
  padding: 8px 12px;
  font-size: 12px;
}

.contract-project-content {
  padding: 24px;
}

.contract-project-content small {
  color: #d9bc72;
  font-weight: 900;
  letter-spacing: .8px;
}

.contract-project-content h3 {
  color: #f5f1e9;
  font-size: 25px;
  margin: 8px 0 8px;
}

.contract-project-content p {
  color: #beb7ab;
  font-size: 14.5px;
}

.contract-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.contract-tags span {
  font-size: 12px;
  color: #d9bc72;
  border: 1px solid rgba(217,188,114,.25);
  background: rgba(217,188,114,.08);
  border-radius: 999px;
  padding: 6px 10px;
}

.contract-quality-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.contract-quality {
  min-height: 210px;
  padding: 25px;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255,255,255,.075), rgba(255,255,255,.025));
  border: 1px solid rgba(255,255,255,.10);
  transition: .24s ease;
}

.contract-quality:hover {
  transform: translateY(-7px);
  border-color: rgba(217,188,114,.42);
}

.contract-quality h3 {
  color: #f5f1e9;
  font-size: 22px;
  margin-bottom: 10px;
}

.contract-quality p {
  color: #beb7ab;
  font-size: 14.5px;
}

.contract-cta {
  display: grid;
  grid-template-columns: 1fr .75fr;
  gap: 28px;
  align-items: center;
}

.contract-cta-actions {
  display: grid;
  gap: 12px;
}

@media(max-width: 1180px) {
  .contract-service-grid,
  .contract-quality-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media(max-width: 1080px) {
  .contract-hero-grid,
  .contract-two-col,
  .contract-cta {
    grid-template-columns: 1fr;
  }
  .contract-logo-panel {
    order: -1;
    min-height: 430px;
  }
}

@media(max-width: 820px) {
  .contract-project-grid {
    grid-template-columns: 1fr;
  }
  .contract-project-img {
    height: 300px;
  }
}

@media(max-width: 760px) {
  .contract-hero {
    padding-top: 112px;
  }
  .contract-hero-content h1 {
    letter-spacing: -2px;
  }
  .contract-stats,
  .contract-service-grid,
  .contract-quality-grid {
    grid-template-columns: 1fr;
  }
  .contract-logo-panel,
  .contract-panel,
  .contract-cta {
    padding: 24px;
  }
  .contract-process-list div,
  .contract-scope-list div {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .contract-process-list b,
  .contract-scope-list b {
    grid-row: auto;
  }
}


/* ==============================
   HOME HERO ROUND LOGO REVISION
   ============================== */

/* Ana sayfadaki büyük logo artık kare/tablet gibi değil, yuvarlak görünür. */
.home-logo-orbit > img {
  width: 72% !important;
  aspect-ratio: 1 / 1 !important;
  height: auto !important;
  object-fit: cover !important;
  border-radius: 50% !important;
  clip-path: circle(50% at 50% 50%) !important;
  background: rgba(255,255,255,.96) !important;
  padding: 16px !important;
  box-shadow: 0 25px 70px rgba(0,0,0,.30) !important;
}

/* Mobilde yuvarlak logo daha dengeli dursun. */
@media(max-width: 760px) {
  .home-logo-orbit > img {
    width: 76% !important;
    padding: 12px !important;
  }
}
