/* =================================================================
   GENEL AYARLAR VE İÇE AKTARMALAR (IMPORTS)
   ================================================================= */

/* Google Fonts ve Font Awesome */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css');

body {
  font-family: 'Inter', sans-serif;
  background-color: #f9fafb;
  /* Sayfa geneli için hafif bir arka plan rengi */
}

/* =================================================================
   NAVİGASYON (HEADER) - YENİ AÇIK RENK TASARIM
   ================================================================= */

/* NAVBAR arka planı - Beyaz */
.custom-navbar {
  /* ARKA PLAN DEĞİŞTİ: Koyu griden beyaza */
  background-color: #ffffff;
  padding: 14px 0;
  transition: all 0.3s ease;
  /* Beyaz arka planın sayfadan ayrışması için hafif bir gölge */
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

/* Marka (Logo) */
.navbar-brand {
  transition: transform 0.3s ease;
}

.navbar-brand:hover {
  transform: scale(1.06);
}

/* Menü bağlantıları */
.navbar-nav .nav-link {
  position: relative;
  margin-left: 22px;
  color: #2F4F4F !important;
  font-size: 1.05rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  padding: 8px 4px;
  transition: all 0.3s ease;
  border-radius: 4px;
  text-transform: capitalize;

}

/* Hover efekti */
.navbar-nav .nav-link:hover {
  /* HOVER RENGİ DEĞİŞTİ: Vurgu rengiyle değiştirildi */
  color: #1de9b6 !important;
  background-color: transparent;
  /* Arka plan rengi kaldırıldı */
}

/* Aktif bağlantı (Bu stil açık renkli tasarıma da uygun) */
.navbar-nav .nav-link.active {
  background-color: #FFCC66;
  color: #2F4F4F !important;
  font-weight: 600;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* Mobilde menü görünümü */
@media (max-width: 991px) {
  .navbar-nav .nav-link {
    margin-left: 0;
    margin-bottom: 6px;
  }

  .navbar-collapse {
    /* Mobil menü açıldığında arka planı */
    background-color: #ffffff;
    padding: 12px;
    border-radius: 8px;
    margin-top: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  }
}

/* =================================================================
   HERO BÖLÜMLERİ (ANASAYFA, HAKKIMIZDA VB.)
   ================================================================= */

.hero-section {
  height: 90vh;
  /* Navbar artık yer kapladığı için 100vh'den biraz daha az */
  background: linear-gradient(rgba(47, 79, 79, 0.7), rgba(47, 79, 79, 0.7)), url('img/foto1.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 700;
}

.hero-subtitle {
  font-size: 1.25rem;
}

.hero-section .btn-warning {
  font-weight: 600;
  padding: 14px 34px;
  font-size: 1.1rem;
  border-radius: 30px;
  transition: all 0.3s ease-in-out;
}

.hero-section .btn-warning:hover {
  background-color: #e6c200;
  transform: scale(1.05);
}

.hero-about {
  background: url('img/hero-about.jpg') center center / cover no-repeat;
  height: 45vh;
  /* Yükseklik 60vh'den 45vh'e düşürüldü */
  min-height: 350px;
  /* Yeni eklendi */
  position: relative;
}

.hero-crane {
  background: url('img/hero-crane.jpg') center center / cover no-repeat;
  height: 45vh;
  /* Yükseklik 60vh'den 45vh'e düşürüldü */
  min-height: 350px;
  /* Yeni eklendi */
  position: relative;
}

.hero-container {
  background: url('img/hero-container.jpg') center center / cover no-repeat;
  height: 60vh;
}

/* style.css dosyanızda bu bölümü bulun */

.hero-contact {
  background: url('img/hero-contact.jpg') center center / cover no-repeat;
  height: 45vh;
  /* Yükseklik 50vh'den 45vh'e düşürüldü */
  min-height: 350px;
  position: relative;
}

.hero-about,
.hero-crane,
.hero-container,
.hero-contact {
  position: relative;
}

.hero-about::after,
.hero-crane::after,
.hero-container::after,
.hero-contact::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(47, 79, 79, 0.65);
}

.hero-about .container,
.hero-crane .container,
.hero-container .container,
.hero-contact .container {
  position: relative;
  z-index: 2;
}

/* =================================================================
   KARTLAR VE DİĞER BİLEŞENLER
   ================================================================= */

.service-card {
  border: none;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 6px 25px rgba(47, 79, 79, 0.1);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.service-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 18px 40px rgba(47, 79, 79, 0.2);
}

.service-card img {
  height: 220px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.service-card:hover img {
  transform: scale(1.1);
}

.service-card .card-title {
  font-weight: 700;
  color: #004d40;
}

.service-card .card-text {
  color: #2f4f4f;
}

.about-card {
  background: linear-gradient(135deg, #2F4F4F, #1b3737);
  color: #fff;
  border-radius: 20px;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.3);
  padding: 2.5rem;
}

.about-card h3 {
  font-weight: 800;
}

.about-card p {
  color: #d0f0f0;
}

.vision-mission .p-4 {
  border-radius: 20px !important;
}

.vision-mission h3 {
  color: #2F4F4F;
}

.animated-btn {
  background: linear-gradient(45deg, #00bfa5, #1de9b6);
  border: none;
  color: #004d40;
  font-weight: 700;
  padding: 14px 40px;
  font-size: 1.1rem;
  border-radius: 30px;
  box-shadow: 0 5px 20px rgba(29, 233, 182, 0.4);
  cursor: pointer;
  transition: all 0.4s ease;
  text-transform: uppercase;
  letter-spacing: 1.2px;
}

.animated-btn:hover {
  box-shadow: 0 8px 28px rgba(29, 233, 182, 0.7);
  transform: scale(1.05);
}

/* =================================================================
   İLETİŞİM FORMU VE SOSYAL MEDYA
   ================================================================= */

.fiyat-form .custom-input {
  padding: 14px 16px;
  border-radius: 12px;
  border: 2px solid #e0e0e0;
  background-color: #fff;
  transition: all 0.3s ease;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
}

.fiyat-form .custom-input:focus {
  border-color: #1de9b6;
  box-shadow: 0 0 10px rgba(29, 233, 182, 0.3);
  outline: none;
}

.social-icons a {
  transition: transform 0.3s ease;
  color: #2F4F4F;
}

.social-icons a:hover {
  transform: scale(1.2);
  color: #1de9b6 !important;
}

/* =================================================================
   FOOTER
   ================================================================= */
.main-footer {
  background-color: #2F4F4F;
}

.footer-title {
  font-weight: 700;
}

.footer-text {
  color: #ccc;
}

.footer-links,
.footer-contact {
  list-style: none;
  padding-left: 0;
}

.footer-links li,
.footer-contact li {
  margin-bottom: 0.8rem;
}

.footer-links a {
  color: #ccc;
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-links a:hover {
  color: #1de9b6;
  padding-left: 4px;
}

.footer-contact i {
  margin-right: 8px;
  color: #1de9b6;
}

.main-footer .border-top {
  border-color: rgba(255, 255, 255, 0.1) !important;
}






/* =================================================================
   YENİ BÖLÜMLERİN STİLLERİ
   ================================================================= */

/* == Neden Biz? Bölümü == */
.why-us-card {
  background-color: #fff;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  height: 100%;
}

.why-us-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.why-us-icon {
  font-size: 2.5rem;
  color: #1de9b6;
  /* Vurgu rengi */
}



/* == Müşteri Yorumları Bölümü == */
.testimonials-section {
  position: relative;
}

.testimonial-card {
  background-color: #fff;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  height: 100%;
  position: relative;
  border-left: 5px solid #1de9b6;
}

.testimonial-card::before {
  font-family: "Font Awesome 6 Free";
  content: "\f10d";
  /* Font Awesome quote-left ikonu */
  font-weight: 900;
  position: absolute;
  top: 15px;
  left: 20px;
  font-size: 1.5rem;
  color: #e0f2f1;
}

.testimonial-quote {
  font-style: italic;
  position: relative;
  z-index: 2;
}

.testimonial-author {
  margin-top: 15px;
  font-weight: 600;
  color: #2F4F4F;
}

/* == Referanslar Bölümü == */
.reference-logo {
  padding: 15px;
  margin: 10px;
}

.reference-logo img {
  height: 60px;
  filter: grayscale(100%);
  opacity: 0.6;
  transition: all 0.3s ease;
}

.reference-logo img:hover {
  filter: grayscale(0%);
  opacity: 1;
  transform: scale(1.1);
}

/* == SSS Bölümü == */
.faq-section .accordion-item {
  border: 1px solid #e0e0e0;
  border-radius: 10px !important;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.faq-section .accordion-button {
  font-weight: 600;
  color: #2F4F4F;
}

.faq-section .accordion-button:focus {
  box-shadow: none;
  border-color: rgba(0, 0, 0, .125);
}

.faq-section .accordion-button:not(.collapsed) {
  color: #fff;
  background-color: #2F4F4F;
}

.faq-section .accordion-body {
  background-color: #fff;
}





/* == Hizmet Sürecimiz Bölümü == */
.process-step {
  text-align: center;
  padding: 20px;
  position: relative;
}

.process-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto;
  background-color: #f0f0f0;
  border: 2px solid #1de9b6;
  color: #2F4F4F;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  font-weight: 700;
  transition: all 0.3s ease;
}

.process-step:hover .process-icon {
  background-color: #1de9b6;
  color: #fff;
  transform: scale(1.1);
}

.process-step h5 {
  color: #2F4F4F;
}

/* Adımları birbirine bağlayan çizgi */
.process-step:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 35px;
  /* İkonun dikey olarak ortası */
  right: -50%;
  width: 100%;
  height: 2px;
  background-color: #e0e0e0;
  z-index: -1;
}

/* Mobil ve tablette çizgiyi gizle */
@media (max-width: 991px) {
  .process-step:not(:last-child)::after {
    display: none;
  }
}





/* =================================================================
   YENİ EKLENEN BÖLÜMLERİN STİLLERİ (TOP BAR & KAYAN BUTONLAR)
   ================================================================= */

/* == Top Bar (En Üstteki Bar) == */
.top-bar {
  background-color: #2F4F4F;
  /* Ana koyu renk */
  color: #fff;
  padding: 8px 0;
  font-size: 0.9rem;
}

.top-bar a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.top-bar a:hover {
  color: #1de9b6;
  /* Vurgu rengi */
}

.top-bar-contact i {
  margin-right: 5px;
  color: #1de9b6;
}

.top-bar-marquee {
  font-weight: 500;
  color: #FFCC66;
  /* Sarı vurgu rengi */
}

.top-bar-social {
  margin-left: 15px;
  font-size: 1.1rem;
}

/* == Kayan WP ve Arama Butonları == */
.floating-buttons {
  position: fixed;
  bottom: 25px;
  left: 25px;
  z-index: 1050;
  /* Diğer her şeyin üstünde */
  display: flex;
  flex-direction: column;
  gap: 10px;
  /* Butonlar arası boşluk */
}

.floating-btn {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  text-decoration: none;

  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}

.floating-btn:hover {
  transform: scale(1.1);
  color: #fff;
}

.whatsapp-btn {
  background-color: #25D366;
}

.call-btn {
  background-color: #1de9b6;
  /* Vurgu rengi */
}



/* =================================================================
   SATILIK KONTEYNER SAYFASI YENİ TASARIM STİLLERİ
   ================================================================= */

/* Daraltılmış Hero Alanı */
.hero-container {
  height: 45vh;
  /* Yükseklik 60vh'den 45vh'e düşürüldü */
  min-height: 350px;
}

/* Sekmeli (Tab) Ürün Tanıtımı */
.nav-tabs {
  border-bottom: 2px solid #dee2e6;
}

.nav-tabs .nav-link {
  border: none;
  border-bottom: 2px solid transparent;
  color: #6c757d;
  font-weight: 600;
  padding: 1rem 1.5rem;
  margin-bottom: -2px;
  transition: all 0.3s ease;
}

.nav-tabs .nav-link:hover {
  border-bottom-color: #1de9b6;
  color: #2F4F4F;
}

.nav-tabs .nav-link.active {
  color: #2F4F4F;
  background-color: transparent;
  border-bottom: 2px solid #2F4F4F;
}

/* CTA (Harekete Geçirici Mesaj) Bölümü */
.cta-section {
  background: linear-gradient(45deg, #2F4F4F, #1de9b6);
}





/* style.css dosyanızda bu bölümü bulun */



/* =================================================================
   HAKKIMIZDA SAYFASI YENİ TASARIM STİLLERİ
   ================================================================= */

/* == Tarihçe (Timeline) Bölümü == */
.timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}

.timeline::after {
  content: '';
  position: absolute;
  width: 4px;
  background-color: #1de9b6;
  top: 0;
  bottom: 0;
  left: 50%;
  margin-left: -2px;
}

.timeline-item {
  padding: 10px 40px;
  position: relative;
  width: 50%;
}

/* Sağdaki kutular */
.timeline-item:nth-child(odd) {
  left: 50%;
}

/* Soldaki kutular */
.timeline-item:nth-child(even) {
  left: 0;
  text-align: right;
}

.timeline-content {
  padding: 20px 30px;
  background-color: white;
  position: relative;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.07);
}

.timeline-icon {
  position: absolute;
  width: 50px;
  height: 50px;
  right: -25px;
  top: 50%;
  transform: translateY(-50%);
  background-color: #2F4F4F;
  color: white;
  border: 4px solid #1de9b6;
  border-radius: 50%;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.timeline-item:nth-child(even) .timeline-icon {
  left: -25px;
}


/* Zaman tüneli mobil görünümü */
@media screen and (max-width: 768px) {
  .timeline::after {
    left: 25px;
  }

  .timeline-item {
    width: 100%;
    padding-left: 70px;
    padding-right: 25px;
    left: 0 !important;
    text-align: left !important;
  }

  .timeline-icon {
    left: 0 !important;
  }
}


/* =================================================================
   İLETİŞİM SAYFASI YENİ TASARIM STİLLERİ
   ================================================================= */

.contact-info-card {
  display: flex;
  align-items: center;
  background-color: #f8f9fa;
  /* Açık gri arka plan */
  padding: 20px;
  border-radius: 10px;
  margin-bottom: 15px;
  border-left: 5px solid #1de9b6;
  /* Vurgu rengiyle sol kenarlık */
}

.contact-info-card .info-icon {
  font-size: 1.5rem;
  color: #2F4F4F;
  margin-right: 20px;
}

.contact-info-card h5 {
  margin-bottom: 0.25rem;
  color: #2F4F4F;
}

.contact-info-card p {
  margin-bottom: 0;
  color: #6c757d;
}

.contact-info-card a {
  color: #6c757d;
  text-decoration: none;
  transition: color .2s ease;
}

.contact-info-card a:hover {
  color: #1de9b6;
}