/* ===== CSS RESET & NORMALIZE ===== */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}

html {
  box-sizing: border-box;
  scroll-behavior: smooth;
}
*, *:before, *:after {
  box-sizing: inherit;
}
body {
  min-height: 100vh;
  background: #F8F9F8;
  font-family: 'Roboto', Arial, sans-serif;
  color: #2a3133;
  line-height: 1.6;
  font-size: 16px;
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: #B85D18;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #19424D;
}
ul, ol {
  list-style: none;
  padding-left: 0;
}
table {
  border-collapse: collapse;
  width: 100%;
}
th, td {
  padding: 12px 16px;
  text-align: left;
}

/* ===== BRAND COLORS by variable ===== */
:root {
  --primary: #19424D;
  --secondary: #E6E8E6;
  --background: #F8F9F8;
  --accent: #B85D18;
  --gold: #B89D5B;
  --offwhite: #FFFFFF;
  --midgray: #444a4e;
  --border: #e2e2e2;
  --shadow: rgba(25,66,77,0.08);
}

/* ===== GLOBAL TYPOGRAPHY ===== */
body {
  font-family: 'Roboto', Arial, sans-serif;
  background: var(--background);
  color: var(--primary);
  font-size: 16px;
  letter-spacing: 0;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 18px;
  line-height: 1.2;
  letter-spacing: -0.01em;
}
h1 {
  font-size: 2.5rem;
  margin-bottom: 24px;
}
h2 {
  font-size: 2rem;
}
h3 {
  font-size: 1.25rem;
}
h4 { font-size: 1.1rem; }

p, ul, li {
  font-size: 1rem;
  color: var(--midgray);
}
.section p:last-child {
  margin-bottom: 0;
}
strong {
  font-weight: 600;
  color: var(--primary);
}
.subheadline {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1.25rem;
  font-weight: 400;
  color: #4C5151;
  margin-bottom: 30px;
}

/* ========= LAYOUT CONTAINERS ========= */
.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 20px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--offwhite);
  border-radius: 19px;
  box-shadow: 0 2px 16px var(--shadow);
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
}

/* ========= HEADER & NAVIGATION ========= */
header {
  background: var(--offwhite);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 4px 10px -5px var(--shadow);
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
  gap: 18px;
}
.logo img {
  height: 39px;
  width: auto;
}
nav {
  display: flex;
  flex-direction: row;
  gap: 22px;
  align-items: center;
}
nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  color: var(--primary);
  padding: 6px 10px;
  position: relative;
  transition: color 0.18s;
}
nav a::after {
  content: '';
  display: block;
  height: 2px;
  background: var(--accent);
  width: 0;
  transition: width 0.28s cubic-bezier(.77,0,.175,1);
  border-radius: 2px;
  margin: 0 auto;
}
nav a:hover::after, nav a:focus::after {
  width: 80%;
}
nav a.active {
  color: var(--accent);
}
nav a.active::after {
  width: 80%;
}

.cta-btn {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  padding: 0.72em 1.8em;
  background: var(--primary);
  color: var(--offwhite);
  border-radius: 24px;
  box-shadow: 0 3px 14px var(--shadow);
  font-weight: 700;
  border: none;
  letter-spacing: 0.04em;
  transition: background 0.18s, box-shadow 0.18s, color 0.18s, transform 0.14s;
  cursor: pointer;
  display: inline-block;
  margin-left: 18px;
  position: relative;
}
.cta-btn:hover, .cta-btn:focus {
  background: var(--accent);
  color: var(--offwhite);
  box-shadow: 0 5px 18px var(--shadow), 0 0 0 2px var(--gold);
  transform: translateY(-2px) scale(1.03);
}

/* ==== MOBILE NAVIGATION ==== */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 2rem;
  color: var(--primary);
  cursor: pointer;
  margin-left: 12px;
  z-index: 201;
  padding: 6px 8px;
}

.mobile-menu {
  display: none;
}

/* Start mobile nav overlay & animation */
@media (max-width: 998px) {
  nav, .cta-btn {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
  .mobile-menu {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    background: var(--primary);
    color: #fff;
    position: fixed;
    top: 0; left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 205;
    padding: 40px 26px 24px 26px;
    transform: translateX(105%);
    transition: transform 0.42s cubic-bezier(.78,.1,.09,1);
    box-shadow: -8px 0 32px var(--shadow);
    overflow-y: auto;
  }
  .mobile-menu.open {
    transform: translateX(0);
  }
  .mobile-menu-close {
    align-self: flex-end;
    background: none;
    border: none;
    color: var(--gold);
    font-size: 2.1rem;
    margin-bottom: 30px;
    cursor: pointer;
    transition: color 0.2s;
  }
  .mobile-menu-close:hover, .mobile-menu-close:focus {
    color: var(--accent);
  }
  .mobile-nav {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 16px;
  }
  .mobile-nav a {
    color: #fff;
    font-family: 'Montserrat', Arial, sans-serif;
    font-size: 1.18rem;
    font-weight: 600;
    padding: 15px 10px 15px 2px;
    border-radius: 9px;
    background: none;
    margin-left: 0;
    transition: background 0.18s, color 0.22s;
    position: relative;
  }
  .mobile-nav a:hover, .mobile-nav a:focus {
    background: rgba(184, 141, 24, 0.09);
    color: var(--gold);
  }
}

@media (max-width: 998px) {
  header .container {
    padding: 13px 12px;
    gap: 10px;
  }
}

/* ========= HERO SECTION ========= */
.hero-section {
  background: linear-gradient(100deg, var(--background) 75%, #ebebe2 100%);
  position: relative;
  border-bottom: 2px solid #ece8e2;
  padding: 0 0 20px 0;
  margin-bottom: 0;
}
.hero-section .container {
  min-height: 410px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding-top: 52px;
  padding-bottom: 38px;
}
.hero-section h1 {
  font-size: 2.8rem;
  color: var(--primary);
}
.hero-section .cta-btn {
  margin-left: 0;
  margin-top: 16px;
}

/* ========= SPACING UTILITIES ========= */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: var(--offwhite);
  border-radius: 17px;
  box-shadow: 0 2px 12px var(--shadow);
  padding: 26px 24px;
  min-width: 210px;
  max-width: 390px;
  flex: 1 1 250px;
}
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px 24px;
  background: #fff;
  border-radius: 17px;
  box-shadow: 0 2px 14px var(--shadow);
  min-width: 250px;
  max-width: 410px;
  flex: 1 1 260px;
  border: 1.5px solid #ede7dd;
  margin-bottom: 20px;
  transition: box-shadow 0.18s, border 0.19s;
}
.testimonial-card:hover, .testimonial-card:focus {
  box-shadow: 0 8px 26px 0 rgba(184, 93, 24, 0.11);
  border: 1.5px solid var(--gold);
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  justify-content: flex-start;
}
.service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 24px;
}
.service-list > div {
  background: var(--offwhite);
  border: 1.5px solid #ececec;
  box-shadow: 0 1px 9px var(--shadow);
  border-radius: 14px;
  padding: 22px 20px;
  min-width: 180px;
  max-width: 295px;
  flex: 1 1 180px;
  transition: box-shadow 0.15s, border 0.18s;
  margin-bottom: 20px;
}
.service-list > div:hover, .service-list > div:focus {
  border: 1.5px solid var(--gold);
  box-shadow: 0 5px 24px 0 rgba(184, 93, 24, 0.08);
}

.trust-icons {
  display: flex;
  flex-direction: row;
  gap: 26px;
  align-items: center;
  margin-top: 16px;
}
.trust-icons img {
  width: 38px;
  filter: grayscale(0%) brightness(1.08);
  opacity: 0.92;
  transition: filter 0.16s, opacity 0.14s;
}
.trust-icons img:hover {
  filter: grayscale(0%) brightness(1.15);
  opacity: 1;
}

/* ===== TESTIMONIAL SLIDER/GRID ===== */
.testimonial-slider, .testimonial-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
  margin-bottom: 20px;
}

.ratings-overview {
  background: var(--secondary);
  padding: 22px 26px;
  border-radius: 14px;
  margin-bottom: 12px;
  box-shadow: 0 1px 8px var(--shadow);
  max-width: 420px;
}
.ratings-overview h2 {
  color: var(--accent);
  font-size: 2rem;
  margin-bottom: 10px;
}

/* ======= PRICING TABLE ======== */
.pricing-table {
  margin: 28px 0 28px 0;
  width: 100%;
  background: var(--offwhite);
  border-radius: 14px;
  box-shadow: 0 2px 10px var(--shadow);
  overflow: hidden;
  border: 1.5px solid #ececec;
  font-family: 'Montserrat', Arial, sans-serif;
}
.pricing-table th {
  background: #f7f5ef;
  color: var(--primary);
  font-weight: 700;
}
.pricing-table td {
  color: var(--midgray);
}
.pricing-table tr:not(:last-child) td,
.pricing-table tr:not(:last-child) th {
  border-bottom: 1px solid #efeae1;
}

/* === FAQ ACCORDION SIMPLE (no js styles) === */
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.faq-item h3 {
  font-family: 'Montserrat', Arial, sans-serif;
  color: var(--accent);
  font-size: 1.1rem;
  margin-bottom: 7px;
  cursor: pointer;
  position: relative;
}
.faq-item h3::before {
  content: '➤';
  color: var(--gold);
  margin-right: 9px;
  font-size: 0.9em;
}
.faq-item p {
  color: var(--primary);
  padding-left: 18px;
  font-size: 1rem;
}

/* === SUPPORT/INFO CTA === */
.support-cta {
  padding: 22px 26px;
  background: var(--secondary);
  border-radius: 13px;
  margin-top: 18px;
  margin-bottom: 14px;
}
.support-cta .cta-btn {
  margin-top: 7px;
}

/* ===== Specials (Thank You page, etc) ===== */
.thankyou-message {
  font-size: 1.18rem;
  color: var(--primary);
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  margin-bottom: 24px;
}
.next-steps-info ul li {
  padding-left: 22px;
  position: relative;
  margin-bottom: 12px;
}
.next-steps-info ul li::before {
  content: '✔';
  color: var(--accent);
  position: absolute;
  left: 0;
  top: 1px;
  font-size: 1.1em;
}
.next-steps-info ul {
  margin-bottom: 16px;
}

/* ======= FOOTER ======== */
footer {
  background: var(--primary);
  color: #fff;
  padding: 44px 0 20px 0;
}
footer .container {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 40px;
  align-items: flex-start;
  justify-content: space-between;
  max-width: 1220px;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-nav a {
  color: #fff;
  font-weight: 500;
  margin-bottom: 2px;
  opacity: 0.9;
  font-size: 1rem;
  transition: color 0.16s, opacity 0.16s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: var(--gold);
  opacity: 1;
}
.footer-contact {
  font-size: 0.98rem;
  color: #efefef;
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 220px;
}
.footer-contact img {
  width: 38px;
  margin-bottom: 6px;
}
.footer-contact p {
  color: #e2d9c9;
  display: flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 3px;
}
.footer-contact p img {
  width: 19px;
  display: inline-block;
  margin-right: 3px;
}
.footer-cta {
  align-self: center;
}
.footer-cta .cta-btn {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 2px 10px var(--shadow);
}
.footer-cta .cta-btn:hover, .footer-cta .cta-btn:focus {
  background: var(--primary);
  color: var(--gold);
}
footer small {
  display: block;
  margin-top: 28px;
  color: #dbc392;
  background: none;
}

/* ========== COOKIE CONSENT BANNER ========== */
.cookie-consent-banner {
  position: fixed;
  left: 0; right: 0;
  bottom: 0;
  z-index: 3000;
  background: var(--offwhite);
  color: var(--primary);
  padding: 24px 16px 20px 16px;
  box-shadow: 0 -1px 22px var(--shadow);
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 16px;
}
.cookie-consent-banner p {
  font-size: 0.96rem;
  margin-bottom: 6px;
  color: var(--midgray);
  font-family: 'Roboto', Arial, sans-serif;
}
.cookie-consent-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}
.cookie-btn {
  font-family: 'Montserrat', Arial, sans-serif;
  padding: 7px 20px;
  border-radius: 20px;
  background: var(--accent);
  color: #fff;
  border: none;
  font-weight: 600;
  cursor: pointer;
  font-size: 1rem;
  box-shadow: 0 1px 8px var(--shadow);
  transition: background 0.17s, color 0.17s, transform 0.08s;
}
.cookie-btn.secondary {
  background: var(--primary);
  color: #fff;
}
.cookie-btn.settings {
  background: var(--offwhite);
  color: var(--gold);
  border: 1.5px solid var(--gold);
}
.cookie-btn:hover, .cookie-btn:focus {
  transform: translateY(-1px) scale(1.03);
  box-shadow: 0 3px 16px var(--shadow);
}
.cookie-btn.secondary:hover, .cookie-btn.secondary:focus {
  background: var(--gold);
  color: var(--primary);
}
.cookie-btn.settings:hover, .cookie-btn.settings:focus {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}

/* COOKIES MODAL */
.cookie-modal {
  position: fixed;
  left: 0; top: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(25, 66, 77, 0.72);
  z-index: 3010;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.33s, visibility 0.18s;
}
.cookie-modal.open {
  visibility: visible;
  opacity: 1;
}
.cookie-modal-content {
  background: var(--offwhite);
  color: var(--primary);
  border-radius: 17px;
  box-shadow: 0 12px 54px var(--shadow);
  max-width: 450px;
  width: 100%;
  padding: 38px 28px 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 19px;
  position: relative;
}
.cookie-modal-content h2 {
  color: var(--accent);
  font-size: 1.35rem;
  margin-bottom: 12px;
}
.cookie-modal-categories {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 10px;
}
.cookie-category label {
  font-size: 1rem;
  font-weight: 500;
  color: var(--primary);
  cursor: pointer;
}
.cookie-category input[type="checkbox"] {
  accent-color: var(--accent);
  width: 21px; height: 21px;
}
.cookie-modal-actions {
  display: flex;
  flex-direction: row;
  gap: 14px;
  justify-content: flex-end;
  margin-top: 6px;
}
.cookie-modal-close {
  position: absolute;
  top: 15px; right: 14px;
  background: none;
  border: none;
  color: var(--accent);
  font-size: 1.9rem;
  cursor: pointer;
  transition: color 0.18s;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  color: var(--primary);
}

/* ========== LIST STYLES ========== */
ul, .text-section ul {
  margin-bottom: 20px;
  margin-top: 7px;
}
ul li, .text-section ul li {
  margin-bottom: 11px;
  padding-left: 22px;
  position: relative;
  color: var(--midgray);
}
ul li::before, .text-section ul li::before {
  content: '\2022';
  color: var(--accent);
  font-size: 1.1em;
  position: absolute;
  left: 0; top: 1px;
}

/* ===== RESPONSIVE LAYOUTS ===== */
@media (max-width: 1220px) {
  .container {
    max-width: 95vw;
    padding: 0 10px;
  }
}
@media (max-width: 1000px) {
  .hero-section .container {
    min-height: 340px;
  }
  .feature-grid, .service-list, .testimonial-slider, .testimonial-grid, .card-container {
    gap: 15px;
  }
  .footer-cta {
    margin-top: 13px;
  }
  footer .container {
    gap: 22px;
  }
}
@media (max-width: 890px) {
  .container {
    max-width: 100vw;
    padding: 0 5px;
  }
  .feature-grid {
    flex-direction: column;
    gap: 18px;
  }
  .service-list, .testimonial-slider, .testimonial-grid, .card-container {
    flex-direction: column;
    gap: 13px;
  }
  .content-grid {
    flex-direction: column;
    gap: 13px;
  }
  .footer-cta {
    order: 3;
    margin-top: 20px;
  }
  footer .container {
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
  }
}
@media (max-width: 768px) {
  .hero-section {
    padding: 0 0 10px 0;
  }
  .hero-section .container {
    padding-top: 32px;
    padding-bottom: 14px;
    min-height: 220px;
  }
  .section {
    padding: 27px 8px;
    margin-bottom: 34px;
    border-radius: 10px;
  }
  h1 {
    font-size: 2rem;
    margin-bottom: 18px;
  }
  h2 {
    font-size: 1.29rem;
    margin-bottom: 14px;
  }
  .content-wrapper {
    gap: 14px;
  }
  .testimonial-card, .card {
    padding: 17px 10px;
    min-width: unset;
    max-width: unset;
    border-radius: 9px;
  }
  .feature-grid,
  .service-list,
  .testimonial-slider, .testimonial-grid, .card-container, .content-grid {
    flex-direction: column;
    gap: 10px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 15px;
    align-items: flex-start;
  }
  .footer-contact img { width: 29px; }
}

/* ===== MINI ANIMATIONS / MICRO-INTERACTIONS ===== */
.cta-btn, .cookie-btn {
  transition: background 0.16s, color 0.18s, box-shadow 0.12s, transform 0.11s;
}
.cta-btn:active, .cookie-btn:active {
  transform: scale(0.97);
}
section h2 {
  border-left: 4px solid var(--gold);
  padding-left: 12px;
}
.feature-grid img, .service-list img {
  width: 40px;
  filter: grayscale(0%) brightness(1.09);
  margin-bottom: 7px;
  border-radius: 7px;
}
.feature-grid h3, .service-list h3 {
  color: var(--accent);
}

/* ===== TEXT SECTION ===== */
.text-section {
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 1.04rem;
}
.text-section h2,
.text-section h3 {
  border: 0;
  padding-left: 0;
  margin-bottom: 2px;
}
.location-map {
  margin: 20px 0 7px 0;
  padding: 10px 14px;
  background: #f7efe0;
  border-radius: 8px;
  color: var(--primary);
  font-weight: 500;
}

/* ===== OTHER SMALL UI ELEMENTS ===== */
::-webkit-scrollbar {
  width: 10px;
  background: var(--secondary);
  border-radius: 8px;
}
::-webkit-scrollbar-thumb {
  background: #ddd6c0;
  border-radius: 8px;
}

/* ==== INPUT, LABEL STYLES (future forms) ==== */
input, textarea, select {
  font-family: inherit;
  border: 1.5px solid #dfdccd;
  border-radius: 8px;
  padding: 10px 14px;
  background: #fff;
  margin-bottom: 16px;
  font-size: 1rem;
  outline: none;
  transition: border 0.15s;
}
input:focus, textarea:focus, select:focus {
  border-color: var(--accent);
}
label {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  color: var(--primary);
  margin-bottom: 6px;
  display: block;
  font-size: 1.01rem;
}

/* ========= PRINT OPTIMIZATION ========= */
@media print {
  header, footer, .cookie-consent-banner, .mobile-menu {
    display: none !important;
  }
  body, .container, .section {
    background: #fff !important;
    color: #111 !important;
    box-shadow: none !important;
    padding: 0 !important;
  }
  a {
    color: #111 !important;
    text-decoration: underline !important;
  }
}
