/* GENEL RESET */
html, body {
  width: 100%;
  max-width: 100vw;
  overflow-x: hidden !important;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
*, *:before, *:after {
  box-sizing: inherit;
}

/* Genel Ayarlar */
body {
  font-family: 'Montserrat', Arial, sans-serif;
  background: #f7faf7;
  color: #232e23;
}

.header-top {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  background: #fff;
  padding: 6px 20px;
  font-size: 15px;
  gap: 12px;
  border-bottom: 1px solid #eaeaea;
}

.header-top i {
  color: #1b8b44;
  margin-right: 8px;
  font-size: 18px;
}

.header-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #fff;
  padding: 12px 32px;
  border-bottom: 1.5px solid #e5ece6;
  position: relative;
  width: 100%;
  max-width: 100vw;
  box-sizing: border-box;
}

.logo-text img {
  height: 66px;
  max-width: 120px;
}

.menu {
  display: flex;
  gap: 18px;
  box-sizing: border-box;
}

.menu a {
  color: #195f36;
  text-decoration: none;
  font-weight: 500;
  padding: 6px 10px;
  transition: background .2s;
  border-radius: 6px;
}

.menu a:hover {
  background: #ecf4ec;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 8px;
}

.lang-flags img {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  cursor: pointer;
  margin-left: 2px;
  border: 1.5px solid #f1f1f1;
  transition: box-shadow .2s;
}

.lang-flags img:hover {
  box-shadow: 0 0 6px #e1e1e1;
}

/* ----- HERO ----- */
.green-hero {
  background: linear-gradient(90deg, #207243 70%, #d6ffcb 100%);
  padding: 36px 0 26px 0;
  text-align: center;
  width: 100%;
  max-width: 100vw;
  box-sizing: border-box;
}

.green-hero-title {
  font-size: 2.3rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 1px;
}

.green-hero-breadcrumb {
  color: #f9ffed;
  margin-top: 6px;
  font-size: 1.07rem;
}
    /* İşletmeler grid */
    .branches-section {
      width: 100vw;
      padding: 46px 0 70px 0;
      background: #fff;
      display: flex;
      flex-direction: column;
      align-items: center;
    }
    .branches-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 44px 32px;
      max-width: 1200px;
      width: 100%;
      margin: 0 auto;
      padding: 0 3vw;
    }
    .branch-card {
      background: #fff;
      border-radius: 10px;
      box-shadow: 0 2px 14px #0001;
      display: flex;
      flex-direction: column;
      align-items: center;
      padding: 0 10px 18px 10px;
      text-align: center;
      transition: box-shadow 0.14s;
    }
    .branch-card img {
      width: 100%;
      max-width: 310px;
      height: 165px;
      object-fit: cover;
      border-radius: 8px;
      margin-bottom: 16px;
      box-shadow: 0 1.5px 6px #0002;
    }
    .branch-title {
      font-size: 1.07rem;
      font-weight: 600;
      margin-bottom: 4px;
      color: #222;
    }
    .branch-desc {
      font-size: .97rem;
      color: #888;
    }
    @media (max-width: 1100px) {
      .branches-grid { grid-template-columns: repeat(2, 1fr);}
    }
    @media (max-width: 700px) {
      .branches-grid { grid-template-columns: 1fr; gap: 32px 0;}
      .green-hero-title { font-size: 1.3rem;}
    }

.footer-section {
  width: 100vw;
  background: #fff;
  color: #292929;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.01rem;
  margin-top: 0;
}

.footer-divider {
  width: 100vw;
  height: 1.5px;
  background: #e9e9e9;
  margin: 0 0 30px 0;
}

.footer-content {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  gap: 60px;
  justify-content: space-between;
  align-items: flex-start;
  padding: 22px 30px 18px 30px;
  flex-wrap: wrap;
}

.footer-col {
  flex: 1 1 180px;
  display: flex;
  flex-direction: column;
  gap: 5px;
  min-width: 170px;
  max-width: 300px;
}

.footer-logo-contact {
  min-width: 230px;
  max-width: 300px;
  gap: 10px;
}
.footer-logo {
  width: 110px;
  margin-bottom: 16px;
}
.footer-contact {
  font-size: 1.01rem;
  color: #484848;
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.footer-contact i {
  color: #1b8b44;
  margin-right: 7px;
  font-size: 1.09rem;
}

.footer-title {
  color: #179143;
  font-weight: 700;
  margin-bottom: 9px;
  letter-spacing: 0.5px;
  font-size: 1.05rem;
}

.footer-col a {
  color: #222;
  text-decoration: none;
  font-size: 1.02rem;
  margin-bottom: 2px;
  transition: color 0.14s;
}
.footer-col a:hover {
  color: #18a352;
}

.footer-social {
  display: flex;
  gap: 18px;
  margin-top: 18px;
}
.footer-social a {
  font-size: 1.4rem;
  color: #1b8b44;
  transition: color 0.18s;
}
.footer-social a:hover {
  color: #128d3e;
}

.footer-bottom {
  width: 100vw;
  max-width: 1400px;
  margin: 0 auto;
  padding: 20px 34px 16px 34px;
  border-top: 1px solid #e9e9e9;
  color: #454545;
  font-size: 0.97rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.footer-bottom a {
  color: #179143;
  text-decoration: none;
  font-weight: 500;
  margin-right: 12px;
}
.footer-bottom a:hover {
  text-decoration: underline;
}

.zerosoft-link{
  display:inline-block;
  position:relative;
  font-weight:900;
  font-size:1.2em;
  line-height:1;                 /* sıçrama olmasın */
  text-decoration:none;
  background:linear-gradient(270deg,#00ff7f,#1b8b44,#00e5ff,#00ff7f);
  background-size:400% 400%;
  background-clip:text;
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
  animation:galaxyMove 6s ease infinite;
  transition:transform .25s ease, text-shadow .25s ease;
  transform-origin:left bottom;  /* büyüyünce aşağı taşmasın */
}

/* Metnin blur'lu kopyası = kontrollü glow */
.zerosoft-link::after{
  content:attr(data-text);
  position:absolute; inset:0;
  font:inherit;                  /* aynı font/kalınlık */
  background:inherit;            /* aynı gradient */
  background-size:inherit;
  background-clip:text;
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
  filter:blur(6px);
  opacity:0;
  pointer-events:none;           /* tıklamayı engellemesin */
  transition:opacity .25s ease, filter .25s ease;
}

/* Hover efektleri */
.zerosoft-link:hover{
  transform:scale(1.08);
  text-shadow:0 0 8px rgba(0,255,170,.45), 0 0 14px rgba(0,229,255,.25);
}
.zerosoft-link:hover::after{
  opacity:.9;                    /* parıltı görünür */
  filter:blur(10px);             /* yumuşak neon */
}

/* Sürekli akan gradient */
@keyframes galaxyMove{
  0%{background-position:0% 50%}
  50%{background-position:100% 50%}
  100%{background-position:0% 50%}
}





@media (max-width: 1100px) {
  .contact-map-area {
    flex-direction: column;
    align-items: center;
    gap: 26px;
    padding: 24px 0 30px 0;
    width: 100vw !important;
    max-width: 100vw !important;
  }
  .contact-map-img, .contact-main-card {
    width: 100vw !important;
    max-width: 510px;
    min-width: 0 !important;
    margin: 0 auto;
    box-sizing: border-box;
  }
  .contact-main-card {
    flex-direction: column;
    align-items: stretch;
    gap: 18px;
    padding: 24px 12px;
  }
}

@media (max-width: 950px) {
  .footer-content {
    flex-direction: column;
    gap: 35px;
    padding: 22px 4vw 18px 4vw;
    align-items: center !important;
    text-align: center !important;
    justify-content: center !important;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 8px;
    padding: 14px 4vw 14px 4vw;
    text-align: center;
  }
  .footer-col {
    align-items: center !important;
    text-align: center !important;
  }
  .mobile-toggle {
    display: block !important;
  }
  .menu {
    display: none !important;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100vw !important;
    max-width: 100vw !important;
    background: #fff;
    z-index: 100;
    padding: 24px 0 18px 0;
    box-shadow: 0 6px 24px rgba(80,120,80,.09);
    border-bottom-left-radius: 18px;
    border-bottom-right-radius: 18px;
    text-align: left;
  }
  .menu.open {
    display: flex !important;
  }
  .header-main {
    position: relative;
    z-index: 110;
  }
}

@media (max-width: 780px) {
  .header-main {
    flex-direction: column;
    align-items: flex-start;
    padding: 12px 8vw;
    gap: 18px;
  }
  .menu {
    gap: 8px;
    flex-wrap: wrap;
    font-size: 1.02rem;
  }
  .logo-text img {
    height: 52px;
    max-width: 86px;
  }
}

@media (max-width: 600px) {
  .header-main, .header-top {
    padding-left: 2vw;
    padding-right: 2vw;
  }
  .green-hero {
    padding: 19px 0 10px 0;
  }
  .green-hero-title {
    font-size: 1.25rem;
  }
  .contact-map-img {
    height: 170px !important;
    min-width: 0 !important;
    width: 100vw !important;
    max-width: 100vw !important;
    box-sizing: border-box;
  }
  .contact-main-card {
    max-width: 99vw;
    width: 99vw !important;
    padding: 14px 4px;
    border-radius: 11px;
    min-width: 0 !important;
  }
  .contact-info-side, .contact-form-side {
    min-width: 120px;
    font-size: 0.97rem;
  }
  .footer-col {
    min-width: 110px;
    font-size: 0.97rem;
  }
  .footer-logo {
    max-width: 65px;
    margin-bottom: 10px;
  }
  .footer-title {
    font-size: 0.97rem;
    margin-bottom: 5px;
  }
  .footer-content,
  .footer-section,
  .footer-bottom {
    width: 100vw !important;
    max-width: 100vw !important;
    box-sizing: border-box;
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
}

.mobile-toggle {
  display: none;
  font-size: 2.3rem;
  color: #195f36;
  cursor: pointer;
  margin-left: 16px;
  user-select: none;
  z-index: 120;
}

/* Masaüstünde görünen bayraklar */
.desktop-only {
  display: flex;
  gap: 10px;
}

/* Mobil menüde görünen bayraklar */
.lang-flags-mobile {
  display: none;
  justify-content: center;
  gap: 10px;
  padding: 10px 0;
}

@media (max-width: 1100px) {
  .contact-map-area {
    flex-direction: column;
    align-items: center;
    gap: 26px;
    padding: 24px 0 30px 0;
    width: 100vw !important;
    max-width: 100vw !important;
  }
  .contact-map-img, .contact-main-card {
    width: 100vw !important;
    max-width: 510px;
    min-width: 0 !important;
    margin: 0 auto;
    box-sizing: border-box;
  }
  .contact-main-card {
    flex-direction: column;
    align-items: stretch;
    gap: 18px;
    padding: 24px 12px;
  }
}

@media (max-width: 900px) {
  .footer-content {
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
    padding: 0 6vw;
  }

  .mobile-toggle {
    display: block !important;
  }

  .menu {
    display: none !important;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100vw !important;
    max-width: 100vw !important;
    background: #fff;
    z-index: 100;
    padding: 24px 0 18px 0;
    box-shadow: 0 6px 24px rgba(80,120,80,.09);
    border-bottom-left-radius: 18px;
    border-bottom-right-radius: 18px;
    text-align: left;
  }

  .menu.open {
    display: flex !important;
  }

  .header-main {
    position: relative;
    z-index: 110;
  }

  .header-main {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 0;
    padding: 10px 2vw;
    position: relative;
  }

  .logo-text {
    margin-right: 6px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
  }

  .mobile-toggle {
    margin-left: 0;
    margin-right: 10px;
    order: 2;
  }

  .header-right {
    margin-left: auto;
    display: flex;
    align-items: center;
    order: 3;
  }

  /* Masaüstü bayrakları gizle, mobil göster */
  .desktop-only {
    display: none !important;
  }

  .lang-flags-mobile {
    display: flex !important;
  }
}

@media (max-width: 780px) {
  .header-main {
    flex-direction: column;
    align-items: flex-start;
    padding: 12px 8vw;
    gap: 18px;
  }
  .menu {
    gap: 8px;
    flex-wrap: wrap;
    font-size: 1.02rem;
  }
  .logo-text img {
    height: 52px;
    max-width: 86px;
  }
}

@media (max-width: 600px) {
  .header-main, .header-top {
    padding-left: 2vw;
    padding-right: 2vw;
  }
  .green-hero {
    padding: 19px 0 10px 0;
  }
  .green-hero-title {
    font-size: 1.25rem;
  }
  .contact-map-img {
    height: 170px !important;
    min-width: 0 !important;
    width: 100vw !important;
    max-width: 100vw !important;
    box-sizing: border-box;
  }
  .contact-main-card {
    max-width: 99vw;
    width: 99vw !important;
    padding: 14px 4px;
    border-radius: 11px;
    min-width: 0 !important;
  }
  .contact-info-side, .contact-form-side {
    min-width: 120px;
    font-size: 0.97rem;
  }
  .footer-col {
    min-width: 110px;
    font-size: 0.97rem;
  }
  .footer-logo {
    max-width: 65px;
    margin-bottom: 10px;
  }
  .footer-title {
    font-size: 0.97rem;
    margin-bottom: 5px;
  }
  .footer-content,
  .footer-section,
  .footer-bottom {
    width: 100vw !important;
    max-width: 100vw !important;
    box-sizing: border-box;
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
}

@media (max-width: 900px) {
    .header-main {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 0;
    padding: 10px 2vw;
    position: relative;
  }
  .logo-text {
    margin-right: 6px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
  }
  .mobile-toggle {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    margin: 0;
    z-index: 200;
  }

  .header-right {
    margin-left: auto;
    display: flex;
    align-items: center;
    order: 3;
  }
}


.lang-flags-mobile img {
  width: 24px;
  height: 24px;
  object-fit: contain;
  transition: transform 0.2s ease;
}

.lang-flags-mobile img:hover {
  transform: scale(1.1);
}
