:root {
  --bg: #ffffff;
  --bg-alt: #f6f6f6;
  --border: #e2e2e2;
  --text: #4a4a4a;
  --heading: #1a1a1a;
  --dark: #1a1a1a;
  --accent: #ff6a1a;
  --accent-dark: #e35c12;
  --white: #ffffff;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Helvetica Neue', Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  padding-top: 38px; /* room for sticky topbar */
}

/* View picker popup */
.view-picker-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.55);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
}
.view-picker {
  background: var(--white);
  border-radius: 16px;
  padding: 32px 28px;
  text-align: center;
  box-shadow: 0 16px 48px rgba(0,0,0,0.3);
  max-width: 320px;
  width: 90%;
}
.view-picker-label {
  font-size: 17px;
  font-weight: 700;
  color: var(--heading);
  margin-bottom: 20px;
  letter-spacing: 0.5px;
}
.view-picker-buttons {
  display: flex;
  gap: 14px;
  justify-content: center;
}
.view-picker-buttons button {
  flex: 1;
  padding: 14px 10px;
  border: 2px solid var(--border);
  border-radius: 10px;
  background: var(--bg-alt);
  color: var(--heading);
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: 0.2s ease;
}
.view-picker-buttons button:hover {
  border-color: var(--accent);
  background: var(--accent);
  color: var(--white);
}

/* Sticky top bar — on every page */
.topbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 38px;
  background: var(--heading);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  z-index: 1000;
}

.topbar a {
  color: var(--white);
  text-decoration: none;
}

.topbar .topbar-quote {
  background: var(--accent);
  color: var(--heading);
  padding: 6px 16px;
  border-radius: 30px;
  font-weight: 800;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 1px;
  transition: 0.2s ease;
}

.topbar .topbar-quote:hover {
  background: var(--accent-dark);
  color: var(--white);
}

/* Floating call button — bottom right, every page */
.floating-cta {
  position: fixed;
  bottom: 24px;
  right: 24px;
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--accent);
  color: var(--heading);
  text-decoration: none;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 16px 26px;
  border-radius: 50px;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.3);
  z-index: 1000;
  animation: floatPulse 2.4s ease-in-out infinite;
  font-size: 14px;
}

.floating-cta:hover {
  background: var(--accent-dark);
  color: var(--white);
}

.floating-cta-left {
  left: 24px;
  right: auto;
  background: var(--heading);
  color: var(--white);
}

.floating-cta-left:hover {
  background: #000;
  color: var(--accent);
}

@keyframes floatPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.06); }
}

/* Header */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 40px;
  background: var(--white);
  border-bottom: 3px solid var(--border);
  flex-wrap: wrap;
}

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

.logo-img {
  height: 100px;
  width: auto;
  object-fit: contain;
  filter: brightness(0);
  opacity: 0;
  animation: logoPopIn 1.4s ease-out 0.2s forwards;
}

@keyframes logoPopIn {
  0% { opacity: 0; transform: scale(0.3) rotate(-15deg); }
  60% { opacity: 1; transform: scale(1.15) rotate(5deg); }
  80% { transform: scale(0.95) rotate(-2deg); }
  100% { opacity: 1; transform: scale(1) rotate(0deg); }
}

.logo-text {
  font-size: 22px;
  font-weight: bold;
  letter-spacing: 2px;
  color: var(--heading);
}

.logo-text span {
  color: var(--accent);
  font-weight: 300;
}

nav ul {
  display: flex;
  list-style: none;
  gap: 28px;
}

nav a {
  text-decoration: none;
  color: var(--text);
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: 14px;
  transition: color 0.2s ease;
}

nav a:hover, nav a.active { color: var(--accent); border-bottom: 2px solid var(--accent); }

/* Hero */
.hero {
  position: relative;
  overflow: hidden;
  background: var(--heading);
  color: var(--white);
  text-align: center;
  padding: 110px 20px 130px;
}

.hero::before {
  content: "";
  position: absolute;
  top: -20%;
  right: -15%;
  width: 60%;
  height: 140%;
  background: var(--accent);
  clip-path: polygon(40% 0, 100% 0, 100% 100%, 0% 100%);
  opacity: 0.9;
  z-index: 0;
}

.hero::after {
  content: "";
  position: absolute;
  bottom: -40px;
  left: 0;
  right: 0;
  height: 80px;
  background: var(--bg);
  clip-path: polygon(0 40%, 100% 0, 100% 100%, 0% 100%);
  z-index: 1;
}

.hero > * {
  position: relative;
  z-index: 2;
}

.hero-logo {
  margin: 0 auto 20px;
  display: flex;
  justify-content: center;
  opacity: 0;
  animation: popIn 0.7s ease-out 0.1s forwards;
}

.hero h1 {
  font-family: 'Oswald', 'Helvetica Neue', Arial, sans-serif;
  font-size: 50px;
  font-weight: 800;
  letter-spacing: 4px;
  margin-bottom: 16px;
  color: var(--white);
  text-shadow: 3px 3px 0 var(--accent);
  opacity: 0;
  animation: popIn 0.7s ease-out 0.3s forwards;
}

.hero p {
  font-size: 18px;
  max-width: 600px;
  margin: 0 auto 30px;
  color: #f0f0f0;
  opacity: 0;
  animation: fadeUp 0.7s ease-out 0.5s forwards;
}

.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.7s ease-out 0.7s forwards;
}

@keyframes popIn {
  0% { opacity: 0; transform: scale(0.7); }
  70% { opacity: 1; transform: scale(1.08); }
  100% { opacity: 1; transform: scale(1); }
}

@keyframes popInBig {
  0% { opacity: 0; transform: scale(0.4) rotate(-4deg); }
  60% { opacity: 1; transform: scale(1.15) rotate(2deg); }
  80% { transform: scale(0.97) rotate(-1deg); }
  100% { opacity: 1; transform: scale(1) rotate(0deg); }
}

@keyframes fadeUp {
  0% { opacity: 0; transform: translateY(20px); }
  100% { opacity: 1; transform: translateY(0); }
}

@keyframes fadeUpBig {
  0% { opacity: 0; transform: translateY(40px) scale(0.9); }
  100% { opacity: 1; transform: translateY(0) scale(1); }
}

/* Page header (non-home pages) */
.page-header {
  position: relative;
  overflow: hidden;
  background: var(--heading);
  color: var(--white);
  text-align: center;
  padding: 70px 20px 90px;
}

.page-header::before {
  content: "";
  position: absolute;
  top: -30%;
  left: -10%;
  width: 50%;
  height: 160%;
  background: var(--accent);
  clip-path: polygon(0 0, 60% 0, 30% 100%, 0% 100%);
  opacity: 0.9;
}

.page-header h1 {
  position: relative;
  z-index: 2;
  font-family: 'Oswald', 'Helvetica Neue', Arial, sans-serif;
  font-size: 38px;
  font-weight: 800;
  letter-spacing: 4px;
  color: var(--white);
  opacity: 0;
  animation: popInBig 0.8s ease-out 0.1s forwards;
}

/* Section titles pop up */
.section h2 {
  text-align: center;
  font-size: 32px;
  letter-spacing: 2px;
  margin-bottom: 10px;
  color: var(--heading);
  opacity: 0;
  animation: fadeUpBig 0.7s ease-out 0.15s forwards;
}

.section h2::after {
  content: "";
  display: block;
  width: 60px;
  height: 4px;
  background: var(--accent);
  margin: 14px auto 36px;
  border-radius: 2px;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 700;
  letter-spacing: 1px;
  transition: 0.2s ease;
  transform: scale(1);
}

.btn:hover {
  transform: scale(1.06);
  box-shadow: 0 6px 14px rgba(0,0,0,0.18);
}

.btn-light {
  background: var(--accent);
  color: var(--white);
}

.btn-light:hover { background: var(--accent-dark); }

.btn-outline {
  border: 2px solid var(--white);
  color: var(--white);
}

.btn-outline:hover { background: var(--white); color: var(--heading); }

/* Sections */
.section {
  padding: 70px 40px;
  max-width: 1100px;
  margin: 0 auto;
}

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

.gallery-item {
  background: var(--bg-alt);
  border: 2px dashed var(--border);
  border-radius: 6px;
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text);
  font-size: 14px;
  text-align: center;
  padding: 10px;
  opacity: 0;
  animation: fadeUpBig 0.6s ease-out forwards;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.gallery-item:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 16px 36px rgba(0,0,0,0.28);
  border-color: var(--accent);
}

.gallery-item img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(255,106,26,0.75) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 1;
}

.gallery-item:hover::after {
  opacity: 1;
}

.gallery-item .gallery-label {
  position: absolute;
  bottom: 10px;
  left: 0;
  right: 0;
  text-align: center;
  z-index: 2;
  color: var(--white);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.gallery-item:hover .gallery-label {
  opacity: 1;
  transform: translateY(0);
}

/* Lightbox for enlarging gallery photos */
.lightbox-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  z-index: 3000;
  align-items: center;
  justify-content: center;
  padding: 30px;
}

.lightbox-overlay.open { display: flex; }

.lightbox-overlay img {
  max-width: 90vw;
  max-height: 90vh;
  border-radius: 8px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
  animation: popIn 0.3s ease-out forwards;
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 30px;
  background: none;
  border: none;
  color: var(--white);
  font-size: 36px;
  line-height: 1;
  cursor: pointer;
}

.lightbox-close:hover { color: var(--accent); }

.gallery-item:nth-child(1) { animation-delay: 0.1s; }
.gallery-item:nth-child(2) { animation-delay: 0.2s; }
.gallery-item:nth-child(3) { animation-delay: 0.3s; }
.gallery-item:nth-child(4) { animation-delay: 0.4s; }
.gallery-item:nth-child(5) { animation-delay: 0.5s; }
.gallery-item:nth-child(6) { animation-delay: 0.6s; }
.gallery-item:nth-child(7) { animation-delay: 0.7s; }
.gallery-item:nth-child(8) { animation-delay: 0.8s; }
.gallery-item:nth-child(9) { animation-delay: 0.9s; }

/* Process */
.process {
  background: var(--bg-alt);
}

.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}

.step {
  background: var(--white);
  border: 1px solid var(--border);
  border-left: 4px solid var(--accent);
  border-radius: 6px;
  padding: 24px;
  opacity: 0;
  animation: fadeUpBig 0.6s ease-out forwards;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.step:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.step h3 {
  margin-bottom: 10px;
  color: var(--heading);
  font-size: 18px;
}

.step p { font-size: 15px; color: var(--text); }

.step:nth-child(1) { animation-delay: 0.1s; }
.step:nth-child(2) { animation-delay: 0.2s; }
.step:nth-child(3) { animation-delay: 0.3s; }
.step:nth-child(4) { animation-delay: 0.4s; }
.step:nth-child(5) { animation-delay: 0.5s; }
.step:nth-child(6) { animation-delay: 0.6s; }

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

.review {
  background: var(--bg-alt);
  border-radius: 6px;
  padding: 24px;
  font-style: italic;
  color: var(--text);
  opacity: 0;
  animation: fadeUpBig 0.6s ease-out forwards;
  position: relative;
}

.review cite {
  display: block;
  margin-top: 14px;
  font-style: normal;
  font-weight: 600;
  color: var(--heading);
}

.review:nth-child(1) { animation-delay: 0.2s; }
.review:nth-child(2) { animation-delay: 0.4s; }
.review:nth-child(3) { animation-delay: 0.6s; }

.cta {
  text-align: center;
  margin-top: 40px;
}

.cta .btn {
  background: var(--accent);
  color: var(--white);
  font-size: 20px;
  padding: 20px 44px;
  border-radius: 50px;
}

.cta .btn:hover { background: var(--accent-dark); }

/* About page */
.about-content {
  max-width: 800px;
  margin: 0 auto;
  font-size: 17px;
  color: var(--text);
}

.about-content > * {
  opacity: 0;
  animation: fadeUpBig 0.6s ease-out forwards;
}

.about-content h3 {
  margin: 30px 0 10px;
  color: var(--heading);
  border-left: 4px solid var(--accent);
  padding-left: 12px;
}

.about-content > *:nth-child(1) { animation-delay: 0.15s; }
.about-content > *:nth-child(2) { animation-delay: 0.25s; }
.about-content > *:nth-child(3) { animation-delay: 0.35s; }
.about-content > *:nth-child(4) { animation-delay: 0.45s; }
.about-content > *:nth-child(5) { animation-delay: 0.55s; }
.about-content > *:nth-child(6) { animation-delay: 0.65s; }
.about-content > *:nth-child(7) { animation-delay: 0.75s; }
.about-content > *:nth-child(8) { animation-delay: 0.85s; }

/* Contact page */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  max-width: 800px;
  margin: 0 auto;
}

.contact-card {
  background: var(--bg-alt);
  border-radius: 6px;
  padding: 30px;
  text-align: center;
  border-top: 4px solid var(--accent);
  opacity: 0;
  animation: popInBig 0.7s ease-out forwards;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.contact-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.contact-card h3 {
  margin-bottom: 10px;
  color: var(--accent);
}

.contact-card a {
  color: var(--accent-dark);
  text-decoration: none;
  font-weight: 600;
}

.contact-card:nth-child(1) { animation-delay: 0.15s; }
.contact-card:nth-child(2) { animation-delay: 0.3s; }
.contact-card:nth-child(3) { animation-delay: 0.45s; }

/* Footer */
footer {
  background: var(--heading);
  color: #cfcfcf;
  text-align: center;
  padding: 40px 20px 70px;
}

footer h3 {
  margin-bottom: 14px;
  letter-spacing: 1px;
  color: var(--accent);
}

footer p { font-size: 15px; margin: 4px 0; }

footer a { color: var(--white); text-decoration: none; }

/* Book a Free Quote modal */
.quote-modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 2000;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.quote-modal-overlay.open {
  display: flex;
}

.quote-modal {
  background: var(--white);
  border-radius: 10px;
  max-width: 460px;
  width: 100%;
  padding: 34px;
  position: relative;
  text-align: center;
  box-shadow: 0 20px 50px rgba(0,0,0,0.3);
  animation: popInBig 0.4s ease-out forwards;
}

.quote-modal h2 {
  font-family: 'Oswald', 'Helvetica Neue', Arial, sans-serif;
  font-size: 26px;
  letter-spacing: 2px;
  color: var(--heading);
  margin-bottom: 6px;
}

.quote-modal h2::after {
  content: "";
  display: block;
  width: 50px;
  height: 4px;
  background: var(--accent);
  margin: 12px auto 18px;
  border-radius: 2px;
}

.quote-modal p.modal-sub {
  font-size: 14px;
  color: var(--text);
  margin-bottom: 22px;
}

.quote-modal .modal-close {
  position: absolute;
  top: 14px;
  right: 16px;
  background: none;
  border: none;
  font-size: 22px;
  line-height: 1;
  color: var(--text);
  cursor: pointer;
}

.quote-modal .modal-close:hover { color: var(--accent); }

.quote-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
  text-align: left;
}

.quote-form label {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--heading);
  margin-bottom: 6px;
  display: block;
}

.quote-form input,
.quote-form select,
.quote-form textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: 6px;
  font-size: 15px;
  font-family: inherit;
  color: var(--heading);
  background: var(--bg-alt);
}

.quote-form input:focus,
.quote-form select:focus,
.quote-form textarea:focus {
  outline: 2px solid var(--accent);
}

.quote-form textarea { resize: vertical; min-height: 80px; }

.quote-form .btn {
  border: none;
  cursor: pointer;
  background: var(--accent);
  color: var(--white);
  font-size: 16px;
  padding: 14px;
  border-radius: 30px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-top: 4px;
}

.quote-form .btn:hover { background: var(--accent-dark); }

/* Blog */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 28px;
  max-width: 1100px;
  margin: 0 auto;
}
.blog-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
}
.blog-card:hover { transform: translateY(-6px); box-shadow: 0 12px 30px rgba(0,0,0,0.1); }
.blog-card-img { height: 200px; position: relative; }
.blog-card-img::after,
.gallery-item::after {
  content: '';
  position: absolute;
  top: 8px;
  left: 8px;
  width: 52px;
  height: 20px;
  background-image: url('images/logo.png');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: left center;
  background-color: rgba(255,255,255,0.88);
  padding: 3px 5px;
  border-radius: 3px;
  box-sizing: content-box;
  pointer-events: none;
  z-index: 2;
}
.blog-card-body { padding: 20px; }
.blog-tag {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 20px;
  margin-bottom: 10px;
}
.blog-card-body h3 { font-size: 16px; margin: 8px 0; color: var(--dark); line-height: 1.4; }
.blog-card-body p { font-size: 14px; color: var(--text); line-height: 1.6; margin-bottom: 12px; }
.blog-card { cursor: pointer; }

/* Blog post full-page */
.blog-modal-overlay {
  position: fixed; inset: 0;
  background: var(--white);
  z-index: 2000;
  overflow-y: auto;
  opacity: 0; pointer-events: none;
  transition: opacity 0.25s ease;
}
.blog-modal-overlay.open { opacity: 1; pointer-events: all; }
.blog-modal {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
/* Hero: full-width photo + dark overlay + title on top */
.blog-modal-hero {
  width: 100%;
  height: 480px;
  background-size: cover;
  background-position: center;
  background-color: #111;
  position: relative;
  flex-shrink: 0;
}
.blog-modal-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.55);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding-bottom: 48px;
}
.blog-modal-hero-text {
  padding: 0 48px;
}
#blogModalTitle {
  font-family: 'Oswald', sans-serif;
  font-size: 52px;
  font-weight: 700;
  color: #fff;
  line-height: 1.1;
  margin-top: 10px;
  max-width: 800px;
}
.blog-modal-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 20px 32px;
  font-size: 13px;
  font-weight: 700;
  color: rgba(255,255,255,0.8);
  cursor: pointer;
  border: none;
  background: none;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.blog-modal-back:hover { color: #fff; }
.blog-modal-body {
  max-width: 740px;
  margin: 0 auto;
  padding: 40px 32px 80px;
  width: 100%;
}
.blog-modal-content p { margin-bottom: 18px; line-height: 1.9; color: var(--text); font-size: 16px; }
.blog-modal-content h4 { font-size: 14px; font-weight: 700; color: #1a1a1a; margin: 28px 0 10px; text-transform: uppercase; letter-spacing: 1px; border-left: 3px solid var(--accent); padding-left: 10px; }

/* Inline form section */
.inline-form-section { background: var(--dark); }
.inline-form-section h2 { color: var(--white); }
.inline-form-wrap {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 48px;
  align-items: start;
  max-width: 960px;
  margin: 0 auto;
}
.inline-form-left p { color: #ccc; line-height: 1.7; margin-bottom: 24px; }
.inline-form-contact p { color: var(--white); margin: 8px 0; font-weight: 600; }
.inline-form-contact a { color: var(--accent); text-decoration: none; }
.inline-form-contact a:hover { text-decoration: underline; }
.inline-form-right .quote-form input,
.inline-form-right .quote-form select,
.inline-form-right .quote-form textarea {
  background: #2a2a2a;
  border-color: #444;
  color: var(--white);
}
.inline-form-right .quote-form label { color: #bbb; }
@media (max-width: 700px) {
  .inline-form-wrap { grid-template-columns: 1fr; gap: 24px; }
  .blog-modal-hero { height: 320px; }
  #blogModalTitle { font-size: 30px; }
  .blog-modal-hero-text { padding: 0 20px; }
  .blog-modal-body { padding: 28px 20px 60px; }
}

.robot-check {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: 6px;
  background: var(--bg-alt);
  font-size: 14px;
  font-weight: 600;
  color: var(--dark);
}
.robot-check label { display: flex; align-items: center; gap: 10px; cursor: pointer; }
.robot-check input[type="checkbox"] { width: 18px; height: 18px; accent-color: var(--accent); cursor: pointer; }

.quote-success {
  display: none;
  text-align: center;
  padding: 20px 0;
}

.quote-success.show { display: block; }

.quote-success h3 {
  font-family: 'Oswald', 'Helvetica Neue', Arial, sans-serif;
  font-size: 22px;
  color: var(--heading);
  margin-bottom: 10px;
  letter-spacing: 1px;
}

.quote-success p { color: var(--text); font-size: 15px; }

@media (max-width: 600px) {
  /* Header */
  header { flex-direction: column; gap: 12px; padding: 14px 16px; }
  .logo-img { height: 60px; }
  .logo-text { font-size: 17px; }
  nav ul { flex-wrap: wrap; justify-content: center; gap: 8px 14px; }
  nav ul li a { font-size: 12px; }

  /* Topbar */
  .topbar { font-size: 10px; padding: 0 10px; gap: 8px; flex-wrap: wrap; height: auto; min-height: 38px; padding-top: 4px; padding-bottom: 4px; }
  .topbar .topbar-quote { font-size: 10px; padding: 4px 10px; }

  /* Hero */
  .hero { padding: 60px 16px 80px; }
  .hero h1 { font-size: 26px; letter-spacing: 2px; }
  .hero p { font-size: 14px; }
  .hero-buttons { flex-direction: column; gap: 10px; align-items: center; }
  .hero-buttons .btn { width: 100%; max-width: 260px; text-align: center; }
  .hero::before { width: 55%; right: -20%; }

  /* Sections */
  .section { padding: 36px 16px; }
  .section h2 { font-size: 24px; }

  /* Steps / process */
  .steps { grid-template-columns: 1fr; gap: 16px; }
  .step { padding: 18px; }

  /* Reviews */
  .reviews { grid-template-columns: 1fr; gap: 16px; }

  /* Gallery */
  .gallery { grid-template-columns: 1fr 1fr; gap: 8px; }
  .gallery-item { height: 130px; }

  /* Blog */
  .blog-grid { grid-template-columns: 1fr; }

  /* Contact */
  .contact-grid { grid-template-columns: 1fr; gap: 16px; }
  .contact-card { padding: 20px; }

  /* Page headers (gallery, about, contact, blog pages) */
  .page-header { padding: 44px 16px; }
  .page-header h1 { font-size: 26px; }
  .page-header::before { width: 55%; left: -20%; }

  /* About */
  .about-grid { grid-template-columns: 1fr; }
  .about-content { font-size: 15px; }

  /* Forms */
  .quote-modal { margin: 14px; padding: 20px 16px; }
  .inline-form-wrap { grid-template-columns: 1fr; gap: 16px; }

  /* Floating CTAs — left and right, smaller on mobile */
  .floating-cta { padding: 10px 12px; font-size: 11px; bottom: 14px; right: 14px; letter-spacing: 0; }
  .floating-cta-left { left: 14px; right: auto; bottom: 14px; }

  /* Footer */
  footer { padding: 28px 16px; font-size: 14px; }
}

/* Fake reCAPTCHA */
.fake-captcha {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1px solid #d3d3d3;
  border-radius: 4px;
  background: #f9f9f9;
  padding: 12px 16px;
  margin-bottom: 14px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}
.fake-captcha-check {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
}
.fake-captcha-check input[type="checkbox"] {
  display: none;
}
.fake-captcha-box {
  width: 24px;
  height: 24px;
  border: 2px solid #c1c1c1;
  border-radius: 2px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: border-color 0.2s, background 0.2s;
}
.fake-captcha-check input[type="checkbox"]:checked + .fake-captcha-box {
  border-color: #4A90D9;
  background: #4A90D9;
}
.fake-captcha-check input[type="checkbox"]:checked + .fake-captcha-box::after {
  content: '';
  display: block;
  width: 6px;
  height: 11px;
  border: 2px solid #fff;
  border-top: none;
  border-left: none;
  transform: rotate(45deg) translate(-1px, -1px);
}
.fake-captcha-label {
  font-size: 14px;
  color: #333;
  user-select: none;
}
.fake-captcha-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1px;
  color: #999;
}
.fake-captcha-logo span {
  font-size: 10px;
  font-weight: 700;
  color: #555;
  letter-spacing: 0.5px;
}
.fake-captcha-logo small {
  font-size: 8px;
  color: #aaa;
}
