/* RESET & BASELINE ------------ */
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;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1.6;
  font-family: 'Roboto', Arial, sans-serif;
  background: #F4F5FA;
  color: #3B2C13;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
  border-radius: 12px;
}
a {
  color: #17438F;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #C06E00;
  outline: none;
}
strong {
  font-weight: bold;
}
ul, ol {
  padding-left: 24px;
  margin-bottom: 24px;
}
li {
  margin-bottom: 8px;
}
hr {
  border: none;
  border-top: 1px solid #E0DFE7;
  margin: 32px 0;
}
table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 32px;
}
thead tr {
  background: #F29610;
  color: #fff;
}
th, td {
  padding: 16px 12px;
  text-align: left;
  font-size: 16px;
}
tbody tr:nth-child(even) {
  background: #F4F5FA;
}

/* TYPOGRAPHY ------------ */
h1, .hero h1 {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 700;
  font-size: 2.25rem;
  line-height: 1.15;
  margin-bottom: 20px;
  letter-spacing: -1px;
  color: #17438F;
}
@media (min-width: 768px) {
  h1, .hero h1 {
    font-size: 3rem;
  }
}
h2 {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 600;
  font-size: 1.5rem;
  margin-bottom: 18px;
  color: #C06E00;
  letter-spacing: -0.5px;
}
h3 {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-size: 1.125rem;
  font-weight: 600;
  color: #17438F;
  margin-bottom: 12px;
}
p, .text-section p {
  font-size: 1rem;
  margin-bottom: 16px;
  color: #4D3621;
}
.text-section p:last-child {
  margin-bottom: 0;
}
.note-discounts {
  font-size: 1rem;
  color: #8D6F48;
  background: #FFF8ED;
  border-left: 4px solid #F29610;
  padding: 16px 20px;
  margin-top: 16px;
  border-radius: 8px;
}
.service-price {
  display: inline-block;
  background: #FFF3E3;
  color: #C06E00;
  font-weight: bold;
  padding: 2px 10px;
  border-radius: 8px;
  font-size: 15px;
}

/* LAYOUT ------------ */
.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 16px;
}
.content-wrapper {
  margin: 0 auto;
  max-width: 800px;
  width: 100%;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 4px 20px rgba(242, 150, 16, 0.12);
  /* very soft shadow accent */
}
@media (max-width: 992px) {
  .section {
    padding: 32px 8px;
  }
}

/* FLEX LAYOUTS ------------ */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #FFF;
  border-radius: 18px;
  box-shadow: 0 2px 8px rgba(23, 67, 143, 0.08), 0 1.5px 4px rgba(242,150,16,0.08);
  margin-bottom: 20px;
  position: relative;
  transition: box-shadow 0.2s, transform 0.2s;
}
.card:hover {
  box-shadow: 0 6px 28px rgba(242,150,16,0.18);
  transform: translateY(-2px) scale(1.015);
}
.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;
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #FFF;
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(242,150,16,0.09);
  padding: 24px 18px;
  margin-bottom: 20px;
  transition: box-shadow 0.2s;
}
.feature-item:hover {
  box-shadow: 0 6px 28px rgba(242, 150, 16, 0.18);
}
.services-preview-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 24px;
  justify-content: flex-start;
}
.service-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background: #FEF7ED;
  border: 2px solid #FFF4E2;
  border-radius: 18px;
  padding: 24px 18px 18px 18px;
  flex: 1 1 240px;
  box-shadow: 0 1px 6px rgba(242,150,16,0.11);
  min-width: 230px;
  max-width: 360px;
  transition: box-shadow 0.2s, border-color 0.2s;
}
.service-card img {
  width: 44px;
  height: 44px;
  margin-bottom: 10px;
  background: #FFF;
  border-radius: 50%;
  box-shadow: 0 1px 4px rgba(23,67,143,0.12);
  padding: 6px;
}
.service-card h3 {
  margin-bottom: 8px;
  font-size: 1.125rem;
  color: #C06E00;
}
.service-card:hover {
  box-shadow: 0 6px 28px rgba(242, 150, 16, 0.15);
  border-color: #F29610;
}
@media (max-width: 900px) {
  .services-preview-grid {
    flex-direction: column;
    align-items: stretch;
  }
  .service-card {
    width: 100%;
    max-width: 100%;
  }
}

.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #FFF5EA;
  border-radius: 18px;
  box-shadow: 0 2px 8px rgba(23,67,143,0.08);
  margin-bottom: 24px;
  color: #3B2C13;
  font-size: 1.08rem;
  font-style: italic;
  position: relative;
}
.testimonial-card p {
  margin: 0 0 6px 0;
  font-style: italic;
  color: #4D3621;
}
.testimonial-card div {
  font-size: 1rem;
  font-weight: 500;
  color: #C06E00;
  font-style: normal;
}
@media (max-width: 700px) {
  .testimonial-card {
    flex-direction: column;
    text-align: left;
    gap: 8px;
    padding: 18px 12px;
  }
}

.footer-contact, .footer-rights {
  color: #3B2C13;
  font-size: 0.98rem;
}
.footer-brand img {
  width: 48px;
  height: 48px;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin-bottom: 12px;
}
.footer-nav a {
  color: #17438F;
  font-size: 1rem;
  font-family: 'Montserrat', 'Roboto', sans-serif;
  font-weight: 500;
  transition: color 0.2s;
}
.footer-nav a:hover {
  color: #C06E00;
}
footer {
  background: #FFF3E3;
  border-top: 3px solid #F29610;
  padding: 36px 0 18px 0;
  margin-top: 40px;
}
footer .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}
.footer-contact div {
  margin-bottom: 4px;
}

/* HEADER & NAV MENU ------------ */
header {
  background: #fff;
  box-shadow: 0 4px 18px rgba(242,150,16,0.11);
  position: sticky;
  top: 0;
  z-index: 100;
}
header .container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding: 10px 16px 10px 12px;
  min-height: 64px;
}
.logo img {
  height: 42px;
  width: auto;
  border-radius: 14px;
  background: #FFF3E3;
  padding: 6px 8px;
  box-shadow: 0 1px 6px rgba(242,150,16,0.13);
}
nav {
  display: flex;
  align-items: center;
  gap: 22px;
}
nav .btn {
  margin-left: 18px;
}
header nav a {
  font-family: 'Montserrat', 'Roboto', sans-serif;
  font-size: 1rem;
  font-weight: 500;
  color: #17438F;
  transition: color 0.18s, background 0.18s;
  padding: 7px 8px;
  border-radius: 6px;
}
header nav a:hover, header nav a:focus {
  color: #fff;
  background: #F29610;
}
@media (max-width: 1050px) {
  header .container {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  nav {
    gap: 14px;
  }
}

/* HERO ------------ */
.hero {
  background: linear-gradient(90deg, #FFF4E2 0%, #F4F5FA 100%);
  border-radius: 0 0 42px 42px;
  box-shadow: 0 8px 32px rgba(23,67,143,0.11);
  margin-bottom: 48px;
  padding: 56px 0 36px 0;
}
.hero .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.hero .content-wrapper {
  text-align: center;
  max-width: 640px;
}
.hero p {
  font-size: 1.25rem;
  color: #655335;
  margin-bottom: 28px;
}
.hero .btn {
  font-size: 1.125rem;
}

/* BUTTONS ------------ */
.btn,
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'Montserrat', 'Roboto', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  border: none;
  border-radius: 999px;
  padding: 12px 28px;
  margin: 12px 0 0 0;
  cursor: pointer;
  background: #FFF8ED;
  color: #17438F;
  box-shadow: 0 2px 8px rgba(23, 67, 143, 0.10);
  transition: background 0.22s, color 0.22s, box-shadow 0.22s, transform 0.14s;
  text-align: center;
  min-width: 120px;
}
.btn:hover, .btn:focus {
  background: #F29610;
  color: #fff;
  box-shadow: 0 6px 28px rgba(242, 150, 16, 0.22);
  outline: none;
  transform: translateY(-1px) scale(1.04);
}
.btn-primary {
  background: #17438F;
  color: #fff;
  box-shadow: 0 2px 16px rgba(23, 67, 143, 0.13);
}
.btn-primary:hover, .btn-primary:focus {
  background: #C06E00;
  color: #fff;
  box-shadow: 0 8px 32px rgba(242, 150, 16, 0.22);
}

/* BLOG ------------ */
.blog-categories {
  font-size: 1rem;
  color: #C06E00;
  margin-bottom: 14px;
}
.featured-post {
  background: #FEF7ED;
  border-radius: 12px;
  padding: 18px 14px;
  margin-bottom: 22px;
  box-shadow: 0 2px 8px rgba(23,67,143,0.08);
}
.blog-listing {
  list-style-type: disc;
  margin-bottom: 0px;
}
.blog-listing li {
  margin-bottom: 10px;
}
.blog-listing a {
  color: #17438F;
  font-weight: 500;
  text-decoration: underline;
  transition: color 0.2s;
}
.blog-listing a:hover {
  color: #C06E00;
}

/* PRICING TABLE ------------ */
.pricing-table {
  font-size: 1rem;
  margin-bottom: 20px;
}
.pricing-table th {
  font-family: 'Montserrat', 'Roboto', sans-serif;
  font-weight: 600;
  letter-spacing: 0.5px;
}

/* MAP HOLDER ------------ */
.map-location img {
  border-radius: 20px;
  box-shadow: 0 2px 8px rgba(23,67,143,0.13);
  width: 100%;
  max-width: 350px;
}
.map-location {
  margin-top: 20px;
  display: flex;
  justify-content: flex-start;
}

/* MOBILE BURGER MENU ------------ */
.mobile-menu-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #FFF8ED;
  color: #C06E00;
  font-size: 2rem;
  border: none;
  border-radius: 9px;
  padding: 8px 15px;
  cursor: pointer;
  margin-left: 18px;
  box-shadow: 0 2px 8px rgba(23,67,143,0.10);
  transition: background 0.21s, color 0.21s;
  z-index: 1041;
}
.mobile-menu-toggle:focus {
  outline: 2px solid #C06E00;
}
@media (min-width: 992px) {
  .mobile-menu-toggle {
    display: none;
  }
}

.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: #FFF8ED;
  z-index: 1042;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 32px 24px 24px 24px;
  transform: translateX(-100vw);
  transition: transform 0.39s cubic-bezier(.83,.02,.32,1.06);
  box-shadow: 8px 0 32px rgba(23,67,143,0.14);
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  background: none;
  border: none;
  font-size: 2rem;
  color: #C06E00;
  margin-bottom: 32px;
  cursor: pointer;
  padding: 8px 10px;
  border-radius: 8px;
  transition: background 0.18s, color 0.18s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #F4F5FA;
  color: #17438F;
  outline: none;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  width: 100%;
}
.mobile-nav a {
  font-size: 1.2rem;
  padding: 14px 0;
  color: #17438F;
  font-family: 'Montserrat', 'Roboto', sans-serif;
  font-weight: 600;
  border-radius: 8px;
  width: 100%;
  transition: background 0.17s, color 0.17s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #F29610;
  color: #fff;
}
@media (min-width: 992px) {
  .mobile-menu {
    display: none !important;
  }
}

/* Hide normal nav on mobile */
@media (max-width: 991px) {
  header nav {
    display: none !important;
  }
}

/* Cookie Consent Banner */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background: #FFF3E3;
  border-top: 3px solid #F29610;
  box-shadow: 0 -2px 24px rgba(23,67,143,0.12);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 24px 14px;
  z-index: 9999;
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.2s, transform 0.36s;
  font-size: 1.06rem;
}
.cookie-banner.hide {
  opacity: 0;
  transform: translateY(32px);
  pointer-events: none;
}
.cookie-banner-text {
  color: #3B2C13;
  max-width: 460px;
  flex: 1 1 200px;
}
.cookie-banner-buttons {
  display: flex;
  gap: 12px;
}
.cookie-btn-accept, .cookie-btn-settings, .cookie-btn-reject {
  font-family: 'Montserrat', 'Roboto', sans-serif;
  font-size: 1.03rem;
  border-radius: 999px;
  padding: 10px 22px;
  background: #FFF8ED;
  color: #17438F;
  border: none;
  cursor: pointer;
  font-weight: 600;
  transition: background 0.23s, color 0.23s, box-shadow 0.18s;
  box-shadow: 0 1px 5px rgba(23,67,143,0.08);
}
.cookie-btn-accept {
  background: #17438F;
  color: #fff;
}
.cookie-btn-accept:hover, .cookie-btn-accept:focus {
  background: #C06E00;
  color: #fff;
}
.cookie-btn-reject {
  background: #fff;
  color: #C06E00;
}
.cookie-btn-reject:hover, .cookie-btn-reject:focus {
  background: #F29610;
  color: #fff;
}
.cookie-btn-settings {
  background: #FFF8ED;
  color: #17438F;
}
.cookie-btn-settings:hover, .cookie-btn-settings:focus {
  background: #F29610;
  color: #fff;
}

/* Cookie Preferences Modal */
.cookie-modal-overlay {
  position: fixed;
  top:0; left:0; right:0; bottom:0;
  background: rgba(0,0,0,0.23);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  pointer-events: auto;
  transition: opacity 0.25s;
}
.cookie-modal-overlay.hide {
  opacity: 0;
  pointer-events: none;
}
.cookie-modal {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 8px 48px rgba(23,67,143,0.21);
  padding: 36px 26px 30px 26px;
  min-width: 290px;
  max-width: 430px;
  width: 98vw;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.cookie-modal h2 {
  font-size: 1.3rem;
  color: #C06E00;
  font-weight: 600;
  margin-bottom: 18px;
}
.cookie-category {
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.cookie-switch {
  display: flex;
  align-items: center;
}
.cookie-switch input[type="checkbox"] {
  width: 36px;
  height: 20px;
  accent-color: #F29610;
}
.cookie-essential {
  pointer-events: none;
  opacity: 0.6;
}
.cookie-modal-actions {
  margin-top: 22px;
  display: flex;
  gap: 16px;
}
.cookie-modal-close {
  position: absolute;
  top: 18px; right: 20px;
  background: none;
  border: none;
  font-size: 1.6rem;
  color: #C06E00;
  cursor: pointer;
  border-radius: 8px;
  transition: background 0.17s;
}
.cookie-modal-close:hover { background: #FFF8ED; }

/* RESPONSIVE LAYOUTS ------------ */
@media (max-width: 900px) {
  .container {
    max-width: 97vw;
    padding: 0 8px;
  }
  .content-wrapper {
    max-width: 97vw;
  }
  .section {
    padding: 26px 5px;
  }
}
@media (max-width: 700px) {
  h1, .hero h1 { font-size: 1.55rem; }
  h2 { font-size: 1.18rem; }
  .footer-contact, .footer-rights { font-size: 0.93rem; }
  .footer-brand img { width: 34px; height: 34px; }
  .section { padding: 16px 5px; margin-bottom: 35px; }
  .card, .service-card, .feature-item { padding: 12px 7px; }
}

/* SPACING AND FLEX CONSISTENCY ------------ */
section:not(:last-child) {
  margin-bottom: 44px;
}
.card:not(:last-child), .feature-item:not(:last-child), .testimonial-card:not(:last-child) {
  margin-bottom: 20px;
}

/* MISC ------------ */
::-webkit-scrollbar {
  width: 10px;
  background: #FFF3E3;
  border-radius: 9px;
}
::-webkit-scrollbar-thumb {
  background: #F29610;
  border-radius: 9px;
}

/* Hide outline for mouse users, show on keyboard focus only */
:focus:not(:focus-visible) {
  outline: none;
}
:focus-visible {
  outline: 2px solid #C06E00;
  outline-offset: 3px;
}

/* Hide elements with .d-none class */
.d-none { display: none !important; }

/* Ensure all buttons, inputs, and links have tappable area */
button, [type=button], [type=submit], .btn, a {
  touch-action: manipulation;
}
