:root {
  --dark: #272727;
  --orange: #ff7a18;
  --white: #ffffff;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: system-ui, sans-serif;
}

body {
  background: var(--dark);
  color: var(--white);
}

/* HEADER */
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 20px;
}

.logo {
  font-size: 1.8rem;
  font-weight: 900;
}

.logo span {
  color: var(--orange);
}

.nav-links {
  display: none;
  gap: 20px;
}

.nav-links a {
  color: white;
  text-decoration: none;
  font-weight: 600;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 15px;
}

.btn-quote {
  background: var(--orange);
  color: var(--dark);
  padding: 10px 14px;
  border-radius: 6px;
  font-weight: 700;
  text-decoration: none;
}

.menu-icon {
  font-size: 1.6rem;
  cursor: pointer;
}

/* MOBILE MENU */
.mobile-menu {
  display: none;
  flex-direction: column;
  background: #1f1f1f;
}

.mobile-menu a {
  padding: 15px 20px;
  border-bottom: 1px solid #333;
  color: rgb(255, 255, 255);
  text-decoration: none;
}

/* LINE */
.header-line {
  height: 3px;
  background: var(--orange);
}

/* HERO */
.hero {
  position: relative;
  min-height: 70vh;
  background: url("IMG/relocate-company.webp") center 35% / cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(39, 39, 39, 0.75);
}

.hero-content {
  position: relative;
  text-align: center;
  padding: 20px;
  max-width: 600px;
}

.hero h1 {
  font-size: 2.5rem;
  font-weight: 900;
  line-height: 1.1;
}

.hero h1 span {
  color: var(--orange);
}

.hero-sub {
  margin-top: 15px;
}

.hero-tags {
  margin: 10px 0 25px;
  color: #ddd;
}

/* BUTTON */
.btn-whatsapp {
  background: var(--orange);
  color: white;
  padding: 14px 22px;
  border-radius: 8px;
  font-weight: 700;
  text-decoration: none;
}

/* SECTIONS */
.section {
  padding: 60px 20px;
}

.section.dark {
  background: #1f1f1f;
}

.section-title {
  text-align: center;
  margin-bottom: 15px;
}

.section-sub {
  text-align: center;
  color: #ccc;
  margin-bottom: 30px;
}

/* SERVICES */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
}

.service-card {
  background: #1f1f1f;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
}

.icon {
  font-size: 1.8rem;
  margin-bottom: 8px;
}

/* TESTIMONIALS */
.testimonials {
  display: flex;
  gap: 15px;
  overflow-x: auto;
}

.testimonial {
  min-width: 260px;
  background: #272727;
  padding: 20px;
  border-radius: 12px;
}

.testimonial span {
  display: block;
  margin-top: 10px;
  color: var(--orange);
}

/* WHY */
.why-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.why-item {
  display: flex;
  background: #1f1f1f;
  border-radius: 12px;
  padding: 20px;
}

.why-icon {
  width: 30%;
  font-size: 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

.why-text {
  width: 70%;
}

/* CTA */
.cta {
  padding: 60px 20px;
  text-align: center;
  background: #1a1a1a;
}
.test_cta{
    margin-bottom: 20px;
}

/* DESKTOP */
@media (min-width: 768px) {
  .menu-icon {
    display: none;
  }

  .nav-links {
    display: flex;
  }
  /* HERO */
  .hero {
    min-height: 75vh;
  }

  .hero h1 {
    font-size: 4.5rem;
  }

  .hero-sub {
    font-size: 1.5rem;
  }

  /* SERVICES */
  .services-grid {
    grid-template-columns: repeat(4, 1fr);
  }
   .service-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .why-title {
    font-size: 2.2rem;
  }

  .why-list {
    flex-direction: row;
    
  }

  .why-item {
    width: calc(50% - 10px);
  }
}
