body {
  margin: 0;
  background: #000;
  color: #fff;
  font-family: Arial, sans-serif;
  overflow-x: hidden;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: #000;
  color: #fff;
  font-family: Arial, sans-serif;
}

/* TOP BAR */
.topbar {
  height: 60px;
  background: linear-gradient(#111, #000);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  border-bottom: 1px solid #1a1a1a;
}

/* HAMBURGER */
.hamburger {
  width: 30px;
  cursor: pointer;
}

.hamburger span {
  display: block;
  height: 3px;
  background: #e70700;
  margin: 6px 0;
  border-radius: 2px;
}

/* TEXT LOGO */
.logo-text {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 30px;
  font-weight: 800;
  letter-spacing: 6px;
  font-family: Arial, Helvetica, sans-serif;
  user-select: none;
}

/* VIP */
.vip-text {
  color: #e70700;
}

/* GARAGE */
.garage-text {
  color: #ffffff;
}

/* LANGUAGE BOX */
.lang-box {
  position: relative;
  font-size: 14px;
  user-select: none;
}

/* CURRENT */
.lang-current {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 12px;
  background: linear-gradient(145deg, #111, #0a0a0a);
  border: 1px solid #1a1a1a;
  cursor: pointer;
  transition: all 0.25s ease;
}

.lang-current:hover {
  background: #111;
  box-shadow: 0 0 0 1px #e7070022;
}

/* FLAG */
.lang-current img {
  width: 22px;
  border-radius: 4px;
}

/* DROPDOWN ICON */
.lang-current i {
  font-size: 11px;
  opacity: 0.7;
}

/* LIST */
.lang-list {
  position: absolute;
  right: 0;
  top: 48px;
  width: 220px;
  list-style: none;
  margin: 0;
  padding: 8px;
  border-radius: 14px;
  background: rgba(10, 10, 10, 0.9);
  backdrop-filter: blur(10px);
  border: 1px solid #1a1a1a;
  display: none;
  z-index: 999;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
}

/* ITEM */
.lang-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 12px;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.2s ease;
  font-size: 14px;
}

/* ITEM HOVER */
.lang-list li:hover {
  background: #151515;
  color: #fff;
}

/* FLAG */
.lang-list img {
  width: 20px;
  border-radius: 4px;
}

/* SIDE MENU */
.side-menu {
  position: fixed;
  top: 0;
  left: -260px;
  width: 260px;
  height: 100%;
  background: #0b0b0b;
  border-right: 1px solid #e70700;
  padding-top: 70px;
  transition: 0.3s ease;
  z-index: 200;
}

.side-menu.active {
  left: 0;
}

.side-menu ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.side-menu li a {
  display: block;
  padding: 14px 20px;
  color: #fff;
  text-decoration: none;
  font-size: 15px;
  border-bottom: 1px solid #111;
}

.side-menu li a:hover {
  background: #111;
  color: #e70700;
}

/* OVERLAY */
.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, .6);
  display: none;
  z-index: 150;
}

.overlay.active {
  display: block;
}

/* MENU TITLE */
.menu-title {
  text-align: center;
  font-size: 22px;
  font-weight: bold;
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 1px solid #1a1a1a;
}

.menu-title .vip {
  color: #fff;
}

.menu-title .garage {
  color: #e70700;
}

/* FOOTER */
footer {
  background: #0b0b0b;
  border-top: 1px solid #1a1a1a;
  padding: 30px 20px 15px;
  color: #ccc;
  font-size: 14px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  /* margin-top: auto; KODU SİLİNDİ: Artık footer içeriğe yapışık olacak */
}

/* FOOTER SECTION */
.footer-section {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

/* LOGO */
.footer-logo {
  justify-content: center;
}

.footer-logo img {
  max-width: 220px;
  height: auto;
}

/* HEADINGS */
.footer-section h3 {
  margin: 0;
  font-size: 15px;
  color: #fff;
}

.footer-section h3::after {
  content: "";
  width: 26px;
  height: 2px;
  background: #e70700;
  display: block;
  margin-top: 5px;
}

/* LINKS */
.footer-section a {
  color: #ccc;
  text-decoration: none;
  font-size: 13px;
}

.footer-section a:hover {
  color: #e70700;
}

/* FOOTER BOTTOM */
.footer-bottom {
  grid-column: 1 / -1;
  text-align: center;
  margin-top: 20px;
  padding-top: 15px;
  border-top: 1px solid #1a1a1a;
}

.footer-bottom p {
  margin: 10px 0 0;
  font-size: 12px;
  color: #777;
}

/* SOCIAL BAR */
.social-bar {
  display: flex;
  justify-content: center;
  gap: 18px;
}

.social-bar a {
  color: #fff;
  font-size: 22px;
}

.social-bar a:hover {
  color: #e70700;
}

/* MOBILE */
@media (max-width: 600px) {
  footer {
    text-align: center;
  }

  .footer-section {
    align-items: center;
  }

  .footer-section h3::after {
    margin-left: auto;
    margin-right: auto;
  }
}

/* ============================= */
/* HOME – FINAL FIX */
/* ============================= */

:root {
  --accent: #e70700;
  --bg: #000;
  --card-bg: #111;
  --text-soft: #aaa;
}

body {
  background: #000;
  color: #fff;
  overflow-x: hidden;
}

/* ============================= */
/* HERO */
/* ============================= */

#home-hero {
  position: relative;
  width: 100%;
  height: 75vh;
min-height: 520px;
max-height: 800px;

}

.hero-slider {
  width: 100%;
  height: 100%;
  position: relative;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 0.8s ease;
}

.hero-slide.active {
  opacity: 1;
}

/* KARARTMA */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.3),
    rgba(0, 0, 0, 0.95)
  );
  z-index: 1;
}

/* HERO CONTENT */
.hero-content {
  position: relative;
  z-index: 2;
  height: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.hero-content h1 {
  font-size: 42px;
  font-weight: 800;
  margin-bottom: 10px;
}

.hero-content p {
  font-size: 15px;
  color: #ccc;
  margin-bottom: 25px;
}

.hero-btn {
  padding: 14px 36px;
  background: var(--accent);
  color: #fff;
  border-radius: 30px;
  font-weight: bold;
  text-decoration: none;
  transition: 0.3s;
}

.hero-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(231, 7, 0, 0.45);
}

/* DOTS */
.hero-dots {
  position: absolute;
  bottom: 22px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 3;
}

.hero-dots span {
  width: 8px;
  height: 8px;
  background: #666;
  border-radius: 50%;
}

.hero-dots span.active {
  background: var(--accent);
}

/* ============================= */
/* HOME INFO */
/* ============================= */

#home-info {
  padding: 90px 20px 110px;
  text-align: center;
}

#home-info h2 {
  font-size: 28px;
  color: var(--accent);
  margin-bottom: 14px;
}

#home-info .desc {
  max-width: 720px;
  margin: 0 auto 65px;
  font-size: 14px;
  color: #bbb;
}

/* ============================= */
/* INFO CARDS */
/* ============================= */

.info-cards {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

/* CARD */
.info-card {
  position: relative;
  background: linear-gradient(145deg, #151515, #0a0a0a);
  border-radius: 18px;
  padding: 42px 30px;
  text-align: center;
  overflow: hidden;
  transition: 0.35s ease;
}

/* ALT ŞERİT */
.info-card::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0%;
  height: 4px;
  background: var(--accent);
  transition: width 0.4s ease;
}

.info-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 18px 40px rgba(231, 7, 0, 0.3);
}

.info-card:hover::after {
  width: 100%;
}

/* ICON */
.info-card i {
  font-size: 36px;
  color: var(--accent);
  margin-bottom: 18px;
  transition: transform 0.3s;
}

.info-card:hover i {
  transform: scale(1.15);
}

.info-card h3 {
  font-size: 18px;
  margin-bottom: 8px;
}

.info-card p {
  font-size: 14px;
  color: var(--text-soft);
}

/* ============================= */
/* RESPONSIVE */
/* ============================= */

@media (max-width: 768px) {
  #home-hero {
    height: 85vh;
  }

  .hero-content h1 {
    font-size: 30px;
  }

  #home-info {
    padding: 70px 15px 90px;
  }
}

@media (max-width: 480px) {
  .hero-btn {
    padding: 12px 26px;
    font-size: 14px;
  }
}
/* ===================== */
/* WELCOME MODAL */
/* ===================== */

.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.modal-box {
  background: linear-gradient(145deg, #111, #0a0a0a);
  border: 1px solid #e70700;
  border-radius: 18px;
  max-width: 420px;
  width: 90%;
  padding: 30px 26px;
  text-align: center;
  box-shadow: 0 0 40px rgba(231, 7, 0, 0.35);
  animation: modalFade 0.5s ease;
}

.modal-box h2 {
  margin-top: 0;
  color: #e70700;
  font-size: 24px;
  margin-bottom: 12px;
}

.modal-box p {
  font-size: 14px;
  color: #ddd;
  line-height: 1.6;
}

.modal-box button {
  margin-top: 20px;
  padding: 12px 30px;
  background: #e70700;
  border: none;
  border-radius: 25px;
  color: #fff;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s;
}

.modal-box button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(231, 7, 0, 0.5);
}

@keyframes modalFade {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
