/* --- TEMEL AYARLAR & FONTLAR --- */
:root {
  --primary: #1089ff; /* Mavi tonu (tema rengine göre güncelleyebilirsiniz) */
  --dark: #000000;
  --light: #f8f9fa;
  --gray: #808080;
}

body {
  font-family: 'Poppins', Arial, sans-serif;
  background: #fff;
  font-size: 15px;
  line-height: 1.8;
  font-weight: 400;
  color: gray;
}

a {
  color: var(--primary);
  transition: .3s all ease;
}
a:hover {
  text-decoration: none;
  color: var(--primary);
}

/* --- NAVBAR (ÜST MENÜ) --- */
.ftco-navbar-light {
  background: transparent !important;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 3;
}

.ftco-navbar-light .navbar-brand {
  color: #fff;
  font-weight: 700;
  text-transform: uppercase;
}
.ftco-navbar-light .navbar-brand span {
  color: var(--primary);
}

.ftco-navbar-light .nav-link {
  font-size: 14px;
  padding-top: 1.5rem !important;
  padding-bottom: 1.5rem !important;
  padding-left: 20px;
  padding-right: 20px;
  color: #fff !important;
  font-weight: 400;
  opacity: 1 !important;
}
.ftco-navbar-light .nav-link:hover,
.ftco-navbar-light .nav-item.active .nav-link {
  color: var(--primary) !important;
}

/* --- HERO SECTION (SAYFA BAŞLIKLARI VE SLIDER) --- */
.hero-wrap, .hero-wrap-2 {
  width: 100%;
  height: 100%;
  position: relative;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  z-index: 0;
}
.hero-wrap .overlay, .hero-wrap-2 .overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  content: '';
  opacity: .4;
  background: #000;
  z-index: -1;
}
.hero-wrap.js-fullheight, .hero-wrap-2.js-fullheight {
  height: 100vh; /* Tam ekran yüksekliği */
  min-height: 600px;
}
.slider-text {
  height: 100vh;
  min-height: 600px;
}
.breadcrumbs {
  font-size: 13px;
  margin-bottom: 20px;
  z-index: 99;
  font-weight: 500;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.8);
}
.breadcrumbs a {
  color: rgba(255, 255, 255, 0.9);
}
h1.bread {
  font-weight: 900;
  color: #fff;
  font-size: 40px;
  text-transform: capitalize;
}

/* --- GENEL BÖLÜM AYARLARI --- */
.ftco-section {
  padding: 7em 0;
  position: relative;
}
.ftco-no-pt {
  padding-top: 0 !important;
}
.bg-light {
  background: #f8f9fa !important;
}
.heading-section .subheading {
  font-size: 12px;
  display: block;
  margin-bottom: 10px;
  color: var(--primary);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
}
.heading-section h2 {
  font-size: 34px;
  font-weight: 700;
  text-transform: capitalize;
}

/* --- ARAÇ KARTLARI (CAR WRAP) --- */
.car-wrap {
  width: 100%;
  margin-bottom: 30px;
  background: #fff;
  -webkit-box-shadow: 0px 5px 20px -15px rgba(0,0,0,0.3);
  -moz-box-shadow: 0px 5px 20px -15px rgba(0,0,0,0.3);
  box-shadow: 0px 5px 20px -15px rgba(0,0,0,0.3);
  transition: .3s all ease;
}
.car-wrap .img {
  width: 100%;
  height: 250px;
  display: block;
  background-position: center center;
  background-size: cover;
}
.car-wrap .text {
  padding: 20px;
}
.car-wrap .text h2 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
}
.car-wrap .text h2 a {
  color: #000;
}
.car-wrap .text .price {
  font-weight: 600;
  color: var(--primary);
  font-size: 18px;
}
.car-wrap .text .price span {
  font-size: 12px;
  color: rgba(0,0,0,0.4);
}
.car-wrap .cat {
  font-size: 12px;
  text-transform: uppercase;
  font-weight: 600;
  color: rgba(0,0,0,0.4);
}

/* --- BUTONLAR --- */
.btn {
  cursor: pointer;
  border-radius: 4px;
  box-shadow: none !important;
  font-size: 14px;
  font-weight: 500;
}
.btn-primary {
  background: var(--primary) !important;
  border: 1px solid var(--primary) !important;
  color: #fff !important;
}
.btn-secondary {
  background: #fff !important;
  border: 1px solid #e6e6e6 !important;
  color: #000 !important;
}

/* --- HİZMETLER (SERVICES) --- */
.services {
  transition: .3s all ease;
  margin-bottom: 40px;
}
.services .icon {
  line-height: 1.3;
  position: relative;
  width: 80px;
  height: 80px;
  background: var(--primary);
  border-radius: 50%;
  margin: 0 auto 20px auto;
}
.services .icon span {
  font-size: 40px;
  color: #fff;
}
.services h3 {
  font-size: 18px;
  font-weight: 600;
}

/* --- BLOG --- */
.blog-entry {
  width: 100%;
  margin-bottom: 40px;
}
.blog-entry .block-20 {
  width: 100%;
  height: 270px;
  display: block;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}
.blog-entry .text {
  position: relative;
  border: 1px solid rgba(0,0,0,0.05);
  border-top: 0;
  padding: 30px;
}
.blog-entry .text .heading {
  font-size: 20px;
  margin-bottom: 16px;
  font-weight: 600;
}
.blog-entry .text .heading a {
  color: #000;
}
.blog-entry .meta > div {
  display: inline-block;
  margin-right: 5px;
  margin-bottom: 5px;
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
}

/* --- FOOTER (ALT KISIM) --- */
.ftco-footer {
  font-size: 16px;
  padding: 7em 0;
  background: #1a1a1a; /* Koyu Gri */
  color: rgba(255,255,255,0.7);
}
.ftco-footer .ftco-footer-widget h2 {
  font-weight: normal;
  color: #fff;
  margin-bottom: 40px;
  font-size: 18px;
  font-weight: 600;
}
.ftco-footer .ftco-footer-widget ul li a {
  color: rgba(255,255,255,0.7);
}
.ftco-footer .ftco-footer-widget ul li a:hover {
  color: #fff;
}
.block-23 ul {
  padding: 0;
}
.block-23 ul li {
  color: rgba(255,255,255,0.7);
  display: flex;
  margin-bottom: 15px;
}
.block-23 ul li .icon {
  width: 40px;
  font-size: 18px;
  padding-top: 2px;
  color: #fff;
}

/* --- İSTATİSTİK SAYAÇLARI --- */
.ftco-counter {
  padding: 6em 0;
}
.ftco-counter .text strong.number {
  font-weight: 700;
  font-size: 30px;
  color: var(--primary);
  display: block;
}
.ftco-counter .text span {
  display: block;
  font-size: 16px;
  color: rgba(0,0,0,0.7);
}

/* --- İLETİŞİM SAYFASI ÖZEL --- */
.contact-section .contact-info p a {
  color: #1a1a1a;
}
.contact-section .box {
  width: 100%;
  display: block;
}
.contact-section .icon {
  width: 60px;
  height: 60px;
  background: var(--primary);
  color: #fff;
  border-radius: 50%;
  margin: 0 auto 20px auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* --- YÜZEN BUTONLAR (Whatsapp & Telefon) --- */
.floating-btn {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 40px;
  background-color: #25d366;
  color: #FFF;
  border-radius: 50px;
  text-align: center;
  font-size: 30px;
  box-shadow: 2px 2px 3px #999;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
}
.phone-btn {
  right: 100px; /* Whatsapp'ın solunda */
  background-color: #007bff;
}
.whatsapp-btn {
  right: 20px;
}

/* --- LOADER --- */
#ftco-loader {
  position: fixed;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background: #fff;
  z-index: 9999;
}

.floating-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 99999;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    text-align: center;
    line-height: 55px;
    color: #fff;
    font-size: 26px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
}
.phone-btn {
    background: #d60000;
    bottom: 85px; /* WhatsApp ile üst üste gelmesin */
}
.whatsapp-btn {
    background: #25d366;
}
.floating-btn:hover {
    transform: scale(1.1);
    text-decoration: none;
    color: #fff;
}

@font-face {
  font-family: 'Poppins';
  src: url('../assets/fonts/poppins/Poppins-Thin.woff2') format('woff2');
  font-weight: 100;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Poppins';
  src: url('../assets/fonts/poppins/Poppins-ExtraLight.woff2') format('woff2');
  font-weight: 200;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Poppins';
  src: url('../assets/fonts/poppins/Poppins-Light.woff2') format('woff2');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Poppins';
  src: url('../assets/fonts/poppins/Poppins-Regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Poppins';
  src: url('../assets/fonts/poppins/Poppins-Medium.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Poppins';
  src: url('../assets/fonts/poppins/Poppins-SemiBold.woff2') format('woff2');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Poppins';
  src: url('../assets/fonts/poppins/Poppins-Bold.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Poppins';
  src: url('../assets/fonts/poppins/Poppins-Black.woff2') format('woff2');
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}