*{
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  background-color: #121212;
  color: #eaeaea;
}

/* HEADER */
header {
  width: 100%;
  background: rgba(18,18,18,0.9);
  backdrop-filter: blur(10px);
  position: sticky;
  top: 0;
  z-index: 1000;
  position: relative;
}

.nav-container {
  max-width: 1100px;
  margin: auto;
  padding: 15px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

nav {
  display: flex;
  align-items: center;
}

.logo-text {
  font-family: 'Oswald', sans-serif;
  color: #ffea00;
}

nav a {
  margin-left: 25px;
  text-decoration: none;
  color: #ccc;
  font-weight: 500;
  position: relative;
}

nav a:hover {
  color: #fff;
}

.nav-cta {
  color: #000;
  background: #ffea00;
  padding: 8px 14px;
  border-radius: 6px;
}

/* HERO */
.hero {
  height: 90vh;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  position: relative;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:  url('AB_EXT.png');
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  z-index: 0;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.55);
  z-index: 1;
}



.hero-content {
  position: relative;
  max-width: 1100px;
  margin: auto;
  padding: 20px;
  left: 0;
  right: 0;
  z-index: 2;
}

.hero h2 {
  font-size: 48px;
  font-family: 'Oswald', sans-serif;
  margin-bottom: 20px;
}

.hero p {
  font-size: 20px;
  max-width: 600px;
  margin-bottom: 30px;
}

h3 {
  color: #ffea00
}

/* BUTTONS */
.btn-primary {
  background: #ffea00;
  color: #000;
  padding: 14px 24px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  margin-right: 10px;
}

.btn-primary:hover {
  background: #fff200;
}

.btn-secondary {
  border: 1px solid #fff;
  padding: 14px 24px;
  border-radius: 8px;
  text-decoration: none;
  color: #fff;
}

.small {
  padding: 10px 18px;
}

/* SECTIONS */
.section {
  padding: 80px 20px;
}

.section.alt {
  background: #1a1a1a;
}

.container {
  max-width: 1100px;
  margin: auto;
}

.section-title {
  font-family: 'Oswald', sans-serif;
  font-size: 34px;
  margin-bottom: 40px;
}

/* GRID */
.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

/* CARDS */
.service-card {
  background: #222;
  padding: 25px;
  border-radius: 10px;
  transition: 0.3s;
}

.service-card:hover {
  transform: translateY(-5px);
}

/* IMAGES */
.rounded-img {
  width: 100%;
  border-radius: 10px;
}

/* CTA STRIP */
.cta-strip {
  text-align: center;
  padding: 60px 20px;
  background: #ffea00;
  color: #000;
}

.cta-strip h2 {
  margin-bottom: 20px;
}

/* FOOTER */
footer {
  text-align: center;
  padding: 20px;
  background: #111;
  font-size: 14px;
}

/* UTIL */
.center {
  text-align: center;
  margin-top: 40px;
}

/* Smaller hero for inner pages */
.small-hero {
  height: 50vh;
}

/* Services page background image */
.services-bg {
  background: url('AB_GAR.png');
  background-size: cover;
  background-position: center;
}

.card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.mot-icon {
  width: 40px;
  height: auto;
}

/* About page background */
.about-bg {
  background: url('AB_MOT.png');
  background-size: cover;
  background-position: center;
}

/* Contact page background */
.contact-bg {
  background: url('AB_OFF.png');
  background-size: cover;
  background-position: center;
}

/* Contact links */
.contact-link {
  color: #ffea00;
  text-decoration: none;
}

.contact-link:hover {
  color: #fff200;
}

/* Form styling */
.contact-form form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-form input,
.contact-form textarea {
  padding: 12px;
  border-radius: 6px;
  border: none;
  font-family: 'Inter', sans-serif;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: 2px solid #ffea00;
}

/* Logo container */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* Logo image */
.logo-img {
  width: 70px;
  height: auto;
}

/* Keep your existing text style */
.logo-text {
  font-family: 'Oswald', sans-serif;
  color: #ffea00;
  margin: 0;
  font-size: 48px;
}

/* MOBILE */
@media (max-width: 768px) {

  .hero {
    display: flex;
    flex-direction: column;
    height: auto;
  }

  .hero-img-mobile {
    display: block;
    width: 100%;
    height: auto;
  }

  .hero-content {
    margin-top: 20px;
    position: relative;   /* IMPORTANT: kills absolute layout */
    top: auto;
    left: auto;
    transform: none;
    padding: 25px 20px;
    text-align: left;
  }

  .hero h2 {
    font-size: 28px;
    margin-bottom: 10px;
  }

  .hero p {
    font-size: 16px;
    margin-bottom: 20px;
  }

  .hero-buttons {
    margin-top: 25px;
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .btn-primary,
  .btn-secondary {
    width: 100%;
    text-align: center;
  }
  .logo-text {
    font-size: 22px;
  }

  .logo-img {
    width: 50px;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .grid-2 {
    grid-template-columns: 1fr; /* stack vertically */
  }

  .about-img {
    display: none; /* hide image */
  }

  .grid-2 > div {
    width: 100%;
  }
}

.fade-in {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.8s ease forwards;
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


/* HAMBURGER */
.menu-toggle {
  display: none;
  font-size: 28px;
  cursor: pointer;
  color: #fff;
}

/* MOBILE NAV */
@media (max-width: 768px) {

  .menu-toggle {
    display: block;
  }

  nav {

    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #111;

    display: flex;
    flex-direction: column;
    text-align: center;
    padding: 15px 0;

    /* hidden state */
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    pointer-events: none;

    transition: all 0.25s ease;
  }

  nav a {
    display: block;
    margin: 15px 0;
    font-size: 18px;
  }

  nav.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
  }
}


