:root {
  --tot-yellow: #ffd400;
  --tot-dark: #0c0c0c;
  --tot-gray: #1a1a1a;
  --tot-text: #f5f5f5;
}

body {
  margin: 0;
  font-family: "Outfit", Arial, sans-serif;
  color: var(--tot-text);
  background-color: var(--tot-dark);
}

.container {
  width: min(1100px, 90%);
  margin: auto;
}

header {
  background: #000;
  border-bottom: 2px solid var(--tot-yellow);
  position: sticky;
  top: 0;
  z-index: 10;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}

.nav img {
  height: 45px;
  border-radius: 8px;
}

.nav a {
  color: var(--tot-text);
  text-decoration: none;
  margin-left: 1rem;
  font-weight: 600;
  transition: color 0.3s;
}

.nav a:hover {
  color: var(--tot-yellow);
}

.btn, .btn-primary {
  background: var(--tot-yellow);
  color: #000;
  padding: 0.8rem 1.2rem;
  border-radius: 8px;
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.3s;
}

.btn-primary:hover {
  transform: scale(1.05);
}

.hero {
  background: linear-gradient(135deg, #000, #1a1a1a);
  position: relative;
  overflow: hidden;
}

.hero .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0,0,0,0.8) 20%, transparent);
}

.hero-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 5rem 0;
  position: relative;
  z-index: 1;
}

.hero-text {
  max-width: 50%;
}

.hero-text h1 {
  color: var(--tot-yellow);
  font-size: 2.8rem;
  margin-bottom: 1rem;
}

.hero-image img {
  width: 500px;
  border-radius: 16px;
  border: 2px solid var(--tot-yellow);
  box-shadow: 0 0 30px rgba(255, 212, 0, 0.3);
}

section {
  padding: 4rem 0;
}

section.dark {
  background: #111;
}

h2 {
  color: var(--tot-yellow);
  font-size: 2rem;
  text-align: center;
  margin-bottom: 1.5rem;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}

.card {
  background: var(--tot-gray);
  padding: 1.5rem;
  border-radius: 10px;
  border: 1px solid #333;
  transition: transform 0.3s, border 0.3s;
}

.card:hover {
  transform: translateY(-5px);
  border-color: var(--tot-yellow);
}

.fleet {
  text-align: center;
}

.fleet img {
  width: 80%;
  border-radius: 16px;
  border: 2px solid var(--tot-yellow);
  box-shadow: 0 0 20px rgba(255, 212, 0, 0.3);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: min(600px, 100%);
  margin: auto;
}

input, textarea {
  padding: 0.8rem;
  border-radius: 8px;
  border: 1px solid #333;
  background: #222;
  color: var(--tot-text);
}

button {
  cursor: pointer;
}

footer {
  background: #000;
  text-align: center;
  padding: 2rem 0;
  border-top: 2px solid var(--tot-yellow);
}

footer a {
  color: var(--tot-yellow);
  text-decoration: none;
}
