* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  color: #1e293b;
  background: #f8fafc;
  line-height: 1.6;
}

.top-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 8%;
  background: #0f172a;
  color: white;
}

.logo {
  font-size: 1.3rem;
  font-weight: bold;
}

.call-button,
.primary-btn {
  background: #facc15;
  color: #0f172a;
  padding: 12px 20px;
  text-decoration: none;
  border-radius: 6px;
  font-weight: bold;
}

.hero {
  min-height: 70vh;
  display: flex;
  align-items: center;
  padding: 70px 8%;
  background: linear-gradient(rgba(15, 23, 42, 0.85), rgba(15, 23, 42, 0.85)),
    url("https://images.unsplash.com/photo-1621905251189-08b45d6a269e?auto=format&fit=crop&w=1600&q=80");
  background-size: cover;
  background-position: center;
  color: white;
}

.hero-content {
  max-width: 720px;
}

.tagline {
  color: #facc15;
  font-weight: bold;
  margin-bottom: 12px;
}

.hero h1 {
  font-size: 3rem;
  line-height: 1.1;
  margin-bottom: 20px;
}

.hero-text {
  font-size: 1.2rem;
  margin-bottom: 30px;
}

.hero-buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.secondary-btn {
  border: 2px solid white;
  color: white;
  padding: 10px 20px;
  text-decoration: none;
  border-radius: 6px;
  font-weight: bold;
}

.trust {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: #facc15;
  color: #0f172a;
  text-align: center;
  font-weight: bold;
}

.trust div {
  padding: 18px;
  border-right: 1px solid rgba(0,0,0,0.15);
}

.section {
  padding: 70px 8%;
  text-align: center;
}

.section h2,
.cta h2 {
  font-size: 2.2rem;
  margin-bottom: 15px;
}

.section-intro {
  max-width: 700px;
  margin: 0 auto 40px;
  color: #475569;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.service-card {
  background: white;
  padding: 30px;
  border-radius: 10px;
  text-align: left;
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
}

.service-card h3 {
  margin-bottom: 10px;
  color: #0f172a;
}

.cta {
  background: #0f172a;
  color: white;
  text-align: center;
  padding: 60px 8%;
}

.cta p {
  margin-bottom: 25px;
}

.quote-form {
  max-width: 700px;
  margin: auto;
  display: grid;
  gap: 15px;
}

.quote-form input,
.quote-form select,
.quote-form textarea {
  padding: 14px;
  border: 1px solid #cbd5e1;
  border-radius: 6px;
  font-size: 1rem;
}

.quote-form textarea {
  min-height: 130px;
}

.quote-form button {
  background: #facc15;
  color: #0f172a;
  border: none;
  padding: 15px;
  font-size: 1rem;
  font-weight: bold;
  border-radius: 6px;
  cursor: pointer;
}

footer {
  background: #020617;
  color: white;
  text-align: center;
  padding: 30px 8%;
}

footer a {
  color: #facc15;
}

@media (max-width: 900px) {
  .services-grid,
  .trust {
    grid-template-columns: 1fr 1fr;
  }

  .hero h1 {
    font-size: 2.3rem;
  }
}

@media (max-width: 600px) {
  .top-bar {
    flex-direction: column;
    gap: 15px;
  }

  .services-grid,
  .trust {
    grid-template-columns: 1fr;
  }

  .hero {
    padding: 50px 6%;
  }

  .hero h1 {
    font-size: 2rem;
  }
}





/* REVIEW SECTION */

.reviews-section {
    background: #f1f5f9;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.review-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    text-align: left;
    border-top: 5px solid #facc15;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
}

.review-card p {
    margin-bottom: 15px;
}

.stars {
    color: #facc15;
    font-size: 1.3rem;
    margin-bottom: 10px;
}

/* FLOATING CALL BUTTON */

.floating-call {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #22c55e;
    color: white;
    padding: 15px 20px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    z-index: 999;
    box-shadow: 0 5px 15px rgba(0,0,0,0.25);
}

.floating-call:hover {
    transform: scale(1.05);
}

/* MOBILE */

@media (max-width: 900px) {

    .reviews-grid {
        grid-template-columns: 1fr;
    }

}
