/* CSS RESET & BASE TYPOGRAPHY */
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,
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.5;
  background-color: #f7f7fa;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  color: #1b2331;
  font-size: 16px;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}
img {
  max-width: 100%;
  display: block;
  height: auto;
}
a {
  color: #154293;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #F6BA1B;
  outline: none;
}
strong {
  font-weight: 600;
}

/* BRAND VARIABLES (with fallbacks) */
:root {
  --color-primary: #154293;
  --color-secondary: #E5EAF4;
  --color-accent: #F6BA1B;
  --color-bg: #f7f7fa;
  --color-dark: #1b2331;
  --color-card-bg: #fff;
  --color-border: #e1e4ea;
  --color-gold: #C9A14B;
  --color-shadow: rgba(27,35,49,0.08);
  --font-display: 'Montserrat', Arial, Helvetica, sans-serif;
  --font-body: 'Roboto', Arial, Helvetica, sans-serif;
  --radius-base: 16px;
  --radius-small: 8px;
  --radius-lg: 28px;
  --shadow-base: 0 4px 16px var(--color-shadow);
  --shadow-hover: 0 8px 32px rgba(21,66,147,0.12);
}

/* Layout CONTAINER */
.container {
  width: 100%;
  margin: 0 auto;
  max-width: 1150px;
  padding: 0 16px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  gap: 0px;
}

.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: none;
}

/* TYPOGRAPHY */
h1, h2, h3, h4 {
  color: #1b2331;
  font-family: var(--font-display);
  letter-spacing: 0.01em;
  font-weight: 700;
}
h1 {
  font-size: 2.4rem;
  margin-bottom: 12px;
  line-height: 1.13;
}
h2 {
  font-size: 2rem;
  margin-bottom: 10px;
  line-height: 1.16;
}
h3 {
  font-size: 1.3rem;
  margin-bottom: 8px;
}
h4 {
  font-size: 1.1rem;
  margin-bottom: 8px;
}
.subheadline {
  font-family: var(--font-body);
  font-size: 1.15rem;
  color: #555d6d;
  margin-bottom: 18px;
  font-weight: 400;
}
p, ul, ol {
  font-family: var(--font-body);
  font-size: 16px;
  color: #22293A;
}
ul, ol {
  padding-left: 22px;
  margin-bottom: 16px;
}

ol.step-by-step,
ol.process-steps {
  list-style-type: decimal;
  margin-left: 26px;
  margin-bottom: 10px;
}

li {
  margin-bottom: 8px;
}

.table, table {
  width: 100%;
  border-collapse: collapse;
}
th, td {
  border: 1px solid var(--color-border);
  padding: 14px 12px;
  text-align: left;
}
th {
  background: var(--color-secondary);
  font-family: var(--font-display);
  font-size: 1.04rem;
}

/* HERO */
.hero {
  min-height: 340px;
  background: linear-gradient(96deg,#fff 40%, var(--color-secondary) 100%);
  display: flex;
  align-items: center;
  border-radius: var(--radius-lg);
  box-shadow: 0 6px 28px rgba(21,66,147,0.08);
  margin-bottom: 60px;
  padding: 0;
}
.hero .container {
  min-height: 290px;
  justify-content: center;
}
.hero .content-wrapper {
  max-width: 600px;
  gap: 18px;
}

/* FEATURE GRID & LISTS */
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: flex-start;
  margin-top: 10px;
}
.feature-grid > div {
  background: var(--color-card-bg);
  border-radius: var(--radius-base);
  box-shadow: 0 2px 20px var(--color-shadow);
  padding: 32px 24px 24px 24px;
  min-width: 210px;
  flex: 1 1 220px;
  border-top: 4px solid var(--color-gold);
  transition: box-shadow .22s, transform .22s;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}
.feature-grid > div:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-5px) scale(1.025);
  z-index: 2;
}
.feature-grid img {
  width: 38px;
  height: 38px;
  margin-bottom: 5px;
  filter: drop-shadow(0 2px 2px #F6BA1Baa) brightness(1.05);
}

.service-list, .price-examples ul, .service-highlights ul, ul.service-overview {
  margin-bottom: 10px;
  padding-left: 20px;
}
.service-list li, .price-examples li, .service-highlights li {
  margin-bottom: 8px;
  font-size: 1.01em;
  color: #2b3150;
}
.service-highlights {
  padding-bottom: 14px;
}

.service-inclusions {
  margin-top: 16px;
  font-size: 0.96em;
  color: #696e7c;
}

/* BUTTONS */
.btn-primary {
  font-family: var(--font-display);
  font-size: 1.13em;
  background: var(--color-primary);
  color: #fff;
  border-radius: 60px;
  padding: 0.77em 2.0em;
  font-weight: 600;
  border: none;
  cursor: pointer;
  box-shadow: 0 2px 12px rgba(21,66,147,0.10);
  outline: none;
  margin-top: 18px;
  margin-bottom: 3px;
  letter-spacing: 0.02em;
  transition: background .17s, color .17s, box-shadow 0.18s, transform 0.15s;
  position: relative;
  z-index: 1;
  border-bottom: 3px solid var(--color-gold);
}
.btn-primary:hover, .btn-primary:focus {
  background: var(--color-gold);
  color: #1b2331;
  transform: translateY(-1px) scale(1.038);
  box-shadow: 0 7px 24px rgba(246,186,27,0.16);
  border-bottom: 3px solid var(--color-primary);
}

/* NAVIGATION */
header {
  background: #fff;
  border-bottom: 1px solid var(--color-border);
  box-shadow: 0 0px 8px rgba(27,35,49,0.02);
  position: relative;
  z-index: 60;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
  padding: 12px 16px;
  position: relative;
}
header nav {
  display: flex;
  align-items: center;
  gap: 22px;
}
header nav a {
  font-family: var(--font-display);
  padding: 4px 6px;
  color: #1b2331;
  font-size: 1.05rem;
  font-weight: 500;
  border-radius: 4px;
  transition: color .15s, background .13s;
}
header nav a:hover, header nav a:focus {
  color: var(--color-accent);
  background: #efe6d6;
}
header nav .btn-primary {
  margin-left: 14px;
}
header img {
  height: 34px;
  width: auto;
}
.mobile-menu-toggle {
  display: none;
  position: relative;
  z-index: 101;
  background: transparent;
  border: none;
  font-size: 2rem;
  color: var(--color-primary);
  cursor: pointer;
  padding: 4px 10px;
  margin-left: 12px;
  border-radius: 100px;
  transition: background 0.15s;
}
.mobile-menu-toggle:active, .mobile-menu-toggle:focus {
  background: var(--color-secondary);
  outline: 2px solid var(--color-gold);
}

/* Mobile Nav Overlay */
.mobile-menu {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: #fff;
  box-shadow: 0 12px 48px #22293a40;
  z-index: 2000;
  padding-top: 36px;
  padding-left: 22px;
  transform: translateX(100vw);
  opacity: 0;
  transition: transform 0.35s cubic-bezier(.77,0,.18,1), opacity 0.28s;
}
.mobile-menu.open {
  transform: translateX(0);
  opacity: 1;
}
.mobile-menu-close {
  position: absolute;
  top: 18px;
  right: 24px;
  background: transparent;
  border: none;
  font-size: 2.2rem;
  color: var(--color-primary);
  cursor: pointer;
  z-index: 2010;
  padding: 2px 8px;
  transition: color .14s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: var(--color-gold);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  width: 95vw;
  margin-top: 18px;
}
.mobile-nav a {
  font-family: var(--font-display);
  font-size: 1.23rem;
  color: #1b2331;
  font-weight: 600;
  padding: 8px 0 8px 4px;
  border-radius: 6px;
  transition: background .15s, color .14s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--color-secondary);
  color: var(--color-gold);
}

/* MAIN LAYOUT / CARDS */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: var(--color-card-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-base);
  margin-bottom: 20px;
  box-shadow: 0 2px 16px var(--color-shadow);
  overflow: hidden;
  position: relative;
  transition: box-shadow .20s, transform .18s;
}
.card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-4px) scale(1.012);
  z-index: 10;
}
.card-content {
  padding: 28px 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.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 */
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  background: #fff;
  box-shadow: 0 4px 20px var(--color-shadow);
  border-radius: var(--radius-lg);
  margin-bottom: 22px;
  border-left: 7.5px solid var(--color-gold);
  padding: 20px 24px 20px 28px;
  flex: 1 1 380px;
  max-width: 700px;
  position: relative;
}
.testimonial-card p {
  color: #212536;
  font-size: 1.12rem;
  margin-bottom: 6px;
  font-style: italic;
}
.testimonial-card span {
  color: #154293;
  font-size: 1.01em;
  font-family: var(--font-body);
  font-weight: 500;
  margin-left: 14px;
}

/* FAQ ACCORDION (simplified) */
.faq-accordion > div {
  background: var(--color-card-bg);
  border-radius: var(--radius-base);
  box-shadow: 0 2px 14px var(--color-shadow);
  padding: 22px 28px;
  margin-bottom: 16px;
  border-left: 6px solid var(--color-primary);
  transition: box-shadow .19s, border-color .19s;
}
.faq-accordion > div:hover {
  box-shadow: 0 8px 32px rgba(21,66,147,0.14);
  border-left: 6px solid var(--color-gold);
}
.faq-accordion h3 {
  margin-bottom: 8px;
  color: var(--color-primary);
  font-size: 1.21rem;
}

.contact-for-more-questions {
  margin: 16px 0 4px 0;
  padding: 18px 26px;
  background: var(--color-secondary);
  border-radius: var(--radius-base);
}

/* Feature Item Generic */
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  padding: 16px 0;
}

/* CONTACT CARDS STYLING */
.contact-details, .contact-snippet {
  background: var(--color-card-bg);
  box-shadow: 0 1.5px 7px var(--color-shadow);
  border-radius: var(--radius-base);
  padding: 20px 22px;
  margin-bottom: 16px;
  color: #181d2b;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.contact-details a {
  color: var(--color-primary);
  font-weight: 500;
  font-size: 1.03em;
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 5px;
  transition: color .13s;
}
.contact-details a:hover {
  color: var(--color-gold);
}

.map-embed {
  background: var(--color-secondary);
  padding: 18px 20px;
  border-radius: var(--radius-base);
  margin-bottom: 10px;
}

/* PRICING TABLE */
.pricing-table {
  width: 100%;
  margin-top: 18px;
  border-radius: var(--radius-base);
  overflow: hidden;
  box-shadow: 0 2px 20px rgba(246,186,27,0.04);
  border: 1px solid var(--color-border);
}
.pricing-table thead tr {
  background: var(--color-secondary);
}
.pricing-table th, .pricing-table td {
  font-family: var(--font-body);
  padding: 14px 14px;
  font-size: 0.99em;
}

/* FOOTER */
footer {
  background: #fff;
  border-top: 1.5px solid var(--color-border);
  box-shadow: 0 -1px 20px #15429309;
  padding: 40px 0 20px 0;
  margin-top: 60px;
}
footer .container {
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.footer-logo img {
  height: 32px;
  margin-bottom: 10px;
}
footer nav {
  display: flex;
  gap: 20px;
}
footer nav a {
  color: var(--color-dark);
  font-family: var(--font-body);
  font-size: 1em;
}
footer nav a:hover {
  color: var(--color-gold);
}
footer .contact-details, .footer .contact-details {
  background: none;
  box-shadow: none;
  padding: 0;
  margin-bottom: 0;
  flex-direction: row;
  gap: 22px;
  align-items: center;
  font-size: 1em;
}
footer .contact-details a, footer .contact-details span {
  color: #22293A;
  font-size: 0.98em;
  font-weight: 400;
}
footer .contact-details a img, footer .contact-details span img {
  width: 18px; height: 18px; margin-right: 5px; opacity: 0.7;
}
footer .social-links {
  display: flex;
  gap: 18px;
}
footer .social-links a img {
  height: 28px;
}

/* Cookie Consent Banner */
.cookie-consent-banner {
  position: fixed;
  bottom: 0; left: 0;
  width: 100vw;
  z-index: 3000;
  background: #fff;
  box-shadow: 0 -2px 30px rgba(21,66,147,0.13);
  border-top: 3px solid var(--color-gold);
  padding: 22px 24px 20px 24px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 32px;
  justify-content: space-between;
  font-family: var(--font-body);
  font-size: 1.01em;
  transition: transform 0.18s, opacity .17s;
}
.cookie-consent-banner.hide {
  transform: translateY(100%);
  opacity: 0;
  pointer-events: none;
}
.cookie-consent-banner__text {
  flex: 1 1 290px;
  color: #2c324a;
}
.cookie-consent-banner__actions {
  display: flex;
  gap: 16px;
}
.cookie-btn {
  font-family: var(--font-display);
  font-size: 1em;
  border-radius: 25px;
  padding: 8px 26px;
  border: none;
  font-weight: 600;
  cursor: pointer;
  transition: background .16s, color .16s, box-shadow .14s;
  margin-right: 2px;
}
.cookie-btn.accept {
  background: var(--color-gold);
  color: #17304A;
}
.cookie-btn.accept:hover {
  background: #fad564;
  color: #17304A;
}
.cookie-btn.reject {
  background: var(--color-primary);
  color: #fff;
  margin-right: 0;
}
.cookie-btn.reject:hover {
  background: #133473;
  color: var(--color-gold);
}
.cookie-btn.settings {
  background: #e5eaf4;
  color: var(--color-primary);
}
.cookie-btn.settings:hover {
  background: #dbe2f5;
  color: var(--color-gold);
}

/* Cookie Preferences Modal */
.cookie-modal {
  position: fixed;
  z-index: 3100;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  background: rgba(27,35,49,0.40);
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: auto;
  transition: opacity .2s;
  opacity: 1;
}
.cookie-modal.hide {
  opacity: 0;
  pointer-events: none;
}
.cookie-modal__dialog {
  background: #fff;
  padding: 34px 32px 28px 32px;
  border-radius: 20px;
  box-shadow: 0 8px 48px rgba(21,66,147,0.17);
  min-width: 320px;
  max-width: 90vw;
  display: flex;
  flex-direction: column;
  gap: 22px;
  position: relative;
  font-family: var(--font-body);
}
.cookie-modal__close {
  position: absolute;
  top: 14px; right: 16px;
  background: none;
  border: none;
  font-size: 2.1rem;
  cursor: pointer;
  color: var(--color-primary);
  padding: 2px 10px;
}
.cookie-modal__close:hover {
  color: var(--color-gold);
}
.cookie-modal__title {
  font-family: var(--font-display);
  font-size: 1.23rem;
  color: var(--color-primary);
  font-weight: 700;
  margin-bottom: 6px;
}
.cookie-category {
  display: flex;
  gap: 20px;
  align-items: center;
  font-size: 1.05em;
  margin-bottom: 6px;
}
.cookie-category label {
  font-weight: 500;
  margin-bottom: 0;
}
.cookie-toggle {
  accent-color: var(--color-primary);
  width: 22px; height: 22px;
}
.cookie-modal .btn-primary {
  margin-top: 16px;
  width: 100%;
  padding: 12px 0;
}

@media (max-width: 1050px) {
  .feature-grid {
    gap: 20px;
  }
  .card-container {gap: 18px;}
}
@media (max-width: 820px) {
  .container {
    max-width: 98vw;
    padding: 0 8px;
  }
  .hero .content-wrapper {
    max-width: 100%;
    padding-right: 0;
  }
  .feature-grid > div {
    padding: 22px 14px 16px 14px;
    min-width: 160px;
  }
}
@media (max-width: 768px) {
  h1 {font-size: 2rem;}
  h2 {font-size: 1.37rem;}
  .section {
    padding: 28px 7px;
    margin-bottom: 36px;
  }
  .feature-grid {
    flex-direction: column;
    gap: 18px;
  }
  .testimonial-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    min-width: 0;
    padding: 15px 12px 15px 14px;
  }
  .text-image-section, .content-grid {
    flex-direction: column;
    gap: 18px;
  }
  .card-container {
    flex-direction: column;
    gap: 14px;
  }
  .footer-logo img {
    height: 26px;
    margin-bottom: 4px;
  }
  footer {
    padding: 30px 0 8px 0;
  }
  .cookie-consent-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    padding: 18px 12px 18px 12px;
    font-size: 0.98em;
  }
}
@media (max-width: 650px) {
  .hero {
    min-height: 160px;
    border-radius: var(--radius-small);
    margin-bottom: 30px;
    padding: 0;
  }
  .hero .content-wrapper {
    padding-top: 30px;
    padding-bottom: 30px;
  }
  header .container {
    padding: 6px 6px;
  }
  .footer-logo img {
    height: 21px;
  }
}
@media (max-width: 580px) {
  .container {
    max-width: 100vw;
    padding: 0 2px;
  }
  .section {padding: 18px 1px;}
  header nav {gap: 10px;}
  .footer-logo img {height: 17px;}
  .contact-details, .contact-snippet {
    padding: 11px 8px;
    font-size: 0.99em;
  }
  .cookie-modal__dialog {
    padding: 16px 6px 18px 8px;
  }
}

/* MOBILE NAV TRIGGER MEDIAS */
@media (max-width: 992px) {
  header nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}
@media (min-width: 993px) {
  .mobile-menu {
    display: none !important;
  }
}

/* ANIMATIONS */
.btn-primary, .cookie-btn, .mobile-menu-toggle, .mobile-menu-close {
  will-change: background, color, box-shadow, transform;
}
.mobile-menu, .cookie-consent-banner, .cookie-modal {
  will-change: transform, opacity;
}

/* Micro-interactions */
.btn-primary:active {transform: scale(0.98);}
.cookie-btn:active {transform: scale(0.97);}
.mobile-menu-toggle:active {transform: scale(1.08);}
.mobile-menu-close:active {transform: scale(1.15);}

/* Hide visually on focus */
:focus:not(:focus-visible) {
  outline: none;
}

/* Accessibility for focus */
a:focus-visible, .btn-primary:focus-visible, .cookie-btn:focus-visible {
  outline: 2px solid var(--color-gold);
  outline-offset: 2px;
}

/* Luxury/Premium details */
.feature-grid > div, .testimonial-card, .faq-accordion > div, .card {
  border-top: 4px solid var(--color-gold);
  /* Subtle gold detail on all premium cards */
}
.btn-primary {
  box-shadow: 0 2px 12px 0 var(--color-gold);
}

/* Text selection & fallback font tweaks */
::selection {
  background: var(--color-accent);
  color: #fff;
}

/* Hide some elements when necessary */
.mobile-menu[aria-hidden="true"] {
  display: none !important;
}
