* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #111;
  color: #fff;
  line-height: 1.6;
}

img {
  max-width: 100%;
}

.container {
  width: min(1200px, calc(100% - 40px));
  margin: 0 auto;
}

.center-text {
  text-align: center;
}

.narrow {
  max-width: 850px;
}

.section {
  padding: 75px 0;
}

.section-dark {
  background: #111;
}

.section-dark-alt {
  background: #151515;
}

.section-gallery {
  background: #181818;
}

.section-title {
  font-size: 36px;
  text-align: center;
  margin: 0 0 35px;
}

.top-bar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #000;
  border-bottom: 1px solid #222;
}

.top-bar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 14px 0;
  flex-wrap: wrap;
}

.brand {
  font-size: 24px;
  font-weight: bold;
  letter-spacing: 0.5px;
}

.top-call-btn,
.btn {
  display: inline-block;
  text-decoration: none;
  font-weight: bold;
  border-radius: 6px;
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.top-call-btn:hover,
.btn:hover {
  opacity: 0.88;
  transform: translateY(-1px);
}

.top-call-btn {
  background: #f5b400;
  color: #000;
  padding: 12px 18px;
}

.hero {
  position: relative;
  min-height: 92vh;
  overflow: hidden;
}

.hero-image {
  width: 100%;
  height: 92vh;
  object-fit: cover;
  display: block;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.62);
}

.hero-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.hero-content h1 {
  font-size: clamp(34px, 6vw, 64px);
  line-height: 1.1;
  margin: 0 0 16px;
  max-width: 900px;
}

.hero-content p {
  font-size: clamp(18px, 2.3vw, 24px);
  color: #e5e5e5;
  margin: 0 auto 28px;
  max-width: 760px;
}

.hero-buttons,
.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.btn {
  padding: 16px 24px;
}

.btn-primary {
  background: #007bff;
  color: #fff;
}

.btn-accent {
  background: #f5b400;
  color: #000;
}

.intro h2,
.cta-section h2,
.site-footer .footer-title,
.section h2 {
  margin-top: 0;
}

.intro h2,
.section h2,
.cta-section h2 {
  font-size: 36px;
  margin-bottom: 16px;
}

.intro p,
.cta-section p,
.section .narrow p,
.seo-section p {
  font-size: 18px;
  color: #d0d0d0;
}

.service-area-line {
  font-size: 20px;
  color: #d7d7d7;
  margin: 0 0 16px;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}

.card {
  background: #1c1c1c;
  padding: 24px;
  border-radius: 10px;
  border: 1px solid #2d2d2d;
}

.card h3 {
  margin-top: 0;
  color: #f5b400;
}

.card p {
  margin-bottom: 0;
  color: #d7d7d7;
}

.gallery-header {
  margin-bottom: 30px;
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
}

.project-card {
  background: #111;
  border: 1px solid #2d2d2d;
  border-radius: 10px;
  overflow: hidden;
}

.project-image-wrap {
  overflow: hidden;
}

.project-image {
  width: 100%;
  height: 300px;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.project-card:hover .project-image {
  transform: scale(1.05);
}

.project-content {
  padding: 16px;
}

.project-content h3 {
  margin: 0 0 8px;
  font-size: 20px;
}

.project-content p {
  margin: 0;
  color: #d0d0d0;
}

.seo-section h3 {
  margin-top: 28px;
  margin-bottom: 10px;
  color: #f5b400;
  font-size: 24px;
}

.cta-section {
  background: #000;
  padding: 85px 0;
}

/* QUOTE FORM STYLING */
.quote-form {
  max-width: 700px;
  margin: 30px auto 0;
  text-align: left;
}

.form-group {
  margin-bottom: 16px;
}

.quote-form input[type="text"],
.quote-form input[type="tel"],
.quote-form input[type="email"],
.quote-form textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid #333;
  border-radius: 8px;
  background: #fff;
  color: #000;
  font-size: 16px;
  font-family: Arial, sans-serif;
}

.quote-form input::placeholder,
.quote-form textarea::placeholder {
  color: #666;
}

.quote-form textarea {
  resize: vertical;
  min-height: 140px;
}

.quote-form input:focus,
.quote-form textarea:focus {
  outline: none;
  border-color: #f5b400;
  box-shadow: 0 0 0 2px rgba(245, 180, 0, 0.2);
}

.sms-consent-wrap {
  background: #111;
  border: 1px solid #2d2d2d;
  border-radius: 8px;
  padding: 14px;
}

.sms-checkbox {
  color: #d7d7d7;
  font-size: 14px;
  line-height: 1.6;
}

.sms-checkbox input[type="checkbox"] {
  margin-right: 10px;
  transform: scale(1.1);
  vertical-align: middle;
}

.quote-form button {
  border: none;
  cursor: pointer;
  font-size: 16px;
}

.policy-links {
  margin-top: 20px;
  font-size: 15px;
}

.policy-links a {
  color: #f5b400;
  text-decoration: none;
}

.policy-links a:hover {
  text-decoration: underline;
}

.site-footer {
  background: #111;
  padding: 30px 0;
  border-top: 1px solid #222;
}

.site-footer p {
  margin: 6px 0;
  color: #d0d0d0;
}

.site-footer .footer-title {
  font-size: 20px;
  font-weight: bold;
  color: #fff;
}

@media (max-width: 768px) {
  .section,
  .cta-section {
    padding: 60px 0;
  }

  .section-title,
  .intro h2,
  .section h2,
  .cta-section h2 {
    font-size: 30px;
  }

  .hero-image,
  .hero {
    min-height: 80vh;
    height: 80vh;
  }

  .top-bar-inner {
    justify-content: center;
    text-align: center;
  }

  .quote-form {
    margin-top: 24px;
  }
}