/* ============================================
   Green Effects Property Maintenance
   Main Stylesheet — Mobile-First
   ============================================ */

/* --- CSS Custom Properties --- */
:root {
  --green: #86C040;
  --green-hover: #74a838;
  --charcoal: #424242;
  --text-secondary: #666666;
  --white: #FFFFFF;
  --light-grey: #F5F5F5;
  --font: 'Source Sans 3', 'Source Sans Pro', sans-serif;
  --space-exception: 8px;
  --space-tight: 16px;
  --space-spaced: 32px;
  --space-hero-action: 48px;
  --space-accent: 64px;
  --space-section: 96px;
  --section-padding-mobile: 48px 0;
  --section-padding-tablet: 72px 0;
  --section-padding-desktop: 96px 0;
  --container-max: 1200px;
  --container-padding: 0 24px;
  --radius: 12px;
  --radius-lg: 16px;
  --transition: 0.3s ease;
}

/* --- Reset & Base --- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;
}

[id] {
  scroll-margin-top: 80px;
}

body {
  font-family: var(--font);
  font-size: 17px;
  font-weight: 400;
  line-height: 1.6;
  color: var(--charcoal);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--green);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover {
  color: var(--green-hover);
}

/* --- Skip Navigation (Accessibility) --- */
.skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  background: var(--charcoal);
  color: var(--white);
  padding: 12px 24px;
  border-radius: var(--radius);
  z-index: 10000;
  font-weight: 600;
  transition: top 0.2s;
}

.skip-link:focus {
  top: 16px;
  color: var(--white);
}

/* --- Container --- */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: var(--container-padding);
}

/* --- Typography --- */
h1, h2, h3, h4 {
  color: var(--charcoal);
  line-height: 1.15;
}

h1 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 20px;
}

h2 {
  font-size: 28px;
  font-weight: 600;
  margin-bottom: var(--space-tight);
}

h3 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 12px;
}

p {
  margin-bottom: 16px;
}

.green {
  color: var(--green);
  font-weight: 400;
}

.green-italic {
  color: var(--green);
  font-style: italic;
}

.green-bold {
  color: var(--green);
  font-weight: 700;
}

.bold {
  font-weight: 700;
}

/* Heading typography: last word green (same weight as heading) */
.heading-accent {
  font-weight: 600;
  color: var(--green);
}

.green-word {
  color: var(--green);
}

/* --- Buttons --- */
.btn {
  display: inline-block;
  padding: 14px 36px;
  font-family: var(--font);
  font-size: 16px;
  font-weight: 600;
  border-radius: 100px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
  text-align: center;
  line-height: 1;
}

.btn-primary {
  background: var(--green);
  color: var(--white);
  border-color: var(--green);
}

.btn-primary:hover {
  background: var(--green-hover);
  color: var(--white);
  transform: translateY(-1px);
}

.btn-secondary {
  background: transparent;
  color: var(--charcoal);
  border: 1.5px solid rgba(66, 66, 66, 0.5);
}

.btn-secondary:hover {
  background: var(--charcoal);
  color: var(--white);
}

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

.btn-white:hover {
  background: var(--light-grey);
  color: var(--charcoal);
}

.cta-phone {
  display: block;
  margin-top: 14px;
  font-size: 15px;
  color: var(--charcoal);
  font-weight: 400;
}

.cta-phone a {
  color: var(--charcoal);
  font-weight: 600;
}

.cta-phone a:hover {
  color: var(--green);
}

/* --- Header / Navigation --- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  transition: box-shadow var(--transition);
}

.site-header.scrolled {
  box-shadow: 0 1px 12px rgba(0, 0, 0, 0.06);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
}

.logo a {
  display: flex;
  align-items: center;
}

.logo img {
  height: 40px;
  width: auto;
}

/* Desktop nav */
.nav-links {
  display: none;
  list-style: none;
  gap: 32px;
  align-items: center;
}

.nav-links a {
  color: var(--charcoal);
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  position: relative;
  padding-bottom: 4px;
  transition: color var(--transition);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--green);
  transition: width var(--transition);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-links a.active {
  color: var(--green);
}

.header-right {
  display: flex;
  align-items: center;
  gap: 16px;
}

.header-phone {
  display: none;
  font-size: 15px;
  font-weight: 600;
  color: var(--charcoal);
}

.header-phone:hover {
  color: var(--green);
}

.header-cta {
  display: none;
  padding: 8px 20px;
  font-size: 14px;
}

/* Hamburger */
.hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}

.hamburger span {
  width: 24px;
  height: 2px;
  background: var(--charcoal);
  transition: all var(--transition);
  border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile menu */
.mobile-menu {
  display: none;
  position: absolute;
  top: 72px;
  left: 0;
  right: 0;
  min-height: calc(100vh - 72px);
  min-height: calc(100dvh - 72px);
  background: #FFFFFF;
  padding: 40px 24px;
  z-index: 9999;
  overflow-y: auto;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.mobile-menu.active {
  display: block;
}

.mobile-menu ul {
  list-style: none;
}

.mobile-menu li {
  border-bottom: 1px solid var(--light-grey);
}

.mobile-menu a {
  display: block;
  padding: 18px 0;
  color: var(--charcoal);
  font-size: 18px;
  font-weight: 600;
}

.mobile-menu a.active {
  color: var(--green);
}

.mobile-menu-cta {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
}

.mobile-menu-cta .btn {
  display: inline-block;
  width: auto;
  padding: 14px 36px;
  font-size: 16px;
  text-align: center;
  color: var(--white);
}

.mobile-menu-phone {
  font-size: 18px;
  font-weight: 600;
  color: var(--charcoal);
  text-align: center;
  display: block;
  margin-top: 8px;
}

/* --- Section Styles --- */
.section {
  padding: var(--section-padding-mobile);
}

.section-white {
  background: var(--white);
}

.section-grey {
  background: var(--light-grey);
}

.section-dark {
  background: var(--charcoal);
  color: var(--white);
}

.section-dark h2,
.section-dark h3 {
  color: var(--white);
}

/* --- Hero Section --- */
.hero {
  padding: 48px 0;
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.hero-text {
  max-width: 500px;
}

.hero-text h1 {
  font-size: 36px;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: var(--space-tight);
}

.hero-text .subtitle {
  font-size: 18px;
  line-height: 1.5;
  margin-bottom: var(--space-hero-action);
  color: var(--text-secondary);
  opacity: 1;
  max-width: 100%;
}

.hero-image {
  border-radius: var(--radius);
  overflow: hidden;
}

.hero-image img {
  width: 100%;
  height: auto;
  border-radius: var(--radius);
}

/* --- Services Overview --- */

/* --- Services Grid (3 Blocks) --- */
.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-spaced);
}

.service-block {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.service-block-icon {
  display: block;
  width: 120px;
  height: 120px;
  margin: 0 auto var(--space-tight) auto;
}

.service-block h3 {
  font-size: 21px;
  font-weight: 600;
  text-align: center;
  margin-bottom: var(--space-tight);
}

.service-block p {
  flex: 1;
  font-size: 17px;
  line-height: 1.7;
  color: var(--text-secondary);
  text-align: left;
  max-width: 304px;
  margin: 0 auto var(--space-tight) auto;
  min-height: 0;
  opacity: 1;
}

.service-block .link-arrow {
  font-weight: 600;
  font-size: 16px;
  color: var(--green);
  display: block;
  text-align: right;
  max-width: 304px;
  width: 100%;
}

.service-block .link-arrow:hover {
  color: var(--green-hover);
}

.link-arrow::after {
  content: '→';
  transition: margin-left var(--transition);
}

/* --- Trust Signal --- */
.trust-signal-section {
  padding: 60px 0;
  background: var(--white);
}

.trust-signal {
  text-align: center;
}

.trust-signal-line {
  width: 60px;
  height: 2px;
  background: var(--green);
  border-radius: 1px;
  margin: 0 auto 16px auto;
}

.trust-signal p {
  font-size: 24px;
  font-weight: 400;
  color: var(--charcoal);
  margin: 0;
}

/* --- Testimonials --- */
.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-spaced);
}

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: var(--space-spaced);
  display: flex;
  flex-direction: column;
}

.testimonial-card blockquote {
  flex: 1;
  font-size: 17px;
  line-height: 1.7;
  margin-bottom: var(--space-tight);
  font-style: normal;
  color: var(--text-secondary);
}

.testimonial-card cite {
  font-style: normal;
  font-weight: 600;
  font-size: 14px;
  color: var(--charcoal);
  display: block;
  text-align: right;
  white-space: nowrap;
}

/* --- Standardized Quote Button --- */
.btn-quote {
  padding: 12px 24px;
  font-size: 17px;
  font-weight: 600;
  line-height: 20px;
  min-width: auto;
}

/* --- Package Comparison --- */
.packages-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  overflow: hidden;
}

.package-col {
  display: flex;
  flex-direction: column;
}

/* White card styling — Apple-style scale hover */
.package-card {
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-top: 3px solid var(--green);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  text-align: center;
  align-items: center;
  overflow: hidden;
  transition: transform 0.3s cubic-bezier(0, 0, 0.5, 1);
}

.package-card:hover {
  transform: scale(1.02);
}

/* Section subheading */
.section-subheading {
  font-size: 18px;
  line-height: 1.6;
  color: var(--charcoal);
  opacity: 0.8;
  max-width: 520px;
  margin-top: 2px;
  margin-bottom: 0;
}

.section-subheading .regular {
  font-weight: 400;
}

.section-subheading .bold {
  font-weight: 700;
}

.section-subheading .accent {
  font-weight: 700;
  color: var(--green);
}

.package-name {
  font-size: 28px;
  margin-bottom: 4px;
  line-height: 1.2;
  white-space: nowrap;
}

.package-name .regular {
  font-weight: 400;
  color: var(--charcoal);
}

.package-name .bold {
  font-weight: 700;
  color: var(--charcoal);
}

.package-name .accent {
  font-weight: 700;
  color: var(--green);
}

.package-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  color: var(--green);
  text-transform: uppercase;
  margin-top: -2px;
  margin-bottom: 8px;
}

.package-tagline {
  font-style: italic;
  font-size: 16px;
  color: var(--charcoal);
  opacity: 0.7;
  margin-bottom: 0;
}

.package-divider {
  width: 40px;
  height: 2px;
  background: var(--green);
  margin: 16px auto 20px;
  border-radius: 1px;
}

.package-services {
  list-style: none;
  flex: 1;
  margin-bottom: 28px;
}

.package-services li {
  font-size: 17px;
  padding: 10px 0;
  color: var(--charcoal);
}

.package-services li.dash {
  opacity: 0.4;
}

/* --- Two-Column Layout (text + image) --- */
.two-col {
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: flex-start;
}

.two-col-text {
  max-width: 560px;
}

.two-col-image {
  border-radius: var(--radius);
  overflow: hidden;
  width: 100%;
}

.two-col-image img {
  width: 100%;
  height: auto;
  border-radius: var(--radius);
}

.about-image {
  max-width: 500px;
  align-self: center;
  margin: 0 auto;
}

.about-image img {
  width: 100%;
  height: auto;
}

/* --- Additional Services List --- */
.additional-services {
  list-style: none;
}

.additional-services li {
  padding: 12px 0;
  padding-left: 28px;
  position: relative;
}

.additional-services li::before {
  content: '';
  position: absolute;
  left: 6px;
  top: 18px;
  width: 16px;
  height: 16px;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M20 6L9 17l-5-5' fill='none' stroke='%2386C040' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
}

.additional-services strong {
  display: block;
  font-size: 18px;
  margin-bottom: 2px;
}

.additional-services span {
  font-size: 16px;
  opacity: 0.8;
}

/* --- Property Types Grid --- */
.property-types-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

.property-type h3 {
  font-size: 22px;
  margin-bottom: 8px;
}

.property-type p {
  font-size: 16px;
  opacity: 0.85;
  margin: 0;
}

/* --- Commercial Services List --- */
.commercial-services-list {
  list-style: none;
  max-width: 480px;
}

.commercial-services-list li {
  font-size: 17px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.commercial-services-list li:last-child {
  border-bottom: none;
}

/* --- Contact Page --- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
}

.contact-info {
  order: -1;
}

.contact-info h2 {
  margin-bottom: 24px;
}

.contact-detail {
  margin-bottom: 20px;
}

.contact-detail .label {
  font-size: 13px;
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--charcoal);
  opacity: 0.6;
  margin-bottom: 4px;
}

.contact-detail .value {
  font-size: 18px;
  font-weight: 600;
}

.contact-detail .value a {
  color: var(--charcoal);
}

.contact-detail .value a:hover {
  color: var(--green);
}

/* --- Form --- */
.form-group {
  margin-bottom: 24px;
}

.form-group label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--charcoal);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  font-family: var(--font);
  font-size: 16px;
  border: 1px solid #D0D0D0;
  border-radius: 8px;
  background: var(--white);
  color: var(--charcoal);
  transition: border-color var(--transition);
}

.form-group select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='%23424242' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 20px;
  padding-right: 44px;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(134, 192, 64, 0.15);
}

.form-group textarea {
  min-height: 120px;
  resize: vertical;
}

.radio-group {
  display: grid;
  grid-template-columns: auto auto;
  gap: 10px 40px;
  padding-left: 28px;
  justify-content: start;
  margin-top: 12px;
}

.radio-group label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 400;
  cursor: pointer;
}

.radio-group input[type="radio"] {
  width: 18px;
  height: 18px;
  accent-color: var(--green);
}

.other-input {
  display: none;
  margin-top: 8px;
}

.other-input.visible {
  display: block;
}

.form-privacy {
  font-size: 12px;
  font-weight: 400;
  color: var(--charcoal);
  opacity: 0.7;
  margin-top: 32px;
  line-height: 1.5;
  text-align: center;
}

@media (min-width: 640px) {
  .form-privacy {
    white-space: nowrap;
  }
}

/* Centered form layout */
.contact-centered {
  max-width: 560px;
  margin: 0 auto;
}

/* Contact page subtitle */
.contact-subtitle {
  font-size: 18px;
  line-height: 1.5;
  color: var(--charcoal);
  opacity: 0.8;
  margin-bottom: 32px;
}

.contact-below {
  text-align: center;
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.contact-below p {
  font-size: 17px;
  color: var(--charcoal);
}

.contact-below a {
  color: var(--charcoal);
  font-weight: 600;
}

.contact-below a:hover {
  color: var(--green);
}

/* Inline radio (electric option) */
.form-group-inline {
  margin-bottom: 24px;
}

.inline-radio-label {
  display: flex !important;
  align-items: center;
  gap: 10px;
  font-weight: 600 !important;
  font-size: 14px;
  cursor: pointer;
}

.inline-radio-label input[type="radio"] {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin: 0;
  accent-color: var(--green);
}

/* Honeypot */
.ohnohoney {
  position: absolute;
  left: -9999px;
  opacity: 0;
  height: 0;
  width: 0;
}

/* --- Final CTA Section --- */
.final-cta {
  text-align: center;
  background: var(--white);
}

.final-cta.section-grey {
  background: var(--light-grey);
}

.final-cta h2 {
  color: var(--charcoal);
  margin-bottom: var(--space-spaced);
}

.final-cta .btn {
  margin-bottom: 0;
}

.final-cta .btn-primary {
  background: var(--green);
  color: var(--white);
}

.final-cta .btn-primary:hover {
  background: var(--green-hover);
  color: var(--white);
  transform: translateY(-1px);
}

.final-cta .cta-phone {
  color: rgba(66, 66, 66, 0.6);
}

.final-cta .cta-phone a {
  color: var(--charcoal);
  font-weight: 600;
}

.final-cta .cta-phone a:hover {
  color: var(--green);
}

/* --- Footer --- */
.site-footer {
  background: var(--charcoal);
  color: var(--white);
  padding: 40px 0 24px;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 20px;
}

.footer-logo img {
  height: 36px;
  width: auto;
  margin-bottom: 0;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.footer-contact p {
  font-size: 15px;
  margin-bottom: 0;
  opacity: 0.85;
}

.footer-contact a {
  color: var(--white);
  opacity: 0.85;
}

.footer-contact a:hover {
  color: var(--green);
  opacity: 1;
}

.footer-nav ul {
  list-style: none;
  display: flex;
  flex-wrap: nowrap;
  gap: 0;
  justify-content: center;
}

.footer-nav li {
  margin-bottom: 0;
}

.footer-nav li:not(:last-child)::after {
  content: '\00b7';
  margin: 0 8px;
  color: var(--white);
  opacity: 0.4;
}

.footer-nav a {
  color: var(--white);
  opacity: 0.7;
  font-size: 13px;
  font-weight: 400;
  transition: opacity var(--transition);
  white-space: nowrap;
}

.footer-nav a:hover {
  color: var(--white);
  opacity: 1;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: auto;
  height: auto;
  border-radius: 0;
  background: none;
  color: var(--white);
  opacity: 0.7;
  transition: opacity var(--transition);
}

.footer-social a:hover {
  background: none;
  color: var(--white);
  opacity: 1;
}

.footer-social svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  margin-top: 20px;
  padding-top: 16px;
  text-align: center;
  font-size: 13px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.7);
  opacity: 1;
}

/* --- Electric Section Two-Column --- */
.electric-two-col {
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: flex-start;
}

.electric-two-col-image {
  width: 100%;
  border-radius: 8px;
  overflow: hidden;
}

.electric-two-col-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
}

.electric-two-col-text {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.electric-two-col-text .electric-h2 {
  font-weight: 600;
  line-height: 1.1;
  color: var(--charcoal);
  margin-bottom: 0;
}

.electric-two-col-text .electric-h2 .green-word {
  color: var(--green);
}

.electric-two-col-text .electric-h3 {
  font-size: 19px;
  font-weight: 400;
  line-height: 1.35;
  color: var(--text-secondary);
  margin-top: var(--space-exception);
  margin-bottom: var(--space-tight);
}

/* --- Testimonials Heading --- */
.testimonials-heading {
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: var(--space-spaced);
  text-align: center;
}

/* --- Scroll Fade-in Animation --- */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* --- Welcome / QR Page --- */
/* Welcome hero — image left, text right */
.welcome-hero-buttons {
  display: flex;
  gap: 16px;
}

/* Reverse order on desktop: image first, text second */
@media (min-width: 768px) {
  .welcome-hero-reverse {
    flex-direction: row-reverse;
  }
}

/* --- Success Page --- */
.success-content {
  text-align: center;
  padding: 100px 0;
  max-width: 800px;
  margin: 0 auto;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.success-content h1 {
  margin-bottom: 16px;
}

.success-content p {
  font-size: 18px;
  margin-bottom: 28px;
  opacity: 0.85;
}

/* --- 404 Page --- */
.error-content {
  text-align: center;
  padding: 100px 0;
  max-width: 560px;
  margin: 0 auto;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.error-content h1 {
  margin-bottom: 16px;
}

.error-content p {
  font-size: 18px;
  margin-bottom: 32px;
  opacity: 0.85;
}

.error-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================================
   TABLET (768px+)
   ============================================ */
@media (min-width: 768px) {
  h1 {
    font-size: 48px;
  }

  h2 {
    font-size: 36px;
  }

  .section {
    padding: var(--section-padding-tablet);
  }

  .hero {
    padding: 72px 0;
  }

  .hero-content {
    flex-direction: row;
    align-items: flex-start;
  }

  .hero-text {
    flex: 1 1 0%;
  }

  .hero-image {
    flex: 1 1 0%;
    max-width: 50%;
  }

  .hero-residential .hero-image {
    max-width: 55%;
  }

  .hero-text h1 {
    font-size: 48px;
  }

  .hero-text .subtitle {
    font-size: 18px;
  }

  .services-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-spaced);
  }

  .service-block h3 {
    font-size: 24px;
  }

  .testimonials-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-spaced);
  }

  .packages-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }

  .package-card {
    padding: 32px 16px;
  }

  .package-name {
    font-size: 22px;
  }

  .two-col {
    flex-direction: row;
    align-items: center;
    gap: 60px;
  }

  .two-col-text {
    flex: 1;
  }

  .two-col-image {
    flex: 1;
  }

  .two-col.reverse {
    flex-direction: row-reverse;
  }

  .property-types-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
  }

  .contact-grid {
    grid-template-columns: 240px 1fr;
    gap: 60px;
  }

  .contact-info {
    order: 0;
  }

  .footer-inner {
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
  }

  .footer-brand {
    flex: 0 0 auto;
  }

  .footer-nav {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .footer-right {
    flex: 0 0 auto;
    text-align: right;
  }

  .electric-two-col {
    flex-direction: row;
    align-items: stretch;
    gap: var(--space-accent);
  }

  .electric-two-col-image {
    flex: 1 1 0%;
    min-height: 300px;
  }

  .electric-commercial .electric-two-col-image {
    flex: 0.8 1 0%;
  }

  .two-col-image-large {
    flex: 1.2 1 0%;
  }

  .electric-two-col-text {
    flex: 1 1 0%;
  }

  .electric-two-col-text .electric-h3 {
    font-size: 21px;
  }

  .welcome-buttons {
    flex-direction: row;
    justify-content: center;
  }

  .trust-signal p {
    font-size: 24px;
  }
}

/* ============================================
   DESKTOP (1024px+)
   ============================================ */
@media (min-width: 1024px) {
  h1 {
    font-size: 64px;
  }

  h2 {
    font-size: 42px;
  }

  .section {
    padding: var(--section-padding-desktop);
  }

  .hero {
    padding: var(--space-section) 0;
  }

  .hero-text h1 {
    font-size: 64px;
  }

  .hero-text .subtitle {
    font-size: 18px;
  }

  /* Show desktop nav */
  .nav-links {
    display: flex;
  }

  .header-phone {
    display: block;
  }

  .header-cta {
    display: inline-block;
  }

  .hamburger {
    display: none;
  }

  .service-block h3 {
    font-size: 26px;
  }

  .electric-two-col-text .electric-h3 {
    font-size: 24px;
  }

  .trust-signal p {
    font-size: 24px;
  }

  .packages-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 48px;
  }

  .two-col {
    gap: 80px;
  }
}

