:root {  --font1: "Urbanist", Helvetica, Arial, sans-serif;  --brand-color: #ff4242;  --dark-text: #000000;  --light-text: #6b6b6b;  --border-color3: #ffffff2b;  --text-primary: #212529;  --text-secondary: #271e13;  --background-color: #f8f9fa;  --card-background: #ffffff;  --border-color: #f2efed;  --border-color2: #e8edf3;  --shadow-hover: 0 10px 25px rgba(0, 0, 0, 0.12);  --footer-background: #fbfaf8;  --shadow: 0 4px 15px rgba(18, 31, 58, 0.05);  --shadow-hover: 0 10px 25px rgba(0, 0, 0, 0.12);  --background-color: #fff;  --bg-color: #f8f5f1; /* Görseldeki hafif krem rengi arkaplan */  --primary-text-color: #2c2c2c;  --secondary-text-color: #585858;  --button-bg-color: #ff4242; /* Canlı kırmızı */  --button-text-color: #ffffff;}body {  font-family: var(--font1);  padding: 0px;  margin: 0px;}body {  font-family: var(--font1);  padding: 0px;  margin: 0px;}body.menu-open {  overflow: hidden;}a {  text-decoration: none;  color: inherit;}ul {  list-style: none;}/* Site Header: Genel ve Masaüstü */.site-header {  position: fixed;  top: 0;  left: 0;  width: 100%;  z-index: 1000;  border-bottom: 1px solid var(--border-color3);  transition: transform 0.4s ease, box-shadow 0.3s ease;  box-sizing: border-box;}.site-header .container {  margin: 0 auto;  padding: 0 2rem;  display: flex;  justify-content: space-between;  align-items: center;  padding: 0 60px;  max-width: 100%;}.site-header .header-right {  display: flex;  align-items: center;  gap: 1.5rem;}.site-header.hide {  transform: translateY(-100%);  box-shadow: none;}.site-header.show {  transform: translateY(0);  background-color: var(--brand-color);}.site-header .main-header {  height: 90px;  display: flex;}/* Arama Kutusu */.site-header .search-form {  position: relative;  display: flex;  align-items: center;}.site-header .search-form input {  width: 300px;  height: 50px;  border-radius: 25px;  border: none;  padding-left: 1.5rem;  padding-right: 60px; /* Buton için yer */  font-size: 0.9rem;  font-family: var(--header-font);}.site-header .search-form input:focus {  outline: none;  border-color: var(--brand-color);}.site-header .search-form button {  position: absolute;  top: 5px;  right: 5px;  width: 40px;  height: 40px;  border-radius: 50%;  border: none;  background-color: var(--brand-color);  cursor: pointer;  display: flex;  justify-content: center;  align-items: center;}.site-header .search-icon {  width: 20px;  height: 20px;  color: #fff;}/* Telefon Numarası */.site-header .phone-number {  font-weight: 800;  font-size: 1.1rem;  color: #fff;}.site-header .phone-number span {  display: block;}.site-header .phone-number small {  display: block;  font-size: 10px;  font-weight: 300;}.site-header .logo {  flex-shrink: 0;  display: flex;  align-items: center;  text-decoration: none;}.site-header .logo img {  height: 80px;  width: auto;  display: block;}.site-header .main-nav {  flex-grow: 1;  display: flex;  justify-content: end;  margin-right: 35px;}.site-header .main-nav ul#main-menu {  display: flex;  list-style: none;  gap: 29px;  margin: 0;  padding: 0;  align-items: center;}.site-header .main-nav li:nth-child(2) {  display: none;}.site-header .main-nav a {  color: #fff;  font-weight: 600;  font-size: 15px;  text-decoration: none;  padding: 5px 0;  position: relative;  transition: color 0.3s ease;  white-space: nowrap;  align-items: center;  display: flex;}/* Alt Menüler: Masaüstü */.site-header .nav-item.nav-submenu {  position: relative;}.site-header .nav-submenu > a::after {  content: "▼";  font-size: 0.6em;  margin-left: 7px;  display: inline-block;  transition: transform 0.3s ease-in-out;}.site-header .nav-submenu ul {  list-style: none;  padding: 10px;  margin: 0;  margin-top: 15px;  background-color: #0b1a2c;  border-radius: 8px;  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);  min-width: 220px;  position: absolute;  top: 100%;  left: 0;  opacity: 0;  visibility: hidden;  transform: translateY(10px);  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;  z-index: 10;}.site-header .nav-submenu ul li {  padding: 0;  margin: 0;}.site-header .nav-submenu ul a {  padding: 10px 15px;  display: block;  font-size: 14px;  font-weight: 500;  border-radius: 5px;}.site-header .nav-item.nav-submenu:hover > ul {  opacity: 1;  visibility: visible;  transform: translateY(0);}.site-header .nav-item.nav-submenu:hover > a::after {  transform: rotate(180deg);}/* --- ÜST BİLGİ ÇUBUĞU --- */.site-header .top-bar {  border-bottom: 1px solid var(--border-color3);  padding: 0.5rem 0;  font-size: 0.8rem;  color: #fff;}.site-header.show {  background: var(--brand-color);}.site-header.show .top-bar {  display: none;}.site-header .top-bar .container {  justify-content: flex-end;}.site-header .top-bar-nav ul {  display: flex;  gap: 1.3rem;  margin: 0px;}.site-header .top-bar-nav a:hover {  color: var(--dark-text);}/* Hamburger Menü Butonu */.site-header .menu-toggle {  display: none;  background: none;  border: none;  cursor: pointer;  padding: 10px;  z-index: 1001;}.site-header .menu-toggle .bar {  display: block;  width: 25px;  height: 3px;  background-color: #fff;  margin: 5px 0;  transition: all 0.4s;}.site-header .menu-toggle.is-active .bar:nth-child(1) {  transform: translateY(8px) rotate(45deg);}.site-header .menu-toggle.is-active .bar:nth-child(2) {  opacity: 0;}.site-header .menu-toggle.is-active .bar:nth-child(3) {  transform: translateY(-8px) rotate(-45deg);}/* Mobil Menü Arka Plan Overlay */.nav-overlay {  position: fixed;  top: 0;  left: 0;  width: 100%;  height: 100%;  background-color: rgba(0, 0, 0, 0.6);  z-index: 998;  opacity: 0;  visibility: hidden;  transition: opacity 0.5s ease, visibility 0.5s ease;}.nav-overlay.is-active {  opacity: 1;  visibility: visible;}/* Mobil Görünüm */@media (max-width: 1024px) {  .site-header .container {    padding: 0px 15px;  }  .site-header .menu-toggle {    display: block;  }  .site-header .main-nav {    border-right: none;    margin-right: 0;    padding-right: 0;    justify-content: flex-end;  }  .site-header .main-nav ul#main-menu {    overflow-y: auto;    padding-bottom: 40px;    flex-direction: column;    position: fixed;    top: 0;    left: -100%;    width: 80%;    max-width: 320px;    height: 100vh;    background-color: #1a1a1a;    padding: 80px 40px 120px;    align-items: flex-start;    gap: 0px;    transition: left 0.5s cubic-bezier(0.77, 0, 0.175, 1);    z-index: 999;  }  .site-header .main-nav ul#main-menu.is-active {    left: 0;  }  .site-header .main-nav ul a {    font-size: 18px;    width: 100%;    padding: 10px 0px;  }  .site-header .main-nav ul li {    position: relative;  }  .site-header .main-nav ul li .mobil-logo {    margin-bottom: 25px;    display: block !important;  }  /* Mobil Alt Menüler */  .site-header .nav-submenu > li::after {    content: "›";    font-size: 1.8em;    font-weight: bold;    position: absolute;    right: 10px;    top: 50%;    transform: translateY(-50%) rotate(0deg);    transition: transform 0.3s ease-in-out;  }  .site-header .nav-submenu ul {    position: static;    width: 100%;    opacity: 1;    visibility: visible;    transform: none;    box-shadow: none;    background-color: rgba(0, 0, 0, 0.2);    padding: 10px 0 10px 20px;    margin-top: 10px;    border-radius: 8px;    max-height: 0;    overflow: hidden;    transition: max-height 0.4s ease-in-out, padding 0.4s ease-in-out,      margin 0.4s ease-in-out;    padding-top: 0;    padding-bottom: 0;    margin-top: 0;  }  .site-header .nav-submenu.submenu-open > ul {    max-height: 500px;    margin-top: 10px;    padding-top: 10px;    padding-bottom: 10px;  }  .site-header .nav-submenu.submenu-open > a::after {    transform: translateY(-50%) rotate(90deg);  }  .search-toggle-mobile {    display: flex;    align-items: center;    justify-content: center;    background: none;    border: none;    cursor: pointer;    padding: 10px;  }  .search-toggle-mobile .search-icon {    width: 22px;    height: 22px;  }  .search-toggle-mobile svg {    fill: #fff;    width: 22px;    height: 22px;  }  /* Formu ortalanmış bir modal olarak ayarla */  .site-header .search-form {    display: flex;    flex-direction: column;    position: fixed;    top: 50%;    left: 50%;    width: 90%;    max-width: 400px;    padding: 2rem;    background-color: #00000095;    border-radius: 5px;    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);    z-index: 1002;    transform: translate(-50%, -50%) scale(0.9);    opacity: 0;    visibility: hidden;    transition: transform 0.3s ease, opacity 0.3s ease, visibility 0.3s;  }  .site-header .search-form.is-active {    transform: translate(-50%, -50%) scale(1);    opacity: 1;    visibility: visible;  }  .site-header .search-form .search-form-title {    display: block;    color: #fff;    text-align: center;    font-size: 1.5rem;    font-weight: 600;    margin-bottom: 1.5rem;    margin-top: 0px;  }  .site-header .search-form .search-input-wrapper {    position: relative;    width: 100%;  }  .site-header .search-form input {    width: 100%;    height: 50px;    padding-right: 50px;    background-color: #fff;    color: #333;  }  .site-header .search-form .submit-search-btn {    right: 5px;    background-color: var(--brand-color);    top: 6px;  }  .site-header .search-form .close-search-btn {    display: flex;    position: absolute;    top: 15px;    right: 15px;    background: none;    border: none;    cursor: pointer;    padding: 0;    align-items: center;    justify-content: center;  }  .site-header .search-form .close-search-btn svg {    stroke: rgba(255, 255, 255, 0.7);    width: 28px;    height: 28px;    transition: stroke 0.2s ease;  }  .site-header .search-form .close-search-btn:hover svg {    stroke: #fff;  }  .site-header .header-right {    gap: 5px;  }  .site-header .logo img {    height: 80px;    width: auto;    display: block;  }}/* --- Buton Stilleri --- */.cta-button {  display: inline-block;  background-color: var(--button-bg-color);  color: var(--button-text-color);  padding: 9px 28px;  border-radius: 0.5rem;  text-decoration: none;  font-weight: 600;  font-size: 15px;  transition: background-color 0.3s ease, transform 0.3s ease;}.cta-button:hover {  background-color: #c41e1b; /* Hafif koyu kırmızı */  transform: translateY(-2px);}/* WhatsApp Butonu Genel Stili */.whatsapp-float {  position: fixed; /* Sayfada sabit kalmasını sağlar */  width: 60px;  height: 60px;  bottom: 25px; /* Alttan boşluk */  left: 25px; /* Soldan boşluk */  background-color: #25d366; /* WhatsApp yeşili */  fill: #fff; /* İkon rengi (beyaz) */  border-radius: 50px; /* Yuvarlak yapar */  text-align: center;  font-size: 30px;  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2); /* Hafif gölge */  z-index: 1000; /* Diğer elementlerin üzerinde kalmasını sağlar */  display: flex;  align-items: center;  justify-content: center;  text-decoration: none; /* Link alt çizgisini kaldırır */  transition: transform 0.2s ease-in-out; /* Büyüme efekti için yumuşak geçiş */}.whatsapp-float svg {  width: 23px;  height: 23px;}/* Üzerine gelince hafif büyüme efekti */.whatsapp-float:hover {  transform: scale(1.1); /* %10 büyütür */}/* Sürekli Dikkat Çekme Efekti (Pulse - Nabız) */@keyframes pulse {  0% {    transform: scale(0.95);    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);  }  70% {    transform: scale(1);    box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);  }  100% {    transform: scale(0.95);    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);  }}/* Animasyonu butona uygulama */.whatsapp-float {  animation: pulse 2s infinite;}/* SVG İkon Boyutu */.whatsapp-icon {  width: 35px;  height: 35px;  fill: white;}.hidden-bolum {  overflow: hidden;}.mb-0 {  margin-bottom: 0px !important;}.mt-0 {  margin-top: 0px !important;}/* ====================================================== *//* SADE & ŞIK MOBİL EYLEM ÇUBUĞU STİLLERİ *//* ====================================================== *//*   SİTENİZİN ANA RENGİNİ BURAYA GİRİN.  Bu değişken, butonlara dokunulduğunda kullanılacak rengi belirler.  Eğer CSS'inizde zaten bir ana renk değişkeni varsa, bu satırı silebilirsiniz.*/:root {  --ana-renk: #007bff; /* Örnek: Canlı bir mavi. Kendi renginizle değiştirin. */}/* Başlangıçta çubuğu gizle (Masaüstü için) */.mobile-action-bar {  display: none;}/* Sadece mobil ekranlarda göster (Örn: 768px altı) */@media (max-width: 768px) {  .whatsapp-float {    display: none;  }  /* Çubuğun ana yapısı */  .mobile-action-bar {    display: flex;    justify-content: space-around;    position: fixed;    bottom: 0;    left: 0;    width: 100%;    height: 65px; /* Biraz daha ferah bir yükseklik */    background-color: #f8f9fa; /* Tam beyaz yerine çok hafif kırık beyaz */    border-top: 1px solid #e9ecef; /* Çok ince ve yumuşak bir ayırıcı çizgi */    z-index: 999;  }  /* Butonların genel stili */  .mobile-action-bar .action-item {    display: flex;    flex-direction: column;    align-items: center;    justify-content: center;    flex: 1; /* Alanı eşit paylaş */    padding: 8px 0;    text-decoration: none;    color: #6c757d; /* Sade, okunabilir bir gri tonu */    transition: color 0.2s ease-in-out; /* Renk geçişini yumuşat */  }  /* Butonlara dokunulduğunda veya üzerine gelindiğinde */  .mobile-action-bar .action-item:hover,  .mobile-action-bar .action-item:active {    color: var(--ana-renk); /* Sitenizin ana rengine dönüşsün */  }  /* Butonların içindeki ikonlar */  .mobile-action-bar .action-item svg {    width: 24px;    height: 24px;    margin-bottom: 4px;  }  .mobile-action-bar .action-item.whatsp svg {    fill: #6c757d;  }  /* Butonların içindeki yazılar */  .mobile-action-bar .action-item span {    font-size: 0.7rem; /* 11px civarı */    font-weight: 500;  }  /* ÖNEMLİ: Çubuğun alttaki içeriği ezmesini engelle */  body {    padding-bottom: 65px; /* Çubuk yüksekliği kadar boşluk */  }}