/* =========================
   RESET
========================= */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

body {
  background: #0b1220;
  color: white;
  overflow-x: hidden;
}

/* =========================
   NAVBAR
========================= */

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;

  display: flex;
  justify-content: space-between;
  align-items: center;

  padding: 18px 8%;

  background: rgba(11, 18, 32, 0.85);
  backdrop-filter: blur(12px);

  border-bottom: 1px solid rgba(255, 107, 0, 0.2);

  z-index: 1000;
}

.logo {
  font-size: 26px;
  font-weight: 800;
  color: #ff6b00;
  letter-spacing: 1px;
}

.navbar nav {
  display: flex;
  gap: 22px;
}

.navbar nav a {
  color: #cbd5e1;
  text-decoration: none;
  font-size: 14px;
  transition: 0.3s;
}

.navbar nav a:hover,
.navbar nav a.active {
  color: #00e5ff;
}

/* SEARCH */

.search-box {
  display: flex;
  align-items: center;
}

.search-box input {
  padding: 10px 14px;

  border: none;
  outline: none;

  background: #141e30;
  color: white;

  border-radius: 50px 0 0 50px;
  width: 200px;
}

.search-box button {
  padding: 10px 14px;

  border: none;
  cursor: pointer;

  background: #ff6b00;
  color: white;

  border-radius: 0 50px 50px 0;
}

/* =========================
   HERO
========================= */

.contact-hero {
  height: 100vh;
  width: 100%;

  display: flex;
  align-items: center;

  padding: 0 8%;

  background:
    linear-gradient(90deg, rgba(11, 18, 32, 0.92), rgba(11, 18, 32, 0.55)),
    url("automotive-media.webp");

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  position: relative;
}

.hero-content {
  max-width: 750px;
  position: relative;
  z-index: 2;
}

.hero-tag {
  display: inline-block;

  background: #ff6b00;
  color: white;

  padding: 12px 22px;
  border-radius: 50px;

  font-size: 13px;
  font-weight: 700;

  margin-bottom: 22px;

  letter-spacing: 0.5px;
}

.hero-content h1 {
  font-size: 56px;
  line-height: 1.1;

  margin-bottom: 18px;

  color: #ffffff;
  font-weight: 800;
  animation: heroBounce 1s ease-out;
}

@keyframes heroBounce {
  0% {
    transform: translateY(50px);
  }

  70% {
    transform: translateY(-8px);
  }

  100% {
    transform: translateY(0);
  }
}

.hero-content p {
  color: #cbd5e1;

  font-size: 18px;
  line-height: 1.7;

  max-width: 650px;
}

body {
  margin: 0;
  padding: 0;
}

/* =========================
   CONTACT SECTION
========================= */

.contact-section {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 40px;

  padding: 80px 8%;
}

/* =========================
   CONTACT INFO
========================= */

.contact-info {
  background: #141e30;
  padding: 35px;

  border-radius: 18px;

  border: 1px solid rgba(255, 107, 0, 0.1);
}

.contact-info h2 {
  color: #00e5ff;
  margin-bottom: 20px;
}

.contact-info p {
  color: #cbd5e1;
  margin-bottom: 14px;
  line-height: 1.6;
}

.social {
  margin-top: 25px;
  display: flex;
  gap: 15px;
}

.social a {
  color: #ff6b00;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

.social a:hover {
  color: #00e5ff;
}

/* =========================
   FORM
========================= */

.contact-form {
  background: #141e30;
  padding: 35px;

  border-radius: 18px;

  border: 1px solid rgba(0, 229, 255, 0.1);
}

.contact-form h2 {
  color: #ff6b00;
  margin-bottom: 25px;
}

.form-group {
  margin-bottom: 18px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;

  padding: 14px 16px;

  border: none;
  outline: none;

  background: #0b1220;
  color: white;

  border-radius: 12px;

  border: 1px solid rgba(255, 255, 255, 0.08);

  transition: 0.3s;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #00e5ff;
  box-shadow: 0 0 10px rgba(0, 229, 255, 0.2);
}

.contact-form button {
  width: 100%;

  padding: 14px;

  border: none;
  cursor: pointer;

  background: linear-gradient(90deg, #ff6b00, #ff3d00);
  color: white;

  font-weight: 700;

  border-radius: 12px;

  transition: 0.3s;
}

.contact-form button:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(255, 107, 0, 0.25);
}

/* =========================
   FOOTER
========================= */

footer {
  background: #070b14;

  text-align: center;

  padding: 60px 8% 25px;

  border-top: 1px solid rgba(255, 107, 0, 0.1);
}

.footer-content h2 {
  color: #ff6b00;
  margin-bottom: 10px;
}

.footer-content p {
  color: #94a3b8;
}

.footer-links {
  margin-top: 20px;

  display: flex;
  justify-content: center;
  gap: 18px;

  flex-wrap: wrap;
}

.footer-links a {
  color: #cbd5e1;
  text-decoration: none;
}

.footer-links a:hover {
  color: #00e5ff;
}

.footer-bottom {
  margin-top: 20px;
  color: #64748b;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 900px) {
  .contact-section {
    grid-template-columns: 1fr;
  }

  .hero-content h1 {
    font-size: 38px;
  }

  .search-box input {
    width: 140px;
  }
}

/* =========================
   CONTACT SCROLLBAR
========================= */

::-webkit-scrollbar {
  width: 12px;
}

::-webkit-scrollbar-track {
  background: #0b1220;
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, #ff5a0a, #ff7a3d);

  border-radius: 20px;

  border: 2px solid #0b1220;
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, #ff7a3d, #ff9b66);
}
