* {
  box-sizing: border-box;
}

html,
body {
  overflow-x: hidden;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
  color: #222;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

main {
  flex: 1 0 auto;
  display: flex;
  flex-direction: column;
}
h1 {
    font-family: 'Fjalla One', arial, sans-serif;
    color: rgb(5, 68, 164);
}

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

a {
  text-decoration: none;
  color: inherit;
}

.phone-link {
  color: rgb(5, 68, 164);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 2px;
  display: inline-block;
}

.phone-link:hover,
.phone-link:focus-visible {
  color: #0a5ad6;
}

/* Layout */
.container {
  width: min(1100px, 90%);
  margin: auto;
}

.section {
  padding: 4rem 0;
}

.section-light {
  background: #f5f5f5;
}

.grid {
  display: grid;
  gap: 2rem;
}

.two-col {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

/* Header */
.site-header {
  background: #fff;
  border-bottom: 1px solid #ddd;
  position: relative;
}

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

.main-nav ul {
  display: flex;
  gap: 1.5rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

.nav-toggle {
  display: none;
}

/* Hero */
.hero {
  background: #27272a;
  color: white;
  text-align: center;
  padding: 5rem 0;
}

.hero h1 {
  color: white;
}

.hero .phone-link {
  color: #f5f7ff;
}

.hero .phone-link:hover,
.hero .phone-link:focus-visible {
  color: #ffffff;
}

.hero-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
  text-align: left;
}

.hero-logo img {
  max-width: 400px;
  width: min(40vw, 400px);
}

.hero-text {
  flex: 1;
}

.hero-text p {
  font-size: 1.25rem;
  margin-top: 0.5rem;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 0.75rem 1.25rem;
  border-radius: 4px;
  background: #333;
  color: white;
}

.btn-primary {
  background: #d62828;
}

/* Footer */
.site-footer {
  background: #111;
  color: white;
  padding: 1.5rem 0;
  text-align: center;
}

/* Mobile */
@media (max-width: 768px) {
  .main-nav {
    display: none;
    position: absolute;
    left: 0;
    top: 100%;
    width: 100%;
    background: #fff;
    border-top: 1px solid #ddd;
    padding: 1.25rem 0;
  }

  .main-nav ul {
    flex-direction: column;
    gap: 1rem;
    padding: 0 1.5rem;
  }

  .main-nav.is-open {
    display: block;
  }

  .nav-toggle {
    display: block;
    font-size: 1.75rem;
    background: none;
    border: none;
    cursor: pointer;
  }

  .hero-content {
    flex-direction: column;
    text-align: center;
  }

  .hero-text {
    text-align: center;
  }

  .hero-logo img {
    width: min(70vw, 240px);
  }

  .service-layout {
    text-align: center;
  }

  .service-text {
    text-align: left;
  }

  .contact-page-layout {
    text-align: center;
  }

  .contact-info-block {
    text-align: center;
  }

  .quote-cta {
    inset: auto 1rem 1rem auto;
    width: auto;
  }

  .quote-drawer__panel {
    padding: 1.25rem;
    width: min(360px, calc(100vw - 2rem));
  }
}



.site-title {
  color: rgb(5, 68, 164);
  font-size: 22px !important;
  padding: 10px;
}
.site-header .container {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0 1.25rem;
}


.header-inner {
  padding: 20px;
}

.main-nav ul {
  font-weight: bold;
    font-size: 22px !important;
}

.main-nav li:hover {
  color: rgb(5, 68, 164);
  text-decoration: underline;
}

.installing-container {
  text-align: center;
  margin-top: 20px;
}
.installing-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(1.5rem, 4vw, 3rem);
  flex-wrap: wrap;
  padding: 0 1.5rem;
}

.installing-logos img {
  flex: 0 1 clamp(160px, 28vw, 260px);
  max-width: clamp(160px, 28vw, 260px);
  height: auto;
  object-fit: contain;
}

.services-content {
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
  align-items: flex-start;
  margin-top: 2rem;
}

.services-logo,
.service-list {
  flex: 1 1 320px;
}

.services-logo {
  text-align: center;
}

.services-logo img {
  max-width: 400px;
  margin: 0 auto;
}

.service-list {
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 18px;
  line-height: 1.8;
}

.service-list li {
  position: relative;
  padding-left: 1.5rem;
}

.service-list li::before {
  content: '\2022';
  position: absolute;
  left: 0;
  color: rgb(5, 68, 164);
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

input[name="companyWebsite"] {
  display: none;
}

.service-intro {
  background-color: #fdfdfd;
}

.service-headline {
  text-transform: uppercase;
  letter-spacing: 1px;
}

.service-layout {
  display: flex;
  flex-wrap: wrap;
  gap: 2.5rem;
  align-items: flex-start;
  margin-top: 2rem;
}

.service-image,
.service-text {
  flex: 1 1 320px;
}

.service-image img {
  border-radius: 12px;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.1);
}

.service-text p {
  margin-bottom: 1.25rem;
  font-size: 1.05rem;
  line-height: 1.9;
}

.service-area {
  background: #1f2533;
  color: #fff;
  text-align: center;
  padding: 4rem 0;
}

.service-area h2 {
  font-size: 2.3rem;
  margin-bottom: 1rem;
}

.service-area p {
  font-size: 1.1rem;
  line-height: 1.9;
  margin: 0 auto;
  max-width: 700px;
}

.history-page {
  background: #fdfdfd;
  text-align: center;
}

.history-title {
  font-size: 3rem;
  margin-bottom: 0.5rem;
  color: rgb(5, 68, 164);
}

.history-heading {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  color: #1f1f1f;
}

.history-text {
  font-size: 1.1rem;
  line-height: 1.95;
  max-width: 900px;
  margin: 0 auto;
}

.contact-page-layout {
  display: flex;
  flex-wrap: wrap;
  gap: 2.5rem;
  align-items: flex-start;
}

.contact-page-details,
.contact-page-map {
  flex: 1 1 320px;
}

.contact-page-details h1 {
  margin-bottom: 1rem;
}

.contact-subheadline {
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
  color: #111;
  text-transform: none;
}

.contact-info-block {
  margin-top: 1.5rem;
}

.contact-phone {
  font-weight: bold;
  font-size: 1.1rem;
}

.contact-page-map .map-card {
  margin: 0;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  position: relative;
}

.contact-page-map .map-card iframe {
  width: 100%;
  height: 100%;
  display: block;
  border: 0;
}

.bbb {
  background-color: #f9f9f9;
  padding: 4rem 0;
}

.bbb-content {
  display: flex;
  flex-wrap: wrap;
  gap: 2.5rem;
  align-items: center;
  justify-content: space-between;
}

.bbb-image,
.bbb-details {
  flex: 1 1 300px;
}

.bbb-image img {
  max-width: 360px;
  margin: 0 auto;
}

.bbb-details {
  font-size: 1.05rem;
  line-height: 1.8;
}

.bbb-details .btn {
  margin-top: 1rem;
}

.award-satisfaction {
  background-color: #f9f9f9;
}

.award-layout {
  display: flex;
  flex-wrap: wrap;
  gap: 2.5rem;
  align-items: center;
  justify-content: space-between;
}

.satisfaction-card,
.award-image {
  flex: 1 1 320px;
}

.satisfaction-card {
  background: #fff;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
  order: 2;
}

.award-image {
  text-align: center;
  order: 1;
}

.award-image img {
  width: min(100%, 420px);
  height: auto;
  display: block;
  margin: 0 auto;
}

.contact-layout {
  display: flex;
  flex-wrap: wrap;
  gap: 2.5rem;
  align-items: flex-start;
  margin-top: 1.5rem;
}

.contact-details,
.contact-map {
  flex: 1 1 320px;
}

.contact-map .map-card {
  margin: 0;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  position: relative;
}

.contact-map .map-card iframe {
  width: 100%;
  height: 100%;
  display: block;
  border: 0;
}

.map-directions {
  position: absolute;
  top: 1rem;
  left: 1rem;
  z-index: 1;
  text-decoration: none;
  background: linear-gradient(135deg, #0544a2, #0a5ad6);
  color: #fff;
  border: none;
  box-shadow: 0 12px 30px rgba(5, 68, 164, 0.35);
}

.map-directions:hover,
.map-directions:focus-visible {
  color: #fff;
  box-shadow: 0 18px 30px rgba(5, 68, 164, 0.4);
}

.map-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.more-info {
  text-align: center;
}


.about-headline {
  text-align: center;
  margin-bottom: 30px;
  font-size: 45px;
  color:rgb(5, 68, 164)
}

.about-text {
    text-align: center;
  max-width: 800px;
  margin: auto;
  font-size: 18px;
  line-height: 1.8;
}

@media (max-width: 768px) {
  .contact-map .map-card {
    border-radius: 12px;
  }

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

@media (min-width: 850px) {
  .satisfaction-card {
    order: 1;
  }

  .award-image { 
    order: 2;
  }
}
.specials-hero {
  background: #fdfdfd;
  text-align: center;
}

.specials-title {
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 2rem;
}

.specials-image img {
  width: 100%;
  height: auto;
  aspect-ratio: 1023 / 682;
  border-radius: 14px;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
  margin: 0 auto;
}

.specials-image {
  max-width: 720px;
  width: min(85vw, 720px);
  margin: 0 auto;
}

.specials-list {
  background: #1f2533;
  color: #fff;
  padding: 4rem 0;
  text-align: center;
}

.specials-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2rem;
}

.specials-grid article {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 1.75rem;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.specials-grid h3 {
  margin-top: 0;
  margin-bottom: 0.75rem;
  font-size: 1.3rem;
  color: #fff;
}

.specials-grid p {
  margin: 0;
  color: #dadada;
  line-height: 1.8;
}
.contact-cta-copy {
  padding: 1.5rem 0;
}

.contact-cta-copy h2 {
  margin-bottom: 0.5rem;
}

.quote-cta {
  position: fixed;
  inset: auto clamp(1rem, 3vw, 1.5rem) clamp(1rem, 3vw, 1.5rem) auto;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.75rem;
  max-width: calc(100vw - 2rem);
}

.quote-cta__button {
  background: linear-gradient(135deg, #0544a2, #0a5ad6);
  color: #fff;
  border: none;
  border-radius: 999px;
  padding: 0.9rem 1.8rem;
  font-size: 1rem;
  font-weight: 600;
  box-shadow: 0 12px 30px rgba(5, 68, 164, 0.35);
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.quote-cta__button:focus-visible,
.quote-cta__button:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 30px rgba(5, 68, 164, 0.4);
}

.quote-drawer {
  position: absolute;
  bottom: calc(100% + 0.75rem);
  right: 0;
  width: min(420px, calc(100vw - 2rem));
  background: transparent;
  pointer-events: none;
}

.quote-drawer__panel {
  background: #fff;
  border-radius: 1.25rem;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
  padding: 1.75rem;
  max-height: min(80vh, 520px);
  overflow-y: auto;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.quote-drawer.is-open {
  pointer-events: auto;
}

.quote-drawer.is-open .quote-drawer__panel {
  opacity: 1;
  transform: translateY(0);
}

.quote-drawer__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.quote-drawer__eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.8rem;
  color: #63718e;
  margin: 0 0 0.3rem;
}

.quote-drawer__close {
  border: none;
  background: #f0f2f5;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  font-size: 1.25rem;
  cursor: pointer;
  display: grid;
  place-items: center;
}

.quote-drawer__intro {
  color: #4b4f58;
  margin: 1rem 0 1.5rem;
}

.quote-drawer form label {
  display: block;
  font-weight: 600;
  color: #1f2533;
  margin-bottom: 0.4rem;
}

.quote-drawer form input,
.quote-drawer form textarea {
  width: 100%;
  border: 1px solid #d6dae3;
  border-radius: 0.75rem;
  padding: 0.8rem 1rem;
  font-size: 0.95rem;
  margin-bottom: 1rem;
}

.quote-drawer form input:focus,
.quote-drawer form textarea:focus {
  outline: 2px solid rgba(5, 68, 164, 0.3);
  border-color: rgba(5, 68, 164, 0.6);
}

.quote-drawer form .btn {
  width: 100%;
  text-align: center;
}

.form-field {
  display: block;
  margin-bottom: 1rem;
}

.form-field > span:first-child {
  display: inline-block;
  margin-bottom: 0.35rem;
  font-weight: 600;
  color: #1f2533;
}

.field-error {
  display: block;
  margin-top: 0.35rem;
  font-size: 0.85rem;
  color: #c0392b;
  min-height: 1rem;
}

.field-invalid {
  border-color: #c0392b !important;
  box-shadow: 0 0 0 1px rgba(192, 57, 43, 0.2);
}
