body::before{
  position: fixed;
  top: 6px;
  left: 6px;
  z-index: 999999;
  padding: 6px 10px;
  background: #fff;
  color: #000;
  font: 14px/1.2 Arial, sans-serif;
  border: 1px solid #000;
}

:root{
  --bg:#05070b;
  --card:#0c1018cc;
  --card2:#0b0f16;
  --stroke:rgba(255,255,255,.10);
  --text:#e8eef8;
  --muted:rgba(232,238,248,.72);
  --shadow: 0 16px 40px rgba(0,0,0,.55);
  --radius:18px;
  --radius2:22px;
  --red:#e11d2e;
  --green:#1db954;
  --chip:rgba(255,255,255,.12);
  --chipOn:#ffffff;
  --chipOnText:#0b0f16;
  --maxw: 740px;
}

*{ box-sizing:border-box; }
html,body{ height:100%; }

body{
  margin:0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background: radial-gradient(1200px 600px at 50% 0%, rgba(120,160,255,.12), transparent 60%),
              radial-gradient(900px 500px at 20% 20%, rgba(0,255,210,.06), transparent 60%),
              var(--bg);
  color:var(--text);
  display:flex;
  justify-content:center;
  overflow-x: hidden;
}

.page{
  width:100%;
  max-width: var(--maxw);
  min-height:100vh;
  padding-bottom: 18px;
  margin: 0 auto;
}

/* HERO */
.hero{
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  box-sizing: border-box;
  position: relative;
}

.hero::before{
  content:"";
  position:absolute;
  inset:0;
  background:
    linear-gradient(180deg, rgba(0,0,0,.75), rgba(0,0,0,.78)),
    url("assets/hero-bg.jpg") center/cover no-repeat;
  filter:saturate(1.05) contrast(1.05);
  z-index:0;
}

.hero-inner{
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  padding-left: 14px;
  padding-right: 14px;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  gap: 14px;
  position: relative;
  z-index: 2;
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  color:#fff;
  text-decoration:none;
  font-weight: 700;
  font-size: 13px;
  letter-spacing:.2px;
  border: 1px solid rgba(255,255,255,.14);
  box-shadow: 0 10px 26px rgba(0,0,0,.45);
  backdrop-filter: blur(6px);
  white-space:nowrap;
  user-select:none;
}

.btn.red{ background: linear-gradient(180deg, #ff2b3d, var(--red)); }
.btn.green{ background: linear-gradient(180deg, #27d463, var(--green)); }
.btn.ghost{
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.18);
}

/* ÜST BAND */
.hero-topbar{
  display:flex;
  align-items:center;
  gap: 12px;
  margin-bottom: 10px;
  flex-wrap: wrap;
  justify-content: center;
}

.brand{
  display:flex;
  align-items:center;
  gap: 10px;
  margin: 0;
  width:100%;
  justify-content:center;
}

.brand-logo{
  width: 120px;
  height: 100px;
  border-radius: 12px;
  background: rgba(255,255,255,.10);
  border:1px solid rgba(255,255,255,.16);
  overflow:hidden;
  display:grid;
  place-items:center;
}

.brand-logo img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}

.brand-name{
  font-weight: 900;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-size: clamp(24px, 10vw, 34px);
  line-height: 1;
  margin: 0;
  max-width: 220%;
  word-break: break-word;

  color: #7fdcff;
  text-shadow:
    0 0 6px rgba(127,220,255,.6),
    0 0 12px rgba(127,220,255,.6),
    0 0 24px rgba(127,220,255,.5),
    0 0 40px rgba(0,160,255,.6);

  animation: neonPulse 2.2s ease-in-out infinite;
}

.top-vehicle{
  height: 64px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 12px 22px rgba(0,0,0,.55));
}

.hero-grid{
  display:grid;
  grid-template-columns: 1fr;
  gap: 14px;
  align-items:start;
  margin-top: 8px;
  position: relative;
  z-index: 2;
  padding: 0 14px 14px;
}

.hero-left{
  position: relative;
  background-image: url("hero.jpeg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.10);
  padding: 16px 10px 12px;
  backdrop-filter: blur(6px);
  box-shadow: var(--shadow);
  overflow-x: visible;
}

.hero-left::before{
  content:"";
  position:absolute;
  inset:0;
  background: rgba(0,0,0,0.6);
  border-radius: inherit;
}

.hero-left > *{
  position: relative;
  z-index: 1;
}

.hero-kicker{
  font-size: 38px;
  color: rgba(255,255,255,.80);
  font-weight: 700;
  margin: 0 0 12px;
}

.hero-title{
  margin: 0;
  font-size: 28px;
  line-height: 1.08;
  letter-spacing: .2px;
  font-weight: 900;
}

.hero-title .accent{
  display:block;
  color: #ffd38a;
  margin-top: 10px;
  font-size: 32px;
  line-height: 1.05;
  font-weight: 900;
}

.hero-desc{
  color: var(--muted);
  font-size: 28px;
  line-height: 1.45;
  font-weight: 600;
  white-space: normal;
  overflow: visible;
  text-overflow: unset;
  overflow-wrap: anywhere;
  margin: 10px 0 0;
}

.hero-ctas{
  display:flex;
  gap: 10px;
  margin-top: 12px;
  flex-wrap:wrap;
}

.hero-ctas .btn{
  height: 44px;
  padding: 0 16px;
  font-size: 13px;
  flex: 1 1 160px;
}

/* Aksiyon kutusu */
.hero-right{
  position:relative;
  border-radius: 22px;
  overflow:hidden;
  border:1px solid rgba(255,255,255,.10);
  background: rgba(0,0,0,.18);
  box-shadow: var(--shadow);
  padding: 14px;
  min-height: unset;
  display:flex;
  gap: 10px;
  align-items:center;
  justify-content:center;
  flex-wrap:wrap;
}

.hero-right .btn{
  height: 44px;
  padding: 0 16px;
  font-size: 13px;
  flex: 1 1 220px;
}

/* SECTION */
.section{
  padding: 14px 14px 0;
  overflow-x: hidden;
  box-sizing: border-box;
}

.section-title{
  text-align:center;
  margin: 10px 0 10px;
  font-size: 20px;
  font-weight: 900;
  letter-spacing:.2px;
  color: rgba(232,238,248,.92);
  text-shadow: 0 10px 30px rgba(0,0,0,.55);
}

/* Hizmetler */
.cards-row{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  overflow: hidden;
  padding-bottom: 0;
  flex-wrap: nowrap;
  box-sizing: border-box;
}

.service-card{
  width: 100%;
  max-width: 100%;
  flex: none;
  background: linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.04));
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 14px 34px rgba(0,0,0,.55);
}

.service-thumb{
  height: 94px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  overflow: hidden;
}

.service-thumb img{
  width: 75%;
  height: auto;
  object-fit: cover;
  display: block;
}

.service-name{
  padding: 10px 10px 12px;
  font-weight: 900;
  font-size: 14px;
  text-align:center;
}

/* Region chips */
.chips{
  display:flex;
  flex-wrap:wrap;
  gap: 8px;
  justify-content:center;
  margin: 8px 0 10px;
}

.chip{
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.08);
  color: rgba(255,255,255,.88);
  padding: 8px 12px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 13px;
  line-height: 1;
  user-select:none;
}

.chip.is-active{
  background: var(--chipOn);
  color: var(--chipOnText);
  border-color: rgba(255,255,255,.10);
}

/* Map */
.map{
  border-radius: 18px;
  overflow:hidden;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.06);
  box-shadow: 0 16px 36px rgba(0,0,0,.55);
  height: 160px;
}

.map img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
  opacity:.98;
}

/* Reviews */
.reviews{
  display:grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

.review{
  background: linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.04));
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 18px;
  padding: 12px 12px 10px;
  box-shadow: 0 16px 34px rgba(0,0,0,.55);
}

.review-head{
  display:flex;
  gap: 10px;
  align-items:center;
  margin-bottom: 8px;
}

.avatar{
  width: 36px; height: 36px;
  border-radius: 999px;
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.14);
  overflow:hidden;
  flex: 0 0 auto;
}

.avatar img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}

.who{
  display:flex;
  flex-direction:column;
  gap: 2px;
  min-width:0;
}

.who .name{
  font-weight: 900;
  font-size: 14px;
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
}

.who .stars{
  font-size: 12px;
  color: #ffd27a;
  letter-spacing: 1px;
}

.review p{
  margin: 0;
  color: rgba(232,238,248,.78);
  font-size: 13px;
  line-height: 1.45;
  font-weight: 650;
}

/* Bottom contact bar */
.bottom{
  padding: 14px;
  display:flex;
  flex-direction:column;
  gap: 10px;
}

.phone-line{
  display:flex;
  align-items:center;
  justify-content:center;
  gap: 10px;
  color: rgba(255,255,255,.88);
  font-weight: 900;
  letter-spacing:.4px;
  opacity:.95;
}

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

.bottom-actions .btn{
  flex: 1 1 0;
  height: 48px;
  font-size: 13px;
}

.footer-mini{
  text-align:center;
  color: rgba(255,255,255,.55);
  font-size: 12px;
  padding: 0 14px 14px;
  font-weight: 650;
}

@media (min-width: 900px){
  .page{ max-width: 740px; }
  .hero-title{ font-size: 30px; }
}

@keyframes neonPulse{
  0%{
    opacity: .85;
    text-shadow:
      0 0 6px rgba(127,220,255,.5),
      0 0 14px rgba(127,220,255,.6),
      0 0 28px rgba(127,220,255,.5),
      0 0 46px rgba(0,160,255,.6);
  }
  50%{
    opacity: 1;
    text-shadow:
      0 0 10px rgba(127,220,255,.9),
      0 0 20px rgba(127,220,255,.9),
      0 0 40px rgba(127,220,255,.8),
      0 0 70px rgba(0,180,255,.9);
  }
  100%{
    opacity: .85;
    text-shadow:
      0 0 6px rgba(127,220,255,.5),
      0 0 14px rgba(127,220,255,.6),
      0 0 28px rgba(127,220,255,.5),
      0 0 46px rgba(0,160,255,.6);
  }
}

@media (max-width: 480px){
  .brand-name{
    font-size: 44px;
    letter-spacing: 1.5px;
    text-align: center;
    white-space: normal;
    max-width: 100%;
  }

  .hero-topbar{
    flex-wrap: wrap;
    justify-content: center;
  }

  .hero-kicker{
    margin: 0 0 12px !important;
  }
}

@media (max-width: 768px){
  .page{
    max-width: 100vw;
    width: 100vw;
    margin: 0;
    overflow-x: hidden;
  }
}

.hero-title,
.hero-actions,
.hero-buttons{
  max-width: 100%;
  overflow-wrap: break-word;
}

html, body{
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

.hero-logo .logo{
  width: auto;
  max-width: none;
  margin-left: -40px;
  background: none;
}

.hero-logo .logo img{
  max-width: 300px;
  width: 100%;
  height: auto;
  display: block;
}

.hero-logo .brand{
  display: inline-flex;
  align-items: center;
  width: auto;
}

.hero-logo .brand-name{
  margin-left: 12px;
}

@media (min-width: 992px){
  .brand-name{ font-size: 48px; }
}
