/* 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 {
  scroll-behavior: smooth;
}
body {
  line-height: 1.6;
  background: #fff;
  color: #222;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  letter-spacing: 0.01em;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: #1B3765;
  text-decoration: none;
  transition: color 0.18s;
}
a:focus,
a:hover {
  color: #F2A154;
  outline: none;
}

ul, ol {
  list-style: none;
}
button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  background: none;
  border: none;
  outline: none;
  box-shadow: none;
}
[tabindex="-1"]:focus {
  outline: none !important;
}

/* Typography */
h1, .h1 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 2.5rem;
  line-height: 1.18;
  color: #1B3765;
  margin-bottom: 20px;
  letter-spacing: 0.01em;
}
h2, .h2 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 2rem;
  line-height: 1.22;
  color: #1B3765;
  margin-bottom: 18px;
}
h3, .h3 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  font-size: 1.3rem;
  margin-bottom: 12px;
  color: #1B3765;
}
h4, .h4 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.09rem;
  font-weight: 500;
  color: #1B3765;
  margin-bottom: 8px;
}
p, blockquote, li {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  margin-bottom: 12px;
  color: #222;
}
blockquote {
  font-style: italic;
  background: #F7FAFC;
  border-left: 4px solid #F2A154;
  margin-bottom: 20px;
  padding: 12px 22px 12px 18px;
  color: #222;
}
strong {
  font-weight: bold;
  color: #1B3765;
}

/* Container */
.container {
  width: 100%;
  max-width: 1110px;
  padding: 0 20px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}
/* Content Wrapper Align */
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
}
.text-section {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

/* Section Spacing & Layouts */
section {
  margin-bottom: 60px;
  padding: 40px 0 40px 0;
  background: transparent;
  position: relative;
}
@media (max-width:768px) {
  section {
    padding: 28px 0 32px 0;
    margin-bottom: 38px;
  }
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

.card-container, .card-grid, .features, .content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
  align-items: flex-start;
}
.content-grid {
  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;
    gap: 16px;
  }
}

.card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 16px rgba(27,55,101,0.07);
  border: 1.5px solid #f0ede6;
  padding: 28px 24px 24px 24px;
  margin-bottom: 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 260px;
  max-width: 100%;
  transition: box-shadow 0.22s, border-color 0.25s;
}
.card:hover {
  box-shadow: 0 8px 28px rgba(30,28,50,.15);
  border-color: #F2A154;
  z-index: 2;
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #F7FAFC;
  border-radius: 10px;
  padding: 20px 16px;
  margin-bottom: 18px;
  border-left: 4px solid #F2A154;
}

/* Header */
header {
  background: #fff;
  border-bottom: 1.5px solid #ececec;
  position: sticky; top:0; z-index: 1100;
  box-shadow: 0 1px 8px rgba(27,55,101,0.04);
  min-height: 60px;
}
header .container {
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  min-height: 60px;
}
header img {
  height: 44px;
  width: auto;
  margin-right: 20px;
}
.main-nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 18px;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  padding: 10px 12px;
  border-radius: 7px;
  color: #1B3765;
  font-size: 1.02rem;
  transition: background 0.18s, color 0.22s;
}
.main-nav a:hover,
.main-nav a:focus {
  background: #F7FAFC;
  color: #F2A154;
}
.main-nav .cta-btn {
  color: #fff;
  background: #F2A154;
  border-radius: 7px;
  font-weight: 700;
  font-size: 1rem;
  padding: 10px 22px;
  box-shadow: 0 0.5px 2.5px rgba(242, 161, 84, 0.15);
  margin-left: 14px;
  border: 1px solid #F2A154;
  transition: background 0.19s, color 0.17s, border 0.2s;
}
.main-nav .cta-btn:hover,
.main-nav .cta-btn:focus {
  background: #fff;
  color: #F2A154;
  border: 1px solid #F2A154;
}

/* Mobile Burger Menu */
.mobile-menu-toggle {
  display: none;
  background: #fff;
  border-radius: 6px;
  font-size: 2.1rem;
  color: #F2A154;
  border: none;
  padding: 7px 13px;
  margin-left: 12px;
  cursor: pointer;
  z-index: 1201;
  transition: background .17s, box-shadow .18s;
}
.mobile-menu-toggle:active,
.mobile-menu-toggle:focus,
.mobile-menu-toggle:hover {
  background: #F7FAFC;
  box-shadow: 0 2px 12px #f7fafc;
}
@media (max-width: 998px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: inline-block;
  }
}

/* Mobile Menu Overlay */
.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(27, 55, 101, 0.98);
  z-index: 1200;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  transform: translateX(-105vw);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.3s cubic-bezier(.78,-0.03,.4,1.05), opacity 0.28s;
}
.mobile-menu.open {
  transform: translateX(0);
  opacity: 1;
  pointer-events: auto;
}
.mobile-menu-close {
  align-self: flex-end;
  background: none;
  color: #fff;
  font-size: 2.4rem;
  border: none;
  margin: 26px 20px 12px 0;
  cursor: pointer;
  transition: color .19s;
  z-index: 1400;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  color: #F2A154;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  margin: 32px 0 0 30px;
}
.mobile-nav a {
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.2rem;
  font-weight: 500;
  padding: 8px 0 8px 4px;
  border-radius: 0 18px 18px 0;
  transition: color 0.17s, background 0.18s;
}
.mobile-nav a:hover,
.mobile-nav a:focus {
  color: #F2A154;
  background: rgba(242,161,84,0.09);
}

/* Hero Section */
.hero-section {
  background: linear-gradient(90deg, #F7FAFC 65%, #fff 100%);
  padding: 44px 0 36px 0;
  margin-bottom: 0;
}
.hero-section .content-wrapper {
  align-items: flex-start;
  gap: 16px;
}
.hero-section h1 {
  font-size: 2.4rem;
  color: #1B3765;
  margin-bottom: 10px;
  line-height: 1.16;
}
@media (max-width:600px) {
  .hero-section h1 {
    font-size: 2rem;
  }
  .hero-section {
    padding: 30px 0 25px 0;
  }
}

/* Buttons */
.cta-btn, .cta-btn:visited {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1.04rem;
  padding: 13px 30px;
  color: #fff;
  background: #F2A154;
  border: 2px solid #F2A154;
  border-radius: 7px;
  box-shadow: 0 0.5px 2.5px rgba(242, 161, 84, 0.14);
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  margin-top: 12px;
  transition: background 0.17s, color 0.18s, box-shadow 0.15s;
  display: inline-block;
  position: relative;
}
.cta-btn:hover, .cta-btn:focus {
  background: #fff;
  color: #F2A154;
  box-shadow: 0 6px 24px rgba(242,161,84,0.17);
}

/* Testimonial Cards */
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 2px 12px rgba(27,55,101,0.07);
  border: 1.5px solid #F2A154;
  padding: 20px 28px;
  margin-bottom: 22px;
  min-width: 260px;
  max-width: 100%;
  transition: box-shadow 0.22s, border-color 0.22s, background 0.17s;
}
.testimonial-card blockquote {
  color: #222;
  font-size: 1.07rem;
  line-height: 1.4;
  background: #F7FAFC;
  border-left: 4px solid #F2A154;
  padding: 10px 18px 10px 15px;
  margin-bottom: 6px;
}
.testimonial-card strong {
  color: #1B3765;
  font-weight: 600;
}
.testimonial-card:hover {
  background: #F7FAFC;
  border-color: #C27D1A;
  box-shadow: 0 10px 36px 0 rgba(242, 161, 84, 0.12);
}
.ratings-summary, .star-ratings {
  margin: 20px 0 8px 0;
  font-size: 1.1rem;
  color: #1B3765;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
}

/* List Styles (Why choose + Services etc.) */
ul {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 12px;
  padding-left: 0;
}
ul > li {
  position: relative;
  padding-left: 22px;
  font-size: 1rem;
  color: #343434;
}
ul > li:before {
  content: '\2022';
  position: absolute;
  left: 0; top: 0;
  color: #F2A154;
  font-size: 1.4em;
  line-height: 1;
  font-weight: bold;
}


/* Footer */
footer {
  background: #1B3765;
  color: #fff;
  padding: 36px 0 22px 0;
  margin-top: 44px;
}
footer .container {
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 14px;
}
.footer-menu {
  display: flex;
  flex-direction: row;
  gap: 16px;
  margin-bottom: 8px;
  justify-content: center;
  width: 100%;
}
.footer-menu a {
  color: #F2A154;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 500;
  transition: color 0.16s;
}
.footer-menu a:hover,
.footer-menu a:focus {
  color: #f6daab;
  text-decoration: underline;
}
footer img {
  width: 48px;
  height: auto;
  margin: 0 auto 8px auto;
}
footer .copyright {
  font-size: 0.98rem;
  color: #ddd;
  margin-top: 6px;
}

/* Address Map Section */
.address-map {
  background: #F7FAFC;
  border-radius: 12px;
  padding: 14px 20px;
  color: #222;
  margin: 20px 0;
}

/* Input & Search Styles */
input[type="search"], input[type="text"], textarea {
  background: #F7FAFC;
  border: 1px solid #ececec;
  border-radius: 7px;
  padding: 9px 13px;
  font-size: 1rem;
  color: #222;
  transition: border 0.17s, background 0.18s;
}
input[type="search"]:focus, input[type="text"]:focus, textarea:focus {
  border-color: #F2A154;
  background: #fff;
}

/* Cookie Consent Banner */
.cookie-banner {
  position: fixed;
  left: 0; right: 0;
  bottom: 0;
  width: 100vw;
  background: #fff9ed;
  border-top: 2.5px solid #F2A154;
  box-shadow: 0 -2px 19px rgba(27,55,101,0.08);
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 26px;
  z-index: 2550;
  padding: 22px 8vw 22px 8vw;
  font-size: 1rem;
  animation: slideUpBanner 0.43s cubic-bezier(.56,.03,.56,1.02);
}
@keyframes slideUpBanner {
  from { transform: translateY(90px); opacity: 0;}
  to { transform: none; opacity: 1;}
}
.cookie-banner p {
  margin: 0;
  font-size: 1rem;
  color: #1B3765;
  font-family: 'Roboto', Arial, sans-serif;
}
.cookie-banner .cookie-btn {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  margin-left: 10px;
  margin-right: 0;
  padding: 9px 18px;
  border-radius: 7px;
  border: 2px solid #F2A154;
  background: #F2A154;
  color: #fff;
  cursor: pointer;
  font-size: 0.98rem;
  transition: background 0.18s, color 0.12s;
}
.cookie-banner .cookie-btn:hover,
.cookie-banner .cookie-btn:focus {
  background: #fff;
  color: #F2A154;
}
.cookie-banner .cookie-settings-btn {
  background: #fff;
  color: #1B3765;
  border-color: #F2A154;
  margin-right: 0;
}
.cookie-banner .cookie-settings-btn:hover,
.cookie-banner .cookie-settings-btn:focus {
  background: #F2A154;
  color: #fff;
}
@media (max-width:650px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    padding: 18px 4vw 18px 4vw;
    gap: 12px;
    font-size: 0.98rem;
  }
  .cookie-banner .cookie-btn {
    width: 100%; margin: 6px 0 0 0;
  }
}

/* Cookie Modal Styles */
.cookie-modal-overlay {
  display:none;
  position:fixed;
  left:0; top:0; width:100vw; height:100vh;
  background: rgba(22,30,60,0.50);
  z-index: 2600;
  justify-content: center;
  align-items: center;
}
.cookie-modal-overlay.open {
  display: flex;
  animation: fadeIn .33s cubic-bezier(.67,-0.01,.57,1.02);
}
@keyframes fadeIn {
  from { opacity:0 }
  to { opacity: 1; }
}
.cookie-modal {
  background: #fff9ed;
  border: 2px solid #F2A154;
  border-radius: 14px;
  padding: 30px 32px 24px 32px;
  max-width: 95vw;
  min-width: 320px;
  color: #1B3765;
  font-family: 'Roboto', Arial, sans-serif;
  box-shadow: 0 3px 44px rgba(242, 161, 84, 0.24);
  display: flex;
  flex-direction: column;
  position: relative;
  animation: upModal 0.39s cubic-bezier(.69,.08,.69,1.01);
}
@keyframes upModal {
  from { transform: translateY(80px); opacity:0; }
  to { transform: none; opacity: 1; }
}
.cookie-modal h2 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  color: #1B3765;
  font-size: 1.32rem;
  margin-bottom: 8px;
}
.cookie-modal-close {
  position: absolute;
  right: 19px; top: 14px;
  background: none;
  border: none;
  color: #F2A154;
  font-size: 1.5rem;
  cursor: pointer;
}
.cookie-modal-category {
  margin: 14px 0 16px 0;
}
.cookie-modal-category label {
  font-size: 1rem;
  color: #1B3765;
  display: flex;
  align-items: center;
  gap: 7px;
  margin-right: 16px;
  font-weight: 500;
}
.cookie-modal-options {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-bottom: 18px;
}
.cookie-modal .cookie-btn {
  margin-top: 16px;
}
@media (max-width:650px) {
  .cookie-modal {
    min-width: 98vw;
    padding: 18px 4vw 18px 4vw;
  }
}

/* Forms */
form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
label {
  font-size: 1rem;
  font-family: 'Roboto', Arial, sans-serif;
  color: #1B3765;
  font-weight: 500;
}

/* Gold accents & refined details */
.cta-btn, .main-nav .cta-btn, .cookie-banner .cookie-btn, .cookie-modal .cookie-btn {
  background: linear-gradient(90deg, #CE9D42 0%, #F2A154 80%);
  border-color: #C27D1A;
  box-shadow: 0 4px 18px rgba(242,161,84,0.13);
}
.cta-btn:focus, .main-nav .cta-btn:focus, .cta-btn:hover, .main-nav .cta-btn:hover {
  background: #fff;
  color: #C27D1A;
  box-shadow: 0 2px 28px #F2A15421;
  border-color: #F2A154;
}

.card, .testimonial-card {
  border: 1.5px solid #C27D1A;
  box-shadow: 0 3px 28px rgba(242,161,84,0.06);
}

/* Subtle hover shadows on cards */
.card:hover, .testimonial-card:hover {
  box-shadow: 0 12px 34px 0 rgba(242,161,84,0.24);
  border-color: #F2A154;
}

/* Responsive Scale */
@media (max-width: 900px) {
  .container {
    padding: 0 10px;
  }
  header img, footer img{
    max-width: 36px; height: 36px;
  }
}
@media (max-width: 768px) {
  h1, .h1 { font-size: 1.5rem; }
  h2, .h2 { font-size: 1.19rem; }
  .footer-menu { flex-direction: column; gap:10px; }
  .testimonial-card,
  .card {
    padding: 16px 10px;
    border-radius: 9px;
  }
}
@media (max-width: 430px) {
  h1, .h1 { font-size: 1.17rem; }
  section { padding: 16px 0; margin-bottom: 19px; }
  .container { padding: 0 3vw; }
  .cta-btn{ padding: 10px 13px; font-size: 0.97rem; }
}

/* Accessibility Focus Styles */
a:focus-visible,
button:focus-visible{
  outline: 2.5px solid #C27D1A;
  outline-offset: 2px;
}

/* Visual Hierarchy: Headlines spacing */
section .h2, section h2 { margin-top: 12px; margin-bottom: 14px; }
section .h3, section h3 { margin-top: 8px; margin-bottom: 8px; }

/* Spacing Between Cards & Elements */
.card + .card, .testimonial-card + .testimonial-card, .content-wrapper > * + * {
  margin-top: 20px;
}

/* Gold lines/accent for luxury */
.section, .card, .testimonial-card, .footer-menu a.active {
  position: relative;
}
.section:before {
  content: '';
  display: block;
  width: 96px;
  height: 3px;
  border-radius: 2px;
  background: linear-gradient(90deg,#F2A154,#CE9D42);
  margin-bottom: 23px;
}
@media (max-width: 450px) {
  .section:before { width: 50px; margin-bottom: 13px; }
}

/* Decorative gold accent under headlines (h2) */
h2:after {
  content: '';
  display: block;
  width: 48px;
  height: 3px;
  border-radius: 2px;
  background: linear-gradient(90deg,#F2A154,#CE9D42);
  margin-top: 9px;
}

/* Section background alternation */
section:nth-of-type(even) {
  background: #F7FAFC;
}

/* Microinteractions */
.cta-btn, .main-nav a, .footer-menu a, .cookie-banner .cookie-btn {
  transition: background 0.19s, color 0.19s, border 0.25s, box-shadow 0.21s, transform 0.16s;
  will-change: background, color, border, box-shadow, transform;
}
.cta-btn:active { transform: scale(0.96); }

/* Miscellaneous utility */
.gap-8 { gap: 8px !important; }
.gap-24 { gap: 24px !important; }
.mb-20 { margin-bottom: 20px !important; }
.mt-10 { margin-top: 10px !important; }

/* Hide visually (for modal close, sr only) */
.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0,0,0,0) !important;
  border: 0 !important;
}
