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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;
  background: #f4f4f4;
  color: #171717;
  line-height: 1.6;
}

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

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;

  display: flex;
  align-items: center;
  justify-content: space-between;

  padding: 18px 7%;
  background: rgba(10, 10, 10, 0.92);
  color: white;
  backdrop-filter: blur(10px);
}

.logo {
  font-size: 1.3rem;
  font-weight: 800;
  letter-spacing: 1px;
}

.logo span {
  color: #f6b800;
}

.navbar nav {
  display: flex;
  gap: 28px;
}

.navbar nav a {
  font-weight: 600;
  font-size: 0.95rem;
}

.navbar nav a:hover {
  color: #f6b800;
}

.nav-call {
  background: #f6b800;
  color: #111;
  font-weight: 800;
  padding: 11px 18px;
  border-radius: 8px;
}

.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;

  padding: 140px 7% 80px;

  background:
    linear-gradient(rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0.7)),
    url("https://images.unsplash.com/photo-1487754180451-c456f719a1fc?auto=format&fit=crop&w=1600&q=80")
    center/cover;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
  color: white;
}

.eyebrow {
  color: #f6b800;
  font-weight: 800;
  letter-spacing: 2px;
  font-size: 0.85rem;
  margin-bottom: 14px;
}

.eyebrow.dark {
  color: #b57900;
}

.hero h1 {
  font-size: clamp(3rem, 7vw, 6rem);
  line-height: 0.98;
  max-width: 850px;
  margin-bottom: 24px;
}

.hero h1 span {
  color: #f6b800;
  display: block;
}

.hero-text {
  max-width: 650px;
  font-size: 1.2rem;
  color: #e7e7e7;
  margin-bottom: 32px;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 30px;
}

.button {
  display: inline-block;
  padding: 15px 22px;
  border-radius: 9px;
  font-weight: 800;
}

.button.primary {
  background: #f6b800;
  color: #111;
}

.button.secondary {
  border: 1px solid rgba(255, 255, 255, 0.5);
  color: white;
  background: rgba(255, 255, 255, 0.08);
}

.button:hover {
  transform: translateY(-2px);
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  color: #efefef;
  font-weight: 600;
  font-size: 0.95rem;
}

.section {
  padding: 90px 7%;
}

.section-heading {
  max-width: 700px;
  margin-bottom: 42px;
}

.section-heading h2,
.about-card h2,
.contact-section h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1.1;
  margin-bottom: 16px;
}

.section-heading p,
.about-card p,
.contact-info > p {
  color: #666;
}

.services-section {
  background: white;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.service-card {
  background: #f7f7f7;
  padding: 30px;
  border-radius: 16px;
  border: 1px solid #e8e8e8;
  transition: 0.2s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.08);
}

.service-icon {
  font-size: 2rem;
  margin-bottom: 18px;
}

.service-card h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.service-card p {
  color: #666;
}

.about-section {
  background: #111;
}

.about-card {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 50px;
  align-items: center;

  background: #191919;
  color: white;
  padding: 50px;
  border-radius: 20px;
}

.about-card p {
  color: #cfcfcf;
}

.stats {
  display: grid;
  gap: 18px;
}

.stats div {
  background: #242424;
  padding: 24px;
  border-radius: 14px;
}

.stats strong {
  display: block;
  font-size: 2rem;
  color: #f6b800;
}

.stats span {
  color: #d3d3d3;
}

.contact-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  background: #f4f4f4;
}

.contact-list {
  margin-top: 30px;
  display: grid;
  gap: 18px;
}

.contact-list p {
  display: grid;
  gap: 3px;
  color: #555;
}

.contact-list strong {
  color: #111;
}

.contact-list a {
  color: #b57900;
  font-weight: 700;
}

.contact-form {
  background: white;
  padding: 34px;
  border-radius: 18px;
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.08);
}

.contact-form label {
  display: grid;
  gap: 8px;
  margin-bottom: 18px;
  font-weight: 700;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid #d6d6d6;
  border-radius: 9px;
  padding: 13px;
  font: inherit;
}

.contact-form textarea {
  min-height: 130px;
  resize: vertical;
}

.contact-form button {
  width: 100%;
  border: none;
  border-radius: 9px;
  padding: 15px;

  background: #f6b800;
  color: #111;

  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;

  padding: 28px 7%;
  background: #0d0d0d;
  color: #aaa;
  font-size: 0.9rem;
}

@media (max-width: 900px) {
  .navbar nav {
    display: none;
  }

  .service-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-card,
  .contact-section {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .navbar {
    padding: 14px 5%;
  }

  .logo {
    font-size: 1rem;
  }

  .nav-call {
    padding: 9px 12px;
    font-size: 0.85rem;
  }

  .hero {
    min-height: 100vh;
    padding: 120px 5% 70px;
  }

  .hero h1 {
    font-size: 3.1rem;
  }

  .section {
    padding: 70px 5%;
  }

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

  .about-card,
  .contact-form {
    padding: 26px;
  }

  .trust-row {
    flex-direction: column;
    gap: 9px;
  }
}