/* --- CSS RESET & BASE --- */
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, 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;
  background: none;
  box-sizing: border-box;
}
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1.5;
  color: #232946;
  background: #f4faff;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  -webkit-font-smoothing: antialiased;
}
*, *:before, *:after {
  box-sizing: inherit;
}
a {
  color: #232946;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #eeb02d;
  text-decoration: underline;
}
ul, ol {
  list-style-position: inside;
}
img {
  max-width: 100%;
  display: block;
}

/* --- BRAND TYPOGRAPHY & LUXURY FONTS --- */
h1, .hero h1 {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-size: 2.5rem;
  line-height: 1.15;
  font-weight: 700;
  letter-spacing: -1px;
  color: #232946;
  margin-bottom: 16px;
}
h2 {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-size: 2rem;
  font-weight: 600;
  color: #232946;
  margin-bottom: 16px;
}
h3 {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-size: 1.25rem;
  font-weight: 500;
  color: #232946;
  margin-bottom: 8px;
}
h4, h5, h6 {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  color: #232946;
}
p, li, ul, ol, span {
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  color: #232946;
}
strong {
  font-weight: 600;
}
.subheadline {
  font-size: 1.125rem;
  color: #232946;
  font-weight: 400;
  margin-bottom: 24px;
}
.text-section h2, .text-section h3 {
  margin-top: 0;
}

/* --- CONTAINER, SECTION & SPACING SYSTEM --- */
.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding: 0;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 3px 20px rgba(35,41,70,0.07);
  padding: 28px 24px;
  border: 1px solid #ececec;
  transition: box-shadow 0.2s, border-color 0.2s;
}
.card:hover {
  box-shadow: 0 8px 32px rgba(35,41,70,0.18);
  border-color: #eeb02d;
  z-index: 1;
}
.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: flex-start;
  gap: 16px;
  padding: 20px;
  margin-bottom: 24px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 10px rgba(35,41,70,0.10);
  border-left: 6px solid #eeb02d;
  max-width: 550px;
}
.testimonial-card p {
  color: #232946;
  font-size: 1.125rem;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 400;
}
.testimonial-card span {
  color: #232946;
  font-size: 1rem;
  font-weight: 500;
  opacity: 0.76;
  font-style: italic;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* --- FEATURE GRID & SERVICE LIST --- */
.feature-grid, .service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 0;
}
.feature-grid li, .service-list li {
  flex: 1 1 200px;
  min-width: 220px;
  max-width: 340px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 10px rgba(35,41,70,0.11);
  border: 1px solid #ececec;
  padding: 24px 20px 22px 20px;
  margin-bottom: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
  transition: box-shadow 0.2s, border-color 0.2s;
  position: relative;
}
.feature-grid li:hover, .service-list li:hover {
  box-shadow: 0 6px 28px rgba(35,41,70,0.15);
  border-color: #eeb02d;
  z-index: 2;
}
.feature-grid img, .service-list img {
  width: 44px;
  height: 44px;
  margin-bottom: 6px;
}

/* For service-list that's a div > .text-section set up flex layout */
.service-list {
  flex-direction: row;
  gap: 24px;
  width: 100%;
  margin-bottom: 16px;
}
.service-list .text-section {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 10px rgba(35,41,70,0.13);
  padding: 24px 18px;
  flex: 1 1 220px;
  margin-bottom: 0;
}

/* -- HERO STYLE -- */
.hero {
  background: #232946;
  color: #fff;
  padding: 80px 0 60px 0;
  min-height: 360px;
  margin-bottom: 60px;
  border-bottom-left-radius: 44px;
  border-bottom-right-radius: 44px;
  position: relative;
  overflow: hidden;
}
.hero .container {
  position: relative;
}
.hero .content-wrapper {
  align-items: flex-start;
  gap: 30px;
}
.hero h1, .hero .subheadline {
  color: #fff;
}
.hero .cta-btn {
  background: #eeb02d;
  color: #232946;
  font-size: 1.25rem;
  font-weight: 600;
  box-shadow: 0 4px 18px rgba(238,176,45,0.16);
}

/* --- CTA STYLE --- */
.cta {
  background: #232946;
  color: #fff;
  padding: 56px 0 56px 0;
  border-radius: 32px;
  margin-bottom: 60px;
}
.cta .container, .cta .content-wrapper {
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 18px;
}
.cta h2, .cta p {
  color: #fff;
}
.cta .cta-btn {
  background: #eeb02d;
  color: #232946;
}

/* --- BUTTONS --- */
.cta-btn, button, input[type=submit], .mobile-menu-toggle, .mobile-menu-close {
  display: inline-block;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 600;
  color: #232946;
  background: #eeb02d;
  border: none;
  outline: none;
  border-radius: 8px;
  box-shadow: 0 2.5px 8px rgba(238,176,45,0.13);
  font-size: 1.13rem;
  padding: 14px 32px;
  cursor: pointer;
  letter-spacing: 0.3px;
  transition: background 0.16s, color 0.18s, box-shadow 0.16s, transform 0.12s;
}
.cta-btn:hover, .cta-btn:focus, button:hover, .mobile-menu-toggle:focus {
  background: #232946;
  color: #eeb02d;
  box-shadow: 0 4px 26px rgba(35,41,70,0.15);
  transform: translateY(-2px) scale(1.04);
}

/* --- HEADER & NAVIGATION --- */
header {
  background: #fff;
  box-shadow: 0 2px 8px rgba(35,41,70,0.07);
  width: 100%;
  z-index: 6;
  position: relative;
}
header .container {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  gap: 20px;
}
header img {
  height: 38px;
}
.main-nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 24px;
}
.main-nav a {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 500;
  color: #232946;
  font-size: 1.04rem;
  padding: 8px 6px;
  border-radius: 6px;
  transition: background 0.12s, color 0.14s;
}
.main-nav a:hover, .main-nav a:focus {
  color: #eeb02d;
  background: #23294608;
}
header .cta-btn {
  margin-left: 20px;
}

/* --- FOOTER --- */
footer {
  background: #232946;
  color: #fff;
  padding: 60px 0 28px 0;
  border-top-left-radius: 30px;
  border-top-right-radius: 30px;
  position: relative;
}
footer .container {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 32px;
}
footer img {
  height: 38px;
  margin-bottom: 10px;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-nav a {
  color: #fff;
  font-size: 1rem;
  opacity: 0.86;
  margin-bottom: 0;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: #eeb02d;
}
.address-block {
  font-size: 0.95rem;
  color: #f4faff;
  display: flex;
  flex-direction: column;
  gap: 8px;
  max-width: 270px;
}

footer div.address-block p {
  color: #f4faff;

}
.address-block a {
  color: #eeb02d;
}

/* --- TEXT-SECTIONS & MISC --- */
.text-section {
  margin-bottom: 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.text-section ul, .text-section ol{
  margin-bottom: 0;
  margin-left: 1em;
  padding-left: 0.6em;
}
.text-section li {
  margin-bottom: 9px;
}

/* --- COMMON UTILS --- */
[data-hidden], .sr-only {
  display: none !important;
}

/* --- MOBILE NAV --- */
.mobile-menu-toggle {
  display: none;
  background: #eeb02d;
  color: #232946;
  font-size: 2rem;
  border: none;
  border-radius: 8px;
  padding: 8px 16px;
  position: absolute;
  top: 16px;
  right: 24px;
  z-index: 12;
}
.mobile-menu {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: #232946;
  z-index: 99;
  padding: 56px 24px 32px 24px;
  transform: translateX(-100%);
  transition: transform 0.34s cubic-bezier(.82, .01, .32, 0.96);
  box-shadow: 0 0 80px rgba(35,41,70,0.2);
  opacity: 0.98;
  pointer-events: none;
  visibility: hidden;
}
.mobile-menu.open {
  transform: translateX(0);
  pointer-events: auto;
  visibility: visible;
  animation: slideInMobileMenu 0.34s cubic-bezier(.82, .01, .32, 0.96);
}
@keyframes slideInMobileMenu {
  from {transform: translateX(-100%);}
  to   {transform: translateX(0);}
}
.mobile-menu-close {
  background: #eeb02d;
  color: #232946;
  border: none;
  font-size: 2.1rem;
  border-radius: 8px;
  align-self: flex-end;
  margin-bottom: 26px;
  padding: 5px 16px;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 32px;
  text-align: left;
}
.mobile-nav a {
  color: #fff;
  font-size: 1.25rem;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  margin-bottom: 0;
  padding: 12px 8px;
  border-radius: 7px;
  transition: background 0.12s, color 0.12s;
  font-weight: 500;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background-color: #eeb02d20;
  color: #eeb02d;
}

/* --- RESPONSIVE BREAKPOINTS --- */
@media (max-width: 1024px) {
  .container {
    max-width: 97vw;
    padding: 0 14px;
  }
  .feature-grid li, .service-list li {
    max-width: 100%;
    min-width: 180px;
  }
  footer .container {
    gap: 18px;
  }
}
@media (max-width: 900px) {
  .footer-nav, .address-block {
    font-size: 0.97em;
  }
  .feature-grid, .service-list {
    gap: 14px;
  }
}
@media (max-width: 768px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.4rem; }
  .container {
    max-width: 100vw;
    padding: 0 8px;
  }
  header .container {
    flex-direction: row;
    align-items: center;
    padding: 8px 8px 8px 14px;
  }
  .main-nav {
    display: none;
  }
  .cta-btn {
    padding: 12px 20px;
    font-size: 1rem;
  }
  .mobile-menu-toggle {
    display: block;
  }
  .footer-nav {
    flex-direction: column;
    gap: 7px;
  }
  .feature-grid, .service-list {
    flex-direction: column;
    gap: 20px;
  }
  .feature-grid li, .service-list li {
    min-width: unset;
    max-width: 99vw;
  }
  .text-image-section {
    flex-direction: column;
    gap: 20px;
  }
  .content-grid {
    flex-direction: column;
    gap: 18px;
  }
  .card-container {
    flex-direction: column;
    gap: 18px;
  }
  footer .container {
    flex-direction: column;
    gap: 24px;
    align-items: flex-start;
  }
  .hero, .cta {
    padding: 44px 0 34px 0;
    border-bottom-left-radius: 25px;
    border-bottom-right-radius: 25px;
  }
  .hero .content-wrapper, .cta .content-wrapper {
    gap: 22px;
    text-align: left;
    align-items: flex-start;
  }
}
@media (max-width: 520px) {
  h1 { font-size: 1.28rem; }
  h2 { font-size: 1.12rem; }
  .footer-nav, .address-block {
    font-size: 0.92em;
  }
}

/* --- LUXURY DETAILS, GOLD ACCENTS, SHADOWS, RADIUS --- */
.card, .feature-grid li, .service-list li, .testimonial-card, .service-list .text-section {
  border-radius: 16px;
  border: 1px solid #e6d3aa;
  box-shadow: 0 4px 22px rgba(50,45,38,0.07), 0 1.5px 5px #eeb02d0a;
}
.card:hover, .feature-grid li:hover, .service-list li:hover {
  box-shadow: 0 10px 36px rgba(238,176,45,0.13), 0 0.5px 2px #eeb02d0d;
  border: 1.4px solid #eeb02d;
}
hr {
  border: none;
  height: 1.5px;
  margin: 42px 0;
  background: linear-gradient(to right, #eeb02d 0%, #f4faff 100%);
  border-radius: 5px;
}

/* --- CUSTOM DETAILS --- */
.testimonials {
  background: #f4faff;
  border-radius: 28px;
  padding: 40px 0 !important;
  margin-bottom: 60px;
}
.testimonials .container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.testimonials .content-wrapper {
  gap: 18px;
}

.code, code, pre {
  background: #23294613;
  border-radius: 6px;
  padding: 3px 8px;
  font-size: 0.97em;
  color: #eeb02d;
}

/* --- COOKIE BANNER --- */
.cookie-banner {
  position: fixed;
  left: 0; right: 0;
  bottom: 0;
  width: 100vw;
  background: #232946;
  color: #fff;
  padding: 24px 18px 18px 18px;
  box-shadow: 0 -4px 18px 0px rgba(35,41,70,0.15);
  z-index: 1998;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 36px;
  flex-wrap: wrap;
  font-size: 1rem;
  transition: transform 0.32s cubic-bezier(.62,.01,.32,0.99), opacity 0.26s;
}
.cookie-banner.hide {
  opacity: 0;
  pointer-events: none;
  transform: translateY(120%);
}
.cookie-banner .cookie-text {
  color: #fff;
  margin-right: 16px;
  max-width: 540px;
}
.cookie-banner .cookie-btns {
  display: flex;
  flex-direction: row;
  gap: 16px;
}
.cookie-btn, .cookie-btn-accept, .cookie-btn-reject, .cookie-btn-settings {
  background: #eeb02d;
  color: #232946;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  border-radius: 7px;
  border: none;
  padding: 9px 18px;
  cursor: pointer;
  margin-right: 0px;
  transition: background 0.18s, color 0.16s, transform 0.13s;
  box-shadow: 0 1px 6px #eeb02d13;
}
.cookie-btn-accept:hover, .cookie-btn-accept:focus {
  background: #fff6e7;
  color: #eeb02d;
}
.cookie-btn-reject {
  background: #232946;
  color: #eeb02d;
  border: 1.25px solid #eeb02d;
}
.cookie-btn-reject:hover, .cookie-btn-reject:focus {
  background: #332b0c;
  color: #fff;
}
.cookie-btn-settings {
  background: #fff;
  color: #232946;
  border: 1.25px solid #eeb02d;
}
.cookie-btn-settings:hover, .cookie-btn-settings:focus {
  background: #eeb02d;
  color: #232946;
}

/* Cookie Modal */
.cookie-modal {
  position: fixed;
  left: 50%;
  top: 50%;
  width: 95vw;
  max-width: 410px;
  transform: translate(-50%, -50%) scale(1);
  background: #fff;
  border-radius: 19px;
  box-shadow: 0 6px 44px 0px rgba(35,41,70,0.17);
  z-index: 2500;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  animation: fadeInCookieModal 0.3s cubic-bezier(.75,.01,.32,0.96);
}
@keyframes fadeInCookieModal {
  from { opacity: 0; transform: translate(-50%, -54%) scale(0.95);}
  to   {opacity: 1;  transform: translate(-50%,-50%) scale(1);}
}
.cookie-modal h2 {
  font-size: 1.25rem;
  font-family: 'Montserrat', Arial, sans-serif;
  color: #232946;
}
.cookie-modal .modal-close {
  position: absolute;
  top: 20px; right: 24px;
  background: #eeb02d;
  color: #232946;
  border: none;
  font-size: 1.35rem;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  text-align: center;
  line-height: 36px;
  z-index: 2600;
  cursor: pointer;
  box-shadow: 0 2px 8px #eeb02d10;
}
.cookie-modal label {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  color: #232946;
  display: flex;
  align-items: center;
  gap: 8px;
}
.cookie-modal .cookie-category {
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.cookie-modal input[type=checkbox] {
  accent-color: #eeb02d;
  width: 20px; height: 20px;
}
.cookie-modal .cookie-btns {
  justify-content: flex-end;
}

/* Cookie Modal Overlay */
.cookie-modal-overlay {
  display: block;
  position: fixed;
  background: #232946cc;
  left: 0; top: 0; right:0; bottom:0;
  z-index: 2499;
  width: 100vw;
  height: 100vh;
}

/* --- FORM INPUTS --- */
input, select, textarea {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  padding: 8px 12px;
  border-radius: 7px;
  border: 1.5px solid #ececec;
  background: #fff;
  color: #232946;
  margin-bottom: 12px;
  width: 100%;
  outline: none;
  transition: border-color 0.13s, box-shadow 0.13s;
}
input:focus, select:focus, textarea:focus {
  border-color: #eeb02d;
  box-shadow: 0 2px 9px #eeb02d30;
}

/* --- HIDE SCROLLBAR for mobile-menu on iOS --- */
.mobile-menu {
  -webkit-overflow-scrolling: touch;
  overflow-y: auto;
}

/* --- CUSTOM SCROLLBAR for luxury look --- */
::-webkit-scrollbar {
  width: 10px;
  background: #23294611;
}
::-webkit-scrollbar-thumb {
  background: #eeb02d90;
  border-radius: 8px;
}
::-webkit-scrollbar-thumb:hover {
  background: #eeb02df2;
}

/* --- UTILITY --- */
.mt-40 {margin-top:40px !important;}
.mb-40 {margin-bottom:40px !important;}
.mt-20 {margin-top:20px !important;}
.mb-20 {margin-bottom:20px !important;}
.gap-20 {gap:20px !important;}

/* --- ACCENTED LINKS --- */
a.cta-btn, .cta-btn {
  background: #eeb02d;
  color: #232946;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 700;
  text-align: center;
  border-radius: 8px;
  padding: 14px 32px;
  box-shadow: 0 2px 18px rgba(215,157,23,0.16);
  border: 2px solid #eeb02d;
  transition: background 0.15s, color 0.19s, transform 0.11s;
}
a.cta-btn:hover, .cta-btn:hover, a.cta-btn:focus, .cta-btn:focus {
  background: #232946;
  color: #eeb02d;
  border: 2px solid #eeb02d;
  transform: translateY(-2px) scale(1.03);
}

/* --- MISC OVERRIDES --- */
section {
  margin-bottom: 60px;
  padding: 40px 0;
  background: none;
  border-radius: 0;
}
@media (max-width: 768px) {
  section {
    padding: 26px 0 30px 0;
    margin-bottom: 36px;
  }
}

/* --- ANIMATIONS / HOVER EFFECTS --- */
.card, .feature-grid li, .service-list li, .testimonial-card, .cta-btn, .cookie-banner, .mobile-menu, .cookie-modal, input, button {
  transition: box-shadow 0.20s, border-color 0.17s, background 0.14s, color 0.15s, transform 0.13s;
}
.card:hover, .feature-grid li:hover, .testimonial-card:hover, .service-list li:hover {
  transform: translateY(-4px) scale(1.015);
  box-shadow: 0 18px 44px rgba(238,176,45,0.11), 0 0.6px 2px #2329460d;
}

/* Luxury border-accent for cards on :before */
.card:before, .feature-grid li:before, .service-list li:before {
  content: '';
  display: none;
  position: absolute;
  left: 0; top: 0;
  height: 100%; width: 7px;
  border-radius: 12px 0 0 12px;
  background: #eeb02d;
}

/* End Luxury Accent lines --- */

/* --- FOCUS STYLES FOR ACCESSIBILITY --- */
a:focus, button:focus, .cta-btn:focus, input:focus, .mobile-menu-toggle:focus {
  outline: 2px solid #eeb02d;
  outline-offset: 2px;
  z-index: 20;
}

/* --- OVERLAPPING PREVENTION (UNIFORM MARGINS) --- */
.card, .feature-grid li, .service-list li, .testimonial-card, .service-list .text-section {
  margin-bottom: 20px;
}
.text-section, .address-block, .footer-nav {
  margin-bottom: 20px;
}

/* --- ENFORCE NO GRID / COLUMNS --- */
/* grid and column CSS properties are not present anywhere in this sheet */
