/* ========================================
   VitCars - Hakkımızda Sayfası
   #364049 - Koyu gri
   #F7931E - Turuncu (vurgu)
   #5E6C79 - Gri metin
   #FFFFFF - Beyaz
   ======================================== */

.vc-about {
  min-height: 100vh;
  background: #f8f9fa;
}

/* Animasyonlar */
.vc-about .wow {
  animation-duration: 0.7s;
  animation-fill-mode: both;
}

/* Hero - sade ve kompakt */
.vc-about-hero {
  background: #364049;
  padding: 28px 0;
}

.vc-about-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
  margin: 0 0 12px 0;
  padding: 0;
  font-size: 14px;
}

.vc-about-breadcrumb li {
  display: flex;
  align-items: center;
  gap: 8px;
}

.vc-about-breadcrumb li:not(:last-child)::after {
  content: "/";
  color: rgba(255, 255, 255, 0.5);
  margin-left: 4px;
}

.vc-about-breadcrumb a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.2s;
}

.vc-about-breadcrumb a:hover {
  color: #FFFFFF;
}

.vc-about-breadcrumb span {
  color: #F7931E;
  font-weight: 600;
}

.vc-about-title {
  margin: 0;
  font-size: 32px;
  font-weight: 700;
  color: #FFFFFF;
  letter-spacing: -0.5px;
}

/* Container - tüm bölümlerde ortak (header ile aynı hizada: 1200px) */
.vc-about-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Main - Image + Content */
.vc-about-main {
  background: #FFFFFF;
  padding-top: 40px;
}

.vc-about-main-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 680px;
}

.vc-about-col {
  min-width: 0; /* grid overflow fix */
}

.vc-about-col--image {
  display: flex;
  align-items: stretch;
}

.vc-about-col--content {
  display: flex;
}

/* Görsel: biraz küçültülmüş, object-fit: contain */
.vc-about-image-box {
  width: 100%;
  max-width: 620px;
  height: 680px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f8f9fa;
  overflow: hidden;
}

.vc-about-image-box img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  max-width: 100%;
}

.vc-about-content-wrap {
  flex: 1;
  display: flex;
  align-items: flex-start;
  padding: 0px 40px 48px 48px;
  width: 100%;
  min-height: 680px;
}

.vc-about-content {
  font-size: 14px;
  color: #5E6C79;
  line-height: 1.7;
  max-width: 520px;
}

/* Lead - editörden gelen ilk blok (h4 + paragraflar) */
.vc-about-lead {
  margin-bottom: 32px;
  padding-bottom: 28px;
  border-bottom: 1px solid #eee;
}

.vc-about-lead h4 {
  font-size: 16px;
  font-weight: 700;
  color: #050B20;
  margin: 0 0 0px 0;
  padding-left: 14px;
  border-left: 3px solid #F7931E;
}

.vc-about-lead p {
  margin: 0 0 14px 0;
  font-size: 14px;
  color: #5E6C79;
  line-height: 1.7;
}

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

/* Ana içerik bölümleri - Misyonumuz, Vizyonumuz, Hizmetlerimiz vb. */
.vc-about-content > p {
  margin: 0 0 20px 0;
  font-size: 14px;
  color: #5E6C79;
  line-height: 1.7;
}

.vc-about-content > p:last-child {
  margin-bottom: 0;
}

/* Paragraf içindeki başlık (strong ile: Misyonumuz:, Vizyonumuz: vb.) */
.vc-about-content > p strong:first-child {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: #050B20;
  margin-bottom: 6px;
  padding-left: 12px;
  border-left: 3px solid #F7931E;
}

/* Liste - Hizmetlerimiz */
.vc-about-content > ul {
  margin: 8px 0 24px 0;
  padding-left: 0;
  list-style: none;
}

.vc-about-content > ul li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 10px;
  font-size: 14px;
  line-height: 1.6;
}

.vc-about-content > ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 5px;
  height: 5px;
  background: #F7931E;
  border-radius: 50%;
}

.vc-about-content > ul + p {
  margin-top: 4px;
}

/* Bold vurgular (güven, şeffaflık, hızlı vb.) */
.vc-about-content strong {
  color: #364049;
  font-weight: 600;
}

/* Neden Biz - grid */
.vc-about-features {
  padding: 56px 0 72px;
  background: #f8f9fa;
}

.vc-about-features-title {
  margin: 0 0 40px 0;
  font-size: 28px;
  font-weight: 700;
  color: #050B20;
  text-align: center;
}

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

.vc-about-feature-card {
  background: #FFFFFF;
  padding: 32px 28px;
  border-radius: 12px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
  border: 1px solid #eee;
  text-align: center;
  transition: transform 0.25s, box-shadow 0.25s;
}

.vc-about-feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
}

.vc-about-feature-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(247, 147, 30, 0.1);
  border-radius: 50%;
  overflow: hidden;
}

.vc-about-feature-icon img {
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.vc-about-feature-title {
  margin: 0 0 12px 0;
  font-size: 17px;
  font-weight: 700;
  color: #050B20;
}

.vc-about-feature-text {
  font-size: 14px;
  color: #5E6C79;
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 991px) {
  .vc-about-main-inner {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .vc-about-col--image {
    order: 2;
  }

  .vc-about-col--content {
    order: 1;
  }

  .vc-about-image-box {
    max-width: 100%;
    height: 360px;
  }

  .vc-about-content-wrap {
    padding: 32px 24px 40px;
    min-height: auto;
  }

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

@media (max-width: 767px) {
  .vc-about-hero {
    padding: 28px 0;
  }

  .vc-about-title {
    font-size: 28px;
  }

  .vc-about-image-box {
    height: 300px;
  }

  .vc-about-content-wrap {
    padding: 28px 20px 36px;
  }

  .vc-about-features {
    padding: 40px 0 56px;
  }

  .vc-about-features-title {
    font-size: 24px;
    margin-bottom: 32px;
  }

  .vc-about-features-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .vc-about-feature-card {
    padding: 28px 24px;
  }
}

@media (max-width: 480px) {
  .vc-about-features-title {
    font-size: 22px;
  }

  .vc-about-image-box {
    height: 260px;
  }
}
