/* ===== GENEL ===== */
/* ===== RESET & GENEL ===== */
body {
  visibility: hidden;
}
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
}

a {
  text-decoration: none;
  color: inherit;
}

/* ===== CONTAINER ===== */
.container {
  max-width: 1200px;
  margin: auto;
  padding: 20px;
}

/* ===== HEADER ===== */
.site-header {
  border-bottom: 1px solid #eee;
  background-color: #ffffff;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

/* ===== LOGO ===== */
.logo img {
  max-height: 80px;
  width: auto;
  transition: transform 0.3s ease;
}

.logo img:hover {
  transform: scale(1.05);
}

/* ===== NAV (şimdilik hazır, menü ekleyince kullanacağız) ===== */
nav {
  display: flex;
  align-items: center;
  gap: 30px;
}

nav a {
  display: flex;              /* ÖNEMLİ */
  align-items: center;
  height: 100%;               /* header yüksekliğini kapsar */
  padding: 12px 14px;         /* kutu alanı */
  font-size: 15px;
  font-weight: 500;
  color: #333;
  border-radius: 8px;
  transition: background-color 0.4s ease, color 0.3s ease;
}

nav a:hover {
  background-color: #f2f2f2;
  color: #F60;
}



.telefon-link-desktop {
  display: block;          /* link tüm alanı kapsasın */
}
.telefon-link-desktop:hover .phone {
  background-color: #f2f2f2;
  transform: translateY(-2px);
}
/* ===== TELEFON ===== */
.telefon-link {
  display: block;
  color: #000;
  padding: 8px 10px;
  border-radius: 8px;
  transition: background-color 0.4s ease, transform 0.3s ease;
}
.telefon-link-desktop:hover .button {
  background-color: #2bac47;
  transform: scale(1.05);
}
.telefon-link:hover {
  background-color: #f2f2f2;
  transform: translateY(-2px);
}

.phone {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  border-radius: 12px;
  transition: background-color 0.4s ease, transform 0.3s ease;
}

/* ===== TELEFON BUTONU ===== */
.button {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: #30C04F;
  transition: background-color 0.4s ease, transform 0.4s ease;
}

.telefon-link:hover .button {
  background-color: #2bac47;
  transform: scale(1.05);
}

/* ===== FOOTER ===== */
footer {
  background: #333;
  color: #fff;
  margin-top: 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
}

.copyright {
  padding: 15px 20px;
  font-size: 14px;
}

/* ===== HİZMETLER MENÜ ===== */
.menu {
  display: flex;
  font-size: 16px;
  color: #000;
}

.menu .item {
  position: relative;
  
}

.menu .link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 36px;
  border-radius: 16px;
  color: #000;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.menu .link svg {
  width: 14px;
  fill: #000;
  transition: transform 0.3s ease, fill 0.3s ease;
}

.menu .item:hover .link {
  background-color: #f2f2f2;
  color: orange;
  border-radius: 16px 16px 0 0;
}

.menu .item:hover svg {
  fill: orange;
  transform: rotate(-180deg);
}

/* ===== SUBMENU ===== */
.submenu {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background-color: #f2f2f2;
  border-radius: 0 0 16px 16px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: 0.3s;
  z-index: 10;
}

.menu .item:hover .submenu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.submenu-link {
  display: block;
  padding: 12px 24px;
  text-align: center;
  transition: background-color 0.3s ease, color 0.3s ease;
  color: #000;
}

.submenu-link:hover {
  background-color: #e6e6e6;
  color: orange;
}
@media (max-width: 768px) {
  .telefon-link-desktop {
    display: none !important;
  }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .header-row {
    flex-direction: column;
    align-items: flex-start;
  }

  nav {
    flex-wrap: wrap;
    gap: 15px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }
}
.arrow {
  color: #F60;
  display: inline-block;
  margin-left: 6px;
  margin-right: 6px;
  font-size: 20px;
  opacity: 0.6;
  transition: transform 0.4s ease, opacity 0.3s ease;
  font-weight: bold;
}

a:hover .arrow {
  animation: arrowMove 0.8s ease infinite;
}

@keyframes arrowMove {
  0%   { transform: translateX(0); }
  50%  { transform: translateX(8px); }
  100% { transform: translateX(0); }
}
.footeryazi {
  position: relative; /* ← EN ÖNEMLİ SATIR */
  display: inline-block;
  color: burlywood;
  font-size: 16px;
}
.footer-link {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}
.footer-link:hover .footeryazi {
  color: chocolate;
}

.footeryazi::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  background-color: orange;
  transition: width 0.4s ease;
}

.footer-link:hover .footeryazi::after {
  width: 100%;
}

.bodyimagedvi{

  width: 1900px;
  height: 530px;
}

/*iletişim
.socialWrapper {
  display: flex;          
  gap: 15px;              
  align-items: center;
}*/

/* for all social containers*/
.socialContainer {
  width: 52px;
  height: 52px;
  background-color: rgb(44, 44, 44);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transition-duration: .4s;
}
/* instagram*/
.containerOne:hover {
  background-color: #d62976;
  transition-duration: .4s;
}
/* Whatsapp*/
.containerTwo:hover {
  background-color: #128C7E;
  transition-duration: .4s;
}
/*gmail*/
.containerThree:hover {
  background-color: #EA4335;
  transition-duration: .4s;
}
.socialContainer:active {
  transform: scale(0.9);
  transition-duration: .3s;
}

.socialSvg {
  width: 25px;
}

.socialSvg path {
  fill: rgb(255, 255, 255);
}

.socialContainer:hover .socialSvg {
  animation: slide-in-top 0.4s both;
}

@keyframes slide-in-right {
  0% {
    transform: translateX(-20px);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}
/*iletişim yana doğru açılan kısım*/
.socialContainer {
  width: 52px;
  height: 52px;
  background-color: rgb(44, 44, 44);
  display: flex;
  align-items: center;
  position: relative;
  overflow: visible; 
  cursor: pointer;
}
.socialText {
  position: absolute;
  left: 100%;
  margin-left: 10px;
  background-color: rgba(0,0,0,0.85);
  color: #fff;
  padding: 8px 14px;
  border-radius: 6px;
  font-size: 14px;
  white-space: nowrap;
  opacity: 0;
  transform: translateX(-10px);
  pointer-events: none;
  transition: all 0.4s ease;
}
.socialContainer:hover .socialText {
  opacity: 1;
  transform: translateX(0);
}
.socialContainer:hover .socialSvg {
  animation: slide-in-right 0.4s ease forwards;
}

.bodyimagediv {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.bodyimagediv img {
  width: 100%;
  height: 500px; /* Masaüstü yüksekliği */
  object-fit: cover; /* Fotoğrafı ezmeden kırpar */
  display: block;
}

.image-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: auto;
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 42px;
  font-weight: bold;
  color: #fff;
  text-align: center;
  background: rgba(0, 0, 0, 0.4); 
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 2;
}

/* MEDİA QUERY İÇİNE DE BUNLARI EKLE VEYA GÜNCELLE */
@media (max-width: 768px) {
  .bodyimagediv img {
    height: 300px; /* Mobildeki yüksekliği */
  }

  .image-overlay {
    font-size: 22px; 
    padding: 15px 10px;
    bottom: 20px;
  }
}
.services {
  padding: 80px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.services-title {
  text-align: center;
  font-size: 36px;
  margin-bottom: 60px;
  position: relative;
}

.services-title::after {
  content: "";
  width: 80px;
  height: 4px;
  background: orange;
  display: block;
  margin: 15px auto 0;
  border-radius: 2px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.service-box {
  background: #f7f7f7;
  padding: 30px;
  border-radius: 12px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}

.service-box h3 {
  font-size: 22px;
  margin-bottom: 15px;
  color: #222;
}

.service-box p {
  font-size: 15px;
  line-height: 1.6;
  color: #555;
}
@media (max-width: 900px) {
  .services-grid {
    grid-template-columns: 1fr;
  }

  .services-title {
    font-size: 28px;
  }
}
/*about*/

.about-text {
  flex: 1.1;
  color: #222;
}

.about-text h2 {
  font-size: 38px;
  margin-bottom: 18px;
  position: relative;
}

.about-text h2::after {
  content: "";
  width: 70px;
  height: 3px;
  background: #ff9800;
  display: block;
  margin-top: 10px;
}

.about-text p {
  font-size: 16px;
  line-height: 1.8;
  color: #555;
  max-width: 520px;
}

.about-sub {
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 15px;
  color: #444;
}


/*about*/



.forklift-section {
  width: 100%;
  padding: 90px 20px;
  background: #f7f7f7; /* siyah gitti */
}

.forklift-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
  gap: 60px;
}

/* SOL TARAF */
.forklift-text {
  flex: 1.1;
  color: #222;
}

.forklift-text h2 {
  font-size: 38px;
  margin-bottom: 18px;
  position: relative;
}

.forklift-text h2::after {
  content: "";
  width: 70px;
  height: 3px;
  background: #30C04F;
  display: block;
  margin-top: 10px;
}

.forklift-text p {
  font-size: 16px;
  line-height: 1.8;
  color: #555;
  max-width: 520px;
}

.forklift-sub {
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 15px;
  color: #444;
}

/* SAĞ TARAF */
.forklift-media {
  flex: 1.2;
  border-radius: 16px;
  background: #fff;
  border: 1px solid #e0e0e0;
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.4s ease;
  position: relative;
  overflow: hidden; /* resim taşarsa gizle */
}

.forklift-media img {
  width: 100%;       /* kutuya göre genişliği ayarla */
  height: auto;      /* orantıyı koru */
  display: block;
  border-radius: 16px;
}

.forklift-media:hover {
  transform: scale(1.03);
}

/* MOBİL */
@media (max-width: 900px) {
  .forklift-container {
    flex-direction: column;
  }

  .forklift-text h2 {
    font-size: 28px;
  }

  .forklift-media {
    width: 100%;
  }
}




.manitou-section {
  width: 100%;
  padding: 90px 20px;
  background: #ffffff;
}

.manitou-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
  gap: 60px;
}

/* SOL TARAF */
.manitou-text {
  flex: 1.1;
  color: #222;
}

.manitou-text h2 {
  font-size: 38px;
  margin-bottom: 18px;
  position: relative;
}

.manitou-text h2::after {
  content: "";
  width: 70px;
  height: 3px;
  background: #30C04F;
  display: block;
  margin-top: 10px;
}

.manitou-text p {
  font-size: 16px;
  line-height: 1.8;
  color: #555;
  max-width: 520px;
}

.manitou-sub {
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 15px;
  color: #444;
}

/* SAĞ TARAF */
.manitou-media {
  flex: 1.2;
  border-radius: 16px;
  background: #f9f9f9;
  border: 1px solid #e0e0e0;
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.4s ease;
  position: relative;
  overflow: hidden; /* resim taşarsa gizle */
}

.manitou-media img {
  width: 100%;  /* kutuya göre genişliği ayarla */
  height: auto; /* orantıyı koru */
  display: block;
  border-radius: 16px;
}

.manitou-media:hover {
  transform: scale(1.03);
}

/* MOBİL */
@media (max-width: 900px) {
  .manitou-container {
    flex-direction: column;
  }

  .manitou-text h2 {
    font-size: 28px;
  }

  .manitou-media {
    width: 100%;
  }
}
.manitou-media video {
  width: 100%;
  height: auto;
  border-radius: 16px;
}


.video-wrapper {
  flex: 1.2;
  border-radius: 16px;
  background: #f9f9f9;
  border: 1px solid #e0e0e0;
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;        /* kırpma için gerekli */
  max-height: 360px;       /* başlangıçta görünür alan yüksekliği */
  cursor: pointer;
  transition: max-height 0.6s ease; /* yumuşak açılma */
}

.video-wrapper.expanded {
  max-height: 1000px;      /* yeterince büyük, video orijinal boyutu görünür */
}

.video-wrapper video {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 16px;
  transition: transform 0.6s ease; /* opsiyonel, hafif zoom efekti */
}

html {
  scroll-behavior: smooth;
}
.communication{
display: flex;
width: 100%;
height: 375px;
background-color: #ff9800;
align-items: center;
justify-items: center;  
}


.cards {
  display: flex;
  gap: 15px;
  justify-content: center;
  margin-bottom: 0px;
  z-index: 20px;
}
.cards-wrapper {
  display: flex;
  justify-content: center;
  gap: 15px;
  position: relative;
  z-index: 10; /* turuncu communication bölümü üzerinde */
}
.cards .red {
  background-color: #f43f5e;
}

.cards .blue {
  background-color: #3b82f6;
}

.cards .green {
  background-color: #22c55e;
}

.cards .card {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  height: 100px;
  width: 250px;
  border-radius: 10px;
  color: white;
  cursor: pointer;
  transition: 400ms;
}

.cards .card p.tip {
  font-size: 1em;
  font-weight: 700;
}

.cards .card p.second-text {
  font-size: .7em;
}


@media (min-width: 769px) {
  .cards .card:hover {
    transform: scale(1.1, 1.1);
  }

  .cards:hover > .card:not(:hover) {
    transform: scale(0.9, 0.9);
    filter: blur(2px); /* Eğer blur varsa burada kalsın */
  }
}

/* SADECE TELEFONLARDA (ALT ALTA VE EFEKTSİZ) */
@media (max-width: 768px) {
  .cards, .cards-wrapper {
    flex-direction: column !important;
    align-items: center !important;
    gap: 20px !important;
  }

  .cards .card {
    width: 250px !important;
    height: 100px !important;
    transform: none !important; /* Efekti kapat */
    filter: none !important;    /* Bluru kapat */
  }

  /* Telefondaki hover algısını tamamen öldürelim */
  .cards:hover > .card:not(:hover),
  .cards .card:active,
  .cards .card:hover {
    transform: none !important;
    filter: none !important;
    scale: 1 !important;
  }
}

.contact-section {
  width: 100%;
  height: 500px;
  background-color: #ff9800; /* ana turuncu arka plan */
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
  border-radius: 20px;
}

.contact-text {
  text-align: center;
}

/* Başlangıçta yazı */
.contact-title {
  color: white;
  font-size: 3em;
  font-weight: 700;
  position: relative;
  display: inline-block;
  cursor: pointer;
  transition: transform 0.3s ease;
}

/* Arka panel (pseudo element) */
.contact-title::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) scale(0);
  width: 120%;
  height: 1.2em;
  background-color: rgba(0,0,0,0.2); /* koyu turuncu panel yerine hafif dark */
  border-radius: 10px;
  z-index: -1;
  transition: transform 0.3s ease, background-color 0.3s ease;
}

/* Yalnızca yazının üstüne gelince efekt */
.contact-title:hover {
  transform: scale(1.2);
}

.contact-title:hover::after {
  transform: translate(-50%, -50%) scale(1);
  background-color: rgba(0,0,0,0.25);
}

/* Alt yazı */
.contact-text p {
  margin-top: 15px;
  color: white;
  font-size: 1.2em;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.contact-text p .phone {
  font-size: 1.5em;
}
.map-container {
  max-width: 700px;  
  margin: 0 auto;      
  border-radius: 15px;
  width: 45%; /* yanyana iki harita */
  min-width: 300px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.map-header {
  width: 100%;
  background-color: #ff9800; 
  color: white;
  font-weight: 700;
  border-top-left-radius: 15px;
  border-top-right-radius: 15px;

  padding: 10px 15px;
  font-size: 1em;
  text-align: center;
}
.map-wrapper {
  background-color: #333;
  padding: 20px;
  border-radius: 15px;
  display: flex;
  width: 90%;
  gap: 15px; /* haritalar arası boşluk */
  justify-content: center;
  justify-items: center;
  flex-wrap: wrap; /* mobilde alt alta geçsin */
  margin-top: 40px;
  margin: 40px auto 0 auto;
}
.map-wrapper .map-title {
  width: 100%;
  text-align: center;
  font-size: 1.8em;
  margin-bottom: 15px;
  color: #FFF;
}

.form button {
  border: none;
  background: none;
  color: #8b8ba7;
}
/* styling of whole input container */
.form {
  --timing: 0.3s;
  --width-of-input: 200px;
  --height-of-input: 40px;
  --border-height: 2px;
  --input-bg: #fff;
  --border-color: #2f2ee9;
  --border-radius: 30px;
  --after-border-radius: 1px;
  position: relative;
  width: var(--width-of-input);
  height: var(--height-of-input);
  display: flex;
  align-items: center;
  padding-inline: 0.8em;
  border-radius: var(--border-radius);
  transition: border-radius 0.5s ease;
  background: var(--input-bg,#fff);
}
/* styling of Input */
.input {
  font-size: 0.9rem;
  background-color: transparent;
  width: 100%;
  height: 100%;
  padding-inline: 0.5em;
  padding-block: 0.7em;
  border: none;
}
/* styling of animated border */
.form:before {
  content: "";
  position: absolute;
  background: var(--border-color);
  transform: scaleX(0);
  transform-origin: center;
  width: 100%;
  height: var(--border-height);
  left: 0;
  bottom: 0;
  border-radius: 1px;
  transition: transform var(--timing) ease;
}
/* Hover on Input */
.form:focus-within {
  border-radius: var(--after-border-radius);
}

input:focus {
  outline: none;
}
/* here is code of animated border */
.form:focus-within:before {
  transform: scale(1);
}
/* styling of close button */
/* == you can click the close button to remove text == */
.reset {
  border: none;
  background: none;
  opacity: 0;
  visibility: hidden;
}
/* close button shown when typing */
input:not(:placeholder-shown) ~ .reset {
  opacity: 1;
  visibility: visible;
}
/* sizing svg icons */
.form svg {
  width: 17px;
  margin-top: 3px;
}
body.loading {
  overflow: hidden;
}

.loading-wave {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;

  background: #fff;
  z-index: 999999;

  display: flex;
  justify-content: center;
  align-items: center;

  visibility: visible !important;
}

.loading-bar {
  width: 20px;
  height: 10px;
  margin: 0 5px;
  background-color: #3498db;
  border-radius: 5px;
  animation: loading-wave-animation 1s ease-in-out infinite;
}

.loading-bar:nth-child(2) {
  animation-delay: 0.1s;
}

.loading-bar:nth-child(3) {
  animation-delay: 0.2s;
}

.loading-bar:nth-child(4) {
  animation-delay: 0.3s;
}

@keyframes loading-wave-animation {
  0% {
    height: 10px;
  }

  50% {
    height: 50px;
  }

  100% {
    height: 10px;
  }
}





/*alt sayfaların cssleri*/
.seo-text-container {
  background-color: #f5f5f5; /* hafif gri arka plan */
  padding: 40px 30px;        /* üst-alt 40px, sağ-sol 30px boşluk */
  border-radius: 15px;       /* köşeler yuvarlak */
  max-width: 900px;          /* metin kutusunun maksimum genişliği */
  margin: 40px auto;         /* sayfa ortası ve üstten boşluk */
  box-shadow: 0 8px 20px rgba(0,0,0,0.05); /* hafif gölge */
  line-height: 1.6;          /* okunabilirlik için satır yüksekliği */
  font-family: 'Arial', sans-serif;
  color: #333;               /* koyu gri yazı */
}

/* Başlıklar */
.seo-text-container h1 {
  font-size: 2.5em;
  margin-bottom: 20px;
  color: #111;
  text-align: center;
}

.seo-text-container h2 {
  font-size: 2em;
  margin-top: 30px;
  margin-bottom: 15px;
  color: #222;
}

.seo-text-container h3 {
  font-size: 1.5em;
  margin-top: 20px;
  margin-bottom: 10px;
  color: #444;
}

/* Paragraflar */
.seo-text-container p {
  font-size: 1.1em;
  margin-bottom: 15px;
}

/* Responsive */
@media (max-width: 768px) {
  .seo-text-container {
    padding: 30px 20px;
  }
  .seo-text-container h1 {
    font-size: 2em;
  }
  .seo-text-container h2 {
    font-size: 1.6em;
  }
  .seo-text-container h3 {
    font-size: 1.3em;
  }
}



/*HAMBURGER*/
.burger {
  position: relative;
  width: 40px;
  height: 30px;
  background: transparent;
  cursor: pointer;
  display: none;
}

.burger input {
  display: none;
}

.burger span {
  display: block;
  position: absolute;
  height: 4px;
  width: 100%;
  background: black;
  border-radius: 9px;
  opacity: 1;
  left: 0;
  transform: rotate(0deg);
  transition: .25s ease-in-out;
}

.burger span:nth-of-type(1) {
  top: 0px;
  transform-origin: left center;
}

.burger span:nth-of-type(2) {
  top: 50%;
  transform: translateY(-50%);
  transform-origin: left center;
}

.burger span:nth-of-type(3) {
  top: 100%;
  transform-origin: left center;
  transform: translateY(-100%);
}

.burger input:checked ~ span:nth-of-type(1) {
  transform: rotate(45deg);
  top: 0px;
  left: 5px;
}

.burger input:checked ~ span:nth-of-type(2) {
  width: 0%;
  opacity: 0;
}

.burger input:checked ~ span:nth-of-type(3) {
  transform: rotate(-45deg);
  top: 28px;
  left: 5px;
}
/*MENÜYE BAĞLANMASI İÇİN..*/
#nav-menu.open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

/* ===== MOBİL ===== */
@media (max-width: 768px) {
    /* 1. Hamburgeri Sağ Üste Sabitleyelim */
    .burger {
        display: block !important;
        position: fixed !important; /* Absolute yerine Fixed daha güvenlidir */
        right: 20px;
        top: 35px; /* Logoyla aynı hizada olması için ayarla */
        z-index: 2100; /* Menünün de üstünde olmalı */
    }

    /* 2. Menü Konteynırı Ayarları */
    #nav-menu {
        position: fixed !important;
        top: 0 !important;
        right: 0 !important; /* Soldan değil sağdan gelsin istersen */
        width: 80% !important; /* Ekranın %80'ini kaplasın */
        max-width: 300px;
        height: 100vh !important;
        background: #ffffff !important;
        
        /* İçerikleri dikeyde en üste topla */
        display: flex !important;
        
        padding: 80px 0 20px 0 !important; /* Üstten hamburger payı */
        transform: translateX(100%) !important; /* Sağdan gizle */
        transition: transform 0.4s ease-in-out !important;
        z-index: 2000 !important;
        box-shadow: -5px 0 15px rgba(0,0,0,0.1);
        visibility: visible !important;
        opacity: 1 !important;
        flex-direction: column !important;
        align-items: flex-start !important; /* Sola yasla */
        justify-content: flex-start !important;
        padding-top: 100px !important; /* Hamburger ve Logo payı */
        gap: 0 !important; /* Elemanlar arası varsayılan boşluğu kaldır */
  }
    

    #nav-menu.open {
        transform: translateX(0) !important;
    }

    /* 3. Linkler ve Hizmetler Bloğu (Uzaklık Sorununu Çözer) */
    #nav-menu .ustmenu, 
    #nav-menu .menu,
    #nav-menu .menu .link {
        display: flex !important;
        width: 100% !important;
        margin: 0 !important; /* Aradaki devasa boşlukları sıfırlar */
        padding: 15px 25px !important;
        font-size: 18px !important;
        border-bottom: 1px solid #eee !important;
        box-sizing: border-box !important;
        color: #333 !important;
    }
    #nav-menu nav, 
    #nav-menu .menu, 
    #nav-menu .item {
    display: block !important; /* Flex'i bozup alt alta geçmelerini sağlar */
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
  }
      #nav-menu a.ustmenu, 
    #nav-menu .link {
    display: flex !important;
    align-items: center !important;
    justify-content: flex-start !important; /* Sola yaslı */
    width: 100% !important;
    padding: 15px 20px !important; /* Boşluğu buradan daraltabilir/açabilirsin */
    font-size: 18px !important;
    border-bottom: 1px solid #eee !important;
    background: transparent !important;
    box-sizing: border-box !important;
    height: auto !important; /* Masaüstünden gelen height: 100% varsa iptal eder */
  }

    /* Hizmetler başlığı içindeki SVG ve yazı hizası */
    .menu .link {
        justify-content: space-between !important;
        border-bottom: none !important; /* Alt menüyle birleşik dursun */
    }

    /* 4. Alt Menü (Submenu) Düzenlemesi */
    .submenu {
        position: static !important;
        display: none !important; /* Kapalı başla */
        background: #f9f9f9 !important;
        width: 100% !important;
        padding: 0 !important;
        opacity: 1 !important;
        visibility: visible !important;
        transform: none !important;
        box-shadow: none !important;
    }

    .submenu.active-submenu {
        display: block !important;
    }

    .submenu-item a {
        padding: 12px 40px !important; /* İçeride olduğu belli olsun */
        display: block !important;
        border-bottom: 1px solid #eee !important;
        font-size: 15px !important;
        
        background-color: #fcfcfc !important;
    }

    /* Telefon linki mobilde gizli kalsın demiştin */
    .telefon-link-desktop {
        display: none !important;
    }
}

@media (max-width: 768px) {
    .mobile-call-footer {
        display: flex !important;
        align-items: center;
        justify-content: center;
        gap: 12px;
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 100px;
        background-color: #30C04F;
        color: white;
        text-decoration: none;
        font-size: 20px;
        font-weight: bold;
        z-index: 9999;
        box-shadow: 0 -3px 10px rgba(0,0,0,0.15);
        
        /* --- YENİ EKLENEN KISIM BURASI --- */
        transform: translateY(100%); /* Başlangıçta aşağıda gizli duracak */
        transition: transform 0.4s ease; /* Kayarak çıkması için animasyon */
    }

    /* JavaScript çalıştığında bu class devreye girecek */
    .mobile-call-footer.show {
        transform: translateY(0); /* Barı yukarı çıkartıp gösterir */
    }

    .mobile-call-footer svg {
        width: 25px;
        height: 25px;
    }

    .mobile-call-footer svg path {
        fill: white;
    }

    body {
        padding-bottom: 60px;
    }
}

/* Masaüstünde gizle */
@media (min-width: 769px) {
    .mobile-call-footer {
        display: none;
    }
}

/* WhatsApp Buton Tasarımı */
.whatsapp-btn {
 position: fixed;
  right: 20px;
  bottom: 110px; /* <--- Burayı 80 yerine 100 veya 110 yaparak daha yukarı taşıyabilirsin */
  width: 60px;
  height: 60px;
  background-color: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 2px 2px 10px rgba(0,0,0,0.3);
  z-index: 9998;
  animation: bounce 2s infinite;
}
.whatsapp-btn {
  /* ... senin mevcut kodların (position, right, bottom vb.) ... */
  transition: bottom 0.4s ease !important; /* Hareketin yumuşak olması için */
}

/* Alttaki bar çıktığında WhatsApp butonunu yukarı itecek olan class */
.whatsapp-btn.move-up {
  bottom: 110px !important; /* Barın yüksekliği + biraz boşluk */
}
/* Zıplama Animasyonu Kodları */
@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-15px);
  }
  60% {
    transform: translateY(-7px);
  }
}

/* Masaüstünde gizlemek istersen (isteğe bağlı) */
@media (min-width: 769px) {
  .whatsapp-btn {
    bottom: 20px; /* Masaüstünde bar olmadığı için en alta çekebilirsin */
  }
}
.cta-section {
  background-color: #f8f9fa; /* Çok hafif gri arka plan */
  padding: 60px 20px;
  text-align: center;
  width: 100%;
}

.cta-container {
  max-width: 800px;
  margin: 0 auto;
}

/* Başlık Ayarı */
.cta-section h2 {
  font-size: 32px;
  color: #333;
  margin-bottom: 10px;
  font-weight: 800;
}

/* Altındaki Kısa Çizgi */
.cta-line {
  width: 60px;
  height: 4px;
  background-color: #30C04F; /* Senin yeşil rengin */
  margin: 0 auto 20px;
  border-radius: 2px;
}

/* Açıklama Cümlesi */
.cta-desc {
  font-size: 18px;
  color: #666;
  margin-bottom: 30px;
}

/* Arama Kutusu / Butonu */
.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  background-color: #30C04F;
  color: white;
  padding: 18px 35px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 22px;
  font-weight: bold;
  box-shadow: 0 10px 20px rgba(48, 192, 79, 0.3);
  transition: all 0.3s ease;
  
  /* Hafif Büyüme/Küçülme Animasyonu */
  animation: pulse-button 2.5s infinite;
}

/* Hover'da (Üstüne gelince) Efekt */
.cta-button:hover {
  background-color: #28a745;
  transform: translateY(-3px);
  box-shadow: 0 15px 25px rgba(48, 192, 79, 0.4);
}

/* Animasyon Tanımı */
@keyframes pulse-button {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05); /* Çok hafif büyüme */
  }
  100% {
    transform: scale(1);
  }
}

/* Mobil Uyumluluk */
@media (max-width: 768px) {
  .cta-section {
    padding: 40px 15px;
  }
  .cta-section h2 {
    font-size: 26px;
  }
  .cta-button {
    font-size: 18px;
    padding: 15px 25px;
    width: 100%; /* Mobilde tam genişlik */
    justify-content: center;
  }
}
.hizmet-bolgeleri {
  margin-top: 30px;
}

/* Grid yapı */
.hizmet-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
}

/* Sütun başlıkları */
.hizmet-grid h4 {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 10px;
}

/* Liste ayarları */
.hizmet-grid ul {
  list-style-type: disc;
  padding-left: 18px;
  margin: 0;
}

.hizmet-grid li {
  font-size: 14px;
  margin-bottom: 4px;
}

/* Linkler */
.hizmet-grid a {
  text-decoration: underline;
  color: inherit;
}

.hizmet-grid a:hover {
  opacity: 0.7;
}

/* Mobilde tek sütun */
@media (max-width: 768px) {
  .hizmet-grid {
    grid-template-columns: 1fr;
  }
}

