/* 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 {
  font-size: 16px;
  scroll-behavior: smooth;
}
body {
  font-family: 'Roboto', Arial, sans-serif;
  background-color: #fff;
  color: #1B3556;
  min-height: 100vh;
  line-height: 1.7;
  letter-spacing: 0.01em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
ul, ol {
  margin-left: 1.5em;
}
strong, b {
  font-weight: 700;
}
.header, main, footer, section, nav, aside, article {
  display: block;
}

/* BRAND FONTS */
@import url('https://fonts.googleapis.com/css?family=Montserrat:700,600,500&display=swap');
@import url('https://fonts.googleapis.com/css?family=Roboto:400,500&display=swap');
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  color: #1B3556;
  letter-spacing: 0.01em;
}
h1 { font-size: 2.5rem; margin-bottom: 20px; }
h2 { font-size: 2rem; margin-bottom: 16px; }
h3 { font-size: 1.3rem; margin-bottom: 12px; font-weight: 600; }
h4 { font-size: 1.1rem; }

p, li, label, input, select, textarea, span {
  font-family: 'Roboto', Arial, sans-serif;
  color: #293A54;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.7;
}

a {
  color: #1B3556;
  text-decoration: none;
  transition: color 0.25s;
  cursor: pointer;
  outline: none;
}
a:hover, a:focus {
  color: #FDBD29;
  text-decoration: underline;
}

.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  /* no gap to container itself */
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* SECTIONS & SPACING */
section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
}
.cta-section {
  background: #1B3556;
  color: #fff;
  border-radius: 18px;
  box-shadow: 0 5px 36px rgba(30,31,48,0.09);
  margin-bottom: 50px;
}
.cta-section h2, .cta-section h1 {
  color: #fff;
}
.cta-section .btn-primary {
  margin-top: 15px;
}

/* FLEX LAYOUTS */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 18px rgba(30,31,48,0.09);
  padding: 30px 24px;
  flex: 1 1 250px;
  transition: box-shadow 0.25s;
}
.card:hover {
  box-shadow: 0 7px 24px rgba(27,53,86,0.13);
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
}
.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;
}
.text-section {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 16px;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  background: #FAFAFA;
  padding: 20px 28px;
  box-shadow: 0 3px 18px rgba(30,31,48,0.07);
  border-radius: 16px;
  margin-bottom: 24px;
  border: 1px solid #EAF1F8;
  position: relative;
}
.testimonial-card p {
  color: #1B3556;
  font-size: 1.08rem;
}
.testimonial-card strong {
  color: #847549;
  font-weight: 700;
  font-family: 'Montserrat', Arial, sans-serif;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #fff;
  border-radius: 16px;
  padding: 18px 12px;
  box-shadow: 0 2px 10px rgba(27,53,86,0.06);
  flex: 1 1 200px;
  margin-bottom: 20px;
}

/* HERO */
.hero {
  background: #EAF1F8;
  border-radius: 22px;
  margin-bottom: 60px;
  padding: 60px 20px;
  min-height: 360px;
  display: flex;
  align-items: center;
  box-shadow: 0 7px 32px rgba(27,53,86,0.10);
}
.hero .container {
  align-items: center;
  justify-content: center;
}
.hero .content-wrapper {
  align-items: flex-start;
  max-width: 700px;
}
.hero h1 {
  font-size: 2.8rem;
  color: #1B3556;
  margin-bottom: 18px;
}
.hero p {
  color: #293A54;
  font-size: 1.15rem;
  margin-bottom: 26px;
}

/* BUTTONS */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #1B3556;
  color: #fff;
  border: none;
  border-radius: 24px;
  padding: 13px 36px;
  font-size: 1.1rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  box-shadow: 0 2px 10px rgba(27,53,86,0.10);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: background 0.18s, color 0.18s, box-shadow 0.18s;
  margin-left: 18px;
  margin-top: 0;
  outline: none;
}
.btn-primary:hover, .btn-primary:focus {
  background: #FDBD29;
  color: #1B3556;
  box-shadow: 0 4px 20px rgba(253,189,41,0.13);
  text-decoration: none;
}

/* HEADER/NAVIGATION */
header {
  background: #fff;
  box-shadow: 0 2px 12px rgba(27,53,86,0.05);
  position: sticky;
  top: 0;
  z-index: 99;
  padding: 0;
}
header .container {
  min-height: 76px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding-top: 0;
  padding-bottom: 0;
}
header .container a img {
  height: 38px;
  width: auto;
}
nav {
  display: flex;
  gap: 18px;
}
nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  padding: 7px 14px;
  border-radius: 14px;
  transition: background 0.17s, color 0.17s;
  color: #1B3556;
}
nav a:hover, nav a:focus {
  background: #EAF1F8;
  color: #847549;
}
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 2.15rem;
  color: #1B3556;
  cursor: pointer;
  margin-left: 18px;
  transition: color .2s;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  color: #FDBD29;
}

/* MOBILE NAVIGATION */
.mobile-menu {
  position: fixed;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  width: 100vw;
  height: 100vh;
  background: #fff;
  box-shadow: 0 8px 20px rgba(27,53,86,0.14);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 36px 24px 28px 24px;
  transform: translateX(-105%);
  transition: transform .36s cubic-bezier(.55,.06,.35,1.06);
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  background: none;
  border: none;
  color: #1B3556;
  font-size: 2rem;
  cursor: pointer;
  margin-bottom: 26px;
  transition: color .2s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: #FDBD29;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 22px;
  width: 100%;
}
.mobile-nav a {
  color: #1B3556;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.15rem;
  font-weight: 600;
  background: #F7F7F7;
  border-radius: 12px;
  padding: 13px 0 13px 15px;
  transition: background .18s, color .18s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: #847549;
  background: #EAF1F8;
}

@media (max-width: 1024px) {
  .container { max-width: 980px; }
  nav { gap: 8px; }
  .content-wrapper { gap: 18px; }
  section { padding: 34px 8px; }
  .hero { padding: 40px 8px; }
}
@media (max-width: 930px) {
  header .container {
    flex-wrap: wrap;
    gap: 10px;
  }
  nav { gap: 7px; }
}
@media (max-width: 840px) {
  .hero h1 { font-size: 2.2rem; }
  .cta-section h2, .cta-section h1 { font-size: 2rem; }
}

@media (max-width: 768px) {
  html { font-size: 15px; }
  .container { max-width: 98vw; }
  header .container nav {
    display: none;
  }
  .btn-primary {
    margin-left: 0;
    margin-top: 12px;
  }
  .mobile-menu-toggle {
    display: block;
  }
  .hero { padding: 28px 6px; min-height: unset; }
  .content-wrapper { gap: 12px; }
  .content-grid,
  .card-container,
  .feature-grid,
  .benefit-grid,
  .stepper,
  .service-list,
  .pricing-table,
  .faq-list,
  .featured-posts {
    flex-direction: column !important;
    gap: 16px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 18px;
  }
  .testimonial-slider {
    flex-direction: column !important;
    gap: 20px;
  }
  .testimonial-card,
  .card,
  .feature-item {
    min-width: unset;
    padding: 18px 8px;
  }
  .cta-section { padding: 24px 6px; }
}
@media (max-width: 500px) {
  html { font-size: 14px; }
  section, .cta-section { padding: 18px 3px; }
}

/* FEATURE/GRID VARIANTS (SPECIFIC) */
.feature-grid,
.service-list,
.benefit-grid,
.stepper,
.pricing-table,
.faq-list,
.featured-posts {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}
.feature-grid > div, .service-list > div, .benefit-grid > div, .stepper > div,
.pricing-table > div, .faq-list > div, .featured-posts > div {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(27,53,86,0.05);
  padding: 22px 18px;
  margin-bottom: 20px;
  min-width: 220px;
  flex: 1 1 250px;
  transition: box-shadow .23s, border .15s;
  border: 1px solid #EAF1F8;
  position: relative;
}
.feature-grid > div:hover, .service-list > div:hover, .benefit-grid > div:hover, .stepper > div:hover,
.pricing-table > div:hover, .faq-list > div:hover, .featured-posts > div:hover {
  box-shadow: 0 8px 26px rgba(253,189,41,0.15);
  border: 1.5px solid #FDBD29;
  z-index: 1;
}
.feature-grid img, .service-list img, .benefit-grid img, .stepper img {
  height: 42px;
  width: 42px;
  margin-bottom: 13px;
}
.feature-grid h3,
.service-list h3,
.benefit-grid h3,
.stepper h3 { color: #1B3556; font-size: 1.16rem; }

/* TESTIMONIALS & REVIEWS */
.testimonial-slider {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 24px;
  margin: 18px 0 26px 0;
  justify-content: flex-start;
}
.client-logos {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 32px;
  margin-top: 16px;
}
.client-logos img {
  height: 38px;
  width: auto;
  opacity: .86;
}

/* PRICING TABLES & FAQ LIST */
.pricing-table {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  margin-bottom: 22px;
}
.pricing-table > div {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 3px 14px rgba(27,53,86,0.06);
  border: 1.5px solid #EAF1F8;
  padding: 28px 18px;
  flex: 1 1 230px;
  min-width: 190px;
  margin-bottom: 17px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
  transition: box-shadow .2s, border .14s;
  position: relative;
}
.pricing-table > div h2 {
  color: #1B3556;
  font-size: 1.35rem;
  margin-bottom: 9px;
}
.pricing-table > div strong {
  color: #FDBD29;
  font-size: 1.17rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  margin-bottom: 4px;
}
.pricing-table > div ul {
  margin-bottom: 10px;
}
.package-comparison {
  background: #EAF1F8;
  border-radius: 12px;
  padding: 19px 16px;
  margin-bottom: 20px;
}
.package-comparison h3 {
  color: #847549;
}
.faq-list, .next-steps-info ul {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.faq-list > div h3 {
  color: #1B3556;
  font-size: 1.09rem;
}
.faq-list > div p {
  color: #293A54;
  margin-top: 5px;
}

/* BLOG PAGE */
.search-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #EAF1F8;
  border-radius: 14px;
  padding: 10px 14px;
  margin-bottom: 16px;
  max-width: 400px;
}
.search-bar input[type="text"] {
  border: none;
  background: #EAF1F8;
  outline: none;
  font-size: 1rem;
  font-family: 'Roboto', Arial, sans-serif;
  width: 100%;
  padding: 6px 5px;
}
.search-bar img {
  width: 18px;
  height: 18px;
  opacity: .7;
}
.categories-list {
  margin-bottom: 22px;
}
.categories-list strong {
  color: #1B3556;
  font-family: 'Montserrat', Arial, sans-serif;
}
.categories-list ul {
  display: flex;
  flex-wrap: wrap;
  gap: 11px;
  list-style: none;
}
.categories-list li {
  background: #F7F5ED;
  color: #847549;
  border-radius: 10px;
  padding: 5px 12px;
  font-size: 0.98rem;
  font-family: 'Roboto', Arial, sans-serif;
}
.featured-posts {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin-bottom: 10px;
}
.featured-posts > div {
  flex: 1 1 270px;
  min-width: 210px;
  background: #fff;
  padding: 19px 14px;
  border-radius: 14px;
  border: 1px solid #EAF1F8;
  box-shadow: 0 3px 12px rgba(27,53,86,0.04);
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: border .15s, box-shadow .2s;
}
.featured-posts > div:hover {
  box-shadow: 0 5px 18px rgba(253,189,41,0.09);
  border: 1.5px solid #FDBD29;
}
.featured-posts h2 {
  color: #1B3556;
  font-size: 1.19rem;
}
.featured-posts a {
  color: #1B3556;
  font-weight: 700;
  text-decoration: underline;
  transition: color .18s;
}
.featured-posts a:hover {
  color: #FDBD29;
}

/* FOOTER */
footer {
  background: #1B3556;
  color: #fff;
  padding: 44px 0 24px 0;
}
footer .container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 32px;
}
.footer-navigation, .footer-contact, .footer-brand {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-navigation a {
  color: #FDBD29;
  font-size: 1rem;
  font-family: 'Montserrat', Arial, sans-serif;

  transition: color .18s, text-decoration .18s;
}
.footer-navigation a:hover, .footer-navigation a:focus {
  color: #fff1bc;
  text-decoration: underline;
}
.footer-contact div, .footer-contact img {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: #fff;
  font-size: 0.95rem;
}
.footer-brand {
  align-items: flex-end;
}
.footer-brand img {
  height: 36px;
  margin-bottom: 10px;
}
.footer-brand span {
  font-size: 1rem;
  color: #fff2ce;
  font-family: 'Montserrat', Arial, sans-serif;
  letter-spacing: 0.01em;
}
@media (max-width: 900px) {
  footer .container {
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
  }
  .footer-brand { align-items: flex-start; }
}
@media (max-width: 500px) {
  footer {
    padding: 24px 0 15px 0;
  }
}

/* ADDRESS, CONTACT & MAP */
.contact-details,
.map,
.address-info,
.opening-hours {
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.contact-details > div {
  display: flex;
  align-items: center;
  gap: 14px;
  background: #EAF1F8;
  border-radius: 12px;
  padding: 12px 13px;
  font-size: 1.02rem;
  margin-bottom: 7px;
  color: #1B3556;
  font-weight: 600;
}
.map {
  margin-top: 15px;
}
.map p, .address-info p, .opening-hours p {
  background: #FAFAFA;
  border-radius: 12px;
  padding: 13px 14px;
  color: #847549;
  font-size: 1.02rem;
  display: flex;
  align-items: center;
  gap: 10px;
}

/* CONFIRMATION / THANK YOU */
.confirmation-message {
  background: #EAF1F8;
  border-radius: 13px;
  padding: 26px 20px;
  margin-bottom: 20px;
  color: #1B3556;
  font-size: 1.12rem;
}
.next-steps-info ul {
  margin-bottom: 18px;
}

/* LUXURY_GOLD ACCENTS */
.btn-primary, .mobile-menu-toggle, .mobile-menu-close {
  border: 2px solid transparent;
}
.btn-primary:hover, .btn-primary:focus {
  border: 2px solid #847549;
}
section h2::after {
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  background: #FDBD29;
  border-radius: 2px;
  margin: 14px 0 0 0;
}
.pricing-table > div strong {
  text-shadow: 0 1px 2px #fff2ce, 0 0 1px #84754933;
}

/* INTERACTIVE TRANSITIONS */
.btn-primary, .card, .feature-grid > div, .service-list > div, .testimonial-card {
  transition: box-shadow .18s, border .13s, background .18s, color .18s;
}

/* Cookie Consent Banner */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  width: 100vw;
  background: rgba(27,53,86,0.98);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  z-index: 20000;
  padding: 18px 12px;
  box-shadow: 0 -2px 18px rgba(27,53,86,0.13);
  font-size: 1rem;
  font-family: 'Roboto', Arial, sans-serif;
  animation: ccbanner-slidein .5s cubic-bezier(.55,.1,.33,1) 1;
}
@keyframes ccbanner-slidein {
  from { transform: translateY(120%); opacity: 0; }
  to   { transform: translateY(0);   opacity: 1; }
}
.cookie-banner__text {
  flex: 1 1 220px;
  max-width: 700px;
}
.cookie-banner__actions {
  display: flex;
  flex-direction: row;
  gap: 16px;
}
.cookie-banner__button {
  border: none;
  background: #FDBD29;
  color: #1B3556;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  padding: 10px 23px;
  border-radius: 20px;
  cursor: pointer;
  font-size: 1rem;
  margin-left: 0;
  transition: background .17s, color .17s, box-shadow .17s;
  box-shadow: 0 2px 6px rgba(253,189,41,0.09);
  outline: none;
}
.cookie-banner__button:hover,
.cookie-banner__button:focus {
  background: #1B3556;
  color: #FDBD29;
}
.cookie-banner__button--settings {
  background: #fff;
  color: #1B3556;
  border: 1.8px solid #FDBD29;
}
.cookie-banner__button--settings:hover,
.cookie-banner__button--settings:focus {
  background: #FDBD29;
  color: #1B3556;
}
.cookie-banner__button--reject {
  background: #EAF1F8;
  color: #1B3556;
  border: 1.8px solid #847549;
}
.cookie-banner__button--reject:hover,
.cookie-banner__button--reject:focus {
  background: #FDBD29;
  color: #1B3556;
}
@media (max-width: 700px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    font-size: .96rem;
    gap: 11px;
    padding: 13px 6px 15px 8px;
  }
  .cookie-banner__actions {
    flex-direction: column;
    gap: 9px;
  }
}

/* Cookie Modal Popup */
.cookie-modal-overlay {
  display: none;
  position: fixed;
  z-index: 20001;
  left: 0; top: 0; right: 0; bottom: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(27,53,86,0.75);
  justify-content: center;
  align-items: center;
  animation: ccbg-fadein .24s;
}
.cookie-modal-overlay.open { display: flex; }
@keyframes ccbg-fadein {
  from { opacity: 0; } to { opacity: 1; }
}
.cookie-modal {
  background: #fff;
  color: #1B3556;
  border-radius: 17px;
  max-width: 420px;
  width: 92vw;
  padding: 33px 28px 23px 28px;
  box-shadow: 0 4px 24px rgba(27,53,86,0.17);
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
  animation: ccpopup-fadein .36s cubic-bezier(.52,.84,.42,1.11);
}
@keyframes ccpopup-fadein {
  from { transform: translateY(80px); opacity: 0; }
  to { transform: translateY(0px); opacity: 1; }
}
.cookie-modal h4 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.26rem;
  margin-bottom: 4px;
  color: #1B3556;
}
.cookie-modal label {
  margin-right: 17px;
  font-size: 1.09rem;
}
.cookie-modal .cookie-category {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 10px;
}
.cookie-modal .cookie-category input[type="checkbox"] {
  accent-color: #FDBD29;
  width: 17px;
  height: 17px;
}
.cookie-modal .cookie-category input[disabled] {
  opacity: .45;
}
.cookie-modal__actions {
  display: flex;
  gap: 14px;
  margin-top: 14px;
}
.cookie-modal__close {
  position: absolute;
  right: 21px;
  top: 17px;
  background: none;
  border: none;
  color: #847549;
  font-size: 1.19rem;
  cursor: pointer;
}
.cookie-modal__close:hover { color: #FDBD29; }

@media (max-width: 480px) {
  .cookie-modal { padding: 18px 7vw 15px 7vw; width: 97vw; }
}

/* MICRO-INTERACTIONS */
.btn-primary:active,
.feature-grid > div:active,
.card:active {
  transform: scale(0.98);
}

/* Scrollbar Luxury Styling */
::-webkit-scrollbar {
  width: 11px;
  background: #EAF1F8;
}
::-webkit-scrollbar-thumb {
  background: #c7b070;
  border-radius: 9px;
  border: 3px solid #EAF1F8;
}

/* SELECTION */
::selection {
  background: #FDBD29;
  color: #1B3556;
}

/* Custom Gold Color Utility (for text/icons) */
.gold {
  color: #FDBD29;
}

/* END LUXURY PREMIUM FLEX-ONLY RESPONSIVE CSS */