*{
  margin:0;
  padding:0;
  box-sizing:border-box;
  font-family:Arial, Helvetica, sans-serif;
}

body{
  background:#fff;
  color:#111;
}

/* TOP BAR */
.top-bar{
  background:#000;
  color:#fff;
  padding:8px 20px;
  display:flex;
  justify-content:space-between;
  font-size:14px;
}

/* HEADER */
header{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:15px 30px;
  background:#ffc107;
  position:sticky;
  top:0;
  z-index:1000;
}

.logo{
  font-size:26px;
  font-weight:800;
  color:#000;
  transition: color .3s ease;
}



nav a{
  margin-left:20px;
  text-decoration:none;
  color:#000;
  font-weight:bold;
}

/* SLIDER */
.slider{
  height:90vh;
  background:linear-gradient(rgba(0,0,0,.6),rgba(0,0,0,.6)), url('https://images.unsplash.com/photo-1503376780353-7e6692767b70');
  background-size:cover;
  background-position:center;
  color:#fff;
  display:flex;
  flex-direction:column;
  justify-content:center;
  align-items:center;
  text-align:center;
}

.slide{
  display:none;
  animation:fade .8s ease-in-out;
}

.slide.active{
  display:block;
}

@keyframes fade{
  from{opacity:0; transform:translateY(10px)}
  to{opacity:1; transform:translateY(0)}
}

.slider h1{
  font-size:44px;
}

.slider p{
  font-size:20px;
  margin-top:10px;
}

.cta{
  margin-top:35px;
}

.btn{
  padding:16px 26px;
  margin:6px;
  font-weight:bold;
  text-decoration:none;
  border-radius:8px;
}

.call{
  background:#ffc107;
  color:#000;
}

.wa{
  background:#25d366;
  color:#fff;
}

/* SECTIONS */
section{
  padding:100px 20px;
  text-align:center;
}


h2{
  font-size:38px;
  margin-bottom:45px;
  letter-spacing:1px;
}


/* CARDS */
.cards{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
  gap:35px;
  margin-top:50px;
}

.card{
  padding:35px;
  border-radius:14px;
  border:1px solid #ddd;
  font-size:18px;
  line-height:1.6;
  background:#fff;
  transition:.3s;
}


.card:hover{
  transform:translateY(-6px);
  box-shadow:0 10px 25px rgba(0,0,0,.1);
}

/* DARK SECTION */
.dark{
  background:#111;
  color:#fff;
}

.dark ul{
  list-style:none;
  font-size:18px;
}

.dark li{
  margin:12px 0;
}

/* İLETİŞİM */
#iletisim a{
  color:#000;
  font-weight:bold;
}

/* FLOATING WHATSAPP */
.floating-wa{
  position:fixed;
  bottom:20px;
  right:20px;
  background:#25d366;
  color:#fff;
  font-size:28px;
  padding:15px 18px;
  border-radius:50%;
  text-decoration:none;
  box-shadow:0 8px 20px rgba(0,0,0,.3);
}
.section-yellow{
  background:#ffc107;
  color:#000;
}

.section-black{
  background:#111;
  color:#fff;
}

.section-black .card{
  background:#1c1c1c;
  border-color:#333;
}

.section-yellow .card{
  background:#fff;
}
.neden-aciklama{
  max-width:800px;
  margin:0 auto 60px auto;
  font-size:19px;
  line-height:1.7;
}
/* DRIVER CTA */
.cta-driver{
  padding:80px 20px;
}

.cta-driver-inner{
  max-width:1200px;
  margin:0 auto;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:40px;
}

.cta-text span{
  font-size:18px;
  font-weight:500;
}

.cta-text h2{
  margin-top:10px;
  font-size:42px;
  font-weight:800;
}

.cta-whatsapp{
  background:#111;
  color:#fff;
  padding:18px 40px;
  border-radius:50px;
  font-size:18px;
  font-weight:bold;
  text-decoration:none;
  transition:.3s;
}

.cta-whatsapp:hover{
  background:#000;
  transform:translateY(-2px);
}

/* MOBİL UYUM */
@media(max-width:768px){
  .cta-driver-inner{
    flex-direction:column;
    text-align:center;
  }

  .cta-text h2{
    font-size:32px;
  }
}
.section-white{
  background:#fff;
  color:#111;
}
.services-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
  gap:25px;
  margin-top:40px;
}

.service-card{
  background:#111;
  border:1px solid #222;
  padding:30px;
  border-radius:14px;
  transition:.3s;
}

.service-card:hover{
  transform:translateY(-6px);
  border-color:#ffcc00;
}

.service-card h3{
  color:#ffcc00;
  margin-bottom:10px;
}

.service-card p{
  color:#ccc;
  font-size:15px;
}
.contact-box{
  text-align:center;
  max-width:700px;
  margin:0 auto;
  padding:60px 30px;
  border-radius:20px;
  box-shadow:0 20px 40px rgba(0,0,0,.12);
}

.contact-actions{
  margin-top:30px;
  display:flex;
  justify-content:center;
  gap:20px;
  flex-wrap:wrap;
}

.btn-primary{
  background:#ffcc00;
  color:#000;
  padding:14px 28px;
  border-radius:30px;
  font-weight:600;
}

.btn-secondary{
  background:#111;
  color:#fff;
  padding:14px 28px;
  border-radius:30px;
}
.section-yellow{
  background:#ffcc00;
  padding:90px 20px;
}

.section-yellow h2{
  text-align:center;
  font-size:40px;
  color:#000;
}

.service-card.light{
  background:#fff;
  color:#000;
  padding:32px;
  border-radius:16px;
  box-shadow:0 15px 30px rgba(0,0,0,.15);
  transition:.3s;
}

.service-card.light:hover{
  transform:translateY(-6px);
}
.services-section{
  background:#ffcc00;
  padding:120px 20px;
  text-align:center;
}

.services-section h2{
  font-size:42px;
  margin-bottom:60px;
}

.services-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
  gap:40px;
  max-width:1100px;
  margin:auto;
}

.service-box{
  background:#fff;
  padding:45px 30px;
  border-radius:22px;
  box-shadow:0 25px 45px rgba(0,0,0,.2);
  transition:.35s ease;
}

.service-box:hover{
  transform:translateY(-10px);
}

.service-box .icon{
  font-size:46px;
  display:block;
  margin-bottom:20px;
}

.service-box h3{
  font-size:22px;
  margin-bottom:10px;
}

.service-box p{
  color:#666;
}
.contact-section{
  background:#0b0b0b;
  padding:120px 20px;
  text-align:center;
}

.contact-section h2{
  color:#ffcc00;
  font-size:40px;
}

.contact-section p{
  color:#aaa;
  margin:15px 0 40px;
}

.contact-buttons{
  display:flex;
  justify-content:center;
  gap:25px;
  flex-wrap:wrap;
}

.btn-call{
  background:#ffcc00;
  color:#000;
  padding:16px 36px;
  border-radius:40px;
  font-weight:700;
}

.btn-whatsapp{
  border:2px solid #ffcc00;
  color:#ffcc00;
  padding:16px 36px;
  border-radius:40px;
}
.hero{
  height:100vh;
  background:
    linear-gradient(rgba(0,0,0,.55), rgba(0,0,0,.55)),
    url("img/slider.jpg") center/cover no-repeat;
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
  padding:20px;
}

.hero h1{
  color:#ffcc00;
  font-size:56px;
  max-width:900px;
}

.hero p{
  color:#eee;
  font-size:20px;
  margin:25px 0 40px;
}

.hero-buttons{
  display:flex;
  gap:20px;
  justify-content:center;
  flex-wrap:wrap;
}
header{
  position:fixed;
  top:0;
  width:100%;
  padding:20px 60px;
  display:flex;
  justify-content:space-between;
  align-items:center;
  transition:.3s;
  z-index:999;
}

header.scrolled{
  background:#000;
  box-shadow:0 10px 30px rgba(0,0,0,.6);
}

header a{
  color:#fff;
  margin-left:25px;
  font-weight:600;
}
@media(max-width:768px){

  header{
    padding:15px 25px;
  }

  header nav{
    display:none;
  }

  .hero h1{
    font-size:36px;
  }

  .services-grid{
    grid-template-columns:1fr;
  }

  .contact-buttons{
    flex-direction:column;
  }

}
.hero{
  height:100vh;
  background:
    linear-gradient(rgba(0,0,0,.55), rgba(0,0,0,.55)),
    url("../img/slider.jpg") center/cover no-repeat;
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
  padding:20px;
}
header.scrolled .logo{
  color:#ffcc00;
}
.trust{
  color: #ffd400;
  font-weight: 700;
  letter-spacing: -0.5px;
}
.seo-hidden{
  position:absolute;
  left:-9999px;
  width:1px;
  height:1px;
  overflow:hidden;
}
.highlight {
  color: #f5c400; /* sarı */
}
.section-desc {
  max-width: 600px;
  margin: 0 auto 40px;
  font-size: 17px;
  color: #555;
}
.feature-card {
  background: #fff;
  border-radius: 16px;
  padding: 30px 25px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
  transition: all .3s ease;
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}
.icon {
  font-size: 32px;
  color: #f5c400;
  margin-bottom: 15px;
}
.why-us {
  background: #111; /* siyaha yakın */
  padding: 90px 0;
}
.why-us h2 {
  color: #ffd400;
  font-weight: 700;
  letter-spacing: -0.5px;
}
.section-desc {

color: #ffd400;
  font-weight: 700;
  letter-spacing: -0.5px;
}
