* { margin:0; padding:0; box-sizing:border-box; font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,sans-serif; }
body { line-height:1.6; color:#111; background:#fff; }

.container { width:90%; max-width:1100px; margin:auto; }
.narrow { max-width:700px; }

.navbar { background:#fff; border-bottom:1px solid #eee; padding:15px 0; position:sticky; top:0; z-index:999; }
.navbar .container { display:flex; justify-content:space-between; align-items:center; }
.navbar a { margin-left:20px; text-decoration:none; color:#111; font-weight:500; }
.logo { font-weight:600; }
.btn-small { padding:6px 12px; border:1px solid #e6001d; border-radius:4px; color:#e6001d; }

.hero { color:#fff; text-align:center; padding:100px 0; position:relative; background-size:cover; background-position:center; }
.hero h1 { font-size:2.5rem; margin-bottom:20px; }
.hero p { max-width:600px; margin:auto; margin-bottom:25px; color:#f0f0f0; }
.hero-buttons { margin-bottom:15px; }

.btn-primary { display:inline-block; background:#e6001d; color:#fff; padding:12px 24px; text-decoration:none; border-radius:6px; margin-right:10px; }
.btn-secondary { display:inline-block; background:#fff; border:1px solid #e6001d; color:#e6001d; padding:12px 24px; text-decoration:none; border-radius:6px; }

.section { padding:70px 0; }
.section.alt { background:#f4f4f4; }
.section h2 { text-align:center; margin-bottom:40px; font-size:2rem; }

.grid { display:grid; gap:20px; grid-template-columns:repeat(auto-fit,minmax(250px,1fr)); }
.card { background:#fff; padding:25px; border-radius:10px; box-shadow:0 4px 10px rgba(0,0,0,0.05); text-align:center; }
.card-icon { width:60px; margin-bottom:15px; }

.contact-form { display:flex; flex-direction:column; gap:15px; }
.contact-form input, .contact-form textarea { padding:12px; border:1px solid #ccc; border-radius:6px; font-size:1rem; }
.contact-form textarea { min-height:120px; }

footer { padding:40px 0; text-align:center; background:#111; color:#fff; font-size:0.9rem; }
/* Smooth transitions */
a,
button,
.card,
.service-card,
.cta-button {
  transition: all 0.3s ease;
}
.service-card {
  background: #ffffff;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
  transform: translateY(0);
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
}
.service-card:hover {
  border: 1px solid #e10600;
}
.cta-button {
  background-color: #e10600;
  color: white;
  padding: 14px 28px;
  border-radius: 8px;
  font-weight: 600;
  display: inline-block;
  transform: translateY(0);
}
.cta-button:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 12px 24px rgba(225, 6, 0, 0.25);
}

.cta-button:active {
  transform: translateY(0) scale(0.98);
}
nav a {
  position: relative;
  text-decoration: none;
  color: #333;
}

nav a::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -4px;
  left: 0;
  background-color: #e10600;
  transition: width 0.3s ease;
}
nav a:hover::after {
  width: 100%;
}
.hero img {
  transition: transform 0.6s ease;
}
.hero:hover img {
  transform: scale(1.05);
}
/* ===== Card Hover Movement ===== */

.card {
  background: #ffffff;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}
/* ===== Hero Background Setup ===== */

.hero {
  position: relative;
  background-image: url('images/vancouver-hero.jpg');
  background-size: 100%;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
  transition: background-size 0.8s ease;
}

.hero:hover {
  background-size: 100%;
}
form {
  max-width: 600px;
  margin: 0 auto;
}

/* ===== Clean Contact Form Styling ===== */
.form-wrapper {
  background: #fff;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  max-width: 600px;
  margin: 0 auto;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px 18px;
  margin-bottom: 16px;
  border-radius: 8px;
  border: 1px solid #ddd;
  font-size: 16px;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  transition: border 0.2s ease, box-shadow 0.2s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #e10600;
  box-shadow: 0 0 0 4px rgba(225, 6, 0, 0.15);
  outline: none;
}

.contact-form button {
  background: #e10600;
  color: white;
  font-weight: 600;
  padding: 14px 28px;
  border-radius: 18px;
  border: none;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  font-size: 16px;
}

.contact-form button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(225, 6, 0, 0.3);
}

/* Optional: center text placeholders */
.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #aaa;
  font-weight: 400;
}
.contact-form button,
.contact-form input[type="submit"] {
  background: #e10600;
  color: white;
  font-weight: 600;
  padding: 14px 28px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  font-size: 16px;
  width: 100%;
}

.contact-form button:hover,
.contact-form input[type="submit"]:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(225, 6, 0, 0.3);
}
.contact-form button,
.contact-form input[type="submit"] {
  background: #e10600;
  color: white;
  font-weight: 600;
  padding: 14px 28px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  font-size: 16px;
  width: 100%;
}

.contact-form button:hover,
.contact-form input[type="submit"]:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(225, 6, 0, 0.3);
}
/* Service Card Images */
.card-img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  border-radius: 8px 8px 0 0;
  margin-bottom: 12px;
}

/* Testimonial avatars */
.card-img-small {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 12px;
}
/* ===== MOBILE OPTIMIZATION ===== */

@media (max-width: 768px) {

  body {
    font-size: 16px;
    line-height: 1.6;
  }

  section {
    padding: 60px 20px;
  }

  .services-grid,
  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .card {
    padding: 24px;
  }

  .card h3 {
    font-size: 20px;
  }

  .card p {
    font-size: 15px;
  }

  .contact-form {
    width: 100%;
  }

  input,
  textarea,
  button {
    font-size: 16px;
  }

  button {
    padding: 14px 18px;
  }
}
@media (max-width: 768px) {

  .hero {
    padding: 70px 20px 40px;
    min-height: auto;
  }

  .hero h1 {
    font-size: 24px;
    line-height: 1.25;
    margin-bottom: 16px;
  }

  .hero p {
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 20px;
  }

}
.hero {
height: auto;
display: block;
}
.disclaimer {
  font-size: 12px;
  opacity: 0.7;
  margin-top: 40px;
  text-align: center;
}
/* ===== FAQ Section ===== */

#faq {
  max-width: 900px;
  margin: 0 auto;
  padding: 80px 20px;
}

#faq h2 {
  text-align: center;
  font-size: 32px;
  margin-bottom: 50px;
}

#faq h3 {
  font-size: 20px;
  margin-bottom: 10px;
  margin-top: 30px;
}

#faq p {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 10px;
  color: #444;
}

/* Subtle separation between questions */
#faq h3:not(:first-of-type) {
  border-top: 1px solid #eee;
  padding-top: 25px;
}
#faq {
  background: #fafafa;
  border-radius: 12px;
}
/* ===== Testimonial Stars ===== */

.stars {
  color: #d62828; /* professional deep red */
  font-size: 30px;
  letter-spacing: 3px;
  margin-bottom: 15px;
}
/* ===== Hero Overlay ===== */

.hero {
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero {
  background:
    linear-gradient(rgba(0,0,0,0.25), rgba(0,0,0,0.25)),
    url("images/vancouver-hero.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.hero * {
  position: relative;
  z-index: 2;
}
.hero {
  will-change: transform;
  transform: translateZ(0);
}