* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Manrope", sans-serif;
  background: #0f0f0f;
  color: #fff;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

/* ================= HEADER ================= */

header {
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 999;
  background: rgba(15, 15, 15, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 0;
}

.logo {
  font-size: 28px;
  font-weight: 800;
  color: #f9be17;
  letter-spacing: 1px;
}

.nav-links {
  display: flex;
  gap: 35px;
}

.nav-links a {
  color: #fff;
  font-weight: 500;
  transition: 0.3s;
}

.nav-links a:hover,
.nav-links .active {
  color: #f9be17;
}

.contact-btn {
  padding: 12px 26px;
  background: #f9be17;
  color: #111;
  border-radius: 50px;
  font-weight: 700;
  transition: 0.3s;
}

.contact-btn:hover {
  background: #fff;
  transform: translateY(-2px);
}

/* ================= HERO ================= */

.hero {
  padding: 80px 0 120px;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at top left, #f9be1720, transparent 35%),
    radial-gradient(circle at bottom right, #574a2930, transparent 35%);
}

.hero::before {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  background: #f9be17;
  opacity: 0.08;
  filter: blur(130px);
  border-radius: 50%;
  top: -200px;
  right: -120px;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 60px;
  align-items: center;
}

.hero-left span {
  display: inline-block;
  background: #ffffff12;
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 10px 18px;
  border-radius: 50px;
  color: #f9be17;
  font-size: 14px;
  margin-bottom: 25px;
}

.hero-left h1 {
  font-size: 68px;
  line-height: 1.1;
  margin-bottom: 25px;
  font-weight: 800;
}

.hero-left h1 strong {
  color: #f9be17;
}

.hero-left p {
  color: #cfcfcf;
  font-size: 18px;
  line-height: 1.9;
  margin-bottom: 40px;
  max-width: 700px;
}

.hero-buttons {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.btn-primary {
  padding: 16px 34px;
  background: #f9be17;
  color: #111;
  border-radius: 60px;
  font-weight: 700;
  transition: 0.3s;
}

.btn-primary:hover {
  background: #fff;
  transform: translateY(-3px);
}

.btn-secondary {
  padding: 16px 34px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 60px;
  color: #fff;
  transition: 0.3s;
}

.btn-secondary:hover {
  border-color: #f9be17;
  color: #f9be17;
}

.hero-card {
  background: linear-gradient(145deg, #1a1a1a, #101010);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 30px;
  padding: 40px;
  position: relative;
  overflow: hidden;
}

.hero-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #f9be1718, transparent);
}

.hero-card h3 {
  font-size: 26px;
  margin-bottom: 20px;
  color: #f9be17;
}

.hero-card ul {
  list-style: none;
}

.hero-card ul li {
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 14px;
  color: #ddd;
  font-size: 16px;
}

.hero-card i {
  width: 42px;
  height: 42px;
  background: #f9be17;
  color: #111;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

/* ================= SECTION ================= */

section {
  padding: 110px 0;
}

.section-title {
  text-align: center;
  margin-bottom: 70px;
}

.section-title span {
  color: #f9be17;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: 14px;
}

.section-title h2 {
  font-size: 52px;
  margin-top: 18px;
  font-weight: 800;
  line-height: 1.2;
}

.section-title p {
  color: #c7c7c7;
  max-width: 720px;
  margin: 22px auto 0;
  line-height: 1.9;
  font-size: 17px;
}

/* ================= SERVICES ================= */

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

.service-box {
  background: #171717;
  border-radius: 28px;
  padding: 40px 30px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: 0.4s;
  position: relative;
  overflow: hidden;
}

.service-box:hover {
  transform: translateY(-10px);
  border-color: #f9be17;
}

.service-icon {
  width: 72px;
  height: 72px;
  border-radius: 20px;
  background: #f9be17;
  color: #111;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin-bottom: 25px;
}

.service-box h3 {
  font-size: 24px;
  margin-bottom: 18px;
}

.service-box p {
  color: #cfcfcf;
  line-height: 1.8;
}

/* ================= WHY US ================= */

.why-us {
  background: #141414;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 28px;
}

.why-card {
  padding: 35px;
  border-radius: 25px;
  background: #1a1a1a;
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: 0.4s;
}

.why-card:hover {
  border-color: #f9be17;
  transform: translateY(-8px);
}

.why-card h4 {
  font-size: 24px;
  margin: 22px 0 16px;
}

.why-card p {
  color: #cfcfcf;
  line-height: 1.8;
}

.why-card i {
  font-size: 34px;
  color: #f9be17;
}

/* ================= PROCESS ================= */

.process-wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 28px;
}

.process-box {
  background: #171717;
  border-radius: 28px;
  padding: 40px 35px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  position: relative;
}

.process-number {
  font-size: 60px;
  font-weight: 800;
  color: #f9be171c;
  position: absolute;
  top: 20px;
  right: 25px;
}

.process-box h3 {
  font-size: 24px;
  margin-bottom: 18px;
  position: relative;
  z-index: 2;
}

.process-box p {
  color: #cfcfcf;
  line-height: 1.8;
  position: relative;
  z-index: 2;
}

/* ================= CTA ================= */

.cta {
  padding: 100px 0;
}

.cta-box {
  background: linear-gradient(135deg, #f9be17, #d89d00);
  border-radius: 35px;
  padding: 70px;
  text-align: center;
  color: #111;
}

.cta-box h2 {
  font-size: 54px;
  font-weight: 800;
  margin-bottom: 20px;
}

.cta-box p {
  font-size: 18px;
  line-height: 1.8;
  max-width: 760px;
  margin: auto;
  margin-bottom: 35px;
}

.cta-box a {
  display: inline-block;
  padding: 16px 38px;
  background: #111;
  color: #fff;
  border-radius: 60px;
  font-weight: 700;
  transition: 0.3s;
}

.cta-box a:hover {
  background: #fff;
  color: #111;
}

/* ================= FOOTER ================= */

footer {
  background: #0a0a0a;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 90px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 50px;
  margin-bottom: 60px;
}

.footer-about p {
  color: #bdbdbd;
  line-height: 1.9;
  margin: 25px 0;
}

.footer-social {
  display: flex;
  gap: 15px;
}

.footer-social a {
  width: 45px;
  height: 45px;
  background: #171717;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
}

.footer-social a:hover {
  background: #f9be17;
  color: #111;
}

.footer-links h3 {
  margin-bottom: 25px;
  font-size: 22px;
}

.footer-links ul {
  list-style: none;
}

.footer-links ul li {
  margin-bottom: 16px;
}

.footer-links ul li a {
  color: #bdbdbd;
  transition: 0.3s;
}

.footer-links ul li a:hover {
  color: #f9be17;
  padding-left: 6px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 30px;
  text-align: center;
  color: #9f9f9f;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 991px) {
  .hero-content {
    grid-template-columns: 1fr;
  }

  .hero-left h1 {
    font-size: 52px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .nav-links {
    display: none;
  }
}

@media (max-width: 768px) {
  .hero {
    padding-top: 150px;
  }

  .hero-left h1 {
    font-size: 42px;
  }

  .section-title h2 {
    font-size: 36px;
  }

  .cta-box {
    padding: 50px 30px;
  }

  .cta-box h2 {
    font-size: 38px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }
}
