body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background-color: #fff;
  color: #222;
  }


  .container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
  }

header {
    width: 100%;
    background: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
    padding: 4px 0;
    position: sticky;
    top: 0;
    z-index: 999;
    }

.top-connector {
  width: 100%;
  height: 4px;
  background: linear-gradient(270deg, #0057B8, #1C396D, #0057B8);
  background-size: 600% 600%;
  animation: gradientSlide 6s ease infinite;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1001;
}

.logo-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding-top: 10px;
  animation: craneDrop 1.2s ease-out;
}

.logo-img {
  max-height: 90px !important;
  height: auto;
  width: auto;
}

.logo-wrapper:hover .logo-img {
  animation: craneShake 0.4s ease;
}

.crane-lines {
  position: absolute;
  top: -50px;
  width: 2px;
  height: 60px;
  background: #00b831;
  z-index: 1;
  left: 15%;
}

.crane-lines.right {
  left: 85%;
}

@keyframes craneDrop {
  0% {
    transform: translateY(-60px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes craneShake {
  0% { transform: rotate(0deg); }
  25% { transform: rotate(1.5deg); }
  50% { transform: rotate(-1.5deg); }
  75% { transform: rotate(1deg); }
  100% { transform: rotate(0deg); }
}

@keyframes gradientSlide {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 20px;
}

nav ul li a {
  text-decoration: none;
  color: #014d00;
  font-weight: 600;
}

.main-nav {
  background: #ffffff;
  padding: 10px 20px;
  font-family: 'Segoe UI', sans-serif;
}

.nav-list {
  display: flex;
  justify-content: center;
  align-items: center;
  list-style: none;
  gap: 28px;
  margin: 0;
  padding: 0;
  flex-wrap: wrap;
}

.nav-list li {
  position: relative;
}

.nav-list a {
  color: #00274D;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  transition: color 0.3s ease;
}

.nav-list a:hover,
.nav-list a.active {
  color: #0057B8;
}



.nav-list a:hover::after {
  width: 100%;
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: 110%;
  left: 0;
  background: #F4F4F4;
  border-radius: 8px;
  box-shadow: 0 8px 16px rgba(0,0,0,0.08);
  padding: 10px 0;
  min-width: 220px;
  z-index: 999;
  flex-direction: column;
}

.dropdown:hover .dropdown-menu {
  display: flex;
}

.dropdown-menu li a {
  padding: 10px 20px;
  font-weight: 500;
  color: #00274D;
  white-space: nowrap;
}

.dropdown-menu li a:hover {
  background: #EAEAEA;
  color: #0057B8;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  width: 28px;
  height: 22px;
  justify-content: space-between;
  cursor: pointer;
  z-index: 1001;
}

.menu-toggle span {
  height: 3px;
  background: #00274D;
  border-radius: 2px;
  width: 100%;
}

@media (max-width: 1024px) {
  .menu-toggle {
    display: flex;
  }

  .main-nav {
    position: absolute;
    top: 100%;
    left: 0;
    background: #ffffff;
    width: 100%;
    max-height: 0;
    overflow: hidden;
    flex-direction: column;
    transition: max-height 0.3s ease;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.08);
  }

  .main-nav.open {
    max-height: 1000px;
  }

  .nav-list {
    flex-direction: column;
    align-items: flex-start;
    padding: 20px;
    gap: 18px;
  }

  .dropdown-menu {
    display: none;
    flex-direction: column;
  }

  .dropdown-menu li a {
    padding: 8px 16px;
  }
}

  .menu-heading {
    cursor: default; /* El işareti değil, normal olur */
    pointer-events: none; /* Tıklanamaz olur */
  }

/* HERO SECTION FORD MAVİSİNE GÖRE GÜNCELLENDİ */
.hero {
  position: relative;
  height: 90vh;
  min-height: 600px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-bg {
  background: url('../img/bativinc-vincler.png') top center / contain no-repeat;
  background-size: cover;
  background-attachment: scroll;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-overlay {
  background: rgba(0, 0, 0, 0.5);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  color: white;
  text-align: center;
  padding: 0 20px;
}

.hero-content h1 {
  font-size: 38px;
  font-weight: bold;
  margin-bottom: 10px;
}

.hero-content p {
  font-size: 18px;
  margin-bottom: 20px;
}

.btn {
  background: #0057B8;
  color: #fff;
  padding: 12px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s ease;
}

.btn:hover {
  background: #003D7A;
}
















.vinc-slogan-section {
  background: #ffffff;
  padding: 100px 0 200px;
  font-family: 'Manrope', sans-serif;
  position: relative;
  overflow: visible;
}

.vinc-slogan-box {
  background: linear-gradient(135deg, #004fa3, #0057B8);
  border-radius: 24px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 100px 80px;
  gap: 40px;
  flex-wrap: nowrap;
  position: relative;
  overflow: visible;
  z-index: 1;
  min-height: 420px;
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.18), 0 0 0 1px rgba(255, 255, 255, 0.05) inset;
  backdrop-filter: blur(2px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: all 0.4s ease;
}


/* SOL ARAÇ */
.vinc-slogan-image-sol {
  flex: 1;
  position: relative;
  z-index: 3;
  display: flex;
  justify-content: flex-end;
}

.vinc-slogan-image-sol img {
  width: 520px;
  max-width: none;
  position: relative;
  bottom: -60px;
  filter: drop-shadow(0 20px 28px rgba(0, 0, 0, 0.3));
}

/* YAZI */
.vinc-slogan-text {
  flex: 1;
  text-align: center;
  z-index: 4;
  position: relative;
}

.vinc-slogan-text h2.shine-text {
  font-size: 42px;
  font-weight: 600;
  font-family: 'Playfair Display', serif;
  background: linear-gradient(90deg, #ffffff 0%, #cce6ff 30%, #ffffff 100%);
  background-size: 200%;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shineText 3s linear infinite;
  margin: 0;
  line-height: 1.8;
}

/* SAĞ ARAÇLAR */
.vinc-slogan-image-sag {
  flex: 1.3;
  display: flex;
  justify-content: flex-start;
  align-items: flex-end;
  gap: 20px;
  position: relative;
  z-index: 2;
}

.vinc-slogan-image-sag img {
  width: 520px;
  position: relative;
  bottom: -60px;
  filter: drop-shadow(0 18px 24px rgba(0, 0, 0, 0.25));
  transition: transform 0.3s ease;
}

.vinc-slogan-image-sag img:hover {
  transform: scale(1.04);
}

@keyframes shineText {
  0% {
    background-position: -200% center;
  }
  100% {
    background-position: 200% center;
  }
}
@media (max-width: 992px) {
  .vinc-slogan-box {
    flex-direction: column;
    padding: 60px 20px;
    text-align: center;
    align-items: center;
  }

  .vinc-slogan-text {
    order: 2; /* yazı ortada kalsın */
    margin: 30px 0 20px;
  }

  .vinc-slogan-text h2.shine-text {
    font-size: 22px;
    margin: 0 auto;
    line-height: 1.5;
    max-width: 80%;
  }

  .vinc-slogan-image-sol,
  .vinc-slogan-image-sag {
    width: 100%;
    justify-content: center;
    flex: none;
  }

  .vinc-slogan-image-sol {
    order: 1;
    margin-bottom: 20px;
  }

  .vinc-slogan-image-sag {
    order: 3;
    gap: 12px;
    flex-wrap: wrap;
  }

  .vinc-slogan-image-sol img,
  .vinc-slogan-image-sag img {
    max-width: 220px;
    width: 48%;
    height: auto;
    position: static;
    margin: 0 auto;
    display: block;
    object-fit: contain;
  }
}

















  .floating-button {
  position: fixed;
  width: 52px;
  height: 52px;
  bottom: 20px;
  z-index: 1000;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  animation: pulse 2.5s infinite;
  }

.floating-button.phone {
  left: 20px;
  filter: hue-rotate(0deg) saturate(5) brightness(1.1);
  }

.floating-button.phone img {
  filter: hue-rotate(65deg) saturate(6);
  }

.floating-button.whatsapp {
  right: 20px;
  }

.floating-button img {
  width: 26px;
  height: 26px;
  }

.floating-button:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(0,0,0,0.25);
  }

@keyframes pulse {
  0%, 100% {
  transform: scale(1);
  }

50% {
  transform: scale(1.08);
  }

}
  .btn {
  background: #0f8825;
  color: black;
  padding: 10px 25px;
  text-decoration: none;
  font-weight: bold;
  border-radius: 5px;
  }

.highlight-section img {
  width: 100%;
  display: block;
  }

.categories {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  padding: 60px 20px;
}

.category-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 30px 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
  width: 300px;
  border: 1px solid rgba(0, 87, 184, 0.08);
}

.category-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 24px 48px rgba(0, 87, 184, 0.15);
}

.category-card img {
  height: 160px;
  object-fit: contain;
  margin-bottom: 20px;
  transition: transform 0.3s ease;
}

.category-card:hover img {
  transform: scale(1.05);
}

.category-card::after {
  content: "";
  display: block;
  width: 0;
  height: 3px;
  background-color: #0057B8;
  transition: width 0.3s ease;
  margin: 16px auto 0 auto;
}

.category-card:hover::after {
  width: 60px;
}

.category-card h3 {
  font-size: 20px;
  font-weight: 600;
  color: #003366;
  margin-bottom: 8px;
  font-family: 'Manrope', sans-serif;
}

.category-card p {
  font-size: 14px;
  color: #555;
  margin-bottom: 16px;
}

.btn-small {
  background: #0057B8;
  color: #fff;
  font-size: 13px;
  padding: 8px 16px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  display: inline-block;
}

.btn-small:hover {
  background: #003b87;
  color: #fff;
}

.google-testimonials {
    padding: 80px 20px;
    background: #fff;
  }

.google-testimonials .section-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 10px;
  }

.google-testimonials .section-subtitle {
    color: #777;
    font-size: 16px;
    margin-bottom: 5px;
  }

.google-testimonials .section-line {
    width: 60px;
    height: 4px;
    background: #0057B8;
    margin: 0 auto 40px;
  }

.testimonial-box {
    background: #fdfdfd;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.06);
    max-width: 860px;
    margin: auto;
    text-align: left;
    position: relative;
  }

.quote-icon {
    font-size: 64px;
    color: #0057B8;
    font-weight: bold;
    position: absolute;
    top: 20px;
    left: 30px;
  }

.testimonial-text {
    font-size: 18px;
    color: #333;
    font-weight: 500;
    margin-bottom: 30px;
    padding-left: 60px;
  }

.testimonial-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-left: 60px;
  }

.testimonial-author {
    font-size: 16px;
    color: #222;
  }

.testimonial-stars span {
    margin-right: 8px;
    color: #555;
  }

.testimonial-stars i {
    color: #f0d002;
    margin-right: 0px;
  }

.google-logo {
    width: 80px;
    margin-right: 10px;
    vertical-align: middle;
  }

/* Özel Slider Butonları */
  .custom-carousel-prev,
  .custom-carousel-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: #0057B8;
    color: #fff;
    border: none;
    border-radius: 50%;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    z-index: 10;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
  }

.custom-carousel-prev:hover,
  .custom-carousel-next:hover {
    background: #c79e00;
  }

.custom-carousel-prev {
    left: 70px;
  }

.custom-carousel-next {
    right: 70px;
  }

@media (max-width: 768px) {
    .custom-carousel-prev,
    .custom-carousel-next {
      display: none;
    }

}

  @media (max-width: 991px) {
    .custom-carousel-prev {
      left: 25px;
    }

.custom-carousel-next {
      right: 25px;
    }

}
  
  @media (max-width: 576px) {
    .custom-carousel-prev,
    .custom-carousel-next {
      width: 36px;
      height: 36px;
      font-size: 16px;
    }

.custom-carousel-prev {
      left: 15px;
    }

.custom-carousel-next {
      right: 15px;
    }

}
  
  
  



  .testimonials, .faq {
  padding: 40px 0;
  background: #f9f9f9;
  }

.accordion-button {
  background: #eee;
  padding: 10px;
  border: none;
  width: 100%;
  text-align: left;
  font-weight: bold;
  cursor: pointer;
  }

.accordion-content {
  display: none;
  padding: 10px;
  background: #fff;
  }

.floating-button {
    position: fixed;
    bottom: 20px;
    width: 64px;
    height: 64px;
    background: #1a1a1a;
    border-radius: 50%;
    box-shadow: 0 0 12px rgba(0, 0, 0, 0.25);
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

.floating-button:hover {
    transform: scale(1.1);
    box-shadow: 0 0 18px rgba(212, 175, 55, 0.5);
    
  }

.phone {
    left: 20px;
    background-color: #003D7A; /* altın sarısı */
  }

.phone-wrapper {
    position: fixed;
    left: 20px;
    bottom: 20px;
    z-index: 1000;
  }

.phone-tooltip {
    position: absolute;
    bottom: 70px;
    left: 0;
    background: #1a1a1a;
    color: #ccc;
    padding: 8px 10px;
    border-radius: 8px;
    font-size: 13px;
    display: none;
    box-shadow: 0 2px 8px rgba(0,0,0,0.4);
    min-width: 160px;
  }

.phone-tooltip a {
    color: #003D7A;
    text-decoration: none;
    font-weight: 500;
  }

.phone-wrapper:hover .phone-tooltip {
    display: block;
  }

.whatsapp {
    right: 20px;
    background-color: #25d366; /* WhatsApp yeşili */
  }

/* Footer */
/* === Footer Üstü Ferah Boşluk === */
footer.footer {
  margin-top: 60px;
  background: #1a1a1a;
  color: #aaa;
  padding: 36px 0;
  font-size: 13.8px;
  position: relative;
}

/* === Üst Çizgi Efekt (Sarıdan Yeşile Soldan Sağa) === */
footer.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #003D7A 30%, #2ecc71 70%);
  background-size: 200% 100%;
  background-repeat: no-repeat;
  animation: gradientBorder 8s ease-in-out infinite;
}

@keyframes gradientBorder {
  0%, 100% { background-position: 0% 0; }

50% { background-position: 100% 0; }

}


/* === Footer İçerik Yapısı === */
.footer-row {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-left p {
  margin: 0;
  line-height: 1.6;
  font-weight: 400;
  font-size: 14px;
  color: #bbb;
  display: inline-block;
}

/* === Batı Vinç Altı Çizgi Efekti === */
.bativinc-text-wrapper {
  display: inline-block;
  font-weight: 600;
  color: #bbb;
  position: relative;
}

.bativinc-text-wrapper::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  height: 2px;
  width: 0;
  background: #003D7A;
  animation: underlineSweep 10s ease-in-out infinite;
}

@keyframes underlineSweep {
  0%, 10%, 100% {
    width: 0;
    opacity: 0;
  }

30%, 60% {
    width: 100%;
    opacity: 1;
  }

80% {
    width: 0;
    opacity: 0;
  }

}

.bativinc-text-wrapper:hover {
  color: #003D7A;
}

/* === Kodem Yazılım Linki (parlayan - sabit değil) === */
.kodem-link {
  color: #bbb;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  transition: all 0.4s ease;
  background: linear-gradient(90deg, #2ecc71, #a9f7cd);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: kodemParlama 12s ease-in-out infinite;
}

.kodem-link:hover {
  animation: none;
  -webkit-text-fill-color: #27ae60;
  color: #27ae60;
}

@keyframes kodemParlama {
  0%, 10% { background-position: 0% center; }

50% { background-position: 100% center; }

100% { background-position: 0% center; }

}

.footer-kodem {
  margin-top: 6px; /* alt satıra biraz boşluk */
  font-size: 13px;
  color: #aaa;
  display: block;
}

/* === Footer Linkleri === */
.footer-right {
  display: flex;
  align-items: center;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.footer-links a {
  color: #ccc;
  text-decoration: none;
  font-weight: 500;
  font-size: 14px;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: #003D7A;
}

@media (max-width: 768px) {
  .footer-row {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

}

@media (max-width: 768px) {
  .footer-left {
    text-align: center;
  }

}

  
  
  

  
  
 /* SSS Başlığı ve Alt Çizgi */
.headline {
  margin: 60px auto;
  max-width: 880px;
  padding: 0 20px;
}

.faqhx-h1div {
  font-size: 2.8rem; /* Daha büyük boy */
  font-weight: 800;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #002b6b;
  font-family: 'Playfair Display', serif;
  margin-bottom: 16px;
  position: relative;
  transition: all 0.3s ease;
}

.faqhx-h1div::after {
  content: "";
  display: block;
  width: 60px;
  height: 4px;
  background-color: #0057B8;
  margin: 14px auto 0;
  border-radius: 2px;
}

.faqhx-h1div:hover,
.faqhx-h1div:focus {
  background: linear-gradient(90deg, #0057B8, #5182b4);
  background-size: 200% auto;
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  animation: shineText 1.8s ease-in-out forwards;
}

.headline p {
  font-size: 1.1rem;
  color: #444;
  line-height: 1.8;
  font-family: 'Manrope', sans-serif;
  font-weight: 400;
  max-width: 720px;
  margin: 10px auto 0;
}

/* Gradient animasyon */
@keyframes shineText {
  0% {
    background-position: -200% center;
  }
  100% {
    background-position: 200% center;
  }
}

/* --------- Responsive --------- */
@media (max-width: 992px) {
  .faqhx-h1div {
    font-size: 2.2rem;
  }

  .headline p {
    font-size: 1rem;
  }
}

@media (max-width: 576px) {
  .faqhx-h1div {
    font-size: 1.7rem;
    letter-spacing: 0.5px;
  }

  .faqhx-h1div::after {
    width: 40px;
  }

  .headline p {
    font-size: 0.95rem;
  }
}


@keyframes shineText {
  0% { background-position: 0% center; }

100% { background-position: 100% center; }

}

.headline p {
  text-align: center;
  color: #777;
  font-size: 16px;
  margin-bottom: 20px;
}

.headline::after {
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  margin: 16px auto;
  border-radius: 2px;
}

/* FAQ grid yapısı */
.rowHalf > .row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
}

/* Her soru bloğu */
.faq {
  flex: 1 1 calc(50% - 8px);
  max-width: calc(50% - 8px);
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  margin: 0 !important;
  padding: 0 !important;
}

/* Açılır kapanır başlık */
.card-header .h3 {
  margin: 0 !important;
  cursor: pointer;
  padding: 28px 36px 25px 58px;
  font-weight: 600;
  font-size: 16px;
  color: #222;
  background: transparent;
  display: flex;
  align-items: center;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
  position: relative;
  border: 1px solid #f2f2f2;
}

.card-header .h3:hover {
  background-color: #fdfdfd;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
  transform: translateY(-1px);
}

.card-header .h3[aria-expanded="true"] {
  background-color: #fdfdfd;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.06);
}

.card-header .h3::before {
  content: "+";
  font-size: 20px;
  color: #0057B8;
  font-weight: bold;
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
}

.card-header .h3[aria-expanded="true"]::before {
  content: "−";
}

/* Açılan içerik kısmı */
.card-body {
  margin: 0;
  padding: 32px 28px 28px 28px;
  font-size: 15px;
  color: #333;
  line-height: 1.75;
  background: #fdfdfd;
  text-align: center;
  border-top: 1px solid #eee;
  border-radius: 0 0 12px 12px;
}

/* HakkımzıdaSayfası */

.about-card {
  background: #fff;
  padding: 40px 40px;
  margin: 50px auto;
  border-radius: 16px;
  max-width: 1000px;
  box-shadow: 0 12px 28px rgba(0,0,0,0.08);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.about-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 6px;
  background: linear-gradient(90deg, #003D7A, #31679d);
  transition: background 0.4s ease;
}

.about-card:hover::before {
  background: linear-gradient(90deg, #003D7A, #31679d);
}

.about-card h2 {
  font-size: 28px;
  margin-bottom: 20px;
  color: #222;
}

.about-card p {
  font-size: 17px;
  line-height: 1.7;
  color: #444;
  margin-bottom: 16px;
}

.about-quote {
  font-style: italic;
  color: #888;
  font-size: 15px;
  margin-top: 30px;
}

/* COUNTER & ICON SECTION - FORD MAVİLERİYLE GÜNCELLENDİ */
.counter-section {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  padding: 9px 4px;
  background: linear-gradient(145deg, #f2f6fc, #e6effa);
}

.counter-section {
  padding: 80px 0;
  background: linear-gradient(180deg, #ffffff 0%, #f5faff 100%);
  text-align: center;
}

.counter-box {
  background: #ffffff;
  padding: 40px 30px;
  border-radius: 24px;
  box-shadow: 0 14px 40px rgba(0, 87, 184, 0.08);
  transition: all 0.4s ease;
  border: 1px solid rgba(0, 87, 184, 0.05);
  position: relative;
  overflow: hidden;
}

.counter-box::before {
  content: "";
  position: absolute;
  top: -20%;
  left: -20%;
  width: 140%;
  height: 140%;
  background: radial-gradient(circle at center, rgba(0, 87, 184, 0.05), transparent 70%);
  z-index: 0;
  transition: opacity 0.3s ease;
}

.counter-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 50px rgba(0, 87, 184, 0.15);
}

.counter-box h3 {
  font-size: 44px;
  font-weight: 700;
  color: #0057B8;
  font-family: 'Playfair Display', serif;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  position: relative;
  z-index: 1;
}

.counter-box p {
  font-size: 17px;
  color: #00274D;
  font-family: 'Manrope', sans-serif;
  margin: 0;
  position: relative;
  z-index: 1;
}

.plus {
  font-size: 2rem;
  font-weight: 700;
  color: #003D7A;
  margin-left: 2px;
  position: relative;
  top: -2px;
}

@media (max-width: 992px) {
  .counter-section {
    padding: 60px 20px;
  }

  .counter-box {
    padding: 30px 25px;
    margin-bottom: 30px;
  }

  .counter-box h3 {
    font-size: 36px;
    gap: 4px;
  }

  .counter-box p {
    font-size: 15px;
  }
}

@media (max-width: 768px) {
  .counter-box {
    padding: 28px 20px;
    border-radius: 18px;
  }

  .counter-box h3 {
    font-size: 30px;
  }

  .counter-box p {
    font-size: 14px;
  }

  .plus {
    font-size: 1.5rem;
  }
}

@media (max-width: 576px) {
  .counter-section {
    padding: 50px 15px;
  }

  .counter-box {
    padding: 24px 18px;
  }

  .counter-box h3 {
    font-size: 26px;
  }

  .counter-box p {
    font-size: 13.5px;
  }

  .plus {
    font-size: 1.3rem;
  }
}



.counter {
  font-weight: 700;
  font-size: 2rem;
  color: #0057B8;
  font-family: 'Manrope', sans-serif;
}

.hero-subtext {
  font-size: 1rem;
  color: #444;
  margin-top: 10px;
}

.section-line {
  width: 30px;
  height: 4px;
  background-color: #0057B8;
  border-radius: 2px;
  margin: 15px auto 0;
}

.value-icons {
  background: #ffffff;
  padding: 60px 20px;
  border-radius: 16px;
  box-shadow: 0 4px 18px rgba(0,0,0,0.06);
  margin: 60px auto;
}

.value-icons .icon-box {
  text-align: center;
  padding: 40px 25px;
}

.value-icons .icon-box i {
  font-size: 48px;
  color: #0057B8;
  margin-bottom: 20px;
}

.value-icons .icon-box h5 {
  font-weight: 700;
  margin-bottom: 12px;
  color: #00274D;
}

.value-icons .icon-box p {
  color: #333;
  font-size: 15.5px;
}

footer {
  background: #e8f0fa;
  padding: 40px 0;
  font-size: 14px;
}

.footer-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.footer-left, .footer-right {
  flex: 1;
  min-width: 200px;
}

.footer-links li {
  display: inline-block;
  margin-left: 15px;
}

.footer-links a {
  color: #003D7A;
  text-decoration: none;
}


/* Genel Ford Mavisi Uyarlaması */

.banner-img {
  max-width: 100%;
  border-radius: 16px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.main-wrapper {
  max-width: 1280px;
  margin: 60px auto;
  background-color: #fff;
  border-radius: 20px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.06);
  padding: 40px 20px;
}

.section-line {
  width: 50px;
  height: 4px;
  background-color: #0057B8;
  border-radius: 2px;
  margin: 15px auto 0;
}

.value-icons {
  background: #fff;
  padding: 60px 20px;
  border-radius: 16px;
  box-shadow: 0 4px 18px rgba(0,0,0,0.06);
  margin-bottom: 60px;
}

.section-title {
  font-size: 2.6rem;
  font-weight: 800;
  color: #0057B8;
  margin-bottom: 25px;
  text-align: center;
  position: relative;
}

.section-title::after {
  content: '';
  width: 60px;
  height: 4px;
  background: #0057B8;
  display: block;
  margin: 12px auto 0;
  border-radius: 2px;
}

@media (max-width: 768px) {
  .section-title {
    font-size: 2rem;
  }

  .section-line {
    width: 50px;
    height: 4px;
    background-color: #0057B8;
    border-radius: 2px;
    margin: 15px auto 0;
  }

  .section-title {
    font-size: 2.6rem;
    font-weight: 800;
    color: #0057B8;
    text-align: center;
    margin-bottom: 25px;
    position: relative;
  }

  .value-icons .icon-box i {
    font-size: 48px;
    color: #003D7A;
    margin-bottom: 20px;
  }
}

.highlight-box {
  background-color: #e8f0fc;
  border-left: 5px solid #0057B8;
  padding: 20px 30px;
  margin-top: 40px;
  font-style: italic;
  border-radius: 6px;
  color: #333;
}

a {
  color: #0057B8;
  text-decoration: none;
}

a:hover {
  color: #003D7A;
  text-decoration: underline;
}

.contact-hero {
  background: linear-gradient(to right, #e6f0fa, #fff);
  padding: 100px 0 60px;
  text-align: center;
}

.contact-hero h1 {
  font-size: 3rem;
  font-weight: 800;
  color: #00274D;
}

.section-line {
  width: 80px;
  height: 5px;
  background-color: #0057B8;
  border-radius: 3px;
  margin: 20px auto;
}

.contact-form-section {
  padding: 80px 0 50px;
}

.contact-form label {
  font-weight: 600;
  color: #333;
}

.contact-form input, .contact-form textarea {
  border-radius: 12px;
  padding: 14px;
  border: 1px solid #ccc;
  transition: border-color 0.3s;
}

.contact-form input:focus, .contact-form textarea:focus {
  border-color: #0057B8;
  outline: none;
  box-shadow: 0 0 0 0.2rem rgba(0, 87, 184, 0.25);
}

.contact-form button {
  background-color: #0057B8;
  border: none;
  padding: 14px 36px;
  font-weight: bold;
  color: #fff;
  border-radius: 8px;
  transition: background 0.3s ease;
}

.contact-form button:hover {
  background-color: #003D7A;
}

.map-embed iframe {
  width: 100%;
  height: 480px;
  border: none;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}



.section-title {
  font-size: 2.8rem;
  font-weight: bold;
  color: #00274D;
}

.section-subtitle {
  color: #444;
  font-size: 1.2rem;
  margin-bottom: 30px;
}

.quality-section {
  padding: 80px 0;
}

.quality-card {
  border: none;
  padding: 0;
  background: transparent;
  transition: all 0.3s ease-in-out;
}

.quality-card:hover {
  transform: translateY(-4px);
}

.quality-card img {
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.05);
}

.quality-content {
  padding-top: 20px;
}

.quality-content h5 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.highlight {
  background: #0057B8;
  color: #fff;
  padding: 60px 20px;
  border-radius: 12px;
  text-align: center;
  font-size: 1.4rem;
  font-weight: 600;
}

.kvkk-section {
  background: #fff;
  border-radius: 12px;
  padding: 60px 50px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
  margin-top: 50px;
}

.kvkk-section h2 {
  font-weight: 800;
  color: #0057B8;
  margin-bottom: 35px;
  font-size: 36px;
  text-align: center;
  position: relative;
}

.kvkk-section h2::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background: #0057B8;
  margin: 12px auto 0;
  border-radius: 2px;
}

.kvkk-section h4 {
  color: #111;
  margin-top: 45px;
  font-weight: 800;
  font-size: 22px;
  border-left: 4px solid #0057B8;
  padding-left: 14px;
  margin-bottom: 18px;
}

.kvkk-section p, .kvkk-section li {
  color: #555;
  font-size: 16px;
}

.kvkk-section ul {
  padding-left: 20px;
}


.highlight {
  background: #fdfdfd;
  border-left: 4px solid #0057B8;
  padding: 16px 22px;
  border-radius: 6px;
  margin-top: 30px;
  box-shadow: 0 0 8px rgba(0,0,0,0.04);
}

.highlight strong {
  color: #c79a00;
}

.value-icons {
  margin-top: 60px;
  margin-bottom: 40px;
}

.value-icons .icon-box {
  text-align: center;
  padding: 30px 15px;
}

.value-icons .icon-box img {
  width: 64px;
  margin-bottom: 16px;
}

.value-icons .icon-box h5 {
  font-weight: 700;
  margin-bottom: 8px;
  color: #222;
}

.value-icons .icon-box p {
  color: #555;
  font-size: 15px;
}

.footer-notice {
  background: #fefefe;
  padding: 30px 20px;
  margin-top: 40px;
  border-top: 2px solid #0057B8;
  border-radius: 8px;
  text-align: center;
  font-size: 15px;
  color: #333;
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

.footer-notice strong {
  color: #c79a00;
}

.project-card {
  border: none;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0,0,0,0.05);
  transition: all 0.3s ease-in-out;
}

.project-card:hover {
  transform: translateY(-5px);
}

.project-image img {
  width: 100%;
  height: auto;
  display: block;
}

.project-info {
  padding: 20px;
  background: #fff;
}

.project-info h5 {
  font-weight: 600;
  margin-bottom: 10px;
}

.section-title {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 20px;
  text-align: center;
}

.section-subtitle {
  text-align: center;
  margin-bottom: 50px;
  color: #555;
}

.project-image {
width: 100%;
height: 400px;
overflow: hidden;
display: flex;
align-items: center;
justify-content: center;
}

.project-image img {
height: 100%;
width: 100%;
object-fit: cover;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 20px;
}

.section-subtitle {
  color: #555;
  font-size: 1.2rem;
  margin-bottom: 30px;
}

.vision-mission {
  padding: 80px 0;
}

.vision-mission ul {
  padding-left: 20px;
}

.vision-mission li {
  margin-bottom: 10px;
  font-weight: 500;
  color: #333;
}

.highlight-box {
  background-color: #fff;
  border-left: 5px solid #003D7A;
  padding: 20px;
  margin-top: 30px;
  border-radius: 8px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.05);
}

.values-box {
  background: linear-gradient(to bottom, #fffdf5, #fdfdfd);
  padding: 60px 40px;
  border-radius: 16px;
  margin-top: 80px;
}

.value-icon {
  font-size: 36px;
  color: #d4af37;
  margin-bottom: 15px;
  background: #fff;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  padding: 20px;
  border-radius: 12px;
  display: inline-block;
}

h5 {
  color: #222;
  font-size: 1.2rem;
  font-weight: 600;
}

.bg-accent {
  background: linear-gradient(to right, #003D7A, #31679d);
  color: #000;
  padding: 80px 0;
}

.section-line {
  background-color: #0057B8;
}

.vinc-hizmeti {
  background: #fff;
  padding: 60px 40px;
  margin: 80px auto 50px;
  border-radius: 12px;
  box-shadow: 0 6px 30px rgba(0, 0, 0, 0.06);
  max-width: 1200px;
}

.vinc-hizmeti h2 {
  text-align: center;
  color: #0057B8;
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 30px;
  position: relative;
}

.vinc-hizmeti h2::after {
  content: '';
  display: block;
  width: 90px;
  height: 4px;
  background: #0057B8;
  margin: 12px auto 0;
  border-radius: 3px;
}

.vinc-hizmeti p {
  color: #444;
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 15px;
  text-align: center;
}

.image-card {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: center;
  margin-top: 50px;
  align-items: center;
}

.image-card-img {
  flex: 1 1 500px;
  text-align: center;
}

.image-card-img img {
  max-width: 100%;
  border-radius: 12px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
}

.image-card-text {
  flex: 1 1 400px;
        font-size: 15px;
        color: #444;
        line-height: 1.7;
        background: #fdfdfd;
        padding: 40px 25px;
        border-radius: 12px;
        box-shadow: 0 6px 20px rgba(0,0,0,0.04);
        display: flex;
        flex-direction: column;
        justify-content: center;
}



.vinc-hizmeti {
  background: #fff;
  padding: 60px 40px;
  margin-top: 40px;
  border-radius: 12px;
  box-shadow: 0 6px 30px rgba(0, 0, 0, 0.06);
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.vinc-hizmeti {
  background: #fff;
  padding: 60px 40px;
  margin-top: 50px;
  border-radius: 12px;
  box-shadow: 0 6px 30px rgba(0, 0, 0, 0.06);
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.value-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin-top: 40px;
}

.value-item {
  background: #ffffff;
  border-left: 4px solid #0057B8;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 6px 16px rgba(0,0,0,0.05);
  display: flex;
  align-items: center;
  gap: 15px;
  flex: 1 1 340px;
  max-width: 380px;
  transition: all 0.3s ease;
}

.value-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.08);
}

.value-item i {
  font-size: 22px;
  color: #c79a00;
}

.value-item span {
  font-size: 15px;
  color: #333;
}



.logo-img {
  max-height: 60px;
}

.vinc-hizmeti {
  background: white;
  margin: 60px auto;
  padding: 60px 40px;
  border-radius: 20px;
  max-width: 1200px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.07);
  position: relative;
}

.vinc-hizmeti h2 {
  font-size: 36px;
  font-weight: 800;
  color: #0057B8;
  text-align: center;
  margin-bottom: 30px;
}

.vinc-hizmeti p {
  font-size: 16px;
  color: #444;
  line-height: 1.7;
  margin-bottom: 15px;
}

.content-split {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: center;
}

.image-section {
  flex: 1 1 45%;
}

.image-section img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.image-caption {
  font-size: 13px;
  color: #777;
  margin-top: 10px;
  text-align: left;
}

.text-section {
  flex: 1 1 50%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.tonaj-item h3 {
  font-size: 20px;
  font-weight: 700;
  color: #0057B8;
  margin-bottom: 8px;
}

.tonaj-item p {
  font-size: 15px;
  color: #555;
  margin: 0;
}

footer {
  background: #111;
  color: #ccc;
  padding: 40px 20px;
  font-size: 14px;
}

footer a {
  color: #0057B8;
  text-decoration: none;
}

footer a:hover {
  text-decoration: underline;
}

.footer-row {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.footer-links {
  list-style: none;
  padding: 0;
  display: flex;
  gap: 20px;
}

.alt-baslik {
  font-size: 22px;
  font-weight: 700;
  text-align: center;
  margin-top: 40px;
  color: #222;
}

.value-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin-top: 30px;
}

.image-card {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  margin-top: 60px;
  flex-wrap: wrap;
  gap: 40px;
}

.image-card-img {
  flex: 1 1 450px;
  text-align: center;
}








.footer-right {
  position: absolute;
  right: 150px;
  top: 50%;
  transform: translateY(-50%);
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 18px;
}

.footer-links li {
  display: inline-block;
}

.footer-links a {
  color: #ccc;
  text-decoration: none;
  font-weight: 500;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: #0057B8;
}

.footer-links i.fab.fa-instagram {
  font-size: 16px;
  color: #0057B8;
}

/* İLETİŞİM SAYFASI STİLİ */

.contact-hero {
  background: #fff8e1;
  padding: 50px 0 30px;
}

.contact-hero h1 {
  font-weight: 700;
}

.contact-hero .lead {
  color: #444;
}

.section-line {
  width: 60px;
  height: 4px;
  background: #0057B8;
  margin: 20px auto;
  border-radius: 2px;
}

.contact-body {
  padding: 60px 0;
}

.contact-box ul.contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.contact-list li {
  margin-bottom: 15px;
  font-size: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #333;
}

.contact-list i {
  color: #0057B8;
  font-size: 18px;
  min-width: 20px;
}

.contact-list a {
  color: #0057B8;
  text-decoration: none;
  font-weight: 500;
}

.contact-list a:hover {
  text-decoration: underline;
}

.contact-form .form-control {
  border-radius: 8px;
  padding: 12px 14px;
  border: 1px solid #ccc;
}

.contact-form .btn {
  padding: 10px 30px;
  font-weight: 600;
  border-radius: 8px;
  background-color: #0057B8;
  border: none;
  transition: all 0.3s ease;
}

.contact-form .btn:hover {
  background-color: #003D7A;
  color: #fff;
}


.map-embed iframe {
  width: 100%;
  height: 400px;
  border: none;
  border-radius: 12px;
  margin-top: 40px;
}








/* Hizmetler Bölümü */
.hizmetler-section {
  padding: 80px 20px;
  background-color: #f8f9fb;
}

.section-title {
  font-size: 2.6rem;
  font-weight: 800;
  color: #002b6b; /* Daha koyu Ford mavisi tonu */
  margin-bottom: 14px;
  margin-top: 40px;
  font-family: 'Playfair Display', serif;
  letter-spacing: -0.5px;
  position: relative;
}

.section-title::after {
  content: "";
  display: block;
  width: 60px;
  height: 4px;
  background-color: #0057B8;
  margin: 16px auto 0;
  border-radius: 2px;
}

.section-subtitle {
  font-size: 1.1rem;
  color: #444;
  max-width: 740px;
  margin: 20px auto 60px;
  line-height: 1.8;
  font-family: 'Manrope', sans-serif;
  font-weight: 400;
}

/* Tablet */
@media (max-width: 992px) {
  .section-title {
    font-size: 2.2rem;
  }

  .section-subtitle {
    font-size: 1rem;
    max-width: 90%;
    margin-bottom: 50px;
  }
}

/* Mobil */
@media (max-width: 576px) {
  .section-title {
    font-size: 1.8rem;
    margin-top: 30px;
  }

  .section-subtitle {
    font-size: 0.95rem;
    max-width: 92%;
    margin-bottom: 40px;
  }
}


.hizmetler-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.hizmet-kart {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 30px 20px;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 8px 16px rgba(0,0,0,0.03);
  max-width: 300px;
  flex: 1 1 300px;
}

.hizmet-kart:hover {
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
  transform: translateY(-5px);
}

.hizmet-ikon {
  font-size: 2.5rem;
  color: #003399;
  margin-bottom: 15px;
}

.hizmet-kart h4 {
  font-size: 1.2rem;
  font-weight: 600;
  color: #222;
  margin-bottom: 10px;
}

.hizmet-kart p {
  font-size: 0.95rem;
  color: #666;
  line-height: 1.6;
}

/* Orijinal Parça Kutusu */
.original-parca-box {
  background-color: #e3ecff;
  padding: 20px;
  border-left: 6px solid #003399;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 40px;
}

.original-parca-box i {
  color: #003399;
  font-size: 1.4rem;
}

.original-parca-box p {
  margin: 0;
  font-size: 0.95rem;
  color: #003366;
}
