*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

body{
  font-family:Arial,Helvetica,sans-serif;
  background:#ffffff;
  color:#0f172a;
}

a{text-decoration:none;color:inherit}

.container{
  width:1100px;
  max-width:92%;
  margin:auto;
}

/* MARQUEE */
.marquee{
  background:#008000;
  color:#fff;
  overflow:hidden;
  white-space:nowrap;
  text-align: center;
}
.marquee-track{
  display:inline-block;
  padding:8px 0;
  text-align: center;
}
@keyframes marquee{
  from{transform:translateX(100%)}
  to{transform:translateX(-100%)}
}

/* HEADER */
.header{
  border-bottom:1px solid #e5e7eb;
}
.header-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:14px 0;
}
.logo{
  font-weight:900;
  font-size:18px;
}
.logo span{
  display:block;
  font-size:12px;
  font-weight:400;
}
nav a{
  margin:0 10px;
  font-size:14px;
}

/* BUTTON */
.btn{
  background:#1d4ed8;
  color:#fff;
  padding:10px 18px;
  border-radius:6px;
  display:inline-block;
  text-align:center;
}
.btn.map{background:#0ea5e9}
.btn.full{
  width:100%;
  margin-top:10px;
}

/* HERO */
.hero{
  height:420px;
  position:relative;
}
.hero img{
  animation: none !important;
  transform: none !important;
}


/* SECTION */
.section{padding:50px 0}
.section.gray{background:#ffffff}
.section h2{
  text-align:center;
  margin-bottom:30px;
}

/* QUICK ACTIONS */
.quick-actions{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:15px;
}
.qa{
  border:1px solid #e5e7eb;
  padding:22px;
  text-align:center;
  border-radius:10px;
  font-size:24px;
}
.qa span{
  display:block;
  font-size:14px;
  margin-top:8px;
}

/* CARDS */
.cards{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:20px;
}
.card{
  border:1px solid #e5e7eb;
  padding:30px;
  text-align:center;
  border-radius:10px;
  font-size:28px;
}
.card b{
  display:block;
  font-size:18px;
  margin-top:10px;
}

/* GALLERY */
.gallery{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:15px;
}
.gallery img{
  width:100%;
  border-radius:10px;
}

/* CONTACT */
.contact-box{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:30px;
}
.contact-card{
  border:1px solid #e5e7eb;
  padding:25px;
  border-radius:10px;
  background:#f8fafc;
}
.contact-card h3{
  margin-bottom:15px;
}
.contact-card p{
  margin-bottom:10px;
  font-size:15px;
}

/* MAP */
.map iframe{
  width:100%;
  height:320px;
  border:0;
  border-radius:10px;
}

/* FOOTER */
.footer{
  background:#0f172a;
  color:#fff;
  text-align:center;
  padding:25px 0;
  margin-top:50px;
}

/* MOBILE */
@media(max-width:768px){
  nav{display:none}
  .quick-actions{grid-template-columns:1fr 1fr}
  .cards{grid-template-columns:1fr 1fr}
  .gallery{grid-template-columns:1fr 1fr}
  .contact-box{grid-template-columns:1fr}
  .hero-overlay{font-size:24px}
}
.license-table{
  border:1px solid #e5e7eb;
  border-radius:10px;
  overflow:hidden;
  background:#fff;
}

.license-row{
  display:grid;
  grid-template-columns:120px 1fr 120px;
  align-items:center;
  border-bottom:1px solid #e5e7eb;
}

.license-row:last-child{
  border-bottom:none;
}

.lic-type{
  text-align:center;
  font-size:22px;
  font-weight:700;
  padding:18px;
  border-right:1px solid #e5e7eb;
}

.lic-info{
  padding:18px;
  font-size:14px;
  line-height:1.4;
}

.lic-age{
  text-align:center;
  font-weight:700;
  font-size:16px;
  padding:18px;
  border-left:1px solid #e5e7eb;
}

/* MOBİL */
@media(max-width:768px){
  .license-row{
    grid-template-columns:1fr;
    text-align:center;
  }
  .lic-type,
  .lic-age{
    border:none;
  }
  .lic-type{
    background:#f1f5f9;
  }
  .lic-age{
    background:#f8fafc;
  }
}
/* MINI HERO */
.hero.mini{
  height:300px;
}

/* APP ACTIONS */
.app-actions{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:20px;
}

.app-btn{
  border:1px solid #e5e7eb;
  padding:30px;
  border-radius:12px;
  text-align:center;
  font-size:32px;
}
.app-btn span{
  display:block;
  font-size:14px;
  margin-top:10px;
}

/* APP FEATURES */
.app-features .card{
  font-size:24px;
}
.app-features b{
  display:block;
  font-size:14px;
  margin-top:8px;
}

/* CENTER */
.center{
  text-align:center;
}

/* MOBILE */
@media(max-width:768px){
  .app-actions{
    grid-template-columns:1fr;
  }
}
/* APP HERO */
.app-hero{
  background:#f8fafc;
  padding:80px 0;
  overflow:hidden;
}
.app-hero-inner{
  display:grid;
  grid-template-columns:1fr 1fr;
  align-items:center;
}
.app-hero-left h1{
  font-size:44px;
  font-weight:800;
  margin-bottom:25px;
}

/* STORE BUTTONS */
.store-buttons{
  display:flex;
  gap:15px;
}
.store-btn{
  padding:14px 22px;
  border-radius:10px;
  font-weight:600;
}
.store-btn.android{
  background:#1d4ed8;
  color:#fff;
}
.store-btn.ios{
  background:#000;
  color:#fff;
}

/* PHONE MOCKUPS */
.app-hero-right{
  position:relative;
  height:420px;
}
.phone{
  position:absolute;
  width:240px;
}
.phone-1{
  left:80px;
  top:0;
}
.phone-2{
  left:200px;
  top:60px;
}

/* FEATURES */
.feature-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:30px;
  text-align:center;
}
.feature span{
  display:block;
  font-size:32px;
  margin-bottom:10px;
  color:#1d4ed8;
}

/* SCREENS */
.screen-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:20px;
}
.screen-grid img{
  width:100%;
  border-radius:20px;
}

/* CTA */
.btn.big{
  padding:14px 28px;
  font-size:16px;
}

/* MOBILE */
@media(max-width:900px){
  .app-hero-inner{
    grid-template-columns:1fr;
    text-align:center;
  }
  .app-hero-right{
    margin-top:40px;
    height:360px;
  }
  .phone{
    position:relative;
    left:0;
    top:0;
    margin:0 10px;
  }
  .feature-grid{
    grid-template-columns:1fr 1fr;
  }
  .screen-grid{
    grid-template-columns:1fr;
  }
}
/* PAGE HERO */
.page-hero{
  padding:50px 0;
  background:#fff;
}
.page-hero-inner{
  display:grid;
  grid-template-columns:1.1fr .9fr;
  gap:30px;
  align-items:center;
}
.page-hero-left h1{
  font-size:40px;
  font-weight:800;
  margin-bottom:18px;
}
.page-hero-right img{
  width:100%;
  border-radius:14px;
  border:1px solid #e5e7eb;
}

/* MINI STATS */
.mini-stats{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
}
.stat{
  border:1px solid #e5e7eb;
  border-radius:12px;
  padding:10px 12px;
  display:flex;
  gap:10px;
  align-items:center;
  background:#f8fafc;
}
.stat b{font-size:18px}
.stat span{font-size:13px}

/* ABOUT GRID */
.about-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:18px;
}
.about-card{
  border:1px solid #e5e7eb;
  border-radius:14px;
  padding:22px;
  background:#fff;
}
.about-ico{font-size:28px;margin-bottom:10px}
.about-title{font-weight:800;margin-bottom:8px}
.about-text{font-size:14px;line-height:1.5;color:#334155}

/* ABOUT GALLERY (override) */
.about-gallery img{
  border:1px solid #e5e7eb;
}

/* MOBILE */
@media(max-width:900px){
  .page-hero-inner{grid-template-columns:1fr}
  .about-grid{grid-template-columns:1fr}
}
/* SIMPLE HERO */
.page-hero.simple{
  padding:40px 0;
  background:#fff;
}
.page-hero.simple h1{
  font-size:38px;
  font-weight:800;
}

/* LICENSE TABLE */
.license-table{
  border:1px solid #e5e7eb;
  border-radius:14px;
  overflow:hidden;
  background:#fff;
}

.license-row{
  display:grid;
  grid-template-columns:140px 1fr 140px;
  align-items:center;
  border-bottom:1px solid #e5e7eb;
}
.license-row:last-child{
  border-bottom:none;
}

.lic-type{
  text-align:center;
  font-size:22px;
  font-weight:800;
  padding:18px;
  border-right:1px solid #e5e7eb;
}

.lic-info{
  padding:18px;
  font-size:14px;
  color:#334155;
}

.lic-age{
  text-align:center;
  font-weight:800;
  font-size:16px;
  padding:18px;
  border-left:1px solid #e5e7eb;
}

/* MOBILE */
@media(max-width:768px){
  .license-row{
    grid-template-columns:1fr;
    text-align:center;
  }
  .lic-type,
  .lic-age{
    border:none;
    background:#f8fafc;
  }
}
/* CONTACT ACTIONS */
.contact-actions{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:16px;
}
.contact-action{
  border:1px solid #e5e7eb;
  padding:26px;
  border-radius:14px;
  text-align:center;
  font-size:28px;
  background:#fff;
}
.contact-action span{
  display:block;
  font-size:14px;
  margin-top:8px;
}

/* CONTACT GRID */
.contact-grid{
  display:grid;
  grid-template-columns:1fr 1.2fr;
  gap:30px;
}
.contact-card.big{
  border:1px solid #e5e7eb;
  border-radius:14px;
  padding:28px;
  background:#f8fafc;
}
.contact-card.big h3{
  margin-bottom:18px;
}
.contact-line{
  display:flex;
  justify-content:space-between;
  padding:10px 0;
  font-size:14px;
}

/* MOBILE */
@media(max-width:900px){
  .contact-actions{
    grid-template-columns:1fr;
  }
  .contact-grid{
    grid-template-columns:1fr;
  }
}
/* VEHICLE GRID */
.vehicle-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:18px;
}
.vehicle-grid img{
  width:100%;
  border-radius:14px;
  border:1px solid #e5e7eb;
}

/* VEHICLE DETAIL */
.vehicle-detail-grid{
  display:grid;
  gap:40px;
}

.vehicle-detail{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:30px;
  align-items:center;
}
.vehicle-detail.reverse{
  grid-template-columns:1fr 1fr;
  direction:rtl;
}
.vehicle-detail.reverse *{
  direction:ltr;
}

.vehicle-detail img{
  width:100%;
  border-radius:16px;
  border:1px solid #e5e7eb;
}

.vehicle-info h3{
  font-size:24px;
  margin-bottom:14px;
}
.vehicle-info ul{
  margin-bottom:18px;
  padding-left:18px;
}
.vehicle-info li{
  margin-bottom:6px;
  font-size:14px;
}

/* MOBILE */
@media(max-width:900px){
  .vehicle-grid{
    grid-template-columns:1fr 1fr;
  }
  .vehicle-detail,
  .vehicle-detail.reverse{
    grid-template-columns:1fr;
    direction:ltr;
  }
}
/* VEHICLE VIDEO */
.vehicle-media{
  position:relative;
  cursor:pointer;
}
.vehicle-media img{
  width:100%;
  border-radius:16px;
  border:1px solid #e5e7eb;
}

/* PLAY ICON */
.video-play{
  position:absolute;
  inset:0;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:64px;
  color:#fff;
  background:rgba(0,0,0,.35);
  border-radius:16px;
}

/* MODAL (zaten varsa ekleme) */
.video-modal{
  position:fixed;
  inset:0;
  background:rgba(0,0,0,.7);
  display:none;
  align-items:center;
  justify-content:center;
  z-index:999;
}
.video-modal.show{
  display:flex;
}
.video-modal-inner{
  width:90%;
  max-width:900px;
  position:relative;
}
.video-modal-inner iframe{
  width:100%;
  height:500px;
  border-radius:12px;
  border:0;
}
.close{
  position:absolute;
  top:-40px;
  right:0;
  color:#fff;
  font-size:28px;
  cursor:pointer;
}

/* MOBILE */
@media(max-width:768px){
  .video-modal-inner iframe{
    height:260px;
  }
}
/* ARAÇ GRID */
.vehicle-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:18px;
}
.vehicle-grid img{
  width:100%;
  border-radius:14px;
  border:1px solid #e5e7eb;
}

/* VIDEO GRID */
.video-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:18px;
}
.video-card{
  position:relative;
  border-radius:14px;
  overflow:hidden;
  cursor:pointer;
}
.video-card img{
  width:100%;
  height:200px;
  object-fit:cover;
}
.video-card span{
  position:absolute;
  bottom:10px;
  left:10px;
  color:#fff;
  font-size:14px;
}
.play{
  position:absolute;
  inset:0;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:48px;
  color:#fff;
  background:rgba(0,0,0,.35);
}

/* MODAL */
.video-modal{
  position:fixed;
  inset:0;
  background:rgba(0,0,0,.7);
  display:none;
  align-items:center;
  justify-content:center;
  z-index:999;
}
.video-modal.show{
  display:flex;
}
.video-modal-inner{
  width:90%;
  max-width:900px;
}
.video-modal-inner video{
  width:100%;
  border-radius:14px;
}

/* MOBILE */
@media(max-width:900px){
  .vehicle-grid,
  .video-grid{
    grid-template-columns:1fr 1fr;
  }
}
/* =========================
   GLOBAL RESPONSIVE
========================= */

/* TABLET */
@media (max-width: 1024px) {
  .container {
    max-width: 94%;
  }

  .hero {
    height: 340px;
  }

  .hero-overlay {
    font-size: 28px;
  }
}

/* MOBİL */
@media (max-width: 768px) {

  /* HEADER */
  .header-inner {
    flex-direction: column;
    gap: 12px;
  }

  .logo {
    text-align: center;
  }

  nav {
    display: none;
  }

  .btn {
    width: 100%;
    text-align: center;
  }

  /* HERO */
  .hero {
    height: 260px;
  }

  .hero-overlay {
    font-size: 22px;
    padding: 0 16px;
    text-align: center;
  }

  /* QUICK ACTIONS */
  .quick-actions {
    grid-template-columns: 1fr 1fr;
  }

  /* VEHICLE GRID */
  .vehicle-grid {
    grid-template-columns: 1fr 1fr;
  }

  /* VIDEO GRID */
  .video-grid {
    grid-template-columns: 1fr 1fr;
  }

  /* VEHICLE DETAIL */
  .vehicle-detail,
  .vehicle-detail.reverse {
    grid-template-columns: 1fr;
    direction: ltr;
  }

  /* LICENSE TABLE */
  .license-row {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .lic-type,
  .lic-age {
    border: none;
    background: #f8fafc;
  }

  /* CONTACT */
  .contact-box,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .contact-actions {
    grid-template-columns: 1fr;
  }

  /* VIDEO MODAL */
  .video-modal-inner iframe,
  .video-modal-inner video {
    height: 240px;
  }
}

/* KÜÇÜK TELEFON */
@media (max-width: 480px) {

  .hero {
    height: 220px;
  }

  .hero-overlay {
    font-size: 18px;
  }

  .quick-actions {
    grid-template-columns: 1fr;
  }

  .vehicle-grid,
  .video-grid {
    grid-template-columns: 1fr;
  }

  .play {
    font-size: 40px;
  }
}
/* HAMBURGER */
.hamburger {
  display: none;
  font-size: 28px;
  cursor: pointer;
}

/* MOBILE MENU */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: #fff;
  z-index: 9999;
  display: none;
  flex-direction: column;
  padding: 30px;
}

.mobile-menu a {
  font-size: 18px;
  padding: 12px 0;
  border-bottom: 1px solid #e5e7eb;
}

.close-menu {
  font-size: 26px;
  align-self: flex-end;
  cursor: pointer;
  margin-bottom: 20px;
}

/* MOBILE */
@media (max-width: 768px) {

  nav {
    display: none;
  }

  .hamburger {
    display: block;
  }
}

@keyframes heroFadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* HOVER ANIMATION – DESKTOP ONLY */
@media (min-width: 1024px) {

  .vehicle-grid img,
  .video-card,
  .vehicle-detail img,
  .about-card,
  .contact-action {
    transition: all .35s ease;
  }

  .vehicle-grid img:hover,
  .vehicle-detail img:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 20px 40px rgba(0,0,0,.15);
  }

  .video-card:hover {
    transform: scale(1.04);
    box-shadow: 0 25px 45px rgba(0,0,0,.25);
  }

  .about-card:hover,
  .contact-action:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 36px rgba(0,0,0,.12);
  }

  .video-card:hover .play {
    background: rgba(0,0,0,.15);
    transform: scale(1.1);
  }
}
/* =========================
   QUICK ACTION ANIMATIONS
========================= */

/* İlk yüklenme animasyonu */
.qa-anim {
  opacity: 0;
  transform: translateY(25px);
  animation: qaFadeUp .8s ease forwards;
}

/* Her buton hafif gecikmeli gelsin */
.qa-anim:nth-child(1){ animation-delay:.1s }
.qa-anim:nth-child(2){ animation-delay:.25s }
.qa-anim:nth-child(3){ animation-delay:.4s }
.qa-anim:nth-child(4){ animation-delay:.55s }

@keyframes qaFadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* MASAÜSTÜ HOVER */
@media (min-width: 1024px) {
  .qa-anim {
    transition: all .35s ease;
  }

  .qa-anim:hover {
    transform: translateY(-8px) scale(1.05);
    box-shadow: 0 20px 40px rgba(0,0,0,.18);
  }

  .qa-anim:hover span {
    letter-spacing: .5px;
  }
}
/* =========================
   LICENSE ANIMATIONS
========================= */

/* Tablo ilk görünüm */
.animate-license .lic-anim {
  opacity: 0;
  transform: translateY(30px);
  animation: licenseFadeUp .7s ease forwards;
}

/* Satırlar sırayla gelsin */
.animate-license .lic-anim:nth-child(1){ animation-delay:.1s }
.animate-license .lic-anim:nth-child(2){ animation-delay:.2s }
.animate-license .lic-anim:nth-child(3){ animation-delay:.3s }
.animate-license .lic-anim:nth-child(4){ animation-delay:.4s }
.animate-license .lic-anim:nth-child(5){ animation-delay:.5s }
.animate-license .lic-anim:nth-child(6){ animation-delay:.6s }
.animate-license .lic-anim:nth-child(7){ animation-delay:.7s }
.animate-license .lic-anim:nth-child(8){ animation-delay:.8s }
.animate-license .lic-anim:nth-child(9){ animation-delay:.9s }
.animate-license .lic-anim:nth-child(10){ animation-delay:1s }
.animate-license .lic-anim:nth-child(11){ animation-delay:1.1s }

@keyframes licenseFadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* MASAÜSTÜ HOVER CANLILIK */
@media (min-width: 1024px) {
  .license-row {
    transition: all .3s ease;
  }

  .license-row:hover {
    background: #f8fafc;
    transform: translateX(6px);
  }

  .license-row:hover .lic-type {
    color: #1d4ed8;
  }
}

/* =================================================
   GLOBAL TEXT ANIMATION SYSTEM (PRO)
================================================= */



/* görünür olunca */
.text-anim.show{
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

/* HERO özel – daha ağır gelsin */
.hero-overlay.text-anim{
  font-size: 36px;
  transition-duration: 1.2s;
}



.char.show{
  opacity:1;
  transform:translateY(0);
}
/* =====================================
   HERO BACKGROUND MOTION
===================================== */

.hero {
  overflow: hidden;
}

/* Arka plan yavaş kayma */
.hero img {
  animation: heroFloat 18s ease-in-out infinite alternate;
  transform-origin: center;
}

@keyframes heroFloat {
  from {
    transform: scale(1.05) translateY(0);
  }
  to {
    transform: scale(1.1) translateY(-20px);
  }
}

/* HERO ışık efekti */
.hero::after {
  content:"";
  position:absolute;
  inset:-40%;
  background:
    radial-gradient(circle at 30% 30%, rgba(255,255,255,.08), transparent 40%),
    radial-gradient(circle at 70% 70%, rgba(255,255,255,.06), transparent 45%);
  animation: glowMove 16s linear infinite;
  pointer-events:none;
}

@keyframes glowMove {
  from { transform: translate(0,0); }
  to { transform: translate(-120px,-120px); }
}
/* =====================================
   SECTION BACKGROUND MOTION
===================================== */

.section.gray {
  position: relative;
  overflow: hidden;
}

.section.gray::before {
  content:"";
  position:absolute;
  inset:0;
  background:
    linear-gradient(120deg,
      rgba(0,0,0,.03),
      rgba(0,0,0,.01),
      rgba(0,0,0,.03));
  animation: sectionFlow 14s ease-in-out infinite;
  pointer-events:none;
}

@keyframes sectionFlow {
  0%   { background-position:0% 50% }
  50%  { background-position:100% 50% }
  100% { background-position:0% 50% }
}
/* =====================================
   TEXT + BACKDROP EFFECT
===================================== */

.text-anim.show {
  text-shadow:
    0 10px 30px rgba(0,0,0,.12),
    0 0 40px rgba(255,255,255,.06);
}
/* ================================
   HERO PARTICLE CANVAS
================================ */

#heroParticles {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero img {
  position: relative;
  z-index: 0;
}

.hero-overlay {
  position: relative;
  z-index: 2;
}

/* Yazının arkasında glow */

/* ================================
   TITLE PARTICLES
================================ */

.particle-title {
  position: relative;
  overflow: hidden;
}

.titleParticles {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.particle-title {
  position: relative;
  z-index: 1;
}
/* ===========================
   HERO HARF ANİMASYONU
=========================== */

.hero-overlay {
  display: flex;
  gap: 2px;
}

.hero-overlay .char {
  opacity: 0;
  transform: translateY(30px);
  display: inline-block;
  transition: all .6s ease;
}

.hero-overlay .char.show {
  opacity: 1;
  transform: translateY(0);
}

/* ===========================
   GENEL YAZI ANİMASYONU
=========================== */



.text-anim.show {
  opacity: 1;
  transform: translateY(0);
  transition: opacity .7s ease, transform .7s ease;
}
/* =========================
   FINAL TEXT SYSTEM (TEK)
========================= */

/* genel yazılar */
.text-anim{
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .8s ease, transform .8s ease;
}

.text-anim.show{
  opacity: 1;
  transform: translateY(0);
}

/* HERO */
.hero-overlay{
  position:absolute;
  inset:0;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:36px;
  font-weight:800;
  color:#fff;
  z-index:2;
  gap:2px;
}

/* harfler */
.hero-overlay .char{
  opacity:0;
  transform: translateY(30px);
  display:inline-block;
  transition: all .6s ease;
}

.hero-overlay .char.show{
  opacity:1;
  transform: translateY(0);
}
/* =========================
   3D HERO TEXT (PRO)
========================= */

.hero-3d{
  font-size:38px;
  font-weight:900;
  letter-spacing:1px;
  color:#fff;
  text-align:center;

  /* 3D hissi */
  text-shadow:
    0 2px 0 #ccc,
    0 4px 0 #b3b3b3,
    0 6px 0 #999,
    0 8px 15px rgba(0,0,0,.45);

  /* cam efekti */
  background:rgba(255,255,255,.08);
  backdrop-filter: blur(6px);
  padding:18px 34px;
  border-radius:18px;

  /* perspektif */
  transform: perspective(800px) rotateX(6deg);
  box-shadow:
    0 30px 60px rgba(0,0,0,.45),
    inset 0 0 30px rgba(255,255,255,.15);
}
.title-3d{
  font-size:28px;
  font-weight:800;
  text-align:center;
  margin-bottom:30px;
  color:#0f172a;

  text-shadow:
    0 1px 0 #e5e7eb,
    0 3px 8px rgba(0,0,0,.18);
}
.qa,
.video-card,
.card{
  box-shadow:
    0 10px 25px rgba(0,0,0,.12),
    inset 0 1px 0 rgba(255,255,255,.6);
  transform: perspective(800px) translateZ(0);
}

@media (min-width:1024px){
  .qa:hover,
  .video-card:hover{
    transform:
      perspective(800px)
      translateY(-6px)
      rotateX(3deg);
    box-shadow:
      0 25px 50px rgba(0,0,0,.25);
  }
}
.gallery img{
  box-shadow:
    0 18px 40px rgba(0,0,0,.2);
  transform: perspective(900px);
}

.gallery img:hover{
  transform:
    perspective(900px)
    rotateY(6deg)
    scale(1.03);
}
/* ================================
   APPLE / TESLA HERO (UPDATED)
================================ */

.apple-hero{
  position:relative;
  height: 100vh;              /* ⬅ %80 YÜKSEKLİK */
  min-height:460px;
  overflow:hidden;
  background:#000;
}

/* Arka plan görseli */
.apple-hero img{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
  filter:brightness(.55) contrast(1.1);
}



/* İçerik */
.hero-content{
  position:relative;
  z-index:2;
  height:100%;
  display:flex;
  flex-direction:column;
  justify-content:center;
  align-items:center;
  text-align:center;
  color:#fff;
  padding:0 20px;
}

/* ANA BAŞLIK */
.apple-title{
  font-size:60px;
  font-weight:900;
  line-height:1.05;
  letter-spacing:-1px;
  margin-bottom:18px;
  text-shadow:
    0 10px 30px rgba(0,0,0,.6),
    0 0 40px rgba(255,255,255,.12);
}

/* YEŞİLYURT */
.apple-title{
  color:#009845;           /* ⬅ YEŞİLYURT RENGİ */
}

/* SÜRÜCÜ KURSU */
.apple-title span{
  display:block;
  font-weight:600;
  font-size:40px;
  color:#eb812b;           /* ⬅ SÜRÜCÜ KURSU RENGİ */
  opacity:1;
}

/* ALT METİN */
.apple-sub{
  max-width:620px;
  font-size:17px;
  opacity:.85;
  margin-bottom:32px;
  color:#f1f5f9;
}

/* BUTONLAR */
.apple-actions{
  display:flex;
  gap:16px;
  flex-wrap:wrap;
  justify-content:center;
}

.apple-btn{
  padding:14px 30px;
  border-radius:999px;
  font-size:15px;
  font-weight:600;
  backdrop-filter: blur(8px);
  transition:.25s ease;
}

/* Ana buton */
.apple-btn.primary{
  background:#fff;
  color:#000;
}

/* Şeffaf buton */
.apple-btn.ghost{
  background:rgba(255,255,255,.12);
  color:#fff;
  border:1px solid rgba(255,255,255,.25);
}

/* Hover */
@media (min-width:1024px){
  .apple-btn:hover{
    transform:translateY(-3px);
    box-shadow:0 20px 40px rgba(0,0,0,.45);
  }
}

/* MOBİL */
@media(max-width:768px){
  .apple-hero{
    height:70vh;
  }

  .apple-title{
    font-size:40px;
  }

  .apple-title span{
    font-size:26px;
  }

  .apple-sub{
    font-size:15px;
  }
}
/* YEŞİLYURT YAZISI */
.apple-title{
  color:#009845;
  text-shadow:
    -2px -2px 0 #000,
     2px -2px 0 #000,
    -2px  2px 0 #000,
     2px  2px 0 #000,
     0   6px 20px rgba(0,0,0,.6);
}

/* SÜRÜCÜ KURSU YAZISI */
.apple-title span{
  color:#eb812b;
  text-shadow:
    -2px -2px 0 #000,
     2px -2px 0 #000,
    -2px  2px 0 #000,
     2px  2px 0 #000,
     0   6px 20px rgba(0,0,0,.6);
}
/* HEADER NAV HİZALAMA */
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav {
  display: flex;
  align-items: center;
  gap: 22px;
}

.header-logo {
  height: 100px;
  width: auto;
}
/* NAV LİNKLER */
.nav a {
  font-weight: 700;
  font-size: 15px;
  color: #111;
  position: relative;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  background: #000;
  transition: .25s;
}

.nav a:hover::after {
  width: 100%;
}
.header-actions {
  margin-left: 32px; /* ← menüye yaklaştırır */
}

.btn {
  padding: 10px 18px;
  font-weight: 700;
  border-radius: 8px;
}
/* APPLE SECTION TITLE */
.apple-section-title{
  text-align:center;
  font-size:32px;
  font-weight:800;
  margin-bottom:40px;
}

/* GRID */
.price-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
  gap:20px;
}

/* CARD */
.price-card{
  border:1px solid #e5e7eb;
  border-radius:18px;
  padding:30px;
  text-align:center;
  background:#fff;
  transition:.35s ease;
}
.price-card b{
  display:block;
  font-size:22px;
}
.price-card span{
  margin-top:10px;
  display:block;
  font-size:16px;
}

/* HIGHLIGHT */
.price-card.highlight{
  background:linear-gradient(135deg,#009845,#eb812b);
  color:#fff;
}

/* TABLE */
.price-table{
  max-width:520px;
  margin:auto;
}
.price-table .row{
  display:flex;
  justify-content:space-between;
  padding:18px 0;
  border-bottom:1px solid #e5e7eb;
  font-size:16px;
}

/* HOVER */
@media(min-width:1024px){
  .price-card:hover{
    transform:translateY(-8px);
    box-shadow:0 25px 50px rgba(0,0,0,.15);
  }
}
/* ================================
   LICENSE ACCORDION (APPLE STYLE)
================================ */

.license-accordion{
  max-width:900px;
  margin:auto;
}

.license-item{
  border:1px solid #e5e7eb;
  border-radius:16px;
  margin-bottom:16px;
  overflow:hidden;
  background:#fff;
}

.license-header{
  width:100%;
  padding:22px 26px;
  background:#fff;
  border:none;
  font-size:20px;
  font-weight:800;
  display:flex;
  justify-content:space-between;
  align-items:center;
  cursor:pointer;
  transition:.3s ease;
}

.license-header span{
  font-size:24px;
  transition:.3s ease;
}

.license-header:hover{
  background:#f8fafc;
}

.license-body{
  max-height:0;
  overflow:hidden;
  transition:max-height .45s ease, padding .3s ease;
  padding:0 26px;
}

.license-body ul{
  padding:20px 0;
  font-size:15px;
  line-height:1.6;
}

.license-body ul ul{
  margin-top:8px;
  padding-left:18px;
  font-size:14px;
}

.license-item.active .license-body{
  max-height:600px;
}

.license-item.active .license-header span{
  transform:rotate(45deg);
}

/* MOBİL */
@media(max-width:768px){
  .license-header{
    font-size:18px;
  }
}
/* ================================
   LICENSE ACCORDION (PRO)
================================ */

.license-accordion {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.license-item {
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  overflow: hidden;
  background: #fff;
}

/* HEADER */
.license-header {
  width: 100%;
  background: #f8fafc;
  border: none;
  padding: 18px 20px;
  font-size: 16px;
  font-weight: 700;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.license-header:hover {
  background: #eef2f7;
}

/* + icon */
.license-header .plus {
  font-size: 22px;
  transition: transform .35s ease;
}

/* BODY */
.license-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height .45s ease, padding .35s ease;
  padding: 0 20px;
}

/* ACTIVE */
.license-item.active .license-body {
  max-height: 3000px; /* güvenli büyük değer */
  padding: 20px;
}

.license-item.active .plus {
  transform: rotate(45deg);
}

/* GRID */
.lb-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  margin-top: 16px;
}

/* TEXT */
.license-body p {
  font-size: 14px;
  line-height: 1.6;
}

.license-body h4 {
  margin: 14px 0 6px;
  font-size: 15px;
}

.license-body ul,
.license-body ol {
  padding-left: 18px;
  font-size: 14px;
}

.lb-note {
  margin-top: 18px;
  background: #f1f5f9;
  padding: 12px 14px;
  border-radius: 10px;
  font-size: 13px;
}

/* ================================
   MOBILE FIX
================================ */
@media (max-width: 768px) {

  .license-header {
    font-size: 15px;
    padding: 16px;
  }

  .license-body {
    padding: 0 16px;
  }

  .license-item.active .license-body {
    padding: 16px;
  }

  .lb-grid {
    grid-template-columns: 1fr; /* 🔥 MOBİLDE TEK KOLON */
  }

}
/* =========================
   HAMBURGER MENU
========================= */

.hamburger {
  display: none;
  font-size: 30px;
  cursor: pointer;
}

/* MOBILE MENU OVERLAY */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: #fff;
  z-index: 9999;
  padding: 24px;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform .35s ease;
}

.mobile-menu.active {
  transform: translateX(0);
}

.mobile-menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 20px;
}

.close-menu {
  font-size: 26px;
  cursor: pointer;
}

.mobile-menu a {
  padding: 14px 0;
  font-size: 18px;
  border-bottom: 1px solid #e5e7eb;
}

.mobile-call {
  margin-top: 20px;
  background: #1d4ed8;
  color: #fff;
  padding: 14px;
  text-align: center;
  border-radius: 10px;
  font-weight: 600;
}

/* MOBILE ONLY */
@media (max-width: 768px) {
  nav {
    display: none;
  }

  .hamburger {
    display: block;
  }
}
/* =======================
   MOBİL HEADER FIX
======================= */
@media (max-width: 900px) {

  .nav {
    display: none;
  }

  .header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

 
@media (max-width: 768px) {
  .header-logo {
    height: 110px;
  }
}

  .header-actions {
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .header .btn {
    padding: 8px 14px;
    font-size: 14px;
  }

  .hamburger {
    display: block;
    font-size: 26px;
    cursor: pointer;
  }
}
.header-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
}

/* LOGO – TAM SOL */
.header-left {
  display: flex;
  align-items: center;
}

/* MENÜ – TAM ORTA */
.header-center {
  display: flex;
  justify-content: center;
  gap: 15px;
}

/* SAĞ TARAF */
.header-right {
  display: flex;
  align-items: center;
  gap: 50px;
}

/* Logo boyutu */
.header-logo {
  height: 80px;
  width: auto;
}
/* =========================
   MOBİL HEADER DÜZENİ
========================= */
@media (max-width: 768px) {

  /* Orta menüyü tamamen kapat */
  .header-center {
    display: none !important;
  }

  /* Header hizalama */
  .header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  /* Logo solda kalsın */
  .header-left {
    flex: 1;
  }

  .header-logo {
    height: 90px;
  }

  /* Sağda sadece hamburger + ara */
  .header-right {
    display: flex;
    align-items: center;
    gap: 10px;
  }

  /* Masaüstü Ara butonu mobilde istersen gizle */
  .header-right .btn {
    display: none;
  }
}
