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

body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: #163046;
  background: #f5f7fa;
}

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

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

.container {
  width: min(1120px, 100% - 2.5rem);
  margin: 0 auto;
}

.site-header {
  background: #ffffff;
  border-bottom: 1px solid rgba(12, 53, 86, 0.08);
  position: sticky;
  top: 0;
  z-index: 20;
}

.site-header.small {
  position: static;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 0.85rem 0;
}

.logo-block {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: linear-gradient(135deg, #0077c8, #00a0e3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.4rem;
}

.logo-text {
  display: flex;
  flex-direction: column;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.logo-title {
  font-weight: 700;
}

.logo-tagline {
  font-weight: 500;
  opacity: 0.7;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  font-size: 0.92rem;
}

.main-nav a {
  padding-bottom: 0.1rem;
  border-bottom: 2px solid transparent;
  color: #33526b;
}

.main-nav a:hover,
.main-nav a.active {
  border-color: #00a0e3;
  color: #0b476a;
}

.header-cta {
  font-size: 0.9rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 1.4rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: background 150ms ease, color 150ms ease, border-color 150ms ease, transform 150ms ease;
}

.btn-primary {
  background: linear-gradient(135deg, #0077c8, #00a0e3);
  color: #fff;
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 24px rgba(0, 119, 200, 0.2);
}

.btn-ghost {
  background: transparent;
  border-color: rgba(12, 53, 86, 0.2);
  color: #163046;
}

.btn-ghost:hover {
  border-color: #0077c8;
  color: #0077c8;
}

.btn-light {
  background: #ffffff;
  color: #0b476a;
}

.btn-full {
  width: 100%;
}

.hero {
  padding: 3.5rem 0 3rem;
  background: radial-gradient(circle at top left, #e0f3ff, #f5f7fa 48%);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: 2.75rem;
  align-items: center;
}

.hero-text h1 {
  font-size: clamp(2.2rem, 3vw + 1.5rem, 3rem);
  line-height: 1.1;
  margin-bottom: 0.75rem;
}

.highlight {
  color: #0077c8;
}

.hero-subtitle {
  margin: 0 0 1rem;
  color: #4a6277;
  font-size: 1rem;
}

.hero-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.25rem;
  color: #30455a;
}

.hero-list li + li {
  margin-top: 0.25rem;
}

.hero-buttons {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}

.review-badges {
  font-size: 0.85rem;
  color: #4a6277;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: center;
}

.hero-image .image-placeholder {
  border-radius: 24px;
  min-height: 280px;
  background: #cde7ff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 1rem;
  color: #063554;
  font-weight: 500;
  box-shadow: 0 16px 40px rgba(0, 63, 117, 0.25);
}

.hero-image {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-image img,
.hero-image .image-placeholder {
  max-width: 75%;
  margin-inline: auto;
}


/* Quote section */
.quote {
  padding: 3rem 0 3.5rem;
}

.quote-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.1fr);
  gap: 2.5rem;
  align-items: flex-start;
}

.quote-intro h2 {
  font-size: 1.7rem;
  margin-bottom: 0.5rem;
}

.quote-intro p {
  color: #4a6277;
}

.quote-points {
  list-style: none;
  padding: 0;
  margin-top: 1.25rem;
  color: #30455a;
}

.quote-points li + li {
  margin-top: 0.4rem;
}



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

.form-row-inline {
  display: flex;
  gap: 0.85rem;
  flex-wrap: wrap;
}

.form-row-inline > div {
  flex: 1 1 160px;
}

.label-heading {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 0.35rem;
}

.options-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 0.35rem 0.75rem;
  margin-top: 0.25rem;
}

.options-grid label {
  font-size: 0.9rem;
  font-weight: 500;
  text-transform: none;
  letter-spacing: 0;
}

.btn-full {
  width: 100%;
}
.quote-form {
  background: #ffffff;
  border-radius: 20px;
  padding: 1.5rem 1.5rem 1.75rem;
  box-shadow: 0 12px 32px rgba(15, 57, 88, 0.08);
}

.form-row {
  margin-bottom: 0.9rem;
}

.form-row.split {
  display: flex;
  gap: 0.85rem;
}

.form-row.split > div {
  flex: 1;
}

label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 0.25rem;
  color: #4a6277;
}

input,
select,
textarea {
  width: 100%;
  border-radius: 10px;
  border: 1px solid rgba(15, 57, 88, 0.18);
  padding: 0.6rem 0.7rem;
  font-size: 0.95rem;
  font-family: inherit;
  outline: none;
  background: #f9fbff;
}

input:focus,
select:focus,
textarea:focus {
  border-color: #0077c8;
  background: #ffffff;
  box-shadow: 0 0 0 1px rgba(0, 119, 200, 0.1);
}

textarea {
  resize: vertical;
}

.checkboxes label {
  text-transform: none;
  letter-spacing: normal;
  font-weight: 500;
}

.checkbox-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.25rem;
  margin-top: 0.4rem;
  font-size: 0.92rem;
}

.checkbox-grid input {
  width: auto;
  margin-right: 0.25rem;
}

.small-note {
  font-size: 0.8rem;
  color: #70869c;
}

.strip {
  background: linear-gradient(90deg, #0077c8, #00a0e3);
  color: #ffffff;
}

.strip-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 0.9rem 0;
}

/* Services preview */
.services-preview {
  padding: 3rem 0 3.5rem;
}

.services-preview h2 {
  text-align: center;
  margin-bottom: 2rem;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1.4rem;
}

.card {
  background: #ffffff;
  border-radius: 18px;
  padding: 1.4rem 1.5rem 1.5rem;
  box-shadow: 0 10px 28px rgba(15, 57, 88, 0.06);
}

.card h3,
.card h2 {
  margin-top: 0;
}

.card ul {
  padding-left: 1.1rem;
  margin: 0.5rem 0 0;
}

.center {
  text-align: center;
  margin-top: 1.75rem;
}

.site-footer {
  background: #0b2537;
  color: #e2efff;
  padding-top: 1.75rem;
  margin-top: 1.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 1.5rem;
  padding-bottom: 1.25rem;
}

.site-footer a {
  color: #e2efff;
  text-decoration: underline;
  text-decoration-color: rgba(255, 255, 255, 0.4);
}

.footer-small {
  font-size: 0.85rem;
  color: #9cb7cf;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 0.8rem 0 1rem;
  font-size: 0.8rem;
  color: #a3c2dc;
}

/* Generic page styles */
.page-main {
  padding-bottom: 3rem;
}

.page-hero {
  background: #e9f3ff;
  padding: 2.3rem 0 2.1rem;
  border-bottom: 1px solid rgba(12, 53, 86, 0.07);
}

.page-section {
  padding: 2.25rem 0 0;
}

.narrow {
  width: min(760px, 100% - 2.5rem);
  margin: 0 auto;
}

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

.checklist {
  list-style: none;
  padding: 0;
}

.services-layout {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  align-items: flex-start;
}

.services-main {
  flex: 2;
}

.services-side {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: flex-start;
}

.services-side img {
  max-width: 100%;
  border-radius: 20px;
  box-shadow: 0 16px 40px rgba(0, 63, 117, 0.25);
}

/* Larger screens */
@media (min-width: 900px) {
  .services-layout {
    flex-direction: row;
    align-items: flex-start;
  }
}


.checklist li {
  padding-left: 1.2rem;
  position: relative;
  margin-bottom: 0.35rem;
}

.checklist li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #00a060;
}

.highlight-box {
  background: #ffffff;
  border-radius: 14px;
  padding: 1rem 1.1rem;
  box-shadow: 0 10px 24px rgba(15, 57, 88, 0.06);
  font-size: 0.95rem;
}

.highlight-box span {
  display: block;
  margin-top: 0.4rem;
  font-size: 0.82rem;
  color: #4a6277;
}

.card-list {
  display: grid;
  gap: 1.3rem;
}

/* Responsive */
@media (max-width: 880px) {
  .hero-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .quote-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .strip-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .main-nav {
    display: none;
  }
}

@media (max-width: 640px) {
  .form-row.split {
    flex-direction: column;
  }

  .header-inner {
    padding: 0.65rem 0;
  }

  .hero {
    padding-top: 2.4rem;
  }
}


.about-family {
  text-align: center;
}

.about-family img {
  max-width: 100%;
  border-radius: 20px;
  box-shadow: 0 16px 40px rgba(0, 63, 117, 0.25);
}/* FIX LOGO SIZE ON ALL PAGES >>> */
.logo-icon img {
  height: 90px !important;
  width: auto !important;
}
/* <<< END FIX */


