* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  background-color: #f7f7f7;
  color: #333;
  line-height: 1.5;
}

/* FLOATING BUTTONS */

.floating-text,
.floating-call {
  position: fixed;
  right: 20px;
  z-index: 999;
  padding: 14px 20px;
  border-radius: 50px;
  color: white;
  text-decoration: none;
  font-weight: bold;
  box-shadow: 0 4px 12px rgba(0,0,0,0.25);
}

.floating-text {
  bottom: 90px;
  background: #28a745;
}

.floating-call {
  bottom: 25px;
  background: #b00000;
}

/* HERO */

.hero {
  background: linear-gradient(135deg, #8b0000, #d71920);
  color: white;
  text-align: center;
  padding: 55px 20px 40px;
}

.hero-content {
  max-width: 950px;
  margin: 0 auto;
}

.hero-logo {
  width: 130px;
  max-width: 40%;
  margin-bottom: 14px;
}

.hero h1 {
  font-size: 56px;
  margin: 0 0 8px;
}

.company-name {
  font-size: 20px;
  margin: 0 0 10px;
  opacity: 0.95;
}

.subtitle {
  font-size: 23px;
  margin: 0 0 18px;
}

.trust-line {
  font-size: 18px;
  font-weight: bold;
  margin: 0 0 24px;
}

.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

/* BUTTONS */

.btn {
  display: inline-block;
  padding: 13px 26px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: 0.3s;
}

.btn.primary {
  background: white;
  color: #b00000;
}

.btn.secondary {
  background: #222;
  color: white;
}

.btn.remote {
  background: #0078d7;
  color: white;
}

.google-review-btn {
  background: #28a745;
  color: white;
}

.btn:hover {
  opacity: 0.9;
}

/* GENERAL */

section {
  max-width: 1100px;
  margin: 0 auto;
  padding: 18px 20px 26px;
}

h2 {
  text-align: center;
  font-size: 32px;
  margin: 0 0 18px;
}

/* INTRO */

.intro p,
.section-text {
  max-width: 850px;
  margin: 0 auto;
  text-align: center;
  font-size: 18px;
}

/* SERVICES */

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(245px, 1fr));
  gap: 18px;
  margin-top: 20px;
}

.card {
  background: white;
  padding: 22px;
  border-radius: 14px;
  box-shadow: 0 4px 14px rgba(0,0,0,0.08);
  transition: 0.3s;
}

.card:hover {
  transform: translateY(-4px);
}

.card h3 {
  color: #b00000;
  margin: 0 0 8px;
}

.card p {
  margin: 0;
}

/* REVIEWS */

.review-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 18px;
  margin-top: 20px;
}

.review-card {
  background: white;
  padding: 22px;
  border-radius: 14px;
  box-shadow: 0 4px 14px rgba(0,0,0,0.08);
}

.stars {
  font-size: 20px;
  margin-bottom: 10px;
}

.review-card p {
  margin: 0;
}

.review-card h4 {
  margin: 16px 0 0;
  color: #b00000;
}

.review-button-wrap {
  text-align: center;
  margin-top: 24px;
}

/* WHY */

.why-box {
  background: white;
  max-width: 700px;
  margin: 18px auto 0;
  padding: 24px;
  border-radius: 14px;
  box-shadow: 0 4px 14px rgba(0,0,0,0.08);
  font-size: 18px;
}

.why-box p {
  margin: 8px 0;
}

/* REMOTE SUPPORT */

.remote-support {
  text-align: center;
}

.remote-support p {
  max-width: 800px;
  margin: 0 auto 14px;
}

.note {
  color: #b00000;
  font-weight: bold;
}

/* FORM */

form {
  background: white;
  max-width: 700px;
  margin: 22px auto 0;
  padding: 28px;
  border-radius: 14px;
  box-shadow: 0 4px 14px rgba(0,0,0,0.08);
}

input,
textarea {
  width: 100%;
  padding: 14px;
  margin-bottom: 14px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 16px;
}

textarea {
  min-height: 130px;
}

button {
  background: #b00000;
  color: white;
  border: none;
  padding: 14px 26px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
}

button:hover {
  opacity: 0.9;
}

/* CONTACT */

.contact {
  text-align: center;
}

.contact p {
  margin: 8px 0;
}

.contact a {
  color: #b00000;
  text-decoration: none;
  font-weight: bold;
}

/* FOOTER */

footer {
  background: #222;
  color: white;
  text-align: center;
  padding: 22px 20px;
}

footer p {
  margin: 6px 0;
}

/* MOBILE */

@media (max-width: 768px) {

  .hero {
    padding: 45px 20px 35px;
  }

  .hero-logo {
    width: 105px;
    max-width: 45%;
  }

  .hero h1 {
    font-size: 40px;
  }

  .company-name {
    font-size: 17px;
  }

  .subtitle {
    font-size: 19px;
  }

  .trust-line {
    font-size: 15px;
  }

  section {
    padding: 14px 18px 22px;
  }

  h2 {
    font-size: 27px;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .btn {
    width: 90%;
    max-width: 320px;
    text-align: center;
  }

  .floating-text,
  .floating-call {
    right: 15px;
    padding: 12px 18px;
  }
}
