/* 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, 
main, 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 {
  scroll-behavior: smooth;
  font-size: 16px;
}
body {
  color: #223D56;
  font-family: 'Roboto', Arial, sans-serif;
  background-color: #fff;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
}
img, svg {
  max-width: 100%;
  display: block;
  height: auto;
}
ul, ol {
  list-style: none;
  padding: 0;
  margin: 0;
}
a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}
button {
  font-family: inherit;
  background: none;
  border: none;
  cursor: pointer;
  outline: none;
}
table {
  border-collapse: collapse;
  width: 100%;
}
/* LUXURY PREMIUM COLORS AND FONTS */
:root {
  --primary: #223D56;
  --secondary: #B6CDE2;
  --accent: #F6E7C1;
  --gold: #B49B58;
  --offwhite: #f8f8f7;
  --text-dark: #223D56;
  --text-light: #fff;
  --shadow: 0 6px 24px 0 rgba(34,61,86,0.07), 0 1.5px 5px 0 rgba(180,155,88,0.10);
  --radius: 12px;
}

@import url('https://fonts.googleapis.com/css?family=Montserrat:600,700&display=swap');
@import url('https://fonts.googleapis.com/css?family=Roboto:400,500,700&display=swap');

h1, h2, h3, h4, h5 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  letter-spacing: 0.01em;
  color: var(--primary);
}
h1 { font-size: 2.5rem; line-height: 1.15; margin-bottom: 24px; }
h2 { font-size: 1.75rem; line-height: 1.15; margin-bottom: 20px; }
h3 { font-size: 1.25rem; line-height: 1.2; margin-bottom: 12px; }
h4, h5 { font-size: 1rem; margin-bottom: 8px; }
p, li { font-size: 1rem; line-height: 1.75; margin-bottom: 8px; }
strong { font-weight: 700; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

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

.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  background: var(--offwhite);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  position: relative;
}
.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: center;
  gap: 20px;
  padding: 20px;
  background: #fff;
  box-shadow: var(--shadow);
  border-radius: var(--radius);
  min-width: 260px;
  margin-bottom: 20px;
  border: 1.5px solid var(--accent);
  transition: transform .18s cubic-bezier(.5,1,0,1), box-shadow .18s cubic-bezier(.5,1,0,1);
}
.testimonial-card:hover {
  transform: translateY(-4px) scale(1.025);
  box-shadow: 0 10px 32px 0 rgba(34, 61, 86, 0.15), 0 2.5px 8px 0 rgba(180,155,88,0.13);
}
.testimonial-footer {
  display: flex;
  flex-direction: row;
  gap: 12px;
  align-items: center;
  font-size: 1rem;
  color: var(--primary);
  opacity: 0.85;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* HERO */
.hero-section {
  background: var(--primary);
  color: var(--text-light);
  padding: 60px 0 40px 0;
}
.hero-section .container {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.hero-section .h1,
.hero-section h1 {
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 2.75rem;
  margin-bottom: 18px;
}
.hero-section p {
  color: #fff;
  font-size: 1.2rem;
  margin-bottom: 30px;
}
.hero-section .btn-primary {
  margin-top: 10px;
}

/* NAVIGATION */
.main-nav {
  background: #fff;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 28px;
  padding: 20px 0;
  border-bottom: 1.5px solid var(--accent);
  position: relative;
  z-index: 101;
}
.main-nav > a img {
  width: 148px;
  height: auto;
  margin-right: 12px;
}
.main-nav ul {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 20px;
}
.main-nav li {
  display: flex;
  align-items: center;
}
.main-nav li a {
  font-family: 'Montserrat', Arial, sans-serif;
  color: var(--primary);
  font-size: 1rem;
  font-weight: 500;
  padding: 10px 12px;
  border-radius: 6px;
  transition: background 0.11s, color 0.11s;
}
.main-nav li a:hover, .main-nav li a:focus {
  background: var(--accent);
  color: var(--gold);
}
.main-nav .btn-primary {
  margin-left: auto;
}

.btn-primary, .btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.12rem;
  font-weight: 600;
  padding: 12px 32px;
  border-radius: 40px;
  box-shadow: 0 3px 18px 0 rgba(180,155,88,0.13);
  border: none;
  outline: none;
  cursor: pointer;
  transition: background .16s, color .16s, box-shadow .16s;
  margin: 6px 0;
}
.btn-primary {
  background: linear-gradient(90deg,#B49B58 0%,#F6E7C1 100%);
  color: var(--primary);
  border: 1.5px solid var(--gold);
  text-shadow: 0 1px 1px #ffe7b8;
}
.btn-primary:hover, .btn-primary:focus {
  background: #fff7e6;
  color: #b49b58;
  box-shadow: 0 6px 20px 0 rgba(180,155,88,0.19);
}
.btn-secondary {
  background: #fff;
  color: var(--gold);
  border: 1.5px solid var(--gold);
}
.btn-secondary:hover, .btn-secondary:focus {
  background: var(--accent);
  border-color: var(--primary);
  color: var(--primary);
}

/* MOBILE MENU */
.mobile-menu-toggle {
  display: none;
  position: absolute;
  right: 22px;
  top: 23px;
  border: none;
  background: var(--primary);
  color: #fff;
  font-size: 2.1rem;
  line-height: 1;
  z-index: 103;
  border-radius: 6px;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 12px rgba(34,61,86,0.10);
}
/* Override input styles for buttons (safety) */
.mobile-menu-toggle:focus {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}
.mobile-menu {
  display: flex;
  flex-direction: column;
  background: #fff;
  position: fixed;
  z-index: 2025;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  transform: translateX(-100%);
  transition: transform .29s cubic-bezier(.35,1.2,.65,1);
  box-shadow: 0 8px 36px 0 rgba(34,61,86,.21);
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
}
.mobile-menu.active {
  transform: translateX(0);
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}
.mobile-menu-close {
  align-self: flex-end;
  font-size: 2.3rem;
  color: var(--gold);
  background: none;
  margin: 28px 26px 18px 0;
  transition: color 0.11s;
  border-radius: 6px;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: var(--primary);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
  padding: 0 40px;
  margin-top: 10px;
}
.mobile-nav a {
  display: block;
  width: 100%;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--primary);
  padding: 16px 12px;
  border-radius: 8px;
  transition: background 0.13s, color 0.13s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--accent);
  color: var(--gold);
}

/* Hide/show nav on mobile */
@media (max-width: 1024px) {
  .main-nav ul, .main-nav .btn-primary {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
}
@media (min-width: 1025px) {
  .mobile-menu {
    display: none !important;
  }
}

/* GENERAL CONTENT SPACING */
.content-wrapper {
  gap: 32px;
  padding-top: 14px;
  padding-bottom: 14px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card, .service-card, .advice-card {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 24px 20px;
  margin-bottom: 20px;
  border: 1.5px solid var(--accent);
  transition: box-shadow .15s, transform .10s;
}
.card:hover, .service-card:hover, .advice-card:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 10px 32px 0 rgba(34, 61, 86, 0.13), 0 2.5px 8px 0 rgba(180,155,88,0.10);
}

/* Feature Grid (Why us, services) */
.feature-grid, .services-summary, .services-list, .advice-grid, .testimonials-grid, .testimonials-preview .testimonial-slider {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 16px;
  margin-bottom: 16px;
  justify-content: flex-start;
}
.feature, .service-card, .service-detail, .advice-card {
  flex: 1 1 260px;
  min-width: 258px;
  max-width: 370px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 14px;
  box-sizing: border-box;
}
.feature img, .service-card img, .service-detail img, .advice-card img {
  width: 44px;
  height: 44px;
  display: block;
  margin-bottom: 8px;
  border-radius: 8px;
  background: var(--accent);
  padding: 7px;
}
.feature h3, .service-card h3, .service-detail h2, .advice-card h2 {
  margin-bottom: 6px;
  font-size: 1.17rem;
  font-family: 'Montserrat', Arial, sans-serif;
  color: var(--gold);
  font-weight: 600;
}
.feature p, .service-card p, .service-detail p, .advice-card p {
  color: var(--primary);
  opacity: 0.95;
  font-size: 1rem;
}

/* Testimonials */
.testimonials-grid, .testimonials-preview .testimonial-slider {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 18px;
  margin-bottom: 12px;
  justify-content: flex-start;
}
.testimonial-card p {
  color: #223D56;
  font-size: 1.06rem;
  text-align: left;
  margin-bottom: 18px;
  line-height: 1.65;
}
.rating-summary, .rating-overview {
  margin: 22px 0 3px 0;
  font-size: 1.135rem;
  color: var(--gold);
  text-align: center;
  letter-spacing: 0.03em;
}

/* CTA Banner */
.cta-banner {
  background: linear-gradient(90deg, #F6E7C1 0%, #fff 100%);
  border-radius: var(--radius);
  box-shadow: 0 2px 15px 0 rgba(180,155,88,0.06);
  text-align: center;
  padding: 38px 20px 48px 20px;
  align-items: center;
  gap: 20px;
  justify-content: center;
}
.cta-banner h2 {
  color: var(--primary);
  font-size: 2rem;
  margin-bottom: 16px;
}
.cta-banner p {
  color: var(--primary);
  font-size: 1.14rem;
  margin-bottom: 22px;
}

/* Pricing Table */
.pricing-table table {
  width: 100%;
  border-radius: var(--radius);
  background: #fff;
  overflow: hidden;
  box-shadow: 0 2px 16px 0 rgba(180,155,88,0.10);
}
.pricing-table th, .pricing-table td {
  padding: 16px 16px;
  border-bottom: 1px solid var(--accent);
  text-align: left;
  font-size: 1rem;
}
.pricing-table th {
  background: var(--accent);
  color: var(--primary);
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
}
.pricing-table tr:last-child td {
  border-bottom: none;
}
.pricing-table .note p {
  font-size: 0.97rem;
  color: var(--primary);
  margin-top: 12px;
}

/* Contact Section */
.contact-details-section {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  padding: 12px 0 16px 0;
  align-items: flex-start;
}
.contact-details, .map-location {
  flex: 1 1 330px;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 28px 22px;
  margin-bottom: 20px;
  border: 1.5px solid var(--accent);
}
.contact-details h2, .map-location h2 {
  color: var(--gold);
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.17rem;
  font-weight: 600;
  margin-bottom: 12px;
}

/* Footer */
.footer-section {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  padding: 36px 0 22px 0;
  justify-content: space-between;
  background: #fff;
  border-top: 1.5px solid var(--accent);
}
.footer-branding {
  flex: 1 1 190px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-start;
}
.footer-branding img {
  width: 110px;
  margin-bottom: 8px;
}
.footer-branding p {
  color: var(--gold);
  font-size: 0.97rem;
}
.footer-nav {
  flex: 1 1 170px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-nav a {
  color: var(--primary);
  font-size: 1rem;
  padding: 6px 0;
  transition: color 0.13s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: var(--gold);
}
.footer-contact {
  flex: 1 1 240px;
  font-size: 0.97rem;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.footer-contact strong {
  color: var(--primary);
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 6px;
}
.footer-contact a {
  color: var(--gold);
  text-decoration: underline;
  transition: color 0.13s;
}
.footer-contact a:hover, .footer-contact a:focus {
  color: var(--primary);
}
.footer-social {
  flex: 1 1 90px;
  display: flex;
  gap: 14px;
  align-items: center;
}
.footer-social a img {
  width: 28px;
  height: 28px;
  filter: grayscale(0.15) brightness(1) drop-shadow(0 1px 2px #b6cde2cc);
  opacity: 0.82;
  transition: filter .16s, opacity .16s;
}
.footer-social a:hover img, .footer-social a:focus img {
  filter: none;
  opacity: 1;
}
.footer-bottom {
  text-align: center;
  padding-bottom: 18px;
  color: #8f98a2;
  font-size: 0.97rem;
}

/* TEXT SECTIONS & UTILITY */
.text-section {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 32px 20px;
  margin-bottom: 24px;
  color: var(--primary);
  font-size: 1rem;
}

.text-section ul, .text-section li {
  margin-left: 18px !important;
  margin-bottom: 8px !important;
  list-style: disc outside;
  color: var(--primary);
  font-size: 1rem;
}
.faqs-summary ul {
  margin: 10px 0 0 8px;
  padding-left: 18px;
}
.faqs-summary li {
  margin-bottom: 10px;
  font-size: 1rem;
}
.faqs-summary strong {
  color: var(--gold);
}

/* COOKIE BANNER AND MODAL */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100vw;
  z-index: 2050;
  background: linear-gradient(90deg, #fffbe2 70%, #f6e7c1 100%);
  box-shadow: 0 -1px 18px 0 rgba(34,61,86,.12);
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
  padding: 24px 32px;
  font-size: 1rem;
  border-top: 2px solid var(--accent);
  animation: bannerSlideIn .55s cubic-bezier(.4,0,.45,1);
}
@keyframes bannerSlideIn {
  from { transform: translateY(100%); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.cookie-banner-content {
  color: var(--primary);
  line-height: 1.6;
  max-width: 660px;
}
.cookie-banner-actions {
  display: flex;
  flex-direction: row;
  gap: 16px;
}
.cookie-banner .btn-primary, .cookie-banner .btn-secondary {
  font-size: 1rem;
  padding: 10px 28px;
}
.cookie-settings-modal {
  position: fixed;
  left: 0; right: 0; top: 0; bottom: 0;
  width: 100vw; height: 100vh;
  background: rgba(34,61,86,0.24);
  z-index: 2060;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transition: visibility 0.17s, opacity 0.17s;
}
.cookie-settings-modal.active {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}
.cookie-modal-box {
  background: #fff;
  border-radius: var(--radius);
  max-width: 430px;
  width: 90%;
  box-shadow: 0 8px 32px 0 rgba(34,61,86,0.15);
  display: flex;
  flex-direction: column;
  gap: 22px;
  padding: 34px 28px 24px 28px;
  animation: modalPop .35s cubic-bezier(.36,1.2,.7,1);
}
@keyframes modalPop {
  from { transform: translateY(70px) scale(0.97); opacity: 0; }
  to { transform: translateY(0) scale(1); opacity: 1; }
}
.cookie-modal-header {
  font-family: 'Montserrat', Arial, sans-serif;
  color: var(--primary);
  font-size: 1.24rem;
  font-weight: 700;
  margin-bottom: 8px;
}
.cookie-category {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  background: var(--offwhite);
  padding: 10px 18px;
  border-radius: 8px;
  margin-bottom: 6px;
}
.cookie-category label {
  font-size: 1rem;
  color: var(--primary);
}
.cookie-category .switch {
  position: relative;
  display: inline-block;
  width: 40px;
  height: 22px;
}
.cookie-category .switch input { display: none; }
.cookie-category .slider {
  position: absolute;
  cursor: pointer;
  top: 0; left: 0; right: 0; bottom: 0;
  background: #b6cde2;
  border-radius: 22px;
  transition: .2s;
}
.cookie-category .slider:before {
  position: absolute;
  content: "";
  height: 18px;
  width: 18px;
  left: 2px; bottom: 2px;
  background: #fff;
  border-radius: 50%;
  transition: .2s;
}
.cookie-category .switch input:checked + .slider {
  background: var(--gold);
}
.cookie-category .switch input:checked + .slider:before {
  transform: translateX(18px);
}
.cookie-modal-footer {
  display: flex;
  flex-direction: row;
  gap: 16px;
  justify-content: flex-end;
}
.cookie-modal-footer .btn-primary,
.cookie-modal-footer .btn-secondary {
  font-size: 1rem;
  padding: 8px 18px;
}

/* --- RESPONSIVE DESIGN --- */
@media (max-width: 1139px) {
  .container { max-width: 98vw; }
  .footer-section { gap: 24px; }
}
@media (max-width: 900px) {
  .feature, .service-card, .service-detail, .advice-card {
    max-width: 100%;
  }
  .content-grid, .feature-grid, .services-summary, .services-list, .advice-grid, .testimonials-grid, .testimonials-preview .testimonial-slider {
    gap: 16px;
  }
}
@media (max-width: 768px) {
  .main-nav {
    padding: 16px 0 10px 0;
    gap: 10px;
  }
  .main-nav > a img {
    width: 100px;
  }
  .section {
    margin-bottom: 42px;
    padding: 22px 7px;
  }
  .container {
    padding: 0 6px;
  }
  .hero-section {
    padding: 42px 0 26px 0;
  }
  h1 { font-size: 2rem; }
  h2 { font-size: 1.22rem; }
  .content-wrapper, .cta-banner {
    padding-top: 3px;
    padding-bottom: 3px;
    gap: 15px;
  }
  .feature-grid,
  .services-summary,
  .services-list,
  .advice-grid,
  .testimonials-grid,
  .testimonials-preview .testimonial-slider {
    flex-direction: column;
    gap: 12px;
    align-items: stretch;
  }
  .feature,
  .service-card,
  .service-detail,
  .advice-card,
  .testimonial-card {
    max-width: 100%;
    min-width: 0;
  }
  .card-container {
    flex-direction: column;
    gap: 12px;
  }
  .text-image-section, .contact-details-section {
    flex-direction: column;
    gap: 18px;
  }
  .footer-section {
    flex-direction: column;
    gap: 18px;
    padding: 22px 0 11px 0;
    align-items: flex-start;
  }
  .footer-branding img {
    width: 78px;
  }
  .cookie-banner {
    flex-direction: column;
    gap: 16px;
    padding: 20px 10px;
    font-size: 0.98rem;
  }
  .cookie-banner-actions {
    flex-direction: column;
    gap: 8px;
  }
  .cookie-modal-box {
    max-width: 98vw;
    padding: 18px 9px 14px 9px;
    font-size: 0.97rem;
  }
}
@media (max-width: 480px) {
  .main-nav {
    padding: 10px 0 4px 0;
  }
  .footer-bottom {
    font-size: 0.93rem;
    padding: 6px 0 12px 0;
  }
  .cta-banner {
    padding: 18px 2px 24px 2px;
  }
}

/* --------- MICRO-INTERACTIONS / HOVER STATES --------- */
a:not(.btn-primary):not(.btn-secondary):hover, a:not(.btn-primary):not(.btn-secondary):focus {
  color: var(--gold);
  text-decoration: underline;
  transition: color 0.11s;
}
tbody tr:hover {
  background: #FFF9E3;
}

/* Accessible focus for interactive elements */
a:focus, button:focus, .btn-primary:focus, .btn-secondary:focus {
  outline: 2px solid #b49b58;
  outline-offset: 2px;
}

/* --- Z-INDEX LAYERING --- */
header, main, footer { position: relative; z-index: 1; }

/* --- PRINT (simple) --- */
@media print {
  .main-nav, .mobile-menu-toggle, .footer-section, .footer-bottom, .cookie-banner, .cookie-settings-modal { display: none !important; }
  .container { max-width: 100% !important; }
}
