body, html {
  margin: 0;
  padding: 0;
  font-family: 'Segoe UI', sans-serif;
}

/* HERO */
/* Hero Carousel Genel Yapı */
.hero {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

.carousel-item {
  height: 100vh;
  min-height: 500px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}

/* Overlay - Karanlık filtre */
.hero-overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

/* İçerik */
.hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  transform: translate(-50%, -50%);
  text-align: center;
  padding: 0 20px;
  width: 100%;
  max-width: 800px;
}

.hero-content h1 {
  font-size: 3.5rem;
  font-weight: bold;
  line-height: 1.2;
}

.hero-content p {
  font-size: 1.25rem;
  margin-top: 1rem;
}

.hero-content .btn {
  font-size: 1.1rem;
  padding: 0.75rem 2rem;
  margin-top: 1.5rem;
  border-radius: 50px;
}

/* Kontroller */
.carousel-control-prev-icon,
.carousel-control-next-icon {
  background-color: rgba(0, 0, 0, 0.4);
  padding: 1rem;
  border-radius: 50%;
}

/* Mobil Uyum */
@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 2rem;
  }

  .hero-content p {
    font-size: 1rem;
  }

  .hero-content .btn {
    font-size: 1rem;
    padding: 0.6rem 1.5rem;
  }

  .carousel-item {
    height: 80vh;
    min-height: 400px;
  }
}


/* HİZMETLER */
.hizmet-kart .card {
  height: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: none;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 0 10px rgba(0,0,0,0.06);
}

.hizmet-kart .card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.hizmet-kart .card-img-top {
  height: 180px;
  object-fit: cover;
}

.hizmet-kart .card-body {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 220px;
}

.hizmet-kart .card-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 0.5rem;
}

.hizmet-kart .card-text {
  flex-grow: 1;
  font-size: 0.95rem;
  color: #555;
  margin-bottom: 1rem;
}

.hizmet-kart .btn-danger {
  align-self: start;
  padding: 6px 16px;
  border-radius: 8px;
  font-weight: 500;
  font-size: 0.9rem;
  transition: background-color 0.3s ease;
}

.hizmet-kart .btn-danger:hover {
  background-color: #b02a37;
}


/* TANITIM ALANI */
.about-section {
  padding: 100px 0 60px;
  background-color: #fff;
}

.video-wrapper {
  position: relative;
  max-width: 100%;
  overflow: hidden;
  border-radius: 12px;
}

.video-wrapper img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
}

.play-button {
  position: absolute;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #d50000;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: white;
  font-size: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
  transition: background-color 0.3s;
}

.play-button:hover {
  background-color: #c40000;
}

.about-bottom {
  padding: 60px 0 80px;
  text-align: center;
  background-color: #fff;
}

.about-bottom p {
  max-width: 750px;
  margin: 0 auto;
  font-size: 1.05rem;
  color: #555;
}

.about-bottom hr {
  margin-top: 25px;
}

/* Budak Nakliyat Tabs - Section */
.budak-tabs-section {
  background: #fff;
  padding-top: 60px;
  padding-bottom: 60px;
}

.budak-tabs-section img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Tab Menü Butonları */
.budak-nav-tabs {
  border-bottom: 2px solid #ddd;
  gap: 10px;
}

.budak-nav-tabs .nav-link {
  font-weight: 600;
  color: #002f5b;
  padding: 10px 20px;
  border-radius: 4px 4px 0 0;
  border: none;
  background: #f8f9fa;
  margin-right: 5px;
  transition: all 0.3s ease;
}

.budak-nav-tabs .nav-link:hover {
  background-color: #e1eaf3;
  color: #d61c1c;
}

.budak-nav-tabs .nav-link.active {
  background-color: #fff;
  border-bottom: 2px solid #d61c1c;
  color: #d61c1c;
  font-weight: 700;
}

/* Tab İçerikleri */
.tab-content {
  background-color: #fff;
}

.tab-box {
  border: 1px solid #ddd;
  border-left: 4px solid #d61c1c;
  padding: 20px;
  margin-bottom: 20px;
  border-radius: 6px;
  background: #f9f9f9;
  transition: box-shadow 0.3s ease;
}

.tab-box:hover {
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
}

.tab-box h5 {
  font-size: 18px;
  font-weight: 700;
  color: #002f5b;
  margin-bottom: 8px;
}

.tab-box p {
  margin: 0;
  font-size: 15px;
  color: #555;
}

/* Görsel alanı sola yasla ve sağdan boşluk bırak */
.budak-tabs-section .image-column {
  padding-right: 40px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.budak-tabs-section .image-column img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  display: block;
}

/* Mobil uyum */
@media (max-width: 768px) {
  .budak-tabs-section .image-column {
    padding-right: 0;
    margin-bottom: 30px;
    justify-content: center;
  }

  .budak-tabs-section .image-column img {
    max-width: 90%;
  }
}

/* Animasyonlar */
@keyframes zoomIn {
  from {
    opacity: 0;
    transform: scale(0.8);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.hero-title,
.hero-desc,
.hero-btn {
  opacity: 1 !important;
  transform: scale(1) !important;
  transition: none !important;
}


.zoom-in {
  animation: zoomIn 0.8s ease-out forwards;
}
