/* Global reset & typography */
*{margin:0;padding:0;box-sizing:border-box;}
body{
  background:#f8f9fa;
  color:#0d1b2a;
  line-height:1.6;
  font-family:'Poppins',system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",sans-serif;
}
img{max-width:100%;display:block;}
.container{
  width:90%;
  max-width:1200px;
  margin:auto;
}

/* Header / Navbar */
header{
  background:#0d1b2a;
  color:#fff;
  padding:15px 0;
  position:sticky;
  top:0;
  z-index:999;
  box-shadow:0 4px 12px rgba(0,0,0,.4);
}
.header-inner{
  display:flex;
  justify-content:space-between;
  align-items:center;
  flex-wrap:wrap;
  gap:12px;
}
.logo{
  font-weight:700;
  font-size:22px;
  color:#fff;
  text-decoration:none;
}
.logo span{
  color:#fca311;
}
nav ul{
  list-style:none;
  display:flex;
  flex-wrap:wrap;
  gap:20px;
}
nav a{
  color:#fff;
  text-decoration:none;
  font-weight:500;
  font-size:15px;
  transition:.25s;
}
nav a.active,
nav a:hover{
  color:#fca311;
}
.menu-toggle {
  display:none;
  font-size:26px;
  background:none;
  border:none;
  color:#fff;
  cursor:pointer;
  transition:.3s;
}
.menu-toggle:hover {
  color:#fca311;
}

/* HERO SLIDER */
.hero-slider{
  position:relative;
  height:70vh;
  min-height:420px;
  max-height:780px;
  overflow:hidden;
  background:#000;
  color:#fff;
}
.slide{
  position:absolute;
  inset:0;
  background-size:cover;
  background-position:center;
  opacity:0;
  transition:opacity .8s ease;
}
.slide.active{opacity:1;}
.slide::after{
  content:"";
  position:absolute;
  inset:0;
  background:rgba(0,0,0,.55);
}
.slide-content{
  position:absolute;
  left:50%;
  top:50%;
  transform:translate(-50%,-50%);
  text-align:center;
  color:#fff;
  max-width:800px;
  padding:20px;
  z-index:2;
}
.slide-content h1{
  font-size:32px;
  font-weight:700;
  margin-bottom:15px;
}
.slide-content p{
  font-size:17px;
  font-weight:300;
  margin-bottom:25px;
}
.btn{
  background:#fca311;
  color:#fff;
  padding:12px 24px;
  border-radius:6px;
  text-decoration:none;
  font-weight:500;
  display:inline-block;
  transition:.25s;
}
.btn:hover{
  background:#e69500;
}
.slider-arrows{
  position:absolute;
  top:50%;
  left:0;
  right:0;
  display:flex;
  justify-content:space-between;
  padding:0 20px;
  transform:translateY(-50%);
  z-index:3;
  pointer-events:none;
}
.arrow-btn{
  pointer-events:auto;
  width:40px;
  height:40px;
  background:rgba(0,0,0,.5);
  color:#fff;
  border:none;
  border-radius:6px;
  font-size:18px;
  font-weight:600;
  cursor:pointer;
  line-height:40px;
  text-align:center;
  transition:.25s;
}
.arrow-btn:hover{
  background:rgba(0,0,0,.75);
}

/* Section titles */
.section-title{
  text-align:center;
  font-size:26px;
  font-weight:600;
  margin:60px 0 30px;
  color:#0d1b2a;
}

/* Services cards */
.services-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
  gap:25px;
  margin-bottom:60px;
}
.service-card{
  background:#fff;
  border-radius:10px;
  box-shadow:0 8px 24px rgba(0,0,0,.07);
  overflow:hidden;
  transition:.3s;
  display:flex;
  flex-direction:column;
}
.service-card:hover{
  transform:translateY(-4px);
  box-shadow:0 16px 32px rgba(0,0,0,.12);
}
.service-card img{
  height:160px;
  object-fit:cover;
  width:100%;
}
.service-card-body{
  padding:20px;
}
.service-card-body h3{
  color:#fca311;
  font-size:18px;
  margin-bottom:8px;
  font-weight:600;
}
.service-card-body p{
  font-size:14px;
  color:#0d1b2a;
}

/* About section */
.about-wrap{
  display:flex;
  flex-wrap:wrap;
  gap:40px;
  align-items:center;
  margin-bottom:60px;
}
.about-img{
  flex:1;
  min-width:300px;
  border-radius:10px;
  overflow:hidden;
  box-shadow:0 12px 30px rgba(0,0,0,.15);
}
.about-text{
  flex:1;
  min-width:280px;
}
.about-text p{
  margin-bottom:15px;
  font-size:15px;
}

/* Gallery */
.gallery-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
  gap:20px;
  margin-bottom:60px;
}
.gallery-grid img{
  width:100%;
  height:220px;
  object-fit:cover;
  border-radius:10px;
  box-shadow:0 10px 24px rgba(0,0,0,.15);
  transition:.3s;
}
.gallery-grid img:hover{
  transform:scale(1.03);
}

/* Blog cards */
.blog-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
  gap:25px;
  margin-bottom:60px;
}
.blog-card{
  background:#fff;
  border-radius:10px;
  box-shadow:0 8px 24px rgba(0,0,0,.07);
  padding:20px;
  transition:.3s;
}
.blog-card:hover{
  transform:translateY(-4px);
  box-shadow:0 16px 32px rgba(0,0,0,.12);
}
.blog-card h4{
  color:#fca311;
  margin-bottom:10px;
  font-size:17px;
  font-weight:600;
}
.blog-card p{font-size:14px;}

/* Contact */
.contact-wrap{
  display:flex;
  flex-wrap:wrap;
  gap:40px;
  align-items:center;
  margin-bottom:60px;
}
.contact-img{
  flex:1;
  min-width:300px;
  border-radius:10px;
  overflow:hidden;
  box-shadow:0 12px 30px rgba(0,0,0,.15);
  height:320px;
  background:#ccc center/cover no-repeat;
}
.contact-form{
  flex:1;
  min-width:280px;
  background:#fff;
  border-radius:10px;
  box-shadow:0 12px 30px rgba(0,0,0,.15);
  padding:25px;
}
.contact-form input,
.contact-form textarea{
  width:100%;
  padding:12px 14px;
  border:1px solid #ccc;
  border-radius:6px;
  font-size:14px;
  margin-bottom:15px;
  font-family:inherit;
}
.contact-form button{
  width:100%;
  background:#fca311;
  color:#fff;
  border:none;
  padding:12px;
  border-radius:6px;
  font-size:15px;
  font-weight:500;
  cursor:pointer;
  transition:.25s;
}
.contact-form button:hover{
  background:#e69500;
}

/* Page header band */
.page-header{
  background:#0d1b2a;
  color:#fff;
  text-align:center;
  padding:60px 20px;
  margin-bottom:40px;
  box-shadow:0 10px 24px rgba(0,0,0,.5);
}
.page-header h2{
  font-size:28px;
  font-weight:600;
  margin-bottom:10px;
  color:#fff;
}
.page-header p{
  font-size:15px;
  font-weight:300;
  color:#fff;
  opacity:.9;
  max-width:600px;
  margin:0 auto;
}

/* Footer */
footer{
  background:#0d1b2a;
  color:#fff;
  text-align:center;
  padding:25px 15px;
  font-size:13px;
  line-height:1.4;
  box-shadow:0 -6px 20px rgba(0,0,0,.6);
}
footer p{
  color:#fff;
}

/* WhatsApp Floating Button */
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #25d366;
  color: white;
  border-radius: 50px;
  padding: 10px 15px;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  text-decoration: none;
  font-size: 14px;
  z-index: 999;
  transition: all 0.3s ease;
}
.whatsapp-float:hover {
  transform: scale(1.05);
  background: #1ebe5d;
}
.whatsapp-float img {
  width: 25px;
  height: 25px;
}

/* Responsive tweaks */
@media (max-width:768px){
  .slide-content h1{font-size:24px;}
  .slide-content p{font-size:14px;}

  /* mobile nav */
  nav ul{
    display:none;
    flex-direction:column;
    background:#0d1b2a;
    width:100%;
    text-align:center;
    padding:20px 0;
  }
  nav ul.show{
    display:flex;
  }
  .menu-toggle{
    display:block;
  }
  .header-inner{
    justify-content:space-between;
  }

  .contact-img{height:200px;}

  .whatsapp-float{
    font-size:12px;
    padding:8px 12px;
  }
  .whatsapp-float img{
    width:20px;
    height:20px;
  }
}
/* Hizmetler listesi (index sayfas覺 i癟in) */
.services-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  margin-bottom: 60px;
}

.service-item {
  background: #fff;
  border-left: 5px solid #fca311;
  border-radius: 8px;
  padding: 18px 20px;
  box-shadow: 0 6px 14px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
}

.service-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 22px rgba(0,0,0,0.12);
}

.service-item h3 {
  font-size: 17px;
  font-weight: 600;
  color: #0d1b2a;
  margin-bottom: 8px;
}

.service-item p {
  font-size: 14px;
  color: #333;
}
/* Sabit telefon barı */
.phone-bar {
  position: fixed;
  bottom: 80px; /* WhatsApp butonunun üstünde kalır */
  right: 20px;
  background: #25d366;
  color: #fff;
  font-weight: 700;
  border-radius: 50px;
  padding: 10px 18px;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
  transition: all 0.3s ease;
  z-index: 998;
}

.phone-bar:hover {
  background: #1ebe5d;
  transform: scale(1.05);
}

.phone-bar img {
  width: 22px;
  height: 22px;
}
@media (max-width:600px){
  .phone-bar {
    bottom: 70px;
    font-size: 13px;
    padding: 8px 14px;
  }
  .phone-bar img {
    width: 18px;
    height: 18px;
  }
}
/* === Araç Proje Süreci === */
.process-section {
  background: #f1f3f6;
  padding: 60px 0;
}

.process-section .section-title {
  color: #0d1b2a;
  margin-bottom: 40px;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;
}

.process-step {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
  padding: 25px 20px;
  text-align: center;
  position: relative;
  transition: all 0.3s ease;
  border-top: 5px solid #fca311;
}

.process-step:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(0,0,0,0.12);
}

.step-number {
  background: #0d1b2a;
  color: #fff;
  font-weight: 700;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

.process-step p {
  margin-top: 30px;
  font-size: 14px;
  color: #333;
  line-height: 1.5;
}
/* === Etiketler (Tags) Bölümü === */
.tags-section {
  background: #fff;
  padding: 60px 0;
}

.tags-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-top: 20px;
}

.tag-item {
  background: #f8f9fa;
  color: #0d1b2a;
  border: 1px solid #ccc;
  border-radius: 30px;
  padding: 8px 18px;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
}

.tag-item:hover {
  background: #fca311;
  color: #fff;
  border-color: #fca311;
  transform: translateY(-3px);
}
/* === Müşteri Yorumları === */
.reviews-section {
  background: #f8f9fa;
  padding: 60px 0;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;
  margin-top: 30px;
}

.review-card {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
  padding: 25px 20px;
  text-align: center;
  transition: all 0.3s ease;
  border-top: 4px solid #fca311;
}

.review-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 24px rgba(0,0,0,0.15);
}

.review-stars {
  color: #fca311;
  font-size: 20px;
  margin-bottom: 10px;
  letter-spacing: 2px;
}

.review-card p {
  font-size: 14px;
  color: #333;
  margin-bottom: 15px;
  line-height: 1.5;
  font-style: italic;
}

.review-card h4 {
  font-size: 14px;
  font-weight: 600;
  color: #0d1b2a;
}
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 40px;
  align-items: start;
}

.contact-right iframe {
  width: 100%;
  height: 400px;
  border-radius: 10px;
  box-shadow: 0 8px 18px rgba(0,0,0,0.1);
}

.map-address {
  margin-top: 15px;
  font-size: 15px;
  color: #0d1b2a;
  text-align: center;
  font-weight: 500;
}
/* Telefon kutusu (İletişim sayfası için) */
.contact-phone-box {
  text-align: center;
  margin-bottom: 25px;
}

.contact-phone-box a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #25d366;
  color: #fff;
  text-decoration: none;
  font-size: 18px;
  font-weight: 700;
  padding: 10px 25px;
  border-radius: 50px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  transition: all 0.3s ease;
}

.contact-phone-box a:hover {
  background: #1ebe5d;
  transform: translateY(-3px);
}

.contact-phone-box img {
  width: 22px;
  height: 22px;
  filter: brightness(0) invert(1);
}

@media (max-width:600px){
  .contact-phone-box a {
    font-size: 16px;
    padding: 8px 20px;
  }
}
.service-item {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 6px 16px rgba(0,0,0,0.08);
  padding: 20px;
  text-align: center;
  transition: transform 0.3s ease;
}

.service-item:hover {
  transform: translateY(-5px);
}

.service-item img.service-img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 12px;
}
