html, body {
  height: 100%;
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

* {
  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;
}

/* 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;
  }
}
footer {
  margin-top: auto;
}
/* ABOUT SECTION STYLES */
.section {
  padding: 60px 20px;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.about-title {
  font-size: 36px;
  color: #e70700;
  margin-bottom: 40px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.about-section {
  background: #0b0b0b;
  border: 1px solid #1a1a1a;
  padding: 20px;
  margin-bottom: 20px;
  border-radius: 8px;
  transition: transform 0.3s ease;
}

.about-section:hover {
  transform: translateY(-5px);
  border-color: #e70700;
}

.about-section p {
  line-height: 1.6;
  color: #ccc;
  font-size: 16px;
  margin: 0;
}

.contact-call-to-action {
  margin-top: 40px;
}

.contact-link {
  display: inline-block;
  background: #e70700;
  color: #fff;
  padding: 12px 30px;
  text-decoration: none;
  border-radius: 50px;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s ease;
}

.contact-link:hover {
  background: #b50600;
}

/* Tab yönetimi için (eğer JS ile sekmeli yapı kullanıyorsanız) */
.tab-content {
  display: block; /* Varsayılan olarak görünür */
}
/* ABOUT CONTAINER */
.about-container {
  padding: 80px 20px;
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

.about-header {
  margin-bottom: 50px;
}

.about-title {
  font-size: 42px;
  font-weight: 900;
  color: #fff;
  letter-spacing: 4px;
  margin-bottom: 10px;
}

.title-underline {
  width: 80px;
  height: 4px;
  background: #e70700;
  margin: 0 auto;
  box-shadow: 0 0 15px rgba(231, 7, 0, 0.6);
}

/* GRID VE KARTLAR */
.about-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  margin-bottom: 50px;
}

.about-card {
  background: linear-gradient(145deg, #111, #080808);
  border: 1px solid #1a1a1a;
  padding: 40px 30px;
  border-radius: 20px;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
}

.about-card:hover {
  transform: translateY(-10px);
  border-color: #e70700;
  box-shadow: 0 10px 30px rgba(231, 7, 0, 0.15);
}

.about-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: #e70700;
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.about-card:hover::before {
  transform: scaleX(1);
}

/* İKONLAR VE METİN */
.card-icon {
  font-size: 40px;
  color: #e70700;
  margin-bottom: 20px;
  display: block;
}

.about-card p {
  line-height: 1.8;
  color: #aaa;
  font-size: 15px;
  margin: 0;
  transition: color 0.3s ease;
}

.about-card:hover p {
  color: #fff;
}

/* MODERN BUTON */
.about-action {
  margin-top: 30px;
}

.modern-button {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #e70700;
  color: #fff;
  padding: 16px 40px;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 800;
  font-size: 16px;
  text-transform: uppercase;
  transition: all 0.3s ease;
  box-shadow: 0 5px 20px rgba(231, 7, 0, 0.4);
}

.modern-button:hover {
  background: #fff;
  color: #e70700;
  transform: scale(1.05);
  box-shadow: 0 8px 25px rgba(255, 255, 255, 0.2);
}

.modern-button i {
  transition: transform 0.3s ease;
}

.modern-button:hover i {
  transform: translateX(5px);
}

/* MOBIL UYUM */
@media (max-width: 768px) {
  .about-title { font-size: 32px; }
  .about-grid { grid-template-columns: 1fr; }
}