/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Base */
body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: #f3f4f6;
  color: #111827;
  line-height: 1.6;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 16px;
}

/* Header */
.top-bar {
  background: #111827;
  color: #f9fafb;
  padding: 12px 0;
}

.header-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.logo-block {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-icon {
  font-size: 32px;
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-title {
  font-size: 20px;
  font-weight: 700;
}

.logo-subtitle {
  font-size: 13px;
  opacity: 0.9;
}

.header-contact {
  text-align: right;
}

.call-now-label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  opacity: 0.9;
}

.call-now-number {
  font-size: 20px;
  font-weight: 700;
  color: #fbbf24;
  text-decoration: none;
}

.call-now-number:hover {
  text-decoration: underline;
}

.badge-line {
  margin-top: 6px;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  justify-content: flex-end;
}

.badge {
  background: #374151;
  color: #e5e7eb;
  padding: 3px 8px;
  border-radius: 999px;
  font-size: 11px;
}

/* Buttons */
.btn-primary {
  display: inline-block;
  padding: 10px 20px;
  border-radius: 999px;
  background: #fbbf24;
  color: #111827;
  font-weight: 600;
  text-decoration: none;
  font-size: 14px;
  border: none;
  cursor: pointer;
  text-align: center;
}

.btn-primary:hover {
  opacity: 0.95;
}

.btn-ghost {
  display: inline-block;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid #e5e7eb;
  background: #ffffff;
  color: #111827;
  font-size: 13px;
  text-decoration: none;
}

.btn-ghost:hover {
  background: #f3f4f6;
}

/* Hero */
.hero {
  background: linear-gradient(135deg, #f97316 0%, #111827 80%);
  color: #f9fafb;
  padding: 40px 0 50px;
}

.hero-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: stretch;
}

.hero-text {
  flex: 1.2;
  min-width: 260px;
}

.hero-text h1 {
  font-size: 28px;
  margin-bottom: 10px;
}

.hero-subtitle {
  font-size: 15px;
  max-width: 560px;
  margin-bottom: 16px;
  opacity: 0.95;
}

.hero-cta {
  margin-bottom: 14px;
}

.hero-note {
  font-size: 12px;
  margin-top: 4px;
  opacity: 0.95;
}

.hero-list {
  margin-top: 10px;
  font-size: 14px;
  list-style: disc;
  padding-left: 18px;
}

/* Slider */
.hero-slider {
  flex: 1;
  min-width: 260px;
  background: rgba(0, 0, 0, 0.2);
  border-radius: 18px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.45);
}

.hero-slider img {
  width: 100%;
  height: 260px;
  object-fit: cover;
}

.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.6s ease;
}

.slide.active {
  opacity: 1;
}

.slider-dots {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: 1px solid #fbbf24;
  background: transparent;
}

.dot.active {
  background: #fbbf24;
}

/* Brand strip */
.brand-strip {
  padding: 18px 0;
  background: #111827;
  color: #e5e7eb;
}

.brand-strip-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.brand-strip-label {
  font-size: 13px;
}

.brand-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.brand-pill {
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
}

.brand-liftmaster {
  background: #7f1d1d;
  color: #fee2e2;
}

.brand-chamberlain {
  background: #1d4ed8;
  color: #dbeafe;
}

.brand-other {
  background: #374151;
  color: #e5e7eb;
}

/* Sections */
.section {
  padding: 40px 0;
  background: #f3f4f6;
}

.section-alt {
  background: #ffffff;
}

.section-title {
  font-size: 22px;
  margin-bottom: 4px;
  text-align: center;
}

.section-title.left {
  text-align: left;
}

.section-intro {
  font-size: 14px;
  text-align: center;
  max-width: 640px;
  margin: 0 auto 20px;
  color: #4b5563;
}

.section-intro.left {
  text-align: left;
  margin-left: 0;
}

/* Cards grid */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px;
}

.card {
  background: #ffffff;
  border-radius: 16px;
  padding: 16px 16px 18px;
  box-shadow: 0 3px 12px rgba(15, 23, 42, 0.08);
}

.section-alt .card {
  background: #f9fafb;
}

.card h3 {
  font-size: 16px;
  margin-bottom: 6px;
}

.card p {
  font-size: 13px;
  color: #4b5563;
  margin-bottom: 8px;
}

.card-list {
  list-style: disc;
  padding-left: 16px;
  font-size: 13px;
  color: #111827;
}

/* Springs gallery */
.springs-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px;
}

.spring-item img {
  width: 100%;
  border-radius: 12px;
  display: block;
  margin-bottom: 6px;
  object-fit: cover;
  height: 170px;
}

.spring-item p {
  font-size: 13px;
  color: #4b5563;
}

/* Reviews */
.reviews-layout {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px;
}

.review-card {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.review-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.review-logo {
  font-size: 14px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 999px;
}

.review-yelp {
  background: #b91c1c;
  color: #fee2e2;
}

.review-google {
  background: #1d4ed8;
  color: #dbeafe;
}

.review-stars {
  font-size: 14px;
  color: #facc15;
}

.review-text {
  font-size: 13px;
  color: #374151;
}

.review-name {
  font-size: 12px;
  color: #6b7280;
  font-style: italic;
}

/* Service area */
.service-area-list {
  margin-top: 10px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
}

.service-area-list span {
  padding: 6px 10px;
  border-radius: 999px;
  background: #e5e7eb;
  font-size: 12px;
}

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 18px;
}

.contact-box {
  background: #ffffff;
  border-radius: 16px;
  padding: 18px 18px 20px;
  box-shadow: 0 3px 12px rgba(15, 23, 42, 0.08);
}

.contact-list {
  list-style: none;
  margin: 10px 0 16px;
  font-size: 14px;
}

.contact-list li + li {
  margin-top: 4px;
}

.contact-list a {
  color: #1d4ed8;
  text-decoration: none;
}

.contact-list a:hover {
  text-decoration: underline;
}

/* Form */
.form-box h3 {
  font-size: 18px;
  margin-bottom: 6px;
}

.form-intro {
  font-size: 13px;
  color: #4b5563;
  margin-bottom: 10px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.form-field label {
  font-size: 13px;
  color: #374151;
}

.form-field input,
.form-field textarea {
  border-radius: 10px;
  border: 1px solid #d1d5db;
  padding: 8px 10px;
  font-size: 14px;
  font-family: inherit;
}

.form-field input:focus,
.form-field textarea:focus {
  outline: none;
  border-color: #f97316;
  box-shadow: 0 0 0 1px rgba(249, 115, 22, 0.35);
}

.full-width {
  width: 100%;
}

.form-note {
  font-size: 12px;
  color: #6b7280;
  margin-top: 6px;
}

/* Footer */
.footer {
  background: #111827;
  color: #9ca3af;
  padding: 14px 0 18px;
  font-size: 12px;
}

.footer-inner {
  text-align: center;
}

/* Responsive */
@media (max-width: 800px) {
  .header-contact {
    text-align: left;
  }

  .badge-line {
    justify-content: flex-start;
  }

  .hero {
    padding-top: 26px;
  }

  .hero-inner {
    flex-direction: column;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 500px) {
  .hero-text h1 {
    font-size: 23px;
  }

  .hero-slider img {
    height: 210px;
  }
}
