/* Genel Stiller */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  width: 100%;
  height: 100%; /* Ensure full height for consistent rendering */
  margin: 0;
  padding: 0;
  overflow-x: hidden; /* Yatay kaydırmayı engelle */
  font-family: 'Lato', Arial, sans-serif; /* Lato fontunu kullan */
  color: #333; /* Daha kurumsal bir renk */
  background: #f4f4f4; /* Açık gri arka plan */
}

header {
  background: #fff;
  color: #222;
  box-shadow: 0 2px 12px 0 rgba(0,0,0,0.06);
  padding: 0;
  border-radius: 8px 8px 0 0;
  min-height: 110px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.header-inner-container {
  flex-direction: column;
  align-items: stretch;
  gap: 0;
  background: #fff;
  border-radius: 0 0 18px 18px;
  box-shadow: 0 2px 16px 0 rgba(0,0,0,0.06);
}

.header-top-row {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  width: 100%;
  padding: 0 32px 4px 32px;
  box-sizing: border-box;
  gap: 18px;
  min-height: 44px;
}

.header-bottom-row {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  min-height: 120px;
  padding: 0 32px 10px 32px;
  box-sizing: border-box;
  gap: 0;
}

/* Sosyal ikonlar ve telefon kutusu üstte hizalı */
.header-top-row .social-icons {
  gap: 10px;
}
.header-top-row .header-phone-box {
  flex-direction: row;
  gap: 10px;
  background: none;
  box-shadow: none;
  padding: 0;
  min-width: 0;
  max-width: none;
}
.header-top-row .header-phone-row {
  font-size: 1rem;
  color: #004080;
  font-weight: 700;
  gap: 4px;
  background: #f7fafd;
  border-radius: 10px;
  box-shadow: 0 2px 12px 0 rgba(0,32,80,0.07);
  padding: 4px 10px;
  transition: background 0.18s, color 0.18s;
}
.header-top-row .header-phone-row:hover {
  background: #eaf1fa;
  color: #1976d2;
}

/* Alt satırda logo, menü ve hamburger */
.header-bottom-row .logo {
  margin: 0;
  margin-right: 32px;
}
.header-bottom-row nav {
  flex: 1 1 0%;
  min-width: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-left: 38px;
}

header .logo {
  display: block;
  margin: 0;
  margin-right: 32px;
  height: 120px;
  min-width: 160px;
  max-width: 300px;
  transition: height 0.2s, max-width 0.2s;
}

header ul {
  display: flex;
  flex-wrap: nowrap;
  gap: 4px;
  align-items: center;
  justify-content: center;
  min-width: 0;
  width: 100%;
}

header ul li {
  display: flex;
  align-items: center;
  height: 100%;
}

header ul li a {
  font-size: 0.82rem;
  color: #0a3779;
  transition: color 0.18s, background 0.18s;
  text-decoration: none !important;
}
header ul li a:hover,
header ul li a:focus,
header ul li a.active {
  color: #1976d2;
  background: #eaf1fa;
  text-decoration: none !important;
}

.contact-social-group {
  display: flex;
  align-items: center;
  gap: 18px;
  min-width: 120px;
  max-width: 220px;
  flex-shrink: 0;
  justify-content: flex-end;
}

.social-icons {
  display: flex;
  align-items: center;
  gap: 10px;
}

.social-icon,
.header-phone-icon img,
.header-phone-icon {
  width: 26px !important;
  height: 26px !important;
  min-width: 20px !important;
  min-height: 20px !important;
  max-width: 32px !important;
  max-height: 32px !important;
  display: inline-block;
  object-fit: contain;
  vertical-align: middle;
  font-size: 20px !important;
  transition: filter 0.18s;
}
.social-icon:hover {
  filter: brightness(1.2) drop-shadow(0 2px 8px #1976d2aa);
}

.header-phone-box {
  display: flex;
  flex-direction: column;
  gap: 4px;
  align-items: flex-start;
  background: #f7fafd;
  border-radius: 10px;
  box-shadow: 0 2px 12px 0 rgba(0,32,80,0.07);
  padding: 6px 14px;
  min-width: 120px;
  max-width: 200px;
}

.header-phone-row {
  display: flex;
  align-items: center;
  gap: 4px;
  text-decoration: none;
  color: #004080;
  font-weight: 700;
  font-size: 1rem;
  padding: 2px 0;
  transition: color 0.18s;
  white-space: nowrap;
}

.header-phone-row:hover {
  color: #1976d2;
}

.header-phone-number {
  letter-spacing: 0.2px;
  font-family: 'Lato', Arial, sans-serif;
}

@media (max-width: 1200px) {
  .header-top-row, .header-bottom-row { padding-left: 12px; padding-right: 12px; }
  header .logo {
    height: 100px;
    min-width: 120px;
    max-width: 220px;
    margin-bottom: 0.5em;
  }
  header ul { gap: 2px; }
  .contact-social-group { gap: 10px; }
  .social-icon, .header-phone-icon img, .header-phone-icon { width: 22px !important; height: 22px !important; font-size: 16px !important; }
  .header-bottom-row {
    min-height: 100px;
    padding-top: 8px;
    padding-bottom: 18px;
  }
  header ul li a { font-size: 0.78rem; }
  .header-bottom-row nav { padding-left: 18px; }
}
@media (max-width: 900px) {
  .header-top-row, .header-bottom-row { padding-left: 4px; padding-right: 4px; }
  header .logo {
    height: 80px;
    min-width: 90px;
    max-width: 150px;
    margin-bottom: 0.5em;
  }
  header ul { gap: 1px; }
  header ul li a { font-size: 0.74rem; padding: 2px 0; }
  .contact-social-group { gap: 4px; }
  .social-icon, .header-phone-icon img, .header-phone-icon { width: 14px !important; height: 14px !important; font-size: 10px !important; }
  .header-top-row .header-phone-row { font-size: 0.8rem; padding: 2px 4px; gap: 2px; }
  .header-bottom-row {
    min-height: 80px;
    padding-top: 6px;
    padding-bottom: 14px;
  }
  .header-bottom-row nav { padding-left: 6px; }
}
@media (max-width: 800px) {
  .header-bottom-row > * {
    display: none !important;
  }
  .header-bottom-row > .logo,
  .header-bottom-row .logo {
    display: block !important;
  }
  .header-bottom-row .hamburger-menu {
    display: block !important;
  }
  header .logo {
    height: 80px;
    min-width: 90px;
    max-width: 150px;
    margin-bottom: 0.5em;
  }
  header ul { gap: 1px; }
  header ul li a { font-size: 0.74rem; padding: 4px 0; }
  .header-bottom-row {
    min-height: 80px;
    padding-top: 6px;
    padding-bottom: 14px;
  }
  .mobile-menu-logo {
    display: block !important;
    text-align: center;
    margin: 0 0 18px 0;
  }
  .mobile-menu-logo img {
    height: 48px;
    max-width: 120px;
    display: inline-block;
  }
  .mobile-menu-hamburger-bottom {
    display: flex !important;
    position: fixed !important;
    right: 18px;
    bottom: 18px;
    background: none;
    border: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    cursor: pointer;
    z-index: 9999;
  }
}
@media (min-width: 801px) {
  .mobile-menu-hamburger-bottom {
    display: none !important;
  }
}

.container, .container-fluid, .main-content, .content, .page-content {
  max-width: 100vw !important;
  width: 100vw !important;
  margin: 0 !important;
  padding: 0 !important;
  box-sizing: border-box;
}

.slider {
  width: 100vw !important;
  max-width: none !important;
  height: 700px;
  padding: 0 !important;
  margin: 0 !important;
  overflow: hidden;
  position: relative;
  margin-bottom: 40px;
  left: 0 !important;
  right: 0 !important;
  transform: none !important;
}

.slider img {
  width: 100% !important;
  max-width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  background: none;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  display: block !important;
}

.slider img.active {
  opacity: 1;
}

.slider img.object-fit-contain {
  object-fit: contain; /* Sadece 3. resim için resmi kırpmadan sığdır */
}

.slider img.object-fit-cover {
  object-fit: cover; /* Personel görseli için kenarları kırparak tam doldur */
  width: 100vw !important;
  max-width: 100vw !important;
  height: 100% !important;
}

.slider-img-personel {
  object-fit: contain !important;
  background: #fff;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.marka-logosu {
  background: #fff;
  padding: 20px;
  text-align: center;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  margin-bottom: 40px;
  border-radius: 8px;
}

.brand-logo-container {
  overflow: hidden;
  width: 100%;
}

.brand-logo-track {
  display: flex;
  width: max-content; /* Ensure it's wide enough for all items */
  animation: scrollLogos 20s linear infinite;
}

.marka-logosu .brand-logo-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 25px; /* Logolar arasında boşluk */
  flex-shrink: 0;
}

.marka-logosu .brand-logo-item img {
  height: 80px;
  width: auto;
  margin-bottom: 8px; /* Metin ile logo arası boşluk */
}

.marka-logosu .brand-logo-item span {
  color: #000;
  font-size: 14px;
  font-weight: 400;
}

@keyframes scrollLogos {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%); /* Kaydırmanın sorunsuz olması için genişliğin yarısı kadar kaydır */
  }
}

section {
  padding: 60px 20px;
  background: #fff;
  margin-bottom: 30px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  border-radius: 8px;
}
section > h2 {
  text-align: center;
  margin-bottom: 40px;
  color: #004080;
  font-size: 2.5em;
  font-weight: 700;
  text-transform: uppercase;
  position: relative;
}
section > h2::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: -10px;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #007BFF;
  border-radius: 2px;
}
section > p, section > ul {
  color: #555;
  line-height: 1.8;
}
section > ul {
  list-style-type: disc;
  padding-left: 20px;
}
section > ul > li {
  margin-bottom: 10px;
}

.sertifikalar {
  max-width: 99vw;
  width: 99vw;
  margin: 40px auto 32px auto;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 6px 32px 0 rgba(0,0,0,0.08);
  padding: 24px 1vw 18px 1vw;
}

.sertifikalar h2 {
  color: #004080;
}

.sertifika-galerisi {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px; /* Daha fazla boşluk */
  padding: 20px 0;
}

.sertifika-galerisi img {
  max-width: 200px; /* Daha büyük sertifika görselleri */
  height: auto;
  border: 5px solid #fff; /* Beyaz çerçeve */
  box-shadow: 0 4px 10px rgba(0,0,0,0.3); /* Daha belirgin gölge */
  transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
  border-radius: 5px;
}

.sertifika-galerisi img:hover {
  transform: scale(1.08);
  box-shadow: 0 8px 15px rgba(0,0,0,0.4);
}

footer {
  padding: 30px 20px; /* Daha fazla padding */
  background: #004080;
  color: #fff;
  text-align: center;
  margin-top: 40px; /* Footer üstünde boşluk */
}

.social-icons {
  display: flex;
  gap: 10px;
  align-items: center;
}

.social-icon {
  height: 36px;
  width: 36px;
  transition: transform 0.3s ease;
}

.social-icon:hover {
  transform: scale(1.1);
}

.instagram-icon {
  height: 22px; /* Instagram logosunun yeni, daha da küçük boyutu */
  width: 22px;
}

/* Responsive Düzenlemeler */
@media (max-width: 768px) {
  header {
    padding: 15px 0;
  }

  .header-inner-container {
    flex-direction: column;
    align-items: center;
    padding: 0 20px;
  }

  header nav ul {
    width: 100%;
    margin-top: 15px;
    text-align: center;
  }

  header nav ul li {
    margin-right: 0;
    margin-bottom: 12px;
  }

  .contact-social-group {
    flex-direction: column; /* Mobil görünümde alt alta */
    align-items: center;
    width: 100%;
    margin-top: 15px;
    gap: 15px;
  }

  .social-icons {
    margin-right: 0;
    justify-content: center;
    width: 100%;
    gap: 8px;
  }

  .phone-button {
    margin-top: 0; /* contact-social-group zaten boşluk sağlıyor */
  }

  section {
    padding: 40px 15px;
    margin-bottom: 20px;
  }

  section h2 {
    font-size: 2em;
  }

  .marka-logosu .brand-logo-item img {
    height: 70px;
  }

  @keyframes scrollLogos {
    0% {
      transform: translateX(0);
    }
    100% {
      transform: translateX(-50%);
    }
  }

  .sertifika-galerisi img {
    max-width: 150px;
    border: 3px solid #fff;
  }

  .slider {
    height: 300px;
  }
}

@media (max-width: 480px) {
  header {
    padding: 15px 0;
  }

  .header-inner-container {
    padding: 0 15px;
  }

  header .logo {
    height: 70px;
  }

  header nav ul li {
    margin-bottom: 10px;
  }

  .marka-logosu .brand-logo-item img {
    height: 60px;
  }

  section h2 {
    font-size: 1.8em;
  }

  .social-icon {
    height: 30px;
    width: 30px;
  }

  .instagram-icon {
    height: 18px; /* Responsive Instagram boyutu */
    width: 18px;
  }

  .contact-social-group {
    gap: 10px;
  }

  .social-icons {
    gap: 6px;
  }

  .slider {
    height: 300px;
  }
}

@media (max-width: 600px) {
  .slider {
    height: 400px;
  }
  .slider img {
    height: 220px !important;
    min-height: 180px !important;
  }
  .marka-logosu {
    padding: 10px 2px;
    margin-bottom: 20px;
  }
  .brand-logo-container {
    padding: 0 2px;
  }
  .marka-logosu .brand-logo-item img {
    height: 40px;
    margin-bottom: 4px;
  }
  .ozisik-cards-wrapper {
    flex-direction: column;
    gap: 24px;
    padding: 0 2px;
  }
  .ozisik-card {
    min-width: 0;
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
  }
  .ozisik-card-img img {
    height: 120px;
    object-fit: cover;
  }
  .ozisik-counters-wrapper {
    flex-direction: column;
    gap: 16px;
    padding: 0 2px;
  }
  .ozisik-counter {
    min-width: 0;
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    padding: 12px 4px;
  }
  .sertifika-galerisi img {
    max-width: 90px;
    max-height: 90px;
    margin: 4px;
  }
  .footer-container {
    flex-direction: column;
    gap: 16px;
    padding: 0 2px;
  }
  .footer-col {
    width: 100%;
    max-width: 100%;
    margin-bottom: 12px;
  }
  .ozisik-card-content h3 {
    font-size: 1.5rem;
  }
  .ozisik-card-content p {
    font-size: 1.08rem;
  }
}

section.slider {
  padding: 0 !important;
  margin: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}

/* Hizmetler tablosunda açıklama hücresinin HTML biçimli görünmesi için */
td {
  white-space: normal !important;
  word-break: break-word;
}

/* Devamı butonu */
.btn-devami {
  background: #0056b3;
  color: #fff !important;
  border: none;
  border-radius: 6px;
  padding: 8px 24px;
  font-weight: 600;
  transition: background 0.32s, color 0.32s;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.btn-devami:hover, .btn-devami:focus {
  background: #002b5c;
  color: #fff !important;
  transition: background 0.32s, color 0.32s;
}

/* Hizmet kartı başlıkları */
.service-card-title {
  color: #003d80;
  font-weight: 700;
  font-size: 1.3rem;
  margin: 18px 0 8px 0;
  text-align: center;
}

/* Diğer hizmetler menüsü */
.side-menu a {
  color: #0056b3;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.2s;
}
.side-menu a:hover, .side-menu a.active {
  color: #003d80;
  text-decoration: underline;
}

/* Footer Modern ve Şık Stil */
.footer-gradient-bar {
  width: 100%;
  height: 6px;
  background: linear-gradient(90deg, #2196f3 0%, #0a3779 100%);
  border-radius: 0 0 12px 12px;
  margin-bottom: 0;
}
.site-footer {
  background: #174a8b;
  color: #fff;
  font-family: 'Lato', Arial, sans-serif;
  margin-top: 40px;
  padding: 0;
}
.site-footer .footer-main-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 48px;
  padding: 64px 40px 32px 40px;
  max-width: 1400px;
  margin: 0 auto;
  border-bottom: 1.5px solid #2d4e7a;
  overflow: hidden;
}
.site-footer .footer-logo-col {
  flex: 2 1 420px;
  min-width: 320px;
  max-width: 600px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 22px;
  margin-right: 48px;
  box-sizing: border-box;
}
.site-footer .footer-contact-block {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 1.09em;
}
.site-footer .footer-contact-row {
  display: flex;
  align-items: flex-start;
  gap: 7px;
  margin-bottom: 4px;
  line-height: 1.35;
  font-size: 1em;
  flex-wrap: nowrap;
}
.site-footer .footer-contact-icon {
  font-size: 1.18em;
  margin-top: 2px;
  color: #b3d1ff;
}
.site-footer .footer-contact-label {
  font-weight: 700;
  width: 120px;
  min-width: 120px;
  max-width: 120px;
  color: #e3eaf2;
  text-align: right;
  margin-right: 8px;
  flex-shrink: 0;
}
.site-footer .footer-contact-info {
  color: #f7faff;
  font-weight: 400;
  flex: 1;
  word-break: normal;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: 1.04em;
  max-width: 100%;
}
@media (max-width: 600px) {
  .site-footer .footer-contact-info {
    font-size: 0.95em;
  }
}
.site-footer .footer-contact-link {
  color: #fff !important;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.18s;
}
.site-footer .footer-contact-link:hover {
  color: #ff9800 !important;
  text-decoration: underline;
}
.site-footer .footer-menu-col {
  flex: 1 1 120px;
  min-width: 100px;
  max-width: 200px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  padding-left: 18px;
  border-left: 1.5px solid #2d4e7a;
  box-sizing: border-box;
}
.site-footer .footer-menu-col:first-of-type {
  border-left: none;
  padding-left: 0;
}
.site-footer .footer-menu-col h3 {
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.13em;
  font-weight: 800;
  margin-bottom: 18px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-bottom: 2px solid #b3d1ff;
  padding-bottom: 6px;
}
.site-footer .footer-menu-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  width: 100%;
}
.site-footer .footer-menu-col ul li {
  margin-bottom: 6px;
  color: #e0e6ed;
  font-size: 1.07em;
  font-weight: 500;
  letter-spacing: 0.01em;
  display: flex;
  align-items: center;
  transition: color 0.18s;
  line-height: 1.32;
}
.site-footer .footer-menu-col ul li a {
  color: #e0e6ed;
  text-decoration: none;
  font-family: 'Lato', Arial, sans-serif;
  font-weight: 600;
  transition: color 0.22s, background 0.22s, box-shadow 0.18s;
  padding: 3px 0;
  border-radius: 7px;
}
.site-footer .footer-menu-col ul li a:hover {
  color: #fff;
  background: #1976d2;
  box-shadow: 0 2px 12px 0 rgba(25,118,210,0.10);
  text-decoration: underline;
}
.site-footer .footer-bottom-bar {
  background: #0d2a4d;
  color: #bfc9d9;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 40px 14px 40px;
  font-size: 1.04em;
  max-width: 1400px;
  margin: 0 auto;
  border-radius: 0 0 18px 18px;
  flex-wrap: wrap;
  gap: 18px;
  box-shadow: 0 2px 12px 0 rgba(0,32,80,0.08);
}
.site-footer .footer-social-bar {
  display: flex;
  gap: 22px;
  align-items: center;
  justify-content: flex-end;
}
.site-footer .footer-social-bar img {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 2px 8px rgba(0,32,80,0.10);
  padding: 5px;
  transition: transform 0.22s, box-shadow 0.22s, background 0.22s;
  display: block;
}
.site-footer .footer-social-bar img:hover {
  transform: scale(1.18) rotate(-7deg);
  background: #1976d2;
  box-shadow: 0 8px 24px rgba(33,150,243,0.18);
}
@media (max-width: 1100px) {
  .site-footer .footer-main-row {
    gap: 18px;
    padding: 36px 8px 18px 8px;
  }
  .site-footer .footer-bottom-bar {
    padding: 12px 2vw 8px 2vw;
  }
}
@media (max-width: 900px) {
  .site-footer {
    border-radius: 0;
  }
  .site-footer .footer-main-row {
    flex-direction: column;
    align-items: center;
    padding: 10px 1vw 6px 1vw;
    gap: 0;
    border-bottom: 1.5px solid #2d4e7a;
  }
  .site-footer .footer-logo-col, .site-footer .footer-menu-col {
    min-width: 0;
    width: 100%;
    max-width: 99vw;
    margin-bottom: 6px;
    align-items: center;
    text-align: center;
    border-left: none !important;
    padding-left: 0 !important;
  }
  .site-footer .footer-menu-col h3 {
    border-bottom: 1.2px solid #b3d1ff;
    padding-bottom: 1px;
    margin-bottom: 3px;
    width: 70%;
    margin-left: auto;
    margin-right: auto;
    font-size: 1em;
  }
  .site-footer .footer-menu-col ul li {
    margin-bottom: 0;
    line-height: 1.08;
    font-size: 0.97em;
  }
  .site-footer .footer-menu-col ul {
    text-align: center;
  }
  .site-footer .footer-bottom-bar {
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 12px 4vw 8px 4vw;
    font-size: 0.98em;
    border-radius: 0 0 12px 12px;
  }
  .site-footer .footer-social-bar {
    justify-content: center;
  }
}

.site-footer .footer-menu-col h3 {
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.09em;
  font-weight: 700;
  margin-bottom: 7px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-bottom: 1.5px solid #b3d1ff;
  padding-bottom: 3px;
  width: 70%;
  margin-left: auto;
  margin-right: auto;
}
.site-footer .footer-menu-col ul li {
  margin-bottom: 2px;
  color: #e0e6ed;
  font-size: 1.01em;
  font-weight: 500;
  letter-spacing: 0.01em;
  display: flex;
  align-items: center;
  transition: color 0.18s;
  line-height: 1.18;
}
.site-footer .footer-menu-col ul {
  margin-top: 0;
  padding-top: 0;
}

.header-phone-box {
  background: #f7fafd;
  border-radius: 10px;
  box-shadow: 0 2px 12px 0 rgba(0,32,80,0.07);
  padding: 8px 14px 8px 14px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  align-items: flex-start;
  min-width: 0;
  margin-left: 10px;
  overflow: visible;
  position: static;
  font-size: 1vw !important;
  height: 1.8vw !important;
  min-height: 18px !important;
  max-height: 32px !important;
}
.header-phone-row {
  display: flex;
  align-items: center;
  gap: 4px;
  text-decoration: none;
  color: #004080;
  font-weight: 700;
  font-size: 0.98rem;
  padding: 2px 0;
  transition: color 0.18s;
  white-space: nowrap;
}
.header-phone-row:hover {
  color: #1976d2;
}
.header-phone-icon {
  font-size: 1.1em;
  margin-right: 1px;
}
.header-phone-number {
  letter-spacing: 0.2px;
  font-family: 'Lato', Arial, sans-serif;
}
@media (max-width: 900px) {
  .header-phone-box {
    padding: 4px 4px 4px 4px;
    font-size: 0.92rem;
    gap: 3px;
  }
  .header-phone-row {
    font-size: 0.92rem;
  }
}

.teklif-menu {
  background: linear-gradient(90deg, #1976d2 0%, #0a3779 100%);
  color: #fff !important;
  border-radius: 18px;
  padding: 10px 34px;
  font-weight: 700;
  font-size: 1.22rem;
  letter-spacing: 0.18em;
  box-shadow: 0 4px 18px 0 rgba(25,118,210,0.10);
  margin-left: 12px;
  border: none;
  display: inline-flex;
  align-items: center;
  height: auto;
  line-height: 1.2;
  text-transform: uppercase;
  white-space: nowrap;
  vertical-align: baseline;
  position: relative;
  top: 0;
  font-family: 'Montserrat', 'Segoe UI', Arial, sans-serif;
  transition: background 0.22s, color 0.18s, box-shadow 0.22s, transform 0.18s;
}
.teklif-menu:hover {
  background: linear-gradient(90deg, #0a3779 0%, #1976d2 100%);
  color: #fff !important;
  box-shadow: 0 8px 32px 0 rgba(25,118,210,0.18);
  transform: translateY(-2px) scale(1.04);
}

.teklif-form-main {
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f4f7fa;
  padding: 40px 0 60px 0;
}
.teklif-form-section {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 32px 0 rgba(0,32,80,0.10);
  padding: 38px 32px 32px 32px;
  max-width: 480px;
  width: 100%;
  margin: 0 auto;
}
.teklif-form-title {
  font-size: 2rem;
  font-weight: 800;
  color: #0a3779;
  text-align: center;
  margin-bottom: 28px;
  letter-spacing: 1px;
}
.teklif-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.teklif-form input,
.teklif-form textarea {
  border: 1.5px solid #e3eaf2;
  border-radius: 7px;
  padding: 12px 14px;
  font-size: 1.05rem;
  font-family: 'Lato', Arial, sans-serif;
  background: #f8fafc;
  transition: border 0.18s;
  outline: none;
}
.teklif-form input:focus,
.teklif-form textarea:focus {
  border: 1.5px solid #1976d2;
  background: #fff;
}
.teklif-form textarea {
  min-height: 80px;
  resize: vertical;
}
.teklif-form-row {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1rem;
}
.teklif-kvkk {
  align-items: flex-start;
  gap: 8px;
  font-size: 0.98rem;
}
.teklif-form-btn {
  background: #0a3779;
  color: #fff;
  border: none;
  border-radius: 7px;
  padding: 12px 0;
  font-size: 1.12rem;
  font-weight: 800;
  letter-spacing: 1px;
  margin-top: 10px;
  cursor: pointer;
  transition: background 0.18s, box-shadow 0.18s;
  box-shadow: 0 2px 8px 0 rgba(0,32,80,0.08);
}
.teklif-form-btn:hover {
  background: #1976d2;
}
@media (max-width: 600px) {
  .teklif-form-section {
    padding: 18px 4vw 18px 4vw;
    max-width: 99vw;
  }
  .teklif-form-title {
    font-size: 1.3rem;
  }
}

@media (max-width: 800px) {
  header nav {
    display: none !important;
  }
}

.araclar-listesi {
  display: flex;
  flex-wrap: wrap;
  gap: 36px;
  justify-content: center;
  align-items: stretch;
  margin-top: 32px;
}
.arac-karti {
  max-width: 360px;
  min-height: 420px;
  width: 100%;
  padding: 38px 18px 28px 18px;
  border-radius: 24px;
  box-shadow: 0 8px 32px rgba(0,32,80,0.13);
  font-size: 1.18rem;
  background: linear-gradient(135deg, #eaf1fa 60%, #f8fafc 100%);
  position: relative;
  margin-bottom: 0;
  transition: transform 0.18s, box-shadow 0.18s;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  text-align: center;
}
.arac-karti:hover {
  transform: translateY(-8px) scale(1.06) rotate(-1deg);
  box-shadow: 0 20px 48px rgba(0,32,80,0.22);
  background: linear-gradient(135deg, #e3f0ff 60%, #f8fafc 100%);
}
.arac-gorsel {
  width: 100%;
  max-width: 320px;
  height: 220px;
  object-fit: contain;
  margin-bottom: 28px;
  border-radius: 18px;
  background: #f4f7fa;
  box-shadow: 0 4px 18px rgba(0,32,80,0.10);
  position: relative;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.arac-adi {
  font-size: 1.35rem;
  color: #0a3779;
  font-weight: 700;
  margin-top: 6px;
  margin-bottom: 10px;
  letter-spacing: 0.04em;
  font-family: 'Montserrat', 'Segoe UI', Arial, sans-serif;
  text-align: center;
  line-height: 1.2;
  text-shadow: 0 2px 8px rgba(0,32,80,0.06);
}
.arac-aciklama {
  font-size: 1.08rem;
  color: #444;
  font-weight: 400;
  margin-bottom: 18px;
  line-height: 1.7;
  font-family: 'Lato', 'Segoe UI', Arial, sans-serif;
  text-align: center;
  letter-spacing: 0.01em;
}
.araclar-slider-kart {
  width: 100%;
  height: 420px;
  background: linear-gradient(135deg, #eaf1fa 60%, #dbeafe 100%);
  border-radius: 32px 32px 0 0;
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 32px 0 rgba(0,32,80,0.10);
  margin-bottom: 38px;
}
.araclar-slide-home img {
  width: 100%;
  max-width: 540px;
  height: 400px;
  object-fit: cover;
  border-radius: 28px;
  background: #fff;
  box-shadow: 0 16px 48px rgba(0,32,80,0.22);
  transition: transform 0.22s, box-shadow 0.22s;
}
.arac-karti .arac-buton {
  display: inline-block;
  margin-top: 24px;
  padding: 14px 38px;
  background: linear-gradient(90deg, #2196f3 60%, #0a3779 100%);
  color: #fff;
  font-size: 1.18rem;
  font-weight: 700;
  border: none;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(33,150,243,0.13);
  cursor: pointer;
  transition: background 0.18s, transform 0.18s, box-shadow 0.18s;
  letter-spacing: 0.08em;
}
.arac-karti .arac-buton:hover {
  background: linear-gradient(90deg, #0a3779 60%, #2196f3 100%);
  transform: scale(1.07);
  box-shadow: 0 6px 24px rgba(33,150,243,0.22);
}
.arac-gorsel .arac-etiket {
  position: absolute;
  top: 16px;
  left: 16px;
  background: #ff9800;
  color: #fff;
  font-size: 1.08rem;
  font-weight: 700;
  padding: 6px 18px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(255,152,0,0.18);
  z-index: 2;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  pointer-events: none;
}

.blog-list-section,
.blog-ozet-section,
.reviews-section,
.ozisik-cards-section,
.sertifikalar,
.ozisik-counters-section,
.marka-logosu,
.blog-detay-section {
  max-width: 1600px;
  margin-left: auto;
  margin-right: auto;
}

/* Blog/Duyuru Özetleri */
.blog-ozet-section {
  max-width: 99vw;
  width: 99vw;
  margin: 40px auto 32px auto;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 6px 32px 0 rgba(0,0,0,0.08);
  padding: 32px 1vw 24px 1vw;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.blog-ozet-section h2 {
  text-align: center;
  font-size: 2.2rem;
  font-weight: 900;
  color: #0a3779;
  letter-spacing: 1.5px;
  margin-bottom: 32px;
  text-transform: uppercase;
  position: relative;
  display: inline-block;
}
.blog-ozet-section h2::after {
  content: '';
  display: block;
  width: 120px;
  height: 4px;
  background: #2196f3;
  border-radius: 2px;
  margin: 12px auto 0 auto;
}
.blog-ozet-list {
  width: 100%;
  max-width: 1200px;
  display: flex;
  flex-direction: column;
  gap: 22px;
  align-items: center;
}
.blog-ozet-card {
  display: flex;
  align-items: center;
  gap: 32px;
  background: #f6f9ff;
  border-radius: 18px;
  box-shadow: 0 2px 16px 0 rgba(0,32,80,0.07);
  padding: 18px 32px 18px 32px;
  transition: box-shadow 0.22s, transform 0.18s;
  position: relative;
  overflow: hidden;
  width: 100%;
  max-width: 950px;
  min-height: 110px;
  justify-content: center;
}
.blog-ozet-card:hover {
  box-shadow: 0 8px 32px 0 rgba(0,32,80,0.13);
  transform: translateY(-2px) scale(1.025);
}
.blog-ozet-img {
  min-width: 110px;
  max-width: 110px;
  height: 80px;
  border-radius: 12px;
  overflow: hidden;
  background: #eaeaea;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 1px 6px 0 rgba(0,32,80,0.06);
}
.blog-ozet-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
  transition: transform 0.22s;
}
.blog-ozet-card:hover .blog-ozet-img img {
  transform: scale(1.06);
}
.blog-ozet-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  justify-content: center;
}
.blog-ozet-title {
  font-size: 1.25rem;
  font-weight: 800;
  color: #004080;
  margin-bottom: 6px;
  letter-spacing: 0.2px;
}
.blog-ozet-summary {
  color: #222;
  font-size: 1.07rem;
  margin-bottom: 8px;
  line-height: 1.5;
  font-weight: 500;
}
.blog-ozet-date {
  font-size: 1.01rem;
  color: #888;
  margin-top: 2px;
}
.blog-ozet-link {
  color: #1976d2;
  font-weight: 700;
  text-decoration: underline;
  transition: color 0.18s;
  display: inline-block;
  margin-top: 18px;
  font-size: 1.08rem;
}
.blog-ozet-link:hover {
  color: #0056b3;
}
@media (max-width: 900px) {
  .blog-ozet-section {
    max-width: 100vw;
    width: 100vw;
    padding: 12px 0 8px 0;
    border-radius: 0;
  }
  .blog-ozet-list {
    max-width: 99vw;
    gap: 14px;
  }
  .blog-ozet-card {
    flex-direction: column;
    gap: 10px;
    padding: 12px 6px;
    min-height: 80px;
    max-width: 99vw;
  }
  .blog-ozet-img {
    min-width: 100%;
    max-width: 100%;
    height: 120px;
  }
  .blog-ozet-title {
    font-size: 1.08rem;
  }
  .blog-ozet-summary {
    font-size: 0.99rem;
  }
}

/* Üyelik Sertifikalarımız */
.sertifikalar {
  max-width: 99vw;
  width: 99vw;
  margin: 40px auto 32px auto;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 6px 32px 0 rgba(0,0,0,0.08);
  padding: 24px 1vw 18px 1vw;
}
@media (max-width: 900px) {
  .sertifikalar {
    max-width: 100vw;
    width: 100vw;
    padding: 12px 0 8px 0;
    border-radius: 0;
  }
}

/* Hizmetlerimiz */
.hizmetler-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
  margin-top: 40px;
  padding: 0 3vw;
}
@media (max-width: 768px) {
  .hizmetler-grid {
    gap: 16px;
    padding: 0 2vw;
  }
  .hizmet-kart {
    width: 98vw;
    min-width: 0;
  }
}

.reviews-section {
  max-width: calc(100vw - 8cm);
  width: calc(100vw - 8cm);
  margin: 40px auto 32px auto;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 6px 32px 0 rgba(0,0,0,0.08);
  padding: 32px 24px 24px 24px;
}
@media (max-width: 900px) {
  .reviews-section {
    max-width: 99vw;
    width: 99vw;
    padding: 16px 4px 12px 4px;
    border-radius: 10px;
  }
}
@media (max-width: 600px) {
  .reviews-section {
    max-width: 100vw;
    width: 100vw;
    padding: 8px 2px 6px 2px;
    border-radius: 0;
  }
}

@media (max-width: 1600px) {
  .ozisik-cards-section,
  .ozisik-counters-section {
    margin: 40px 2.5cm;
  }
}

@media (max-width: 1200px) {
  header .logo { height: 60px; }
  header ul { gap: 2px; }
  .contact-social-group { gap: 10px; }
  .social-icon, .header-phone-icon img, .header-phone-icon { width: 22px !important; height: 22px !important; font-size: 16px !important; }
}
@media (max-width: 1000px) {
  header .logo { height: 38px; }
  header ul { gap: 10px; }
  header ul li a { font-size: 1rem; padding: 4px 0; }
  .contact-social-group { gap: 6px; min-width: 80px; max-width: 120px; }
  .social-icon, .header-phone-icon img, .header-phone-icon { width: 16px !important; height: 16px !important; font-size: 12px !important; }
  .header-phone-box { padding: 2px 6px; min-width: 60px; max-width: 90px; }
  .header-phone-row { font-size: 0.85rem; gap: 2px; }
}
@media (max-width: 850px) {
  header .logo { height: 38px; }
  header ul { gap: 10px; }
  header ul li a { font-size: 1rem; padding: 4px 0; }
  .contact-social-group { gap: 6px; min-width: 80px; max-width: 120px; }
  .social-icon, .header-phone-icon img, .header-phone-icon { width: 16px !important; height: 16px !important; font-size: 12px !important; }
  .header-phone-box { padding: 2px 6px; min-width: 60px; max-width: 90px; }
  .header-phone-row { font-size: 0.85rem; gap: 2px; }
}

/* Yukarı Çık Butonu */
#scrollTopBtn {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 999;
  background: #0056b3;
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  box-shadow: 0 4px 16px rgba(0,32,80,0.18);
  display: none;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  cursor: pointer;
  transition: background 0.22s, box-shadow 0.22s;
}
#scrollTopBtn:hover {
  background: #003d80;
  box-shadow: 0 8px 32px rgba(0,32,80,0.22);
}

/* Hamburger Menü Stili */
.hamburger-menu {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1201;
}
.hamburger-menu span {
  display: block;
  width: 28px;
  height: 3.5px;
  margin: 4px 0;
  background: #003366;
  border-radius: 2px;
  transition: all 0.32s cubic-bezier(.4,2,.6,1);
}
.hamburger-menu.acik span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.hamburger-menu.acik span:nth-child(2) {
  opacity: 0;
}
.hamburger-menu.acik span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

@media (max-width: 900px) {
  .hamburger-menu {
    display: flex;
    position: absolute;
    right: 18px;
    top: 18px;
  }
  .header-inner-container {
    position: relative;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
  #mainNav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(255,255,255,0.98);
    box-shadow: 0 8px 32px rgba(0,32,80,0.13);
    z-index: 1200;
    transform: translateY(-100%);
    transition: transform 0.38s cubic-bezier(.4,2,.6,1);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding-top: 80px;
  }
  #mainNav.mobil-acik {
    transform: translateY(0);
  }
  #mainNav ul {
    flex-direction: column;
    gap: 32px;
    align-items: center;
    width: 100%;
    margin: 0;
    padding: 0;
  }
  #mainNav ul li {
    width: 100%;
    text-align: center;
  }
  #mainNav ul li a {
    font-size: 1.35rem;
    padding: 18px 0;
    display: block;
    color: #003366;
    font-weight: 700;
    border-bottom: 1px solid #e3eaf2;
    transition: background 0.18s, color 0.18s;
  }
  #mainNav ul li a:hover {
    background: #eaf1fa;
    color: #1976d2;
  }
  .contact-social-group {
    display: none;
  }
}
@media (max-width: 600px) {
  #mainNav ul li a {
    font-size: 1.12rem;
    padding: 14px 0;
  }
}

/* --- MODERN KARTLAR & SAYAÇLAR --- */
.ozisik-cards-section {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: stretch;
  gap: 36px;
  margin: 40px auto 40px auto;
  padding: 0;
  background: none;
  box-shadow: none;
  border-radius: 0;
}
.ozisik-cards-wrapper {
  display: flex;
  flex-direction: row;
  gap: 36px;
  width: 100%;
  justify-content: center;
  align-items: stretch;
  padding: 0;
}
.ozisik-card {
  background: #fff;
  border-radius: 22px;
  box-shadow: 0 8px 32px rgba(0,32,80,0.10);
  padding: 32px 22px 22px 22px;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.22s cubic-bezier(.4,0,.2,1), box-shadow 0.22s, border-radius 0.22s;
  text-align: center;
  min-width: 320px;
  max-width: 340px;
  width: 100%;
  margin: 0;
  border: 1.5px solid #e3eaf2;
  position: relative;
  overflow: hidden;
}
.ozisik-card:hover {
  transform: translateY(-8px) scale(1.035);
  box-shadow: 0 24px 64px rgba(0,32,80,0.16);
  border-radius: 28px;
}
.ozisik-card-img {
  width: 100%;
  overflow: hidden;
  border-radius: 16px 16px 0 0;
  margin-bottom: 18px;
  box-shadow: 0 2px 12px rgba(0,32,80,0.07);
  transition: box-shadow 0.22s;
}
.ozisik-card-img img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  border-radius: 16px 16px 0 0;
  display: block;
  transition: transform 0.32s cubic-bezier(.4,0,.2,1), box-shadow 0.22s;
}
.ozisik-card:hover .ozisik-card-img img {
  transform: scale(1.04);
  box-shadow: 0 8px 32px rgba(0,32,80,0.13);
}
.ozisik-card-content h3 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.45rem;
  font-weight: 600;
  color: #174a8b;
  margin-bottom: 10px;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  background: none;
  border-bottom: none !important;
  text-decoration: none !important;
  box-shadow: none !important;
}
.ozisik-card-content p {
  font-size: 1.08rem;
  min-height: 120px;
  padding: 8px 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-family: 'Montserrat', 'Lato', Arial, sans-serif !important;
  font-weight: 400;
  letter-spacing: 0.04em;
  line-height: 1.8;
  background: rgba(255,255,255,0.82);
  border-radius: 10px;
  margin-bottom: 0;
  border: none;
  box-shadow: 0 2px 12px 0 rgba(0,32,80,0.04);
  transition: color 0.18s, text-shadow 0.18s, background 0.18s;
}
.ozisik-card-bar {
  width: 38%;
  height: 3px;
  background: #1976d2;
  border-radius: 2px;
  margin: 16px auto 0 auto;
  transition: width 0.22s;
  opacity: 0.18;
}
.ozisik-card:hover .ozisik-card-bar {
  width: 54%;
}
@media (max-width: 900px) {
  .ozisik-card {
    min-width: 0 !important;
    max-width: 99vw !important;
    width: 100% !important;
    min-height: 420px !important;
    padding: 22px 12px 18px 12px !important;
    box-sizing: border-box;
  }
  .ozisik-card-img img {
    height: 120px !important;
  }
  .ozisik-card-content p {
    min-height: 120px !important;
    font-size: 1.08rem !important;
    padding: 8px 6px !important;
  }
}

.ozisik-counters-section {
  background: linear-gradient(135deg, #fafdff 60%, #eaf1fa 100%);
  border-radius: 22px;
  box-shadow: 0 6px 32px rgba(0,32,80,0.10);
  margin: 40px auto 40px auto;
  padding: 32px 0 24px 0;
  max-width: 1200px;
  border: 1.5px solid #e3eaf2;
}
.ozisik-counters-wrapper {
  display: flex;
  flex-direction: row;
  gap: 32px;
  justify-content: center;
  align-items: stretch;
  width: 100%;
  padding: 0;
}
.ozisik-counter {
  background: linear-gradient(135deg, #fafdff 60%, #eaf1fa 100%) !important;
  border-radius: 18px !important;
  box-shadow: 0 4px 18px rgba(0,32,80,0.10) !important;
  padding: 22px 14px 16px 14px !important;
  min-width: 120px !important;
  max-width: 180px !important;
  width: 100% !important;
  margin: 0 6px !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  text-align: center !important;
  border: 1.5px solid #e3eaf2 !important;
  position: relative !important;
  transition: box-shadow 0.22s, transform 0.18s;
}
.ozisik-counter:hover {
  box-shadow: 0 8px 32px rgba(0,32,80,0.16) !important;
  transform: translateY(-2px) scale(1.03) !important;
}
.ozisik-counter-icon {
  width: 48px !important;
  height: 48px !important;
  background: linear-gradient(135deg, #eaf1fa 60%, #fafdff 100%) !important;
  border-radius: 50% !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  margin-bottom: 10px !important;
  box-shadow: 0 2px 8px rgba(0,32,80,0.08) !important;
  border: 1.5px solid #e3eaf2 !important;
}
.ozisik-counter-icon img {
  width: 28px !important;
  height: 28px !important;
  object-fit: contain !important;
  filter: grayscale(0.1) brightness(1.05) drop-shadow(0 1px 2px #eaf1fa) !important;
}
.ozisik-counter-number {
  font-family: 'Montserrat', 'Lato', Arial, sans-serif !important;
  font-size: 1.65rem !important;
  font-weight: 900 !important;
  color: #0a3779 !important;
  margin-bottom: 6px !important;
  letter-spacing: 0.06em !important;
  text-shadow: 0 2px 8px #eaf1fa55 !important;
}
.ozisik-counter-label {
  font-family: 'Montserrat', 'Lato', Arial, sans-serif !important;
  font-size: 1.08rem !important;
  font-weight: 700 !important;
  color: #003366 !important;
  margin-bottom: 2px !important;
  letter-spacing: 0.03em !important;
}
.ozisik-counter-desc {
  font-family: 'Lato', Arial, sans-serif !important;
  font-size: 0.99rem !important;
  color: #555 !important;
  font-weight: 500 !important;
  letter-spacing: 0.01em !important;
}
@media (max-width: 900px) {
  .ozisik-counters-wrapper {
    flex-direction: column !important;
    gap: 12px !important;
    padding: 0 4px !important;
    align-items: stretch !important;
    width: 100% !important;
    margin: 0 !important;
  }
  .ozisik-counter {
    min-width: 0 !important;
    max-width: 100vw !important;
    width: 100% !important;
    margin: 0 auto 8px auto !important;
    padding: 14px 10px 10px 10px !important;
    border-radius: 14px !important;
    box-shadow: 0 2px 12px rgba(0,32,80,0.10) !important;
    border-width: 1.5px !important;
  }
  .ozisik-counter-icon {
    width: 36px !important;
    height: 36px !important;
    margin-bottom: 6px !important;
  }
  .ozisik-counter-icon img {
    width: 20px !important;
    height: 20px !important;
  }
  .ozisik-counter-number {
    font-size: 1.18rem !important;
    margin-bottom: 2px !important;
  }
  .ozisik-counter-label {
    font-size: 1.01rem !important;
    margin-bottom: 2px !important;
  }
  .ozisik-counter-desc {
    font-size: 0.93rem !important;
  }
}

.ozisik-card-content h3, .ozisik-card-content p {
  border-bottom: none !important;
  text-decoration: none !important;
  box-shadow: none !important;
}

.ozisik-card-content a {
  text-decoration: none !important;
  border-bottom: none !important;
  box-shadow: none !important;
  color: inherit;
}

.footer-col, .footer-menu-col, .footer-contact-block, .footer-contact-row, .footer-menu-col h3, .footer-menu-col ul, .footer-menu-col ul li, .footer-menu-col ul li a {
  text-align: left !important;
  justify-content: flex-start !important;
  align-items: flex-start !important;
}

.footer-contact-info.adres-info {
  display: block;
  margin-top: 2px;
  white-space: normal;
}

.slider-caption-wrapper {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  pointer-events: none;
  z-index: 3;
  padding: 0 0 38px 38px;
}
.slider-caption {
  display: none;
  position: relative;
  background: rgba(23, 74, 139, 0.54);
  backdrop-filter: blur(12px);
  color: #fff;
  padding: 20px 44px 18px 32px;
  border-radius: 22px 22px 22px 8px;
  font-size: 2.2rem;
  font-weight: 600;
  font-family: 'Montserrat', 'Lato', Arial, sans-serif;
  text-align: left;
  box-shadow: 0 8px 32px rgba(0,0,0,0.18);
  letter-spacing: 1.6px;
  line-height: 1.22;
  border: 2px solid rgba(255,255,255,0.32);
  pointer-events: auto;
  transition: background 0.22s, box-shadow 0.22s, color 0.22s;
  text-transform: capitalize;
  text-shadow: 0 2px 12px rgba(23,74,139,0.18), 0 1px 0 #fff2;
}
.slider-caption.active {
  display: block;
  animation: fadeInCaption 0.7s;
}
@keyframes fadeInCaption {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
@media (max-width: 900px) {
  .slider-caption-wrapper {
    padding: 0 0 18px 8px;
  }
  .slider-caption {
    font-size: 1.18rem;
    padding: 12px 18px 12px 10px;
    border-radius: 14px 14px 14px 4px;
  }
}

/* Geniş ekranlarda yazı boyutunu sınırla */
@media (min-width: 1600px) {
  header ul li a {
    font-size: 22px;
    padding: 14px 18px;
  }
}

/* Küçük ekranlarda yazı boyutunu sınırla */
@media (max-width: 900px) {
  header ul {
    gap: 0.2vw !important;
  }
  header ul li a {
    font-size: 2vw !important;
    padding: 0.1vw 0.2vw !important;
  }
}
@media (max-width: 600px) {
  header ul {
    gap: 0.4vw !important;
  }
  header ul li a {
    font-size: 2.5vw !important;
    padding: 0.1vw 0.2vw !important;
  }
}

/* Modern sağdan kayan hamburger menü ve overlay */
.mobile-menu-overlay {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.45);
  z-index: 1001;
  opacity: 0;
  transition: opacity 0.3s;
}
.mobile-menu-overlay.active {
  display: block;
  opacity: 1;
}

.mobile-menu-panel {
  display: block;
  position: fixed;
  top: 0; right: -320px;
  width: 300px;
  height: 100vh;
  background: #fff;
  box-shadow: -2px 0 16px 0 rgba(0,0,0,0.12);
  z-index: 1002;
  transition: right 0.3s;
  padding: 32px 24px 24px 24px;
  overflow-y: auto;
}
.mobile-menu-panel.active {
  right: 0;
}

.mobile-menu-close {
  position: absolute;
  top: 18px;
  right: 18px;
  background: none;
  border: none;
  font-size: 2.2rem;
  color: #0a3779;
  cursor: pointer;
  z-index: 1003;
}

.mobile-menu-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin-top: 32px;
}
.mobile-menu-list li a {
  font-size: 1.3rem;
  color: #0a3779;
  text-decoration: none;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 8px 0;
  display: block;
  border-radius: 6px;
  transition: background 0.18s, color 0.18s;
}
.mobile-menu-list li a:hover {
  background: #eaf1fa;
  color: #1976d2;
}

@media (min-width: 801px) {
  .mobile-menu-overlay, .mobile-menu-panel { display: none !important; }
}
@media (max-width: 800px) {
  .mobile-menu-overlay, .mobile-menu-panel {
    display: block;
  }
  .mobile-menu-panel {
    display: none;
  }
  .mobile-menu-panel.active {
    display: block;
  }
  .mobile-menu-phones {
    display: flex !important;
  }
  .hamburger-menu { display: block !important; }
  .mobile-menu-hamburger-bottom {
    display: none !important;
  }
  .mobile-menu-panel.active .mobile-menu-hamburger-bottom {
    display: flex !important;
    position: fixed !important;
    right: 18px;
    bottom: 18px;
    background: none;
    border: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    cursor: pointer;
    z-index: 9999;
  }
}
@media (min-width: 801px) {
  .mobile-menu-hamburger-bottom {
    display: none !important;
  }
}

/* Sabit WhatsApp butonu */
.fixed-whatsapp-btn {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 9999;
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, #25d366 60%, #128c7e 100%);
  border-radius: 50%;
  box-shadow: 0 4px 24px 0 rgba(37,211,102,0.18), 0 2px 8px 0 rgba(18,140,126,0.10);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.18s, box-shadow 0.18s, background 0.22s;
  border: none;
  outline: none;
  padding: 0;
}
.fixed-whatsapp-btn:hover {
  transform: scale(1.10);
  box-shadow: 0 8px 32px 0 rgba(37,211,102,0.28), 0 4px 16px 0 rgba(18,140,126,0.18);
  background: linear-gradient(135deg, #128c7e 60%, #25d366 100%);
}
.fixed-whatsapp-btn img, .fixed-whatsapp-btn svg {
  width: 32px !important;
  height: 32px !important;
  display: block;
  filter: brightness(0) invert(1);
}
@media (max-width: 600px) {
  .fixed-whatsapp-btn {
    width: 44px;
    height: 44px;
    right: 12px;
    bottom: 12px;
  }
  .fixed-whatsapp-btn img, .fixed-whatsapp-btn svg {
    width: 24px !important;
    height: 24px !important;
  }
}

/* Hamburger menüde telefon kutuları */
.mobile-menu-phones {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  margin: 32px 0 16px 0;
}
.mobile-menu-phone-box {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 16px 0 rgba(0,32,80,0.10);
  padding: 12px 24px;
  font-size: 1.15rem;
  font-weight: 600;
  color: #004080;
  min-width: 220px;
  max-width: 90vw;
  transition: box-shadow 0.18s;
}
.mobile-menu-phone-box:hover {
  box-shadow: 0 4px 24px 0 rgba(25,118,210,0.13);
  color: #1976d2;
}
.mobile-menu-phone-icon {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 600px) {
  .mobile-menu-phone-box {
    font-size: 1rem;
    padding: 10px 12px;
    min-width: 140px;
  }
  .mobile-menu-phone-icon {
    width: 20px;
    height: 20px;
  }
}

/* Kart başlıkları, açıklama ve linklerinde alt çizgi olmasın */
.ozisik-card-content h3,
.ozisik-card-content p,
.ozisik-card-link,
.ozisik-card-link:visited,
.ozisik-card-link:hover,
.ozisik-card-link:active {
  text-decoration: none !important;
  border-bottom: none !important;
  box-shadow: none !important;
}

/* === YENİ HEADER & HAMBURGER MENÜ TASARIMI === */
.custom-header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 0 18px;
  height: 68px;
  background: #fff;
  box-shadow: 0 2px 12px 0 rgba(0,0,0,0.06);
  position: relative;
  z-index: 100;
}
.custom-header-logo img {
  height: 48px;
  max-width: 120px;
  display: block;
}
.custom-hamburger-menu {
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(6px);
  border: none;
  cursor: pointer;
  padding: 0;
  width: 54px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1201;
  border-radius: 50%;
  box-shadow: 0 6px 24px 0 rgba(25,118,210,0.13);
  transition: box-shadow 0.22s, background 0.22s, transform 0.18s;
  outline: 2px solid transparent;
}
.custom-hamburger-menu:focus {
  outline: 2.5px solid #1976d2;
}
.custom-hamburger-menu svg {
  display: block;
  width: 34px;
  height: 34px;
}
.custom-hamburger-menu svg .hamburger-bar {
  stroke: url(#hamburgerGradient);
  stroke-width: 5.2;
  stroke-linecap: round;
  transition: all 0.38s cubic-bezier(.4,2,.6,1);
  filter: drop-shadow(0 2px 6px rgba(25,118,210,0.10));
}
.custom-hamburger-menu svg .top {
  x1: 12; x2: 28; y1: 13; y2: 13;
}
.custom-hamburger-menu svg .mid {
  x1: 12; x2: 28; y1: 20; y2: 20;
}
.custom-hamburger-menu svg .bot {
  x1: 12; x2: 28; y1: 27; y2: 27;
}
.custom-hamburger-menu:hover,
.custom-hamburger-menu:active {
  background: rgba(230,244,255,0.98);
  box-shadow: 0 12px 36px 0 rgba(25,118,210,0.18);
  transform: scale(1.07);
}
.custom-hamburger-menu:hover svg .hamburger-bar,
#burgerIcon.open .hamburger-bar {
  stroke: #1976d2;
  stroke-width: 6.2;
  filter: drop-shadow(0 4px 16px rgba(25,118,210,0.18));
}
#burgerIcon.open .top {
  transform: translateY(7px) rotate(45deg);
}
#burgerIcon.open .mid {
  opacity: 0;
}
#burgerIcon.open .bot {
  transform: translateY(-7px) rotate(-45deg);
}

/* SVG ile hamburger için öneri: Çizgilerinizin y koordinatları örneğin 8, 21, 34 gibi olmalı (aralarında 13px boşluk) */
.hamburger-menu span {
  margin: 11px 0 !important;
  height: 4.5px !important;
  border-radius: 3px !important;
  background: linear-gradient(90deg, #2196f3 0%, #e3f0ff 100%) !important;
  box-shadow: 0 2px 8px rgba(33,150,243,0.10);
}
.hamburger-menu span:hover, .hamburger-menu.acik span {
  background: linear-gradient(90deg, #1976d2 0%, #2196f3 100%) !important;
  box-shadow: 0 4px 16px rgba(25,118,210,0.18);
}
.custom-hamburger-menu:hover {
  background: rgba(230,244,255,0.98);
  box-shadow: 0 8px 32px 0 rgba(25,118,210,0.18);
  transform: scale(1.06);
}
.custom-hamburger-menu:hover svg .hamburger-bar {
  stroke: #1976d2;
  stroke-width: 5.2;
}

/* Overlay */
.custom-mobile-menu-overlay {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.45);
  z-index: 1200;
  opacity: 0;
  transition: opacity 0.3s;
}
.custom-mobile-menu-overlay.active {
  display: block;
  opacity: 1;
}

/* Sağdan kayan menü */
.custom-mobile-menu-panel {
  display: block;
  position: fixed;
  top: 0; right: -320px;
  width: 280px;
  height: 100vh;
  background: #fff;
  box-shadow: -2px 0 16px 0 rgba(0,0,0,0.12);
  z-index: 1201;
  transition: right 0.3s;
  padding: 32px 18px 24px 18px;
  overflow-y: auto;
}
.custom-mobile-menu-panel.active {
  right: 0;
}
.custom-mobile-menu-close {
  position: absolute;
  top: 18px;
  right: 18px;
  background: none;
  border: none;
  font-size: 2.2rem;
  color: #0a3779;
  cursor: pointer;
  z-index: 1003;
}
.custom-mobile-menu-list {
  list-style: none;
  margin: 48px 0 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 52px;
}
.custom-mobile-menu-list li a {
  font-size: 1.35rem;
  color: #0a3779;
  text-decoration: none;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 14px 0;
  display: block;
  border-radius: 6px;
  transition: background 0.18s, color 0.18s;
}
.custom-mobile-menu-list li a:hover {
  background: #eaf1fa;
  color: #1976d2;
}

@media (min-width: 801px) {
  .custom-hamburger-menu, .custom-mobile-menu-overlay, .custom-mobile-menu-panel { display: none !important; }
}
@media (max-width: 800px) {
  .custom-header-row { height: 58px; padding: 0 8px; }
  .custom-header-logo img { height: 38px; }
  .custom-mobile-menu-panel { width: 90vw; min-width: 0; max-width: 340px; padding: 24px 8px 18px 8px; }
  .custom-mobile-menu-list li a { font-size: 1.08rem; }
}

/* === MASAÜSTÜ HEADER === */
.desktop-header-row {
  display: flex;
  align-items: center;
  justify-content: flex-end !important;
  width: 100%;
  background: #fff;
  box-shadow: 0 2px 12px 0 rgba(0,0,0,0.06);
  border-radius: 0 0 22px 22px;
  padding: 0 72px 0 48px;
  min-height: 120px;
  position: relative;
  z-index: 100;
}
.desktop-header-left {
  flex: 0 0 auto;
  display: flex;
  align-items: flex-start;
  justify-content: flex-end !important;
  height: 100%;
  margin-right: 56px;
}
.desktop-header-logo img {
  display: block;
  margin: 0 !important;
  height: 90px;
  max-width: 240px;
  margin-top: 12px;
  margin-bottom: 0;
  object-fit: contain;
}
.desktop-header-center {
  flex: 1 1 0%;
  display: flex;
  align-items: center;
  justify-content: flex-end !important;
  margin-left: 0 !important;
  height: 100%;
}
.desktop-main-nav ul {
  display: flex;
  gap: 38px;
  list-style: none;
  margin: 0;
  padding: 0;
  align-items: center;
}
@media (max-width: 1200px) {
  .desktop-header-row { padding: 0 18px; min-height: 90px; }
  .desktop-header-logo img { height: 70px; max-width: 160px; margin-top: 8px; }
  .desktop-header-left { margin-right: 24px; }
  .desktop-main-nav ul { gap: 18px; }
}
@media (max-width: 900px) {
  .desktop-header-row { padding: 0 4px; min-height: 60px; }
  .desktop-header-logo img { height: 44px; max-width: 100px; margin-top: 4px; }
  .desktop-header-left { margin-right: 8px; }
  .desktop-main-nav ul { gap: 8px; }
  .desktop-main-nav ul li a { font-size: 1rem; padding: 8px 0; }
}
@media (max-width: 800px) {
  .desktop-header-row { display: none !important; }
}

@media (min-width: 801px) {
  .custom-header-row { display: none !important; }
}
@media (max-width: 800px) {
  .desktop-header-row { display: none !important; }
}

/* === TOP BAR === */
.site-top-bar {
  width: 100%;
  background: linear-gradient(90deg, #eaf1fa 60%, #d1e3f7 100%);
  border-bottom: 1.5px solid #d1e3f7;
  min-height: 38px;
  font-family: 'Lato', Arial, sans-serif;
  color: #0a3779;
  font-size: 1.08rem;
  letter-spacing: 0.01em;
  z-index: 2000;
  box-shadow: 0 2px 8px 0 rgba(0,32,80,0.04);
}
.site-top-bar-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
  height: 38px;
  gap: 18px;
}
.site-top-bar-left {
  display: flex;
  align-items: center;
  gap: 24px;
}
.site-top-bar-phone {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #0a3779;
  font-weight: 700;
  background: #f7fafd;
  border-radius: 8px;
  padding: 4px 14px;
  font-size: 1.08rem;
  box-shadow: 0 2px 8px 0 rgba(0,32,80,0.06);
  transition: background 0.18s, color 0.18s;
}
.site-top-bar-phone svg {
  margin-right: 2px;
  vertical-align: middle;
  color: #1976d2;
}
.site-top-bar-phone:hover {
  background: #eaf1fa;
  color: #1976d2;
}
.site-top-bar-right {
  display: flex;
  align-items: center;
  gap: 14px;
}
.site-top-bar-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 2px 8px rgba(0,32,80,0.10);
  transition: box-shadow 0.18s, background 0.18s, transform 0.18s;
  margin: 0 2px;
}
.site-top-bar-icon img {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: block;
  transition: filter 0.18s;
}
.site-top-bar-icon:hover {
  background: #1976d2;
  box-shadow: 0 4px 16px rgba(25,118,210,0.13);
  transform: scale(1.08);
}
.site-top-bar-icon:hover img {
  filter: brightness(1.2) grayscale(0.1);
}
@media (max-width: 900px) {
  .site-top-bar-inner { padding: 0 8px; gap: 8px; }
  .site-top-bar-left { gap: 10px; font-size: 0.99rem; }
  .site-top-bar-phone { font-size: 0.97rem; padding: 3px 8px; }
  .site-top-bar-right { gap: 8px; }
  .site-top-bar-icon { width: 26px; height: 26px; }
  .site-top-bar-icon img { width: 16px; height: 16px; }
}
@media (max-width: 600px) {
  .site-top-bar-inner { flex-direction: column; align-items: flex-start; height: auto; padding: 2px 2vw; gap: 2px; }
  .site-top-bar-left { gap: 6px; font-size: 0.93rem; }
  .site-top-bar-right { gap: 4px; }
  .site-top-bar-phone { font-size: 0.93rem; padding: 2px 6px; }
}

/* Logo ve menü hizalama güncellemesi */
.desktop-header-row {
  padding-left: 110px;
  padding-right: 32px;
}
.desktop-header-logo img {
  height: 110px;
  max-width: 240px;
}
.desktop-header-center {
  margin-left: 80px;
}
@media (max-width: 1200px) {
  .desktop-header-row { padding-left: 48px; }
  .desktop-header-logo img { height: 70px; max-width: 160px; }
  .desktop-header-center { margin-left: 28px; }
}
@media (max-width: 900px) {
  .desktop-header-row { padding-left: 12px; }
  .desktop-header-logo img { height: 44px; max-width: 100px; }
  .desktop-header-center { margin-left: 6px; }
}

.site-top-bar-icon img[src*="facebook"],
.site-top-bar-icon img[src*="tiktok"] {
  width: 32px !important;
  height: 32px !important;
}
.site-footer .footer-social-bar img[src*="facebook"],
.site-footer .footer-social-bar img[src*="tiktok"] {
  width: 38px !important;
  height: 38px !important;
}

.ozisik-card {
  min-height: 500px;
}

/* --- ZORUNLU: Mobil menü paneli ve overlay açılma garantisi --- */
#customMobileMenuPanel.custom-mobile-menu-panel.active {
  right: 0 !important;
  display: block !important;
  z-index: 9999 !important;
}
#customMobileMenuPanel.custom-mobile-menu-panel {
  position: fixed !important;
  top: -100vh;
  left: 0;
  right: 0;
  width: 100vw;
  max-width: 100vw;
  height: 100vh;
  background: #fff;
  box-shadow: 0 8px 32px 0 rgba(0,0,0,0.13);
  z-index: 1201;
  transition: top 0.38s cubic-bezier(.4,2,.6,1);
  padding: 32px 18px 24px 18px;
  overflow-y: auto;
  display: block !important;
  border-radius: 0 0 24px 24px;
}
#customMobileMenuPanel.custom-mobile-menu-panel.active {
  top: 0 !important;
  display: block !important;
}
#customMobileMenuOverlay.custom-mobile-menu-overlay {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.45);
  z-index: 1200;
  opacity: 0;
  transition: opacity 0.3s;
}
#customMobileMenuOverlay.custom-mobile-menu-overlay.active {
  display: block !important;
  opacity: 1 !important;
}

/* --- Küçük açılır mobil menü paneli (dropdown tarzı) --- */
#customMobileMenuPanel.custom-mobile-menu-panel {
  position: absolute !important;
  top: 100%; /* hamburger butonunun hemen altı */
  left: 0;
  right: auto;
  margin: 0;
  width: 220px;
  max-width: 90vw;
  min-width: 140px;
  height: auto;
  max-height: 80vh;
  background: #fff;
  box-shadow: 0 8px 32px 0 rgba(0,0,0,0.18);
  z-index: 1201;
  transition: opacity 0.28s, transform 0.28s;
  padding: 0;
  overflow-y: auto;
  display: none;
  border-radius: 12px;
  opacity: 0;
  transform: translateY(0) scale(0.98);
}
#customMobileMenuPanel.custom-mobile-menu-panel.active {
  display: block !important;
  opacity: 1;
  transform: translateY(0) scale(1);
}
.custom-mobile-menu-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin: 0;
  padding: 0;
}
.custom-mobile-menu-list li {
  border-bottom: 1px solid #e3eaf2;
  margin: 0;
  padding: 0;
}
.custom-mobile-menu-list li:last-child {
  border-bottom: none;
}
.custom-mobile-menu-list li a {
  display: block;
  padding: 12px 18px;
  font-size: 1.08rem;
  color: #0a3779;
  font-weight: 700;
  text-align: left;
  text-decoration: none;
  transition: background 0.18s, color 0.18s;
  border-radius: 0;
}
.custom-mobile-menu-list li a:hover {
  background: #eaf1fa;
  color: #1976d2;
}
.custom-mobile-menu-close {
  position: absolute;
  top: 8px;
  right: 10px;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: #0a3779;
  cursor: pointer;
  z-index: 1003;
  padding: 0;
  line-height: 1;
  border-radius: 50%;
  transition: background 0.18s, color 0.18s;
}
.custom-mobile-menu-close:hover {
  background: #eaf1fa;
  color: #1976d2;
}

/* --- Modern tam genişlikli mobil menü paneli, üstte logo ve kapatma butonu --- */
#customMobileMenuPanel.custom-mobile-menu-panel {
  position: absolute !important;
  top: 100%;
  left: 0;
  right: 0;
  width: 100vw;
  max-width: 100vw;
  min-width: 0;
  height: auto;
  max-height: 80vh;
  background: #fff;
  box-shadow: 0 8px 32px 0 rgba(0,0,0,0.13);
  z-index: 1201;
  transition: opacity 0.28s, transform 0.28s;
  padding: 0;
  overflow-y: auto;
  display: none;
  border-radius: 0 0 18px 18px;
  opacity: 0;
  transform: translateY(-12px) scale(0.98);
}
#customMobileMenuPanel.custom-mobile-menu-panel.active {
  display: block !important;
  opacity: 1;
  transform: translateY(0) scale(1);
}
.custom-mobile-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 18px 8px 18px;
  border-bottom: 1.5px solid #e3eaf2;
}
.custom-mobile-menu-logo {
  height: 38px;
  max-width: 140px;
  display: block;
}
.custom-mobile-menu-close {
  background: none;
  border: none;
  font-size: 2rem;
  color: #0a3779;
  cursor: pointer;
  z-index: 1003;
  padding: 0 2px;
  line-height: 1;
  border-radius: 50%;
  transition: background 0.18s, color 0.18s;
}
.custom-mobile-menu-close:hover {
  background: #eaf1fa;
  color: #1976d2;
}
.custom-mobile-menu-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin: 0;
  padding: 0 0 8px 0;
}
.custom-mobile-menu-list li {
  border-bottom: 1px solid #e3eaf2;
  margin: 0;
  padding: 0;
}
.custom-mobile-menu-list li:last-child {
  border-bottom: none;
}
.custom-mobile-menu-list li a {
  display: block;
  padding: 16px 22px;
  font-size: 1.13rem;
  color: #0a3779;
  font-weight: 700;
  text-align: left;
  text-decoration: none;
  transition: background 0.18s, color 0.18s;
  border-radius: 0;
}
.custom-mobile-menu-list li a:hover {
  background: #eaf1fa;
  color: #1976d2;
}
@media (max-width: 600px) {
  .custom-mobile-menu-header { padding: 12px 8px 4px 8px; }
  .custom-mobile-menu-logo { height: 28px; max-width: 90px; }
  .custom-mobile-menu-list li a { padding: 12px 10px; font-size: 1.01rem; }
}

/* --- Modern ve zarif mobil menü paneli --- */
#customMobileMenuPanel.custom-mobile-menu-panel {
  position: absolute !important;
  top: 100%;
  left: 0;
  right: 0;
  width: 100vw;
  max-width: 100vw;
  min-width: 0;
  height: auto;
  max-height: 80vh;
  background: #fff;
  box-shadow: 0 12px 32px 0 rgba(10,55,121,0.10), 0 2px 8px 0 rgba(0,32,80,0.07);
  z-index: 1201;
  transition: opacity 0.32s cubic-bezier(.4,2,.6,1), transform 0.32s cubic-bezier(.4,2,.6,1);
  padding: 0;
  overflow-y: auto;
  display: none;
  border-radius: 0 0 28px 28px;
  opacity: 0;
  transform: translateY(-16px) scale(0.98);
  border: 1.5px solid #e3eaf2;
}
#customMobileMenuPanel.custom-mobile-menu-panel.active {
  display: block !important;
  opacity: 1;
  transform: translateY(0) scale(1);
}
.custom-mobile-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 28px 10px 28px;
  border-bottom: 1.5px solid #e3eaf2;
  background: #f7fafd;
  border-radius: 0 0 18px 18px;
}
.custom-mobile-menu-logo {
  height: 38px;
  max-width: 140px;
  display: block;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,32,80,0.07);
  background: #fff;
  padding: 2px 10px;
}
.custom-mobile-menu-close {
  background: none;
  border: none;
  font-size: 2.1rem;
  color: #0a3779;
  cursor: pointer;
  z-index: 1003;
  padding: 0 4px;
  line-height: 1;
  border-radius: 50%;
  transition: background 0.18s, color 0.18s, box-shadow 0.18s;
}
.custom-mobile-menu-close:hover {
  background: #eaf1fa;
  color: #1976d2;
  box-shadow: 0 2px 8px #1976d233;
}
.custom-mobile-menu-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin: 0;
  padding: 0 0 12px 0;
}
.custom-mobile-menu-list li {
  border-bottom: 1px solid #e3eaf2;
  margin: 0;
  padding: 0;
}
.custom-mobile-menu-list li:last-child {
  border-bottom: none;
}
.custom-mobile-menu-list li a {
  display: block;
  padding: 18px 32px 18px 32px;
  font-size: 1.18rem;
  color: #0a3779;
  font-weight: 700;
  text-align: left;
  text-decoration: none;
  transition: background 0.22s, color 0.22s, letter-spacing 0.18s, font-weight 0.18s;
  border-radius: 10px;
  letter-spacing: 0.04em;
  margin: 0;
}
.custom-mobile-menu-list li a:hover {
  background: #eaf1fa;
  color: #1976d2;
  font-weight: 800;
  letter-spacing: 0.08em;
  box-shadow: 0 2px 8px #1976d233;
}
@media (max-width: 600px) {
  .custom-mobile-menu-header { padding: 14px 8px 6px 8px; }
  .custom-mobile-menu-logo { height: 28px; max-width: 90px; padding: 2px 4px; }
  .custom-mobile-menu-list li a { padding: 12px 10px; font-size: 1.01rem; }
}
@media (min-width: 801px) {
  #customMobileMenuPanel.custom-mobile-menu-panel,
  #customMobileMenuPanel.custom-mobile-menu-panel.active,
  #customMobileMenuOverlay.custom-mobile-menu-overlay,
  #customMobileMenuOverlay.custom-mobile-menu-overlay.active {
    display: none !important;
    opacity: 0 !important;
    pointer-events: none !important;
  }
}

#customMobileMenuPanel.custom-mobile-menu-panel {
  max-height: 98vh;
}
.custom-mobile-menu-header {
  padding: 40px 48px 22px 48px;
}
.custom-mobile-menu-list {
  padding: 0 0 32px 0;
}
.custom-mobile-menu-list li a {
  padding: 32px 48px 32px 48px;
  font-size: 1.38rem;
}
@media (max-width: 600px) {
  .custom-mobile-menu-header { padding: 28px 12px 14px 12px; }
  .custom-mobile-menu-list li a { padding: 20px 10px; font-size: 1.18rem; }
}

.desktop-main-nav ul li a {
  font-size: 1.18rem;
  color: #0a3779;
  font-family: 'Montserrat', 'Lato', Arial, sans-serif;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-decoration: none;
  padding: 12px 0;
  border-radius: 10px;
  transition: background 0.22s, color 0.22s, letter-spacing 0.18s, font-weight 0.18s, box-shadow 0.18s, border-bottom 0.22s cubic-bezier(.4,2,.6,1);
  display: block;
  box-shadow: none;
  border-bottom: 3px solid transparent;
}
.desktop-main-nav ul li a:hover, .desktop-main-nav ul li a:focus {
  background: #eaf1fa;
  color: #1976d2;
  font-weight: 700;
  letter-spacing: 0.12em;
  box-shadow: 0 2px 8px #1976d233;
  border-bottom: 3px solid #1976d2;
}
.desktop-main-nav ul li a.active, .desktop-main-nav ul li.active > a {
  color: #1976d2;
  font-weight: 800;
  border-bottom: 3px solid #1976d2;
  background: #eaf1fa;
  letter-spacing: 0.13em;
}

.desktop-main-nav ul li .teklif-menu, .btn-devami {
  background: #0a3779;
  color: #fff !important;
  padding: 12px 32px;
  border-radius: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  margin-left: 18px;
  font-size: 1.18em;
  box-shadow: 0 2px 12px 0 rgba(10,55,121,0.10);
  transition: background 0.22s, color 0.22s, box-shadow 0.22s, transform 0.18s cubic-bezier(.4,2,.6,1);
  border: none;
  display: inline-block;
  cursor: pointer;
}
.desktop-main-nav ul li .teklif-menu:hover, .btn-devami:hover, .desktop-main-nav ul li .teklif-menu:focus, .btn-devami:focus {
  background: #1976d2;
  color: #fff !important;
  box-shadow: 0 4px 24px 0 rgba(25,118,210,0.13);
  transform: scale(1.06);
}

.footer-social-bar a img {
  transition: transform 0.22s, box-shadow 0.22s, background 0.22s, filter 0.22s;
  border-radius: 50%;
  background: #fff;
  padding: 2px;
}
.footer-social-bar a:hover img {
  transform: scale(1.18);
  box-shadow: 0 2px 12px #1976d233;
  background: #eaf1fa;
  filter: brightness(1.2) drop-shadow(0 2px 8px #1976d2aa);
}
.site-footer .footer-menu-col h3 {
  font-size: 1.18rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  margin-bottom: 12px;
  margin-top: 0;
}
@media (max-width: 600px) {
  .site-footer .footer-main-row {
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: center;
    align-items: flex-start;
    gap: 0;
    padding: 8px 2px 4px 2px;
  }
  .site-footer .footer-menu-col {
    width: 50%;
    min-width: 0;
    max-width: 100vw;
    box-sizing: border-box;
    padding: 0 2px 10px 2px;
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }
  .site-footer .footer-menu-col h3 {
    font-size: 1.04rem;
    margin-bottom: 6px;
    font-weight: 800;
    letter-spacing: 0.04em;
  }
  .site-footer .footer-menu-col ul {
    padding-left: 0;
    margin: 0;
    width: 100%;
  }
  .site-footer .footer-menu-col ul li {
    font-size: 0.97rem;
    margin-bottom: 4px;
    width: 100%;
    text-align: left;
    padding: 4px 0;
  }
  .footer-social-bar a img {
    width: 28px !important;
    height: 28px !important;
    padding: 1px;
  }
}

@media (max-width: 900px) {
  #customMobileMenuPanel.custom-mobile-menu-panel,
  #customMobileMenuPanel.custom-mobile-menu-panel.active {
    width: 100vw !important;
    max-width: 100vw !important;
    left: 0 !important;
    right: 0 !important;
    transform: none !important;
    top: 0 !important;
    border-radius: 0 !important;
    box-shadow: 0 8px 32px 0 rgba(0,0,0,0.13);
    background: #fff !important;
    padding: 0 !important;
    position: fixed !important;
    height: auto !important;
    max-height: 100vh !important;
    min-height: 0 !important;
    overflow-y: auto !important;
    overflow-x: visible !important;
    margin: 0 !important;
    z-index: 1201 !important;
  }
  #customMobileMenuPanel .menu-inside-whatsapp {
    position: absolute !important;
    right: 18px !important;
    bottom: 18px !important;
    z-index: 1301 !important;
    margin: 0 !important;
    width: 48px !important;
    height: 48px !important;
    box-shadow: 0 2px 8px rgba(37,211,102,0.10);
  }
  #customMobileMenuPanel .custom-mobile-menu-list {
    padding-bottom: 60px !important;
  }
}

@media (max-width: 900px) {
  .fixed-whatsapp-btn {
    position: fixed !important;
    right: 18px !important;
    bottom: 18px !important;
    z-index: 1300 !important;
    margin: 0 !important;
    /* Mobil menü paneli açıkken panelin üstünde gözüksün */
  }
  #customMobileMenuPanel.custom-mobile-menu-panel.active ~ .fixed-whatsapp-btn {
    position: fixed !important;
    right: 18px !important;
    bottom: 18px !important;
    z-index: 1301 !important;
    margin: 0 !important;
  }
}

@media (max-width: 900px) {
  #customMobileMenuPanel.custom-mobile-menu-panel.active ~ #scrollTopBtn,
  #scrollTopBtn {
    display: none !important;
  }
}

@media (max-width: 900px) {
  #customMobileMenuPanel.custom-mobile-menu-panel.active {
    height: auto !important;
    max-height: 99vh !important;
    min-height: 0 !important;
    padding-bottom: 0 !important;
    margin-bottom: 0 !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    overflow-y: auto !important;
    background: #fff !important;
  }
  #customMobileMenuPanel.custom-mobile-menu-panel.active .footer-bottom-bar,
  #customMobileMenuPanel.custom-mobile-menu-panel.active .footer-social-bar {
    display: none !important;
    height: 0 !important;
    min-height: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    border: none !important;
  }
}

@media (max-width: 900px) {
  .custom-mobile-menu-whatsapp {
    width: 100%;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    margin: 0 !important;
    padding: 0 8px 0 0 !important;
    background: none;
    box-shadow: none;
  }
  .custom-mobile-menu-whatsapp .fixed-whatsapp-btn {
    position: static !important;
    margin: 0 !important;
    right: auto !important;
    bottom: auto !important;
    box-shadow: 0 2px 8px rgba(37,211,102,0.10);
    width: 44px !important;
    height: 44px !important;
  }
  #customMobileMenuPanel.custom-mobile-menu-panel {
    padding-bottom: 0 !important;
    margin-bottom: 0 !important;
  }
}

@media (max-width: 900px) {
  #customMobileMenuPanel.custom-mobile-menu-panel {
    display: none !important;
    opacity: 0 !important;
    pointer-events: none !important;
  }
  #customMobileMenuPanel.custom-mobile-menu-panel.active {
    display: block !important;
    opacity: 1 !important;
    pointer-events: auto !important;
    z-index: 9999 !important;
  }
  #customMobileMenuOverlay.custom-mobile-menu-overlay {
    display: none !important;
    opacity: 0 !important;
    pointer-events: none !important;
  }
  #customMobileMenuOverlay.custom-mobile-menu-overlay.active {
    display: block !important;
    opacity: 1 !important;
    pointer-events: auto !important;
    z-index: 9998 !important;
  }
}

@media (max-width: 600px) {
  .ozisik-counters-wrapper {
    flex-direction: column !important;
    gap: 12px !important;
    padding: 0 4px !important;
    align-items: stretch !important;
    width: 100% !important;
    margin: 0 !important;
  }
  .ozisik-counter {
    min-width: 0 !important;
    max-width: 100vw !important;
    width: 100% !important;
    margin: 0 auto 8px auto !important;
    padding: 14px 10px 10px 10px !important;
    border-radius: 14px !important;
    box-shadow: 0 2px 12px rgba(0,32,80,0.10) !important;
    border-width: 1.5px !important;
    background: linear-gradient(135deg, #fafdff 60%, #eaf1fa 100%) !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
  }
  .ozisik-counter-icon {
    width: 36px !important;
    height: 36px !important;
    margin-bottom: 6px !important;
    border-radius: 50% !important;
    box-shadow: 0 2px 8px rgba(0,32,80,0.08) !important;
    background: linear-gradient(135deg, #eaf1fa 60%, #fafdff 100%) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
  }
  .ozisik-counter-icon img {
    width: 20px !important;
    height: 20px !important;
    filter: drop-shadow(0 1px 2px #eaf1fa);
  }
  .ozisik-counter-number {
    font-size: 1.18rem !important;
    margin-bottom: 2px !important;
    font-weight: 800 !important;
    color: #0a3779 !important;
    letter-spacing: 0.04em !important;
  }
  .ozisik-counter-label {
    font-size: 1.01rem !important;
    margin-bottom: 2px !important;
    font-weight: 700 !important;
    color: #003366 !important;
    letter-spacing: 0.03em !important;
  }
  .ozisik-counter-desc {
    font-size: 0.93rem !important;
    color: #444 !important;
    font-weight: 500 !important;
    letter-spacing: 0.01em !important;
  }
}

@media (max-width: 900px) {
  .ozisik-cards-section,
  .ozisik-cards-wrapper {
    flex-direction: column !important;
    gap: 18px !important;
    align-items: stretch !important;
  }
}

/* --- MODERN & ZARİF FOOTER --- */
.site-footer {
  background: linear-gradient(135deg, #174a8b 70%, #1976d2 100%);
  color: #f7faff;
  font-family: 'Lato', Arial, sans-serif;
  margin-top: 48px;
  padding: 0;
  border-radius: 24px 24px 0 0;
  box-shadow: 0 0 32px 0 rgba(10,55,121,0.08);
}
.site-footer .footer-main-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 48px;
  padding: 64px 40px 32px 40px;
  max-width: 1400px;
  margin: 0 auto;
  border-bottom: 1.5px solid #2d4e7a;
  overflow: hidden;
}
.site-footer .footer-logo-col {
  flex: 2 1 420px;
  min-width: 320px;
  max-width: 600px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 22px;
  margin-right: 48px;
  box-sizing: border-box;
}
.site-footer .footer-contact-block {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 1.09em;
}
.site-footer .footer-contact-row {
  display: flex;
  align-items: flex-start;
  gap: 7px;
  margin-bottom: 4px;
  line-height: 1.35;
  font-size: 1em;
  flex-wrap: nowrap;
}
.site-footer .footer-contact-icon {
  font-size: 1.18em;
  margin-top: 2px;
  color: #b3d1ff;
}
.site-footer .footer-contact-label {
  font-weight: 700;
  width: 120px;
  min-width: 120px;
  max-width: 120px;
  color: #e3eaf2;
  text-align: right;
  margin-right: 8px;
  flex-shrink: 0;
}
.site-footer .footer-contact-info {
  color: #f7faff;
  font-weight: 400;
  flex: 1;
  word-break: normal;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: 1.04em;
  max-width: 100%;
}
@media (max-width: 600px) {
  .site-footer .footer-contact-info {
    font-size: 0.95em;
  }
}
.site-footer .footer-menu-col {
  flex: 1 1 120px;
  min-width: 100px;
  max-width: 200px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  padding-left: 18px;
  border-left: 1.5px solid #2d4e7a;
  box-sizing: border-box;
}
.site-footer .footer-menu-col:first-of-type {
  border-left: none;
  padding-left: 0;
}
.site-footer .footer-menu-col h3 {
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.13em;
  font-weight: 800;
  margin-bottom: 18px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-bottom: 2px solid #b3d1ff;
  padding-bottom: 6px;
}
.site-footer .footer-menu-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  width: 100%;
}
.site-footer .footer-menu-col ul li {
  margin-bottom: 6px;
  color: #e0e6ed;
  font-size: 1.07em;
  font-weight: 500;
  letter-spacing: 0.01em;
  display: flex;
  align-items: center;
  transition: color 0.18s;
  line-height: 1.32;
}
.site-footer .footer-menu-col ul li a {
  color: #e0e6ed;
  text-decoration: none;
  font-family: 'Lato', Arial, sans-serif;
  font-weight: 600;
  transition: color 0.22s, background 0.22s, box-shadow 0.18s;
  padding: 3px 0;
  border-radius: 7px;
}
.site-footer .footer-menu-col ul li a:hover {
  color: #fff;
  background: #1976d2;
  box-shadow: 0 2px 12px 0 rgba(25,118,210,0.10);
  text-decoration: underline;
}
.site-footer .footer-bottom-bar {
  background: #0d2a4d;
  color: #bfc9d9;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 40px 14px 40px;
  font-size: 1.04em;
  max-width: 1400px;
  margin: 0 auto;
  border-radius: 0 0 18px 18px;
  flex-wrap: wrap;
  gap: 18px;
  box-shadow: 0 2px 12px 0 rgba(0,32,80,0.08);
}
.site-footer .footer-social-bar {
  display: flex;
  gap: 22px;
  align-items: center;
  justify-content: flex-end;
}
.site-footer .footer-social-bar img {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 2px 8px rgba(0,32,80,0.10);
  padding: 5px;
  transition: transform 0.22s, box-shadow 0.22s, background 0.22s;
  display: block;
}
.site-footer .footer-social-bar img:hover {
  transform: scale(1.18) rotate(-7deg);
  background: #1976d2;
  box-shadow: 0 8px 24px rgba(33,150,243,0.18);
}
@media (max-width: 1100px) {
  .site-footer .footer-main-row {
    gap: 18px;
    padding: 36px 8px 18px 8px;
  }
  .site-footer .footer-bottom-bar {
    padding: 12px 2vw 8px 2vw;
  }
}
@media (max-width: 900px) {
  .site-footer {
    border-radius: 0;
  }
  .site-footer .footer-main-row {
    flex-direction: column;
    align-items: center;
    padding: 10px 1vw 6px 1vw;
    gap: 0;
    border-bottom: 1.5px solid #2d4e7a;
  }
  .site-footer .footer-logo-col, .site-footer .footer-menu-col {
    min-width: 0;
    width: 100%;
    max-width: 99vw;
    margin-bottom: 6px;
    align-items: center;
    text-align: center;
    border-left: none !important;
    padding-left: 0 !important;
  }
  .site-footer .footer-menu-col h3 {
    border-bottom: 1.2px solid #b3d1ff;
    padding-bottom: 1px;
    margin-bottom: 3px;
    width: 70%;
    margin-left: auto;
    margin-right: auto;
    font-size: 1em;
  }
  .site-footer .footer-menu-col ul li {
    margin-bottom: 0;
    line-height: 1.08;
    font-size: 0.97em;
  }
  .site-footer .footer-menu-col ul {
    text-align: center;
  }
  .site-footer .footer-bottom-bar {
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 12px 4vw 8px 4vw;
    font-size: 0.98em;
    border-radius: 0 0 12px 12px;
  }
  .site-footer .footer-social-bar {
    justify-content: center;
  }
}

.site-footer .footer-menu-col h3 {
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.09em;
  font-weight: 700;
  margin-bottom: 7px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-bottom: 1.5px solid #b3d1ff;
  padding-bottom: 3px;
  width: 70%;
  margin-left: auto;
  margin-right: auto;
}
.site-footer .footer-menu-col ul li {
  margin-bottom: 2px;
  color: #e0e6ed;
  font-size: 1.01em;
  font-weight: 500;
  letter-spacing: 0.01em;
  display: flex;
  align-items: center;
  transition: color 0.18s;
  line-height: 1.18;
}
.site-footer .footer-menu-col ul {
  margin-top: 0;
  padding-top: 0;
}
  
@media (max-width: 900px) {
  .site-footer .footer-contact-block {
    font-size: 0.97em;
  }
  .site-footer .footer-contact-row {
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 4px;
  }
  .site-footer .footer-contact-label {
    width: 80px;
    min-width: 80px;
    max-width: 80px;
    font-size: 0.97em;
    text-align: right;
    margin-right: 4px;
  }
  .site-footer .footer-contact-info {
    white-space: normal !important;
    word-break: break-word !important;
    font-size: 0.93em !important;
    max-width: 100vw;
    overflow: visible;
    text-overflow: unset;
    display: inline;
  }
}
  
@media (max-width: 900px) {
  .site-footer .footer-main-row {
    gap: 0 !important;
    padding-bottom: 0 !important;
  }
  .site-footer .footer-logo-col,
  .site-footer .footer-menu-col {
    margin-bottom: 2px !important;
  }
  .site-footer .footer-contact-block {
    gap: 2px !important;
    margin-bottom: 0 !important;
  }
  .site-footer .footer-contact-row {
    margin-bottom: 0 !important;
    gap: 2px !important;
  }
}
  
@media (min-width: 900px) {
  .teklif-menu {
    background: linear-gradient(90deg, #1e3c72 0%, #2a5298 100%);
    color: #fff !important;
    border-radius: 36px;
    padding: 13px 44px;
    font-weight: 700;
    font-size: 1.22rem;
    letter-spacing: 0.22em;
    box-shadow: 0 6px 24px 0 rgba(30,60,114,0.13);
    border: none;
    transition: background 0.32s, color 0.22s, box-shadow 0.22s, transform 0.18s;
    font-family: 'Montserrat', 'Segoe UI', Arial, sans-serif;
    text-transform: uppercase;
    outline: none;
    margin-left: 18px;
    margin-right: 8px;
    display: inline-flex;
    align-items: center;
    height: auto;
    line-height: 1.2;
    vertical-align: baseline;
    position: relative;
    top: 0;
    box-shadow: 0 4px 18px 0 rgba(30,60,114,0.10);
  }
  .teklif-menu:hover, .teklif-menu:focus {
    background: linear-gradient(90deg, #2a5298 0%, #1e3c72 100%);
    color: #fff !important;
    box-shadow: 0 10px 36px 0 rgba(30,60,114,0.18);
    transform: scale(1.06);
    outline: 2.5px solid #b3d1ff;
    outline-offset: 2px;
  }
}
  