*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

body{
  font-family:'Inter',sans-serif;
  background:#050505;
  color:white;
  overflow-x:hidden;
}

/* NAVBAR */

.navbar{
  width:100%;
  height:90px;
  padding:0 7%;
  display:flex;
  align-items:center;
  justify-content:space-between;
  position:fixed;
  top:0;
  left:0;
  z-index:1000;
  backdrop-filter:blur(20px);
  background:rgba(0,0,0,0.7);
  border-bottom:1px solid rgba(255,0,0,0.08);
}

.logo{
  font-size:32px;
  font-weight:900;
  color:#ff2b2b;
  letter-spacing:3px;
}

.nav-links{
  display:flex;
  gap:40px;
}

.nav-links a{
  text-decoration:none;
  color:white;
  font-size:15px;
  transition:0.3s;
}

.nav-links a:hover{
  color:#ff2b2b;
}

.nav-buttons{
  display:flex;
  gap:15px;
}

.btn-red{
  background:#ff2b2b;
  color:white;
  text-decoration:none;
  padding:14px 28px;
  border-radius:16px;
  font-weight:700;
  transition:0.3s;
  display:inline-block;
}

.btn-red:hover{
  transform:translateY(-3px);
  box-shadow:0 10px 30px rgba(255,43,43,0.4);
}

.btn-outline{
  border:1px solid rgba(255,255,255,0.2);
  color:white;
  text-decoration:none;
  padding:14px 28px;
  border-radius:16px;
  font-weight:700;
  transition:0.3s;
  display:inline-block;
}

.btn-outline:hover{
  border-color:#ff2b2b;
}

.hamburger{
  display:none;
  font-size:34px;
  cursor:pointer;
}

.mobile-menu{
  position:fixed;
  top:90px;
  left:-100%;
  width:100%;
  background:#0d0d0d;
  display:flex;
  flex-direction:column;
  padding:40px 7%;
  gap:30px;
  z-index:999;
  transition:0.4s;
}

.mobile-menu.active{
  left:0;
}

.mobile-menu a{
  color:white;
  text-decoration:none;
  font-size:18px;
}

/* HERO */

.hero{
  position: relative;
  min-height: 100vh;

  display:flex;
  align-items:center;

  padding:120px 80px;

  background:
  linear-gradient(rgba(0,0,0,0.60),
  rgba(0,0,0,0.60)),
  url("images/hero-bg.jpg.jpeg");

  background-size:cover;
  background-position:center;
  background-repeat:no-repeat;
}
.hero-left{
  position:relative;
  z-index:2;
}

.hero-badge{
  display:inline-flex;
  padding:12px 20px;
  border-radius:100px;
  background:rgba(255,43,43,0.1);
  border:1px solid rgba(255,43,43,0.2);
  color:#ff4a4a;
  margin-bottom:30px;
}

.hero h1{
  font-size:92px;
  line-height:0.95;
  font-weight:900;
}

.hero h1 span{
  color:#fffdfd;
  display:block;
}

.hero p{
  margin-top:35px;
  color:#ff0000;
  font-size:20px;
  line-height:1.8;
  max-width:600px;
}

.hero-buttons{
  display:flex;
  gap:20px;
  margin-top:45px;
}

.hero-stats{
  display:flex;
  gap:50px;
  margin-top:60px;
  flex-wrap:wrap;
}

.stat h3{
  color:#ff2b2b;
  font-size:40px;
  font-weight:900;
}

.stat span{
  color:#eae7e7;
  font-size:14px;
}

.hero-right{
  position:relative;
  display:flex;
  justify-content:center;
}

.hero-glow{
  position:absolute;
  width:450px;
  height:450px;
  background:rgba(255,43,43,0.2);
  border-radius:50%;
  filter:blur(120px);
}

.hero-right img{
  width:100%;
  max-width:470px;
  border-radius:40px;
  position:relative;
  z-index:2;
  border:1px solid rgba(255,43,43,0.2);
}

/* SERVICES */

.services{
  padding:120px 7%;
}

.section-title{
  text-align:center;
  margin-bottom:70px;
}

.section-title span{
  color:#ff2b2b;
  letter-spacing:4px;
  font-size:13px;
}

.section-title h2{
  margin-top:20px;
  font-size:56px;
  font-weight:900;
}

.services-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:30px;
}

.service-card{
  background:#0d0d0d;
  border:1px solid rgba(255,255,255,0.06);
  padding:45px;
  border-radius:35px;
  transition:0.3s;
}

.service-card:hover{
  transform:translateY(-8px);
  border-color:rgba(255,43,43,0.3);
}

.service-icon{
  font-size:50px;
  margin-bottom:30px;
}

.service-card h3{
  font-size:28px;
  margin-bottom:20px;
}

.service-card p{
  color:#9b9b9b;
  line-height:1.8;
}

/* CTA */

.cta{
  padding:0 7% 120px;
}

.cta-content{
  background:linear-gradient(135deg,#ff2b2b,#8f0000);
  border-radius:50px;
  padding:90px;
  position:relative;
  overflow:hidden;
}

.cta-content span{
  letter-spacing:4px;
  font-size:13px;
}

.cta-content h2{
  margin-top:25px;
  font-size:58px;
  font-weight:900;
  max-width:700px;
  line-height:1.1;
}

.cta-content p{
  margin-top:30px;
  max-width:600px;
  line-height:1.8;
  color:#ffe1e1;
}

.btn-white{
  display:inline-block;
  margin-top:40px;
  background:white;
  color:black;
  text-decoration:none;
  padding:16px 34px;
  border-radius:18px;
  font-weight:800;
}

/* FOOTER */

.footer{
  border-top:1px solid rgba(255,255,255,0.08);
  padding:50px 7%;
  display:flex;
  justify-content:space-between;
  align-items:center;
  flex-wrap:wrap;
  gap:30px;
}

.footer-logo{
  font-size:30px;
  font-weight:900;
  color:#ff2b2b;
}

.footer-links{
  display:flex;
  gap:30px;
}

.footer-links a{
  color:#8f8f8f;
  text-decoration:none;
}

.footer p{
  color:#6f6f6f;
}

/* RESPONSIVE */

@media(max-width:1100px){

  .hero{
    grid-template-columns:1fr;
  }

  .services-grid{
    grid-template-columns:1fr;
  }

}

@media(max-width:900px){

  .nav-links,
  .nav-buttons{
    display:none;
  }

  .hamburger{
    display:block;
  }

  .hero h1{
    font-size:65px;
  }

  .section-title h2{
    font-size:42px;
  }

  .cta-content{
    padding:60px 40px;
  }

  .cta-content h2{
    font-size:42px;
  }

}

@media(max-width:600px){

  .hero{
    padding-top:140px;
  }

  .hero h1{
    font-size:52px;
  }

  .hero p{
    font-size:17px;
  }

  .hero-buttons{
    flex-direction:column;
  }

  .hero-stats{
    gap:30px;
  }

  .section-title h2{
    font-size:34px;
  }

  .cta-content h2{
    font-size:34px;
  }

}
.route-container{
  position:fixed;
  bottom:80px;
  left:0;
  width:100%;
  height:120px;
  z-index:999;
  pointer-events:none;
}

.route-line{
  position:absolute;
  bottom:40px;
  left:5%;
  right:5%;
  height:2px;
  background:rgba(255,255,255,0.15);
}

.route-bike{
  position:absolute;
  bottom:20px;
  left:5%;
  font-size:40px;
  transition:0.4s ease;
}

.route-point{
  position:absolute;
  bottom:25px;
  font-size:20px;
  opacity:0.4;
}

.route-point[data-point="1"]{ left:10%; }
.route-point[data-point="2"]{ left:35%; }
.route-point[data-point="3"]{ left:60%; }
.route-point[data-point="4"]{ left:85%; }

.route-point.active{
  opacity:1;
  transform:scale(1.3);
}
.route-bike{
  transform: translateY(-50%) scaleX(-1);
}
.accordion-section{
  padding:120px 7%;
}

.accordion{
  max-width:800px;
  margin:auto;
  display:flex;
  flex-direction:column;
  gap:15px;
}

.accordion-item{
  background:#0d0d0d;
  border:1px solid rgba(255,255,255,0.06);
  border-radius:20px;
  overflow:hidden;
  transition:0.3s;
}

.accordion-title{
  width:100%;
  text-align:left;
  padding:20px;
  background:none;
  border:none;
  color:white;
  font-size:18px;
  font-weight:700;
  cursor:pointer;
}

.accordion-content{
  max-height:0;
  overflow:hidden;
  padding:0 20px;
  color:#aaa;
  line-height:1.7;
  transition:0.3s ease;
}

.accordion-item.active .accordion-content{
  max-height:200px;
  padding:0 20px 20px;
}

.accordion-item.active{
  border-color:rgba(255, 43, 43, 0.474);
}
.blog-section{
  padding:120px 7%;
}

.blog-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:30px;
  max-width:1200px;
  margin:auto;
}

.blog-card{
  background:#0d0d0d;
  border:1px solid rgba(255,255,255,0.06);
  border-radius:25px;
  padding:25px;
  transition:0.3s;
}

.blog-card:hover{
  transform:translateY(-6px);
  border-color:rgba(255, 0, 0, 0.563);
}

.blog-image{
  height:150px;
  background:rgba(255,255,255,0.03);
  border-radius:18px;
  display:flex;
  align-items:center;
  justify-content:center;
  color:#777;
  margin-bottom:20px;
}

.blog-card h3{
  font-size:18px;
  margin-bottom:15px;
}

.blog-card a{
  color:#ff2b2b;
  text-decoration:none;
  font-weight:700;
}

@media(max-width:900px){
  .blog-grid{
    grid-template-columns:1fr;
  }
}


@media(max-width:768px){

  .hero,
  .services,
  .cta,
  .blog-section{
    padding:100px 20px !important;
  }

}
@media(max-width:768px){

  .services-grid,
  .blog-grid{
    grid-template-columns:1fr !important;
  }

}
@media(max-width:768px){

  h1{
    line-height:1.1;
  }

  p{
    font-size:14px;
  }

}
.whatsapp-btn{
  position:fixed;
  bottom:25px;
  right:25px;

  background:#ff2b2b;
  color:white;

  padding:14px 18px;
  border-radius:50px;

  font-weight:700;
  text-decoration:none;

  z-index:9999;

  box-shadow:0 0 20px rgba(255,43,43,0.6);
  transition:0.3s;
}

.whatsapp-btn:hover{
  transform:translateY(-3px) scale(1.05);
  box-shadow:0 0 35px rgba(255,43,43,0.9);
}
.small-text{
  font-size:52px;
  font-weight:800;
  display:block;
  color:white;
  line-height:1.1;
}

.big-text{
  font-size:92px;
  font-weight:900;
  color:#ff2b2b;
  display:block;
  line-height:0.95;
}
.hero h1{
  line-height:1;
}

.hero-sub{
  font-size:12px !important;
  font-weight:600;
  color:white !important;
  display:block;
  margin-bottom:6px;
  letter-spacing:3px;
  text-transform:uppercase;
  opacity:0.7;
}

.hero-main{
  font-size:92px !important;
  font-weight:900;
  color:#ff2b2b !important;
  display:block;
  line-height:0.95;
}
:root{
  --bg:#050505;
  --text:#ffffff;
  --card:#0d0d0d;
  --primary:#ff2b2b;
}

body{
  background:var(--bg);
  color:var(--text);
  transition:0.3s;
}

/* LIGHT MODE */
body.light{
  --bg:#f5f5f5;
  --text:#111;
  --card:#ffffff;
  --primary:#ff2b2b;
}

/* örnek kullanım */
.service-card,
.blog-card,
.accordion-item{
  background:var(--card);
}

.logo,
.hero-main{
  color:var(--primary);
}

/* toggle button */
.theme-toggle{
  background:transparent;
  border:1px solid rgba(255, 255, 255, 0.2);
  color:white;
  padding:10px 14px;
  border-radius:12px;
  cursor:pointer;
  transition:0.3s;
}

body.light .theme-toggle{
  color:#111;
  border-color:#ddd;
}
:root{
  --bg:#050505;
  --text:#ffffff;
  --muted:#9b9b9b;
  --card:#0d0d0d;
  --primary:#ff2b2b;
  --border:rgba(255, 255, 255, 0.08);
}

body{
  background:var(--bg);
  color:var(--text);
  transition:0.3s;
}

/* LIGHT MODE */
body.light{
  --bg:#f5f5f5;
  --text:#111;
  --muted:#555555;
  --card:#ffffff;
  --border:rgba(0,0,0,0.1);
}

/* HERO */
.about-hero{
  padding:140px 7% 60px;
  text-align:center;
}

.about-hero h1{
  font-size:60px;
  font-weight:900;
}

.about-hero p{
  color:#9b9b9b;
}

/* RED LINE */
.red-line{
  width:80%;
  height:2px;
  background:#ff2b2b;
  opacity:0.4;
  margin:60px auto;
}

/* ROW SYSTEM (ÇAPRAZ YAPI) */
.about-row{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:60px;
  padding:80px 7%;
}

.about-row.reverse{
  flex-direction:row-reverse;
}

.about-text{
  flex:1;
}

.about-text h2{
  font-size:42px;
  margin-bottom:20px;
}

.about-text p{
  color:#aaaaaa;
  line-height:1.8;
  font-size:16px;
}

.about-img{
  flex:1;
}

.about-img img{
  width:100%;
  border-radius:25px;
}

/* CTA SPLIT */
.about-cta-split{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:100px 7%;
  background:#1a0000;
  border-left:6px solid #ff2b2b;
}

.cta-text h2{
  font-size:42px;
}

.cta-text p{
  color:#aaa;
}

.cta-btn{
  display:flex;
  align-items:center;
}

/* RESPONSIVE */
@media(max-width:768px){

  .about-row{
    flex-direction:column !important;
    text-align:center;
  }

  .about-cta-split{
    flex-direction:column;
    gap:20px;
    text-align:center;
  }

}
.about-menu{
  width: 100%;
  max-width: 1100px;
  margin: 40px auto;
  display: flex;
  justify-content: space-between;
  background: #fc0202;
  border: 1px solid rgb(172, 164, 164);
  border-radius: 18px;
  padding: 20px 30px;
  gap: 20px;
}

.about-menu a{
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  opacity: 0.7;
  transition: 0.3s;
  white-space: nowrap;
}

.about-menu a:hover{
  opacity: 1;
  color: #ff2b2b;
}
/* HERO ALANI */
.about-hero{
  position: relative;
  overflow: hidden;
  padding: 180px 7% 120px;
  text-align: center;
  background: #050505;
}

/* KIRMIZI IŞIK */
.about-hero::before{
  content: "";
  position: absolute;

  width: 500px;
  height: 500px;

  background: rgba(255, 0, 0, 0.25);

  border-radius: 50%;

  filter: blur(120px);

  top: -120px;
  left: -120px;

  z-index: 0;
}

/* İKİNCİ IŞIK */
.about-hero::after{
  content: "";
  position: absolute;

  width: 400px;
  height: 400px;

  background: rgba(255, 0, 0, 0.15);

  border-radius: 50%;

  filter: blur(120px);

  bottom: -100px;
  right: -100px;

  z-index: 0;
}

/* YAZILAR ÜSTTE KALSIN */
.about-hero h1,
.about-hero p{
  position: relative;
  z-index: 2;
}

.about-hero h1{
  font-size: 72px;
  margin-bottom: 25px;
}

.about-hero p{
  max-width: 700px;
  margin: auto;
  color: #e90707;
  line-height: 1.8;
  font-size: 18px;
}
/* SAYFA HERO */
.page-hero{
  position: relative;
  overflow: hidden;

  padding: 180px 7% 120px;

  text-align: center;

  background: #050505;
}

/* YAZILAR */
.page-hero h1{
  position: relative;
  z-index: 2;

  font-size: 72px;
  font-weight: 900;

  margin-bottom: 25px;
}

.page-hero p{
  position: relative;
  z-index: 2;

  max-width: 700px;

  margin: auto;

  color: #ff0000;

  line-height: 1.8;

  font-size: 18px;
}

/* KIRMIZI IŞIK 1 */
.page-hero::before{
  content: "";

  position: absolute;

  width: 500px;
  height: 500px;

  background: rgba(255,0,0,0.22);

  border-radius: 50%;

  filter: blur(120px);

  top: -120px;
  left: -120px;

  animation: glowMove 8s ease-in-out infinite alternate;
}

/* KIRMIZI IŞIK 2 */
.page-hero::after{
  content: "";

  position: absolute;

  width: 450px;
  height: 450px;

  background: rgba(255,0,0,0.12);

  border-radius: 50%;

  filter: blur(120px);

  bottom: -120px;
  right: -120px;

  animation: glowMove2 10s ease-in-out infinite alternate;
}

/* HAREKET */
@keyframes glowMove{
  from{
    transform: translate(0,0);
  }

  to{
    transform: translate(60px,40px);
  }
}

@keyframes glowMove2{
  from{
    transform: translate(0,0);
  }

  to{
    transform: translate(-50px,-30px);
  }
}
@media (max-width: 768px) {

  .nav-links,
  .nav-buttons {
    display: none;
  }

  .hamburger {
    display: block;
    font-size: 28px;
    cursor: pointer;
  }

  .mobile-menu {
    display: flex;
  }
}@media (max-width: 768px) {

  .nav-links,
  .nav-buttons {
    display: none !important;
  }

  .hamburger {
    display: block !important;
    font-size: 28px;
    cursor: pointer;
  }

  .mobile-menu {
    display: flex;
  }

  .navbar {
    justify-content: space-between;
  }
}
.cta-section{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:60px 7%;
  background:#111;
  margin-top:40px;
  gap:20px;
  flex-wrap:wrap;
}

.cta-text h1{
  color:var(--text);
}

.cta-text p{
  color:#aaa;
}

.cta-action{
  display:flex;
  align-items:center;
}
.contact-section{
  padding:80px 7%;
}

.contact-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(250px, 1fr));
  gap:30px;
  margin-top:40px;
}

.contact-card{
  background:var(--card);
  padding:30px;
  border-radius:15px;
  text-align:center;
  transition:0.3s;
  border:1px solid var(--border);
}


.contact-card:hover{
  transform:translateY(-5px);
  border-color:rgba(255,43,43,0.3);
}

.contact-icon{
  font-size:40px;
  margin-bottom:10px;
}
body.light .service-card h3,
body.light .blog-card h3,
body.light .about-text h2{
  color:#111;
}
.page-hero h1,
.about-hero h1,
.cta-text h1,
.cta-content h2{
  color:white !important;
}
body.light .hero p,
body.light .stat span,
body.light .accordion-content,
body.light .section-title h2,
body.light .service-card p,
body.light .blog-card p,
body.light .footer p,
body.light .footer-links a{
  color:#111 !important;
}
body.light .hero p,
body.light .hero-stats span,
body.light .accordion-content,
body.light .service-card p,
body.light .blog-card p,
body.light .contact-card p,
body.light .about-text p,
body.light .footer p{
  color:#111 !important;
}
body.light .nav-links a,
body.light .logo,
body.light .hamburger{
  color:white !important;
}
/* scroll sırasında navbar efekti */
.navbar.scrolled{
  background: rgba(0,0,0,0.45) !important;
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.navbar{
  transition:0.3s;
  background:rgba(0,0,0,0.9); /* başlangıç: siyah */
}

.navbar.scrolled{
  background:rgba(0,0,0,0.5);
  backdrop-filter: blur(20px);
}
body.light .hero p,
body.light .hero .hero-sub,
body.light .hero .stat span,
body.light .section-title span,
body.light .section-title h2,
body.light .service-card p,
body.light .blog-card p,
body.light .accordion-content,
body.light .footer p{
  color:#111 !important;
}
body.light .cta-content,
body.light .page-hero,
body.light .hero-badge{
  color:white !important;
}
body.light .big-text{
  color:#ff2b2b !important;
}

body.light .hero h1{
  color:#111 !important;
}

body.light .hero-sub{
  color:#333 !important;
}

body.light .stat h3{
  color:#ff2b2b !important;
}

body.light .stat span{
  color:#111 !important;
}
/* =========================
   SADECE ANASAYFA LIGHT MODE FIX
========================= */

body.light .hero .btn-red,
body.light .hero .btn-outline{
  color:#111 !important;
  border-color:rgba(0,0,0,0.25) !important;
}

body.light .hero p{
  color:#333 !important;
}

body.light .hero h1,
body.light .hero h1 span{
  color:#111 !important;
}
.mobile-menu {
  position: fixed;
  top: 90px;
  left: -100%;
  width: 100%;
  height: 100vh;
  background: #0d0d0d;
  transition: 0.3s;
  z-index: 9999;
}

.mobile-menu.active {
  left: 0;
}
.blog-image{
  width:100%;
  height:220px;
  overflow:hidden;
  border-radius:20px;
}

.blog-image img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}
/* ===================================================
   ANASAYFA HERO ALANI - HER ZAMAN BEYAZ KALACAKLAR
====================================================== */
body.light .hero h1,
body.light .hero h1 .big-text,
body.light .hero h1 .hero-sub,
body.light .hero p,
body.light .hero .stat span {
  color: #ffffff !important;
}

body.light .hero .btn-outline {
  color: #ffffff !important;
  border-color: rgba(255, 255, 255, 0.4) !important;
}

body.light .hero .btn-outline:hover {
  border-color: #ff2b2b !important;
}