*, *::before, *::after { box-sizing: border-box; }

:root {
  --a2-red:       #920b0b;
  --a2-red-dark:  #6e0808;
  --a2-gold:      #dcc10c;
  --a2-black:     #111111;
  --a2-gray-bg:   #f4f4f4;
  --a2-gray-mid:  #dddddd;
  --a2-gray-text: #555555;
  --a2-white:     #ffffff;
  --a2-font:      'Montserrat', Arial, sans-serif;
  --a2-radius:    6px;
  --a2-shadow:    0 4px 20px rgba(0,0,0,0.10);
  --a2-inner-w:   1124px;
}

.maincontent {
    max-width: 100%;
    margin: 0 auto;
    padding: 0;
    border: none;
}  

.a2-inner {
  max-width: var(--a2-inner-w);
  width: 100%;
  margin: 0 auto;
  padding: 0 24px;
}

.a2-section-title {
  font-family: var(--a2-font);
  font-size: 32px;
  font-weight: 800;
  color: var(--a2-black);
  margin: 0 0 12px;
  line-height: 1.2;
}

/* -- Buttons ---------- */
.a2-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--a2-font);
  font-size: 15px;
  font-weight: 700;
  padding: 13px 26px;
  border-radius: var(--a2-radius);
  text-decoration: none;
  cursor: pointer;
  border: 2px solid transparent;
  transition: background 0.22s ease, color 0.22s ease,
              border-color 0.22s ease, box-shadow 0.22s ease,
              transform 0.18s ease;
  white-space: nowrap;
}
.a2-btn--lg { font-size: 17px; padding: 16px 34px; }
.a2-btn--full { width: 100%; justify-content: center; }

.a2-btn--primary {
  background: var(--a2-red);
  color: var(--a2-white);
  border-color: var(--a2-red);
  box-shadow: 0 3px 12px rgba(146,11,11,0.30);
}
.a2-btn--primary:hover {
  background: var(--a2-red-dark);
  border-color: var(--a2-red-dark);
  box-shadow: 0 6px 20px rgba(146,11,11,0.40);
  transform: translateY(-2px);
color: #fff;
text-decoration: none;
}
.a2-btn--primary:active { transform: translateY(0); }

.a2-btn--outline-light {
  background: transparent;
  color: var(--a2-white);
  border-color: var(--a2-white);
}
.a2-btn--outline-light:hover {
  background: var(--a2-white);
  color: var(--a2-red);
  transform: translateY(-2px);
}

.a2-btn--outline-dark {
  background: transparent;
  color: var(--a2-black);
  border-color: var(--a2-black);
}
.a2-btn--outline-dark:hover {
  background: var(--a2-black);
  color: var(--a2-white);
  transform: translateY(-2px);
}

/* -- Sticky Header ---- */
.a2-sticky-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(8px);
  box-shadow: 0 2px 16px rgba(0,0,0,0.12);
  transform: translateY(-100%);
  transition: transform 0.3s ease;
}
.a2-sticky-header.a2-visible { transform: translateY(0); }

.a2-sticky-inner {
  max-width: var(--a2-inner-w);
  margin: 0 auto;
  padding: 10px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.a2-sticky-logo img { max-height: 54px; width: auto; display: block; }
.a2-sticky-ctas { display: flex; gap: 12px; align-items: center; }

.a2-hdr-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: var(--a2-font);
  font-size: 14px;
  font-weight: 700;
  padding: 9px 20px;
  border-radius: var(--a2-radius);
  text-decoration: none;
  transition: background 0.2s, color 0.2s, transform 0.18s;
  white-space: nowrap;
}
.a2-hdr-btn--solid {
  background: var(--a2-red);
  color: #fff;
  border: 2px solid var(--a2-red);
}
.a2-hdr-btn--solid:hover { background: var(--a2-red-dark); transform: translateY(-1px); }
.a2-hdr-btn--outline {
  background: transparent;
  color: var(--a2-black);
  border: 2px solid var(--a2-black);
}
.a2-hdr-btn--outline:hover { background: var(--a2-black); color: #fff; transform: translateY(-1px); }

/* -- Hero ------------- */
.a2-hero {
  position: relative;
  min-height: 600px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: url('/imageserver/UserMedia/a2siding/hero-bg002.jpg') center/cover no-repeat;
}
.a2-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0,0,0,0.72) 0%, rgba(0,0,0,0.45) 60%, rgba(0,0,0,0.20) 100%);
}
.a2-hero-content {
  position: relative;
  z-index: 1;
  max-width: 620px;
  padding: 60px 40px 60px 60px;
  color: #fff;
}
.a2-hero-headline {
  font-family: var(--a2-font);
  font-size: 46px;
  font-weight: 800;
  line-height: 1.12;
  margin: 0 0 18px;
  text-shadow: 0 2px 8px rgba(0,0,0,0.4);
}
.a2-hero-sub {
  font-size: 17px;
  line-height: 1.65;
  margin: 0 0 32px;
  opacity: 0.92;
}
.a2-hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; }

/* -- Benefits + Form -------------------------------------------- */
.a2-benefits-section {
  background: var(--a2-gray-bg);
  padding: 70px 24px;
}
.a2-two-col {
  max-width: var(--a2-inner-w);
  margin: 0 auto;
  display: flex;
  gap: 50px;
  align-items: flex-start;
  flex-wrap: wrap;
}
.a2-benefits {
  flex: 1.1;
  min-width: 280px;
}
.a2-benefit-list {
  list-style: none;
  padding: 0;
  margin: 24px 0 20px;
}
.a2-benefit-list li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-bottom: 22px;
}
.a2-check {
  min-width: 32px;
  height: 32px;
  background: var(--a2-red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  flex-shrink: 0;
  margin-top: 2px;
}
.a2-benefit-list li strong {
  display: block;
  font-size: 15px;
  font-weight: 700;
  color: var(--a2-black);
  margin-bottom: 2px;
}
.a2-benefit-list li p {
  font-size: 14px;
  color: var(--a2-gray-text);
  margin: 0;
  line-height: 1.6;
}
.a2-trust-line {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 14px;
  font-weight: 700;
  color: var(--a2-gray-text);
  margin-top: 6px;
}

/* -- Form card -------- */
 
/* -- Form card -------------------------------------------------- */
.a2-form-card {
  flex: 1;
  min-width: 300px;
  background: var(--a2-white);
  border-radius: 10px;
  padding: 36px 32px;
  box-shadow: 0 6px 30px rgba(0,0,0,0.12);
}
.a2-form-title {
  font-family: var(--a2-font);
  font-size: 22px;
  font-weight: 800;
  color: var(--a2-black);
  margin: 0 0 20px;
}
 
/* -- CWZ form field wrappers ------------------------------------ */
.a2-form-card .form_field_wrapper {
  margin-bottom: 14px;
}
.a2-form-card .form_field_content {
	width: 100%;
	display: flex;
}
 
/* -- CWZ inputs & selects --------------------------------------- */
.a2-form-card .form_field_text,
.a2-form-card .form_field_select {
  width: 100%;
  border: 1.5px solid var(--a2-gray-mid);
  border-radius: var(--a2-radius);
  padding: 12px 14px;
  font-family: var(--a2-font);
  font-size: 15px;
  color: #333;
  background: #fafafa;
  transition: border-color 0.2s, background 0.2s;
  outline: none;
  appearance: none;
  -webkit-appearance: none;
  display: block;
  box-sizing: border-box;
}
.a2-form-card .form_field_text::placeholder { color: #aaa; }
.a2-form-card .form_field_text:focus,
.a2-form-card .form_field_select:focus {
  border-color: var(--a2-red);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(146,11,11,0.08);
}
 
/* Custom dropdown arrow (replaces OS default) */
.a2-form-card .form_field_content:has(.form_field_select) {
  position: relative;
}
.a2-form-card .form_field_content:has(.form_field_select)::after {
  content: '';
  pointer-events: none;
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 6px solid #666;
}
 
/* -- CWZ submit button ------------------------------------------ */
.a2-form-submit-wrap {
  width: 100%;
  margin-top: 6px;
}
.a2-form-card .btn.btn-primary.reCaptchaVarifyFields {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  background: var(--a2-red);
  color: #fff;
  border: 2px solid var(--a2-red);
  border-radius: var(--a2-radius);
  padding: 13px 20px;
  font-family: var(--a2-font);
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  text-align: center;
  letter-spacing: 0.2px;
  box-shadow: 0 3px 12px rgba(146,11,11,0.28);
  transition: background 0.22s ease, border-color 0.22s ease,
              box-shadow 0.22s ease, transform 0.18s ease;
  user-select: none;
}
.a2-form-card .btn.btn-primary.reCaptchaVarifyFields:hover {
  background: var(--a2-red-dark);
  border-color: var(--a2-red-dark);
  box-shadow: 0 6px 20px rgba(146,11,11,0.38);
  transform: translateY(-2px);
}
.a2-form-card .btn.btn-primary.reCaptchaVarifyFields:active {
  transform: translateY(0);
}
 
/* -- Error message ---------------------------------------------- */
.a2-form-card .form_input_error {
  font-size: 13px;
  color: var(--a2-red);
  text-align: center;
  min-height: 18px;
  margin-top: 8px;
}
 
/* -- Thank you message ------------------------------------------ */
.a2-form-card .thank_you_content {
  display: none; /* shown by CWZ JS after submission */
  text-align: center;
  padding: 24px 0 8px;
  font-size: 15px;
  color: #333;
  font-weight: 600;
}
 
/* -- Microcopy under button ------------------------------------- */
.a2-microcopy {
  list-style: none;
  padding: 0;
  margin: 14px 0 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.a2-microcopy li {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 12px;
  color: var(--a2-gray-text);
  font-weight: 500;
}
.a2-microcopy li svg {
  color: var(--a2-red);
  flex-shrink: 0;
}
 

/* -- Cert section ----- */
.a2-cert-sub {
  font-size: 15px;
  color: var(--a2-gray-text);
  max-width: 600px;
  margin: 0 auto 36px;
  text-align: center;
  line-height: 1.7;
}

/* -- Reviews ---------- */
.a2-reviews-section {
  background: var(--a2-gray-bg);
  padding: 70px 24px;
}
.a2-reviews-grid {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 40px;
}
.a2-review-card {
  flex: 1;
  min-width: 260px;
  background: var(--a2-white);
  border-radius: 10px;
  padding: 28px 24px;
  box-shadow: var(--a2-shadow);
}
.a2-review-stars { display: flex; gap: 3px; margin-bottom: 12px; }
.a2-review-card p {
  font-size: 14px;
  color: #444;
  line-height: 1.7;
  margin: 0 0 18px;
  font-style: italic;
}
.a2-reviewer { display: flex; align-items: center; gap: 10px; }
.a2-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--a2-red);
  color: #fff;
  font-weight: 700;
  font-size: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.a2-reviewer span { font-size: 13px; font-weight: 600; color: #333; }
.a2-google-note {
  text-align: center;
  font-size: 13px;
  color: #888;
  margin-top: 28px;
}
.a2-google-note a { color: var(--a2-red); }

/* -- Process ---------- */
.a2-process-section {
  background: var(--a2-white);
  padding: 70px 24px;
}
.a2-steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
  margin-top: 48px;
  flex-wrap: wrap;
  justify-content: center;
}
.a2-step {
  flex: 1;
  min-width: 200px;
  max-width: 280px;
  text-align: center;
  padding: 0 16px;
}
.a2-step-num {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--a2-red);
  color: #fff;
  font-size: 22px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  box-shadow: 0 4px 14px rgba(146,11,11,0.30);
}
.a2-step h3 {
  font-family: var(--a2-font);
  font-size: 17px;
  font-weight: 700;
  color: var(--a2-black);
  margin: 0 0 8px;
}
.a2-step p {
  font-size: 14px;
  color: var(--a2-gray-text);
  line-height: 1.65;
  margin: 0;
}
.a2-step-arrow {
  align-self: center;
  color: var(--a2-gray-mid);
  flex-shrink: 0;
  margin-top: -20px;
}

/* -- Service Areas ---- */
.a2-areas-section {
  background: #f9f9f9;
  padding: 70px 24px;
}
.a2-areas-inner {
  max-width: var(--a2-inner-w);
  margin: 0 auto;
  display: flex;
  gap: 50px;
  align-items: center;
  flex-wrap: wrap;
}
.a2-areas-copy { flex: 1; min-width: 280px; }
.a2-areas-copy p {
  font-size: 15px;
  color: var(--a2-gray-text);
  line-height: 1.7;
  margin: 12px 0 20px;
}
.a2-areas-list {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 16px;
}
.a2-areas-list li {
  font-size: 15px;
  font-weight: 600;
  color: var(--a2-black);
  padding-left: 16px;
  position: relative;
}
.a2-areas-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--a2-red);
}
.a2-areas-map {
	flex: 1 500px;
	max-width: 500px;
	width: 100%;
}

.a2-areas-map iframe{
	border: 0;
	width: 100%;
}

/* -- Final CTA -------- */
.a2-final-cta {
	padding: 80px 24px;
	color: #fff;
	background: url('/imageserver/UserMedia/a2siding/abstract-bg009.jpg') center/cover no-repeat;
	background-blend-mode: multiply;
	background-color: #434343;
}
.a2-final-headline {
  font-family: var(--a2-font);
  font-size: 38px;
  font-weight: 800;
  color: #fff;
  margin: 0 0 14px;
  line-height: 1.2;
}
.a2-final-sub {
  font-size: 16px;
  color: rgba(255,255,255,0.75);
  max-width: 560px;
  margin: 0 auto 36px;
  line-height: 1.7;
}
.a2-final-cta-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.a2-final-cta .a2-btn--outline-dark {
  color: #fff;
  border-color: #fff;
}
.a2-final-cta .a2-btn--outline-dark:hover { background: #fff; color: var(--a2-black); }

/* -- Mobile sticky bar ------------------------------------------ */
.a2-mobile-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9998;
  background: #fff;
  box-shadow: 0 -2px 12px rgba(0,0,0,0.15);
  padding: 10px 16px;
  gap: 10px;
}
.a2-mobile-bar-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  font-family: var(--a2-font);
  font-size: 14px;
  font-weight: 700;
  padding: 13px 10px;
  border-radius: var(--a2-radius);
  text-decoration: none;
  text-align: center;
  transition: background 0.2s, color 0.2s;
}
.a2-mobile-bar-btn--solid { background: var(--a2-red); color: #fff; }
.a2-mobile-bar-btn--solid:hover { background: var(--a2-red-dark); }
.a2-mobile-bar-btn--outline { background: transparent; color: var(--a2-black); border: 2px solid var(--a2-black); }
.a2-mobile-bar-btn--outline:hover { background: var(--a2-black); color: #fff; }

/* -- Responsive ------- */
@media (max-width: 900px) {
  .a2-hero-headline { font-size: 34px; }
  .a2-hero-content { padding: 48px 24px; }
  .a2-section-title { font-size: 26px; }
  .a2-final-headline { font-size: 28px; }
  .a2-step-arrow { display: none; }
  .a2-steps { gap: 32px; }
}

@media (max-width: 640px) {
  .a2-hero { min-height: 480px; }
  .a2-hero-headline { font-size: 28px; }
  .a2-hero-sub { font-size: 15px; }
  .a2-hero-ctas { flex-direction: column; gap: 12px; }
  .a2-hero-ctas .a2-btn { width: 100%; justify-content: center; }
  .a2-mobile-bar { display: flex; }
  .a2-sticky-ctas .a2-hdr-btn--outline { display: none; }
  .a2-form-card { padding: 24px 18px; }
  .a2-final-cta-btns { flex-direction: column; }
  .a2-final-cta-btns .a2-btn { justify-content: center; }
}