/* Icon Fonts */
@font-face {
  font-family: 'icomoon';
  src: url('fonts/icomoon.eot');
  src: url('fonts/icomoon.eot#iefix') format('embedded-opentype'),
       url('fonts/icomoon.woff') format('woff'),
       url('fonts/icomoon.ttf') format('truetype'),
       url('fonts/icomoon.svg#icomoon') format('svg');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'Flaticon';
  src: url('fonts/Flaticon.eot');
  src: url('fonts/Flaticon.eot#iefix') format('embedded-opentype'),
       url('fonts/Flaticon.woff') format('woff'),
       url('fonts/Flaticon.ttf') format('truetype'),
       url('fonts/Flaticon.svg#Flaticon') format('svg');
  font-weight: normal;
  font-style: normal;
}

*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Rubik', 'Heebo', sans-serif;
  color: #1A1A1A;
  line-height: 1.6;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  height: auto;
}

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 40px;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(5px);
}

.navbar .nav-logo {
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 1px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-logo-icon {
  height: 35px;
  width: 35px;
  object-fit: contain;
}

.navbar .nav-logo:hover {
  color: #FFBC13;
}

.navbar .nav-links {
  list-style: none;
  display: flex;
  gap: 30px;
}

.navbar .nav-links a {
  color: #fff;
  font-size: 15px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: color 0.3s;
}

.navbar .nav-links a:hover,
.navbar .nav-links a.active {
  color: #FFBC13;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 5px;
}

.hamburger span {
  display: block;
  width: 25px;
  height: 3px;
  background: #fff;
  border-radius: 2px;
  transition: all 0.3s;
}

/* Hero */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: url('images/parking-lot-hero.jpg') center center / cover no-repeat;
  color: #fff;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 80px 20px 60px;
}

.hero-logo {
  width: 500px;
  max-width: 90%;
  margin-bottom: 30px;
  margin-top: 40px;
}

.hero-tagline {
  font-size: 39px;
  font-weight: 400;
  line-height: 1.4;
  max-width: 900px;
  margin: 0 auto;
}

.hero-tagline strong {
  display: block;
  font-size: 85px;
  font-weight: 700;
  margin-top: 5px;
}

/* CTA Banner */
.cta-banner {
  background: #1A1A1A;
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 5px;
  padding: 15px 20px;
}

.cta-banner-text {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.cta-banner .cta-hiring {
  font-size: 30px;
  font-weight: 500;
  color: #FFBC13;
  text-transform: uppercase;
}

.cta-banner .cta-text {
  color: #fff;
  font-size: 30px;
  font-weight: 500;
}

.cta-banner-btn {
  display: flex;
  align-items: center;
  margin-left: 15px;
}

.btn-apply {
  display: inline-block;
  background: #C70303;
  color: #fff;
  padding: 18px 40px;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: none;
  border-radius: 0;
  cursor: pointer;
  transition: background 0.3s, color 0.3s;
}

.btn-apply:hover {
  background: #fff;
  color: #C70303;
}

/* About Section */
.about {
  padding: 80px 40px;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  gap: 50px;
  align-items: center;
}

.about-images {
  flex: 1;
  display: flex;
  flex-direction: row;
  gap: 20px;
}

.about-images img {
  width: calc(50% - 10px);
  min-height: 500px;
  border-radius: 5px;
  object-fit: cover;
}

.about-text {
  flex: 1;
}

.about-text h2 {
  font-size: 36px;
  margin-bottom: 10px;
  color: #1A1A1A;
}

.about-text .subtitle {
  font-size: 20px;
  color: #FFBC13;
  font-weight: 600;
  margin-bottom: 20px;
}

.about-text p {
  font-size: 16px;
  color: #6F6F6F;
  line-height: 1.8;
}

/* Services */
.services {
  background: #fff;
  padding: 80px 40px;
  text-align: center;
}

.services h2 {
  font-size: 36px;
  margin-bottom: 20px;
}

.services-desc {
  max-width: 800px;
  margin: 0 auto 50px;
  font-size: 16px;
  color: #6F6F6F;
  line-height: 1.8;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 540px);
  gap: 30px;
  max-width: 1140px;
  margin: 0 auto;
  justify-content: center;
}

.service-card {
  background: #fff;
  height: 184.5px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px 25px;
  border-radius: 5px;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.07);
  transition: transform 0.3s, box-shadow 0.3s;
  position: relative;
}

.service-card::before,
.service-card::after {
  content: '';
  position: absolute;
  width: 30px;
  height: 30px;
  opacity: 0;
  transition: opacity 0.3s;
}

.service-card::before {
  top: 0;
  right: 0;
  border-top: 3px solid #FFBC13;
  border-right: 3px solid #FFBC13;
}

.service-card::after {
  bottom: 0;
  left: 0;
  border-bottom: 3px solid #FFBC13;
  border-left: 3px solid #FFBC13;
}

.service-card:hover::before,
.service-card:hover::after {
  opacity: 1;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.service-icon {
  font-size: 48px;
  margin-bottom: 20px;
  color: #FFBC13;
  line-height: 1;
  font-style: normal;
}

[class^="icon-apus-"], [class*=" icon-apus-"] {
  font-family: 'icomoon' !important;
  font-style: normal;
  font-weight: normal;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.icon-apus-engineer::before {
  content: "\e937";
}

.icon-apus-soil::before {
  content: "\e953";
}

[class^="flaticon-"], [class*=" flaticon-"] {
  font-family: 'Flaticon' !important;
  font-style: normal;
  font-weight: normal;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.flaticon-road-with-broken-line::before {
  content: "\f100";
}

.service-card h3 {
  font-size: 20px;
  font-weight: 500;
  line-height: 32.5px;
  font-family: 'Heebo', sans-serif;
  color: #1A1A1A;
}

/* Get in Touch */
.contact {
  position: relative;
  padding: 80px 40px;
  text-align: center;
  background: #fff url('images/world-map.png') center center / contain no-repeat;
  min-height: 350px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.contact h2 {
  font-size: 36px;
  margin-bottom: 15px;
}

.contact p {
  font-size: 16px;
  color: #6F6F6F;
  margin-bottom: 30px;
  max-width: 500px;
}

.btn-email {
  display: inline-block;
  background: #32373c;
  color: #fff;
  padding: 14px 40px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 3px;
  transition: background 0.3s;
}

.btn-email:hover {
  background: #1a1d20;
}

/* Footer */
.footer {
  background: #1A1A1A;
  color: #aaa;
  text-align: center;
  padding: 25px 20px;
  font-size: 14px;
}

/* Careers Page */
.careers-hero {
  position: relative;
  padding-top: 120px;
  padding-bottom: 40px;
  text-align: center;
  background: url('images/parking-lot-hero.jpg') center center / cover no-repeat;
}

.careers-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
}

.careers-hero img {
  position: relative;
  z-index: 1;
  max-width: 300px;
}

.careers-content {
  max-width: 900px;
  margin: 0 auto;
  padding: 40px 20px 80px;
}

.careers-content iframe {
  border: none;
  min-height: 450px;
}

/* Mobile */
@media (max-width: 1150px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 992px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about {
    flex-direction: column;
    padding: 60px 20px;
  }

  .about-images {
    flex-direction: row;
  }

  .hero-tagline {
    font-size: 30px;
  }

  .hero-tagline strong {
    font-size: 55px;
  }

  .about-images {
    flex-direction: row;
  }

  .about-images img {
    min-height: 400px;
  }
}

@media (max-width: 768px) {
  .navbar .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.95);
    flex-direction: column;
    padding: 20px 40px;
    gap: 15px;
  }

  .navbar .nav-links.open {
    display: flex;
  }

  .hamburger {
    display: flex;
  }

  .hero {
    min-height: 500px;
  }

  .hero-logo {
    max-width: 280px;
  }

  .hero-tagline {
    font-size: 22px;
  }

  .hero-tagline strong {
    font-size: 38px;
  }

  .about-images {
    flex-direction: column;
  }

  .about-images img {
    width: 100%;
    min-height: 300px;
  }

  .cta-banner {
    flex-direction: column;
    text-align: center;
  }

  .cta-banner-text {
    justify-content: center;
  }

  .cta-banner-btn {
    margin-left: 0;
    margin-top: 10px;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .about-images {
    flex-direction: column;
  }

  .about-text h2 {
    font-size: 28px;
  }
}
