body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background-color: #f4f4f4;
}

.hero {
  height: 100vh;
  background-image: url('oto-cekici-ankara.jpg'); /* kendi kamyon görselin */
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.overlay {
  background-color: rgba(0, 0, 0, 0.6);
  padding: 40px 20px;
  border-radius: 12px;
  text-align: center;
  color: white;
  max-width: 800px;
  width: 90%;
}

.brand-name {
  font-size: 2.4rem;
  font-weight: bold;
  margin-bottom: 20px;
  line-height: 1.2;
}

.brand-name span {
  font-size: 1.8rem;
  font-weight: 500;
  display: block;
  margin-top: 5px;
}

.slider-container {
  position: relative;
  margin-bottom: 30px;
}

.slider {
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.slide {
  display: none;
  font-size: 1.4rem;
  animation: fadeIn 1s ease-in-out;
}

.slide.active {
  display: block;
}

.icon {
  margin-right: 10px;
  animation: bounce 1.5s infinite;
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.slider-controls {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-between;
  transform: translateY(-50%);
  padding: 0 10px;
}

.slider-controls button {
  background: rgba(255,255,255,0.2);
  border: none;
  color: white;
  font-size: 1.5rem;
  padding: 10px;
  cursor: pointer;
  border-radius: 50%;
}

.buttons .btn {
  display: inline-block;
  margin: 10px;
  padding: 12px 20px;
  border-radius: 8px;
  text-decoration: none;
  color: white;
  font-weight: bold;
}

.btn-red {
  background-color: #d32f2f;
}

.btn-green {
  background-color: #25D366;
}

@media (max-width: 768px) {
  .brand-name {
    font-size: 1.8rem;
  }

  .brand-name span {
    font-size: 1.4rem;
  }

  .slide {
    font-size: 1.1rem;
  }
}
.contact-section {
  background-color: #f9f9f9;
  padding: 60px 20px;
  text-align: center;
}

.contact-wrapper {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

.contact-section h2 {
  font-size: 2rem;
  margin-bottom: 30px;
  color: #d32f2f;
}

.contact-wrapper p {
  font-size: 1.2rem;
  margin: 10px 0;
  color: #333;
}

.contact-wrapper i {
  margin-right: 10px;
  color: #d32f2f;
}

.contact-wrapper a {
  color: #388e3c;
  text-decoration: none;
  font-weight: bold;
}

@media (max-width: 768px) {
  .contact-section h2 {
    font-size: 1.5rem;
  }

  .contact-wrapper p {
    font-size: 1rem;
  }
}
.services {
  background-color: #fff;
  padding: 60px 20px;
  text-align: center;
}

.services-wrapper {
  max-width: 1000px;
  margin: 0 auto;
}

.services h2 {
  font-size: 2rem;
  margin-bottom: 40px;
  color: #d32f2f;
}

.cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.card {
  background-color: #f9f9f9;
  border-radius: 12px;
  padding: 25px;
  width: 280px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  text-align: center;
  transition: transform 0.3s ease;
}

.card:hover {
  transform: scale(1.05);
}

.card .icon {
  font-size: 40px;
  color: #d32f2f;
  margin-bottom: 15px;
}

.card h3 {
  font-size: 1.4rem;
  margin-bottom: 10px;
}

.card p {
  font-size: 1rem;
  color: #555;
}

@media (max-width: 768px) {
  .cards {
    flex-direction: column;
    align-items: center;
  }

  .card {
    width: 90%;
  }
}
.phone-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: #d32f2f;
  display: flex;
  justify-content: center;
  gap: 20px;
  padding: 10px 8px;
  z-index: 999;
  box-shadow: 0 -2px 6px rgba(0,0,0,0.2);
  flex-wrap: wrap;
}

.contact-box {
  display: flex;
  align-items: center;
  gap: 10px;
  background-color: rgba(255,255,255,0.1);
  padding: 6px 10px;
  border-radius: 6px;
}

.contact-box a {
  color: white;
  font-size: 1.2rem;
  text-decoration: none;
  transition: transform 0.2s ease;
}

.contact-box a:hover {
  transform: scale(1.08);
}

.contact-box .fa-phone {
  font-size: 1.1rem;
  color: #fff;
}

.contact-box .fa-whatsapp {
  font-size: 1.2rem;
  color: #25D366;
}

.contact-box .number {
  color: white;
  font-weight: 500;
  font-size: 0.95rem;
}

@media (max-width: 768px) {
  .phone-bar {
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 14px;
  }

  .contact-box {
    justify-content: center;
    flex-wrap: wrap;
    padding: 8px 12px;
  }

  .contact-box .number {
    width: 100%;
    text-align: center;
    margin-top: 4px;
    font-size: 0.9rem;
  }

  .contact-box a {
    font-size: 1.1rem;
  }
}



.footer {
  background-color: #222;
  color: #ccc;
  text-align: center;
  padding: 30px 20px;
  font-size: 0.9rem;
}

.footer-wrapper {
  max-width: 800px;
  margin: 0 auto;
}

.service-areas {
  display: block;
  margin-top: 10px;
  font-size: 0.85rem;
  color: #aaa;
}