* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Arial, sans-serif;
  background: #0d0f14;
  color: #ffffff;
  line-height: 1.6;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

.top-bar {
  background: #11151d;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  font-size: 14px;
}

.top-bar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  gap: 15px;
  flex-wrap: wrap;
}

.top-bar a {
  color: #ff5e14;
  font-weight: bold;
}

.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(10, 12, 16, 0.97);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 14px 0;
}

.logo-link {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.site-logo {
  height: 78px;
  width: auto;
  object-fit: contain;
}

nav {
  display: flex;
  align-items: center;
  gap: 22px;
}

nav a {
  color: #fff;
  font-size: 15px;
}

.nav-btn {
  background: #ff5e14;
  padding: 12px 20px;
  border-radius: 999px;
  font-weight: bold;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: white;
  font-size: 26px;
  cursor: pointer;
}

.hero {
  position: relative;
  min-height: 100vh;
  background:
    linear-gradient(rgba(8, 10, 14, 0.72), rgba(8, 10, 14, 0.82)),
    url('https://images.unsplash.com/photo-1487754180451-c456f719a1fc?auto=format&fit=crop&w=1600&q=80') center/cover no-repeat;
  display: flex;
  align-items: center;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 80px 0;
}

.hero-tag,
.section-tag {
  display: inline-block;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #ff5e14;
  margin-bottom: 14px;
  font-weight: bold;
}

.hero h1 {
  font-size: 58px;
  max-width: 760px;
  line-height: 1.1;
  margin-bottom: 20px;
}

.hero-text {
  max-width: 700px;
  font-size: 18px;
  color: #d7dce5;
  margin-bottom: 30px;
}

.hero-buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  margin-bottom: 50px;
}

.btn {
  display: inline-block;
  padding: 14px 26px;
  border-radius: 999px;
  font-weight: bold;
  transition: 0.3s ease;
}

.btn-primary {
  background: #ff5e14;
  color: #fff;
}

.btn-primary:hover {
  transform: translateY(-2px);
  opacity: 0.95;
}

.btn-secondary {
  border: 1px solid rgba(255,255,255,0.25);
  color: #fff;
  background: rgba(255,255,255,0.06);
}

.btn-secondary:hover {
  background: rgba(255,255,255,0.12);
}

.hero-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.hero-card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 25px;
  border-radius: 18px;
  backdrop-filter: blur(8px);
}

.hero-card i {
  font-size: 28px;
  color: #ff5e14;
  margin-bottom: 15px;
}

.hero-card h3 {
  margin-bottom: 8px;
}

.section {
  padding: 90px 0;
}

.stats-section {
  background: #10151d;
}

.stats-grid,
.services-grid,
.why-grid,
.process-grid,
.testimonial-grid,
.footer-grid {
  display: grid;
  gap: 24px;
}

.stats-grid {
  grid-template-columns: repeat(3, 1fr);
}

.stat-box,
.why-card,
.process-card,
.testimonial-card,
.contact-card,
.map-card,
.about-panel {
  background: #151b24;
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 20px;
  padding: 28px;
  transition: 0.3s ease;
}

.stat-box:hover,
.why-card:hover,
.process-card:hover,
.testimonial-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255,94,20,0.45);
}

.section-heading {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 50px;
}

.section-heading h2,
.two-column h2,
.contact-card h2,
.cta-box h2 {
  font-size: 40px;
  line-height: 1.2;
  margin-bottom: 15px;
}

.section-heading p,
.two-column p,
.contact-card p,
.cta-box p {
  color: #d3d9e2;
}

.services-grid {
  grid-template-columns: repeat(4, 1fr);
}

.service-card {
  background: #151b24;
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 20px;
  overflow: hidden;
  transition: 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255,94,20,0.45);
}

.service-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.service-content {
  padding: 22px;
}

.service-content i,
.why-card i {
  font-size: 28px;
  color: #ff5e14;
  margin-bottom: 16px;
}

.service-content h3 {
  margin-bottom: 12px;
  font-size: 28px;
  line-height: 1.2;
}

.service-content p {
  color: #d3d9e2;
}

.dark-section {
  background: #10151d;
}

.two-column {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 30px;
  align-items: center;
}

.about-panel h3 {
  margin-bottom: 15px;
}

.about-panel ul {
  padding-left: 20px;
}

.about-panel li {
  margin-bottom: 10px;
  color: #d3d9e2;
}

.why-grid {
  grid-template-columns: repeat(4, 1fr);
}

.process-grid {
  grid-template-columns: repeat(4, 1fr);
}

.process-card span {
  display: inline-block;
  font-size: 30px;
  font-weight: bold;
  color: #ff5e14;
  margin-bottom: 16px;
}

.testimonial-grid {
  grid-template-columns: repeat(3, 1fr);
}

.cta-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  background: linear-gradient(135deg, #151b24, #1d2531);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 24px;
  padding: 35px;
}

.cta-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.faq-item {
  background: #151b24;
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 16px;
  margin-bottom: 16px;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  color: #fff;
  text-align: left;
  font-size: 18px;
  padding: 20px 24px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-answer {
  display: none;
  padding: 0 24px 20px;
  color: #cfd6df;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 24px;
}

.social-links {
  margin-top: 18px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.social-links a {
  padding: 10px 14px;
  background: #202835;
  border-radius: 999px;
  color: #fff;
}

.map-card {
  min-height: 380px;
  padding: 0;
  overflow: hidden;
}

.footer {
  background: #0a0c10;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.footer-grid {
  grid-template-columns: 1.3fr 1fr 1fr;
  padding: 60px 0 30px;
}

.footer-logo {
  height: 72px;
  width: auto;
  margin-bottom: 16px;
  object-fit: contain;
}

.footer-grid h4 {
  margin-bottom: 14px;
}

.footer-grid a,
.footer-grid p {
  display: block;
  color: #cfd6df;
  margin-bottom: 10px;
}

.footer-bottom {
  text-align: center;
  padding: 20px 0 30px;
  color: #96a1b2;
  border-top: 1px solid rgba(255,255,255,0.05);
}

.floating-call {
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 58px;
  height: 58px;
  background: #ff5e14;
  color: white;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 22px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.35);
  z-index: 999;
}

@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .why-grid,
  .process-grid,
  .stats-grid,
  .testimonial-grid,
  .hero-cards,
  .contact-grid,
  .footer-grid,
  .two-column {
    grid-template-columns: 1fr;
  }

  .cta-box {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero h1 {
    font-size: 42px;
  }
}

@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  .site-logo {
    height: 56px;
  }

  nav {
    display: none;
    position: absolute;
    top: 86px;
    right: 5%;
    width: 90%;
    background: #121822;
    flex-direction: column;
    align-items: flex-start;
    padding: 20px;
    border-radius: 18px;
    border: 1px solid rgba(255,255,255,0.08);
  }

  nav.show {
    display: flex;
  }

  .hero {
    min-height: auto;
    padding-top: 40px;
  }

  .hero h1 {
    font-size: 34px;
  }

  .hero-text {
    font-size: 16px;
  }

  .section-heading h2,
  .two-column h2,
  .contact-card h2,
  .cta-box h2 {
    font-size: 30px;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .top-bar-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .service-image {
    height: 220px;
  }
}