:root {
  --ink: #18202a;
  --muted: #5b6572;
  --line: #d9dee6;
  --panel: #f5f7fa;
  --brand: #d3212c;
  --brand-dark: #a91620;
  --steel: #27313d;
  --white: #ffffff;
  --accent: #f2b705;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

.topbar {
  background: var(--steel);
  color: var(--white);
  font-size: 14px;
}

.topbar-inner,
.nav-inner,
.section-inner,
.footer-inner {
  width: min(1140px, calc(100% - 32px));
  margin: 0 auto;
}

.topbar-inner {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 10px 0;
  flex-wrap: wrap;
}

.nav {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}

.nav-inner {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 24px;
}

.logo-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: var(--white);
  background: var(--brand);
  font-weight: 800;
}

.menu {
  display: flex;
  align-items: center;
  gap: 22px;
  color: var(--steel);
  font-weight: 700;
}

.menu a:hover {
  color: var(--brand);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  border: 1px solid var(--line);
  background: var(--white);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  margin: 5px 0;
  background: var(--steel);
  transition: transform 160ms ease, opacity 160ms ease;
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 20px;
  border: 2px solid var(--brand);
  background: var(--brand);
  color: var(--white);
  font-weight: 800;
  transition: 160ms ease;
}

.button:hover {
  background: var(--brand-dark);
  border-color: var(--brand-dark);
}

.button.secondary {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.78);
}

.button.light {
  background: var(--white);
  color: var(--brand);
  border-color: var(--white);
}

.hero {
  min-height: 620px;
  display: grid;
  align-items: center;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(24, 32, 42, 0.92), rgba(24, 32, 42, 0.62), rgba(24, 32, 42, 0.28)),
    url("resimler/mobil-vinc-300-ton.jpeg") center/cover;
}

.hero-content {
  width: min(1140px, calc(100% - 32px));
  margin: 0 auto;
  padding: 72px 0;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 16px;
  color: var(--accent);
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 780px;
  margin-bottom: 20px;
  font-size: clamp(42px, 7vw, 72px);
  line-height: 1.05;
}

.hero p {
  max-width: 660px;
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 19px;
}

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

.section {
  padding: 82px 0;
}

.section.alt {
  background: var(--panel);
}

.section-head {
  max-width: 760px;
  margin-bottom: 38px;
}

.section-head.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

h2 {
  margin-bottom: 14px;
  color: var(--steel);
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.15;
}

h3 {
  margin-bottom: 10px;
  color: var(--steel);
  font-size: 22px;
  line-height: 1.25;
}

.lead {
  color: var(--muted);
  font-size: 18px;
}

.grid {
  display: grid;
  gap: 22px;
}

.grid.three {
  grid-template-columns: repeat(3, 1fr);
}

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

.grid.four {
  grid-template-columns: repeat(4, 1fr);
}

.card {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.card.media {
  overflow: hidden;
  padding: 0;
}

.card-image {
  width: 100%;
  height: 205px;
  object-fit: cover;
}

.card-body {
  padding: 24px;
}

.fleet-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.fleet-item {
  position: relative;
  min-height: 260px;
  overflow: hidden;
  background: var(--steel);
}

.fleet-item img {
  width: 100%;
  height: 100%;
  min-height: 260px;
  object-fit: cover;
  transition: transform 220ms ease;
}

.fleet-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 48%, rgba(20, 28, 38, 0.84));
}

.fleet-item:hover img {
  transform: scale(1.035);
}

.fleet-item strong {
  position: absolute;
  z-index: 1;
  left: 24px;
  bottom: 22px;
  color: var(--white);
  font-size: 18px;
}

.card-link {
  display: inline-block;
  margin-top: 10px;
  color: var(--brand);
  font-weight: 800;
}

.icon {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  margin-bottom: 18px;
  background: #ffe9eb;
  color: var(--brand);
  font-size: 24px;
  font-weight: 800;
}

.split {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: 48px;
  align-items: center;
}

.photo {
  min-height: 430px;
  border-radius: 8px;
  background: url("resimler/vinc-kiralama.jpeg") center/cover;
}

.ticks {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 24px 0 0;
  list-style: none;
}

.ticks li {
  padding-left: 32px;
  position: relative;
}

.ticks li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 16px;
  height: 16px;
  background: var(--brand);
}

.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.stat {
  padding: 28px 18px;
  background: var(--white);
  text-align: center;
}

.stat strong {
  display: block;
  color: var(--brand);
  font-size: 34px;
  line-height: 1;
}

.cta {
  color: var(--white);
  background: linear-gradient(90deg, var(--steel), #3d4856);
}

.cta .section-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.cta h2 {
  color: var(--white);
}

.cta p {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.82);
}

.page-hero {
  padding: 92px 0;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(24, 32, 42, 0.92), rgba(24, 32, 42, 0.58)),
    url("resimler/vinc-kiralama.jpeg") center/cover;
}

.page-hero h1 {
  margin-bottom: 14px;
}

.page-hero p {
  max-width: 700px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 18px;
}

.breadcrumb {
  margin-bottom: 18px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
}

.breadcrumb a {
  color: var(--white);
  font-weight: 700;
}

.contact-box {
  display: grid;
  gap: 18px;
}

.contact-item {
  padding: 22px;
  border-left: 5px solid var(--brand);
  background: var(--panel);
}

.form {
  display: grid;
  gap: 16px;
}

.form input,
.form textarea,
.form select {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  font: inherit;
  color: var(--ink);
  background: var(--white);
}

.form textarea {
  min-height: 150px;
  resize: vertical;
}

.map {
  min-height: 310px;
  width: 100%;
  border: 0;
  display: grid;
  place-items: center;
  padding: 28px;
  color: var(--white);
  background:
    linear-gradient(rgba(39, 49, 61, 0.8), rgba(39, 49, 61, 0.8)),
    url("https://images.unsplash.com/photo-1581092795360-fd1ca04f0952?auto=format&fit=crop&w=1200&q=80") center/cover;
  text-align: center;
}

.footer {
  padding: 44px 0 22px;
  color: rgba(255, 255, 255, 0.82);
  background: #151b23;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 28px;
  padding-bottom: 32px;
}

.footer h3,
.footer .logo {
  color: var(--white);
}

.footer a {
  display: block;
  margin-bottom: 8px;
}

.copyright {
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  font-size: 14px;
}

@media (max-width: 820px) {
  .nav-inner {
    min-height: 68px;
    flex-wrap: wrap;
    gap: 0;
  }

  .nav-ready .menu-toggle {
    display: block;
    margin-left: auto;
  }

  .menu {
    display: flex;
    width: 100%;
    align-items: stretch;
    gap: 0;
    flex-direction: column;
    padding-top: 8px;
    padding-bottom: 18px;
  }

  .nav-ready .menu {
    display: none;
  }

  .nav-ready .menu.open {
    display: flex;
  }

  .menu a:not(.button) {
    padding: 12px 2px;
    border-bottom: 1px solid var(--line);
  }

  .menu .button {
    width: 100%;
    margin-top: 10px;
  }

  .cta .section-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .hero {
    min-height: 560px;
  }

  .grid.three,
  .grid.two,
  .grid.four,
  .split,
  .stats,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 58px 0;
  }

  .photo {
    min-height: 300px;
  }

  .fleet-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 520px) {
  .topbar-inner {
    gap: 4px;
    font-size: 12px;
  }

  h1 {
    font-size: 40px;
  }

  .hero {
    min-height: 520px;
  }

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

  .fleet-item,
  .fleet-item img {
    min-height: 235px;
  }
}

/* =====================================================
   AKS CRANE - MOBILE HEADER FIX
   style.css en altına ekle
====================================================== */

@media (max-width: 991px){

header,
.header,
.navbar,
.nav,
.navbar-area{
    width:100%;
    position:relative;
    z-index:9999;
}

.header .container,
.navbar .container,
.nav .container{
    width:100%;
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:12px 18px;
}

.logo{
    max-width:170px;
}

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

/* Menü */

.menu,
.nav-menu,
.navigation,
ul.menu{
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    gap:12px;
    width:100%;
    padding:15px 0;
    margin:0;
}

.menu li,
.nav-menu li,
.navigation li{
    width:100%;
    list-style:none;
    text-align:center;
}

.menu li a,
.nav-menu li a,
.navigation li a{
    display:block;
    width:100%;
    padding:12px 15px;
    font-size:16px;
    font-weight:600;
    color:#0F172A;
    border-bottom:1px solid #ececec;
    transition:.3s;
}

.menu li a:hover,
.nav-menu li a:hover,
.navigation li a:hover{
    color:#F4B400;
    background:#fafafa;
}

/* Buton */

.header-btn,
.btn-header,
.menu-btn{
    width:100%;
    margin-top:15px;
    text-align:center;
}

.header-btn a,
.btn-header a,
.menu-btn a{

display:block;
padding:14px 22px;
border-radius:50px;
background:#F4B400;
color:#111;
font-weight:700;

}

/* Hero boşluğu */

.hero,
.banner{
    padding-top:90px;
}

/* Resimler */

img{
    max-width:100%;
    height:auto;
}

/* Sayfa taşmasını engelle */

html,
body{
    overflow-x:hidden;
}

*{
    max-width:100%;
}

}
