/* 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,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 {
  box-sizing: border-box;
  font-size: 16px;
  scroll-behavior: smooth;
}
*, *:before, *:after {
  box-sizing: inherit;
}
body {
  background: #FFFFFF;
  color: #244262;
  font-family: 'Roboto', Arial, sans-serif;
  font-weight: 400;
  line-height: 1.7;
  font-size: 1rem;
  min-width: 320px;
}
img {
  max-width: 100%;
  height: auto;
  display:block;
}
ul,ol {
  list-style: none;
}
a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s cubic-bezier(.4,0,.2,1);
}
strong {
  font-weight: 600;
}
h1,h2,h3,h4,h5,h6 {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  color: #244262;
  margin-bottom: 20px;
  font-weight: 700;
  letter-spacing: 0.03em;
  line-height: 1.2;
}
h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.125rem; }

.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
}

/* HEADER */
header {
  background: #FFFFFF;
  border-bottom: 1px solid #E8F0F9;
  position: sticky;
  top: 0;
  z-index: 90;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  min-height: 80px;
  gap: 24px;
}
header nav {
  display: flex;
  gap: 28px;
  align-items: center;
}
header nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  color: #396A8B;
  position: relative;
  padding: 5px 0;
  transition: color 0.2s cubic-bezier(.4,0,.2,1);
}
header nav a::after {
  content: '';
  display: block;
  height: 2px;
  width: 0;
  background: #A08113;
  border-radius: 3px;
  position: absolute;
  left: 0;
  bottom: 0;
  transition: width 0.2s cubic-bezier(.4,0,.2,1); 
}
header nav a:hover, header nav a:focus {
  color: #A08113;
}
header nav a:hover::after, header nav a:focus::after {
  width: 100%;
}
header img {
  height: 56px;
  width: auto;
  margin-right: 24px;
}
.cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  padding: 12px 32px;
  border-radius: 32px;
  border: none;
  background: #A08113;
  color: #fff;
  box-shadow: 0 4px 16px rgba(168, 129, 19, 0.06);
  cursor: pointer;
  transition: background 0.2s cubic-bezier(.4,0,.2,1), transform 0.12s cubic-bezier(.4,0,.2,1);
  position: relative;
  letter-spacing: 0.01em;
  text-shadow: 0 1px 4px rgba(36, 66, 98, 0.04);
}
.cta-btn:hover, .cta-btn:focus {
  background: #D8B54A;
  transform: translateY(-2px) scale(1.03);
}
.cta-btn.secondary {
  background: #FFFFFF;
  color: #A08113;
  border: 2px solid #A08113;
  box-shadow: 0 2px 8px rgba(168, 129, 19, 0.05);
}
.cta-btn.secondary:hover, .cta-btn.secondary:focus {
  background: #FAF7F0;
  color: #A08113;
  border-color: #D8B54A;
}

/* MOBILE BURGER MENU */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  right: 24px;
  top: 18px;
  z-index: 120;
  background: #A08113;
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  font-size: 2rem;
  justify-content: center;
  align-items: center;
  box-shadow: 0 2px 8px rgba(36,66,98,0.08);
  cursor: pointer;
  transition: background 0.2s cubic-bezier(.4,0,.2,1), transform 0.12s cubic-bezier(.4,0,.2,1);
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: #D8B54A;
  transform: scale(1.07);
}
.mobile-menu {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  position: fixed;
  top: 0;
  right: 0;
  height: 100vh;
  width: 80vw;
  max-width: 375px;
  background: #FFFFFF;
  box-shadow: -3px 0 32px rgba(57,106,139,0.14);
  z-index: 210;
  transform: translateX(105%);
  transition: transform 0.35s cubic-bezier(.7,0,.15,1);
  padding: 36px 32px 24px 32px;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: none;
  border: none;
  color: #244262;
  font-size: 2rem;
  position: absolute;
  top: 24px;
  right: 28px;
  z-index: 214;
  cursor: pointer;
  padding: 4px;
  border-radius: 50%;
  transition: background 0.16s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #E8F0F9;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 60px;
  width: 100%;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.15rem;
  color: #244262;
  padding: 12px 0;
  border-bottom: 1px solid #E8F0F9;
  transition: color 0.19s cubic-bezier(.4,0,.2,1), background 0.18s;
  outline: none;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #E8F0F9;
  color: #A08113;
}
@media (max-width: 1024px) {
  .mobile-menu-toggle {
    display: flex;
  }
  header .container nav,
  header .container .cta-btn {
    display: none;
  }
}
@media (min-width: 1025px) {
  .mobile-menu {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: none !important;
  }
}

/* HERO SECTION */
.hero {
  background: #E8F0F9;
  border-bottom: 1px solid #dfe8ef;
  min-height: 380px;
  margin-bottom: 60px;
  padding: 40px 0 40px 0;
  display: flex;
  align-items: center;
}
.hero .container {
  justify-content: center;
  align-items: center;
}
.hero .content-wrapper {
  align-items: flex-start;
  gap: 20px;
  max-width: 700px;
}
.hero h1 {
  font-size: 2.6rem;
  color: #244262;
  margin-bottom: 12px;
  margin-top: 0;
}
.hero p {
  font-size: 1.25rem;
  color: #396A8B;
  margin-bottom: 24px;
}

/* SECTIONS */
section {
  background: #fff;
  margin-bottom: 60px;
  padding: 40px 20px;
  border-radius: 28px;
  box-shadow: 0 4px 32px rgba(36,66,98,0.035);
}

.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: 20px;
  box-shadow: 0 3px 18px rgba(36,66,98,0.05);
  padding: 28px 24px;
  flex: 1 1 320px;
  transition: box-shadow 0.18s cubic-bezier(.4,0,.2,1), transform 0.16s cubic-bezier(.4,0,.2,1);
}
.card:hover, .card:focus-within {
  box-shadow: 0 6px 28px rgba(36,66,98,0.11);
  transform: translateY(-2px) scale(1.02);
  z-index: 3;
}
.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 28px;
  margin-bottom: 20px;
  background: #FAF7F0;
  border-radius: 20px;
  box-shadow: 0 1px 8px rgba(168,129,19,0.08), 0 1.5px 8px rgba(36,66,98,0.04);
  border-left: 5px solid #A08113;
}
.testimonial-card p {
  color: #244262;
  font-size: 1.15rem;
  font-style: italic;
  margin-bottom: 6px;
}
.testimonial-card span {
  color: #A08113;
  font-weight: 500;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  letter-spacing: 0.01em;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

.text-section {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
  font-size: 1.08rem;
  color: #244262;
}

section ul li, section ol li {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-left: 0;
  font-size: 1.08rem;
  margin-bottom: 10px;
}
section ul li img, section ol li img {
  height: 28px;
  width: 28px;
}

address {
  display: flex;
  align-items: center;
  gap: 12px;
  font-style: normal;
  color: #244262;
  margin-bottom: 16px;
  font-size: 1rem;
}

/* FOOTER */
footer {
  background: #244262;
  color: #fff;
  padding: 56px 0 12px 0;
  border-top: 1px solid #e8f0f9;
  margin-top: 64px;
}
footer .container {
  flex-direction: row;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 32px;
  justify-content: space-between;
}
footer nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
footer nav a {
  color: #E8F0F9;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  margin-bottom: 4px;
  transition: color 0.18s;
}
footer nav a:hover, footer nav a:focus {
  color: #A08113;
}
.footer-contact p {
  color: #fff;
  font-size: 0.97rem;
  margin-bottom: 2px;
  opacity: 0.86;
}
footer img {
  height: 36px;
  margin-bottom: 18px;
}
@media (max-width: 820px){
  footer .container {
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
  }
}

/* COOKIE CONSENT BANNER */
.cookie-banner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: 18px;
  background: #fffbe9;
  color: #244262;
  box-shadow: 0 3px 18px rgba(168,129,19,0.11);
  border-radius: 18px;
  padding: 22px 26px;
  z-index: 5000;
  font-size: 1rem;
  border: 1.5px solid #E8F0F9;
  animation: fade-in-btm 0.6s;
}
@keyframes fade-in-btm {
  0% { opacity: 0; transform: translateY(40px); }
  100% { opacity: 1; transform: translateY(0); }
}
.cookie-banner-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
}
.cookie-btn {
  min-width: 120px;
  padding: 9px 18px;
  margin: 0;
  border-radius: 28px;
  background: #A08113;
  color: #fff;
  border: none;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  box-shadow: 0 1.5px 6px rgba(168,129,19,0.09);
  cursor: pointer;
  transition: background 0.19s cubic-bezier(.4,0,.2,1), transform 0.1s;
}
.cookie-btn.settings {
  background: #fff;
  color: #A08113;
  border: 2px solid #A08113;
}
.cookie-btn.reject {
  background: #244262;
}
.cookie-btn:hover, .cookie-btn:focus {
  background: #D8B54A;
  color: #fff;
  transform: translateY(-2px) scale(1.03); 
}
.cookie-btn.settings:hover, .cookie-btn.settings:focus {
  background: #E8F0F9;
  color: #A08113;
}

/* COOKIE MODAL */
.cookie-modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(36,66,98,.35);
  z-index: 6000;
  display: none;
  align-items: center;
  justify-content: center;
  animation: fade-in-modal 0.18s;
}
.cookie-modal-backdrop.open {
  display: flex;
}
@keyframes fade-in-modal { 0%{ opacity:0;} 100%{opacity:1;} }
.cookie-modal {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 10px 38px rgba(57,106,139,0.16);
  padding: 38px 32px 24px 32px;
  max-width: 420px;
  width: 90vw;
  position: relative;
  z-index: 8000;
  animation: modal-slidein 0.23s cubic-bezier(.4,0,.2,1);
}
@keyframes modal-slidein {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}
.cookie-modal h2 {
  font-size: 1.3rem;
  color: #244262;
  margin-bottom: 12px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 18px;
  font-size: 1.04rem;
}
.cookie-category label {
  flex: 1 1 auto;
  font-weight: 600;
  color: #244262;
}
.cookie-modal input[type="checkbox"] {
  accent-color: #A08113;
  width: 19px;
  height: 19px;
}
.cookie-modal .modal-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
  justify-content: flex-end;
}
.cookie-modal-close {
  position: absolute;
  right: 16px;
  top: 17px;
  font-size: 1.8rem;
  background: none;
  border: none;
  color: #244262;
  cursor: pointer;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  background: #E8F0F9;
}


/* RESPONSIVE FLEXBOX STRUCTURE */
@media (max-width: 1024px) {
  .container {
    padding: 0 14px;
  }
}
@media (max-width: 900px) {
  .container {
    max-width: 97vw;
  }
  section {
    padding: 30px 8px;
    border-radius: 16px;
    margin-bottom: 36px;
  }
  .hero {
    min-height: 270px;
    border-radius: 0;
    padding-top: 32px;
    padding-bottom: 32px;
  }
  .card {
    padding: 21px 10px;
    border-radius: 15px;
  }
}
@media (max-width: 768px) {
  header .container, footer .container {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  .text-image-section,
  .content-grid {
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
  }
  .testimonial-card {
    padding: 16px 12px;
    border-radius: 14px;
    font-size: 0.97rem;
  }
  
  h1 { font-size: 2rem; }
  h2 { font-size: 1.4rem; }
  h3 { font-size: 1.1rem; }
  section {
    margin-bottom: 26px;
    padding: 24px 6px;
  }
}
@media (max-width: 600px) {
  .hero {
    min-height: 80px;
    padding: 16px 0 8px 0;
    border-radius: 0;
  }
  h1 { font-size: 1.5rem; }
  h2 { font-size: 1.12rem; }
  .card {
    min-width: 0;
    padding: 13px 4px;
    font-size: 0.97rem;
  }
  .cta-btn {
    font-size: 1rem;
    padding: 10px 16px;
  }
  .cookie-modal {
    padding: 19px 6px 7px 6px;
  }
  .cookie-banner {
    padding: 13px 8px;
    font-size: 0.95rem;
  }
}

/* MICRO-INTERACTIONS / TRANSITIONS */
*:focus {
  outline: 2px solid #A08113;
  outline-offset: 2px;
}

button {
  font-family: inherit;
}
.button[disabled],.cta-btn[disabled]{
  filter: grayscale(0.6) brightness(1.2);
  opacity: 0.7;
  cursor: not-allowed;
}

/* ICONS */
section ul li img, section ol li img {
  background: #E8F0F9;
  border-radius: 8px;
  padding: 5px;
  height: 28px;
}

/* MISC. SPACING AND UTILITIES */
.mb-20 { margin-bottom: 20px; }
.mb-30 { margin-bottom: 30px; }
.mt-20 { margin-top: 20px; }
.mt-40 { margin-top: 40px; }
.gap-20 { gap: 20px; }
.gap-30 { gap: 30px; }

/* LUXURY & PREMIUM ACCENTS */
.accent,gold {
  color: #A08113 !important;
}
.gold {
  color: #A08113;
}
.border-accent {
  border-color: #A08113 !important;
}
.shadow-gold {
  box-shadow: 0 4px 24px rgba(168, 129, 19, 0.13);
}

/* FORM ELEMENTS */
input, textarea, select {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  border-radius: 8px;
  border: 1.5px solid #E8F0F9;
  padding: 10px 12px;
  outline: none;
  background: #FAFAFA;
  color: #244262;
  transition: border 0.17s cubic-bezier(.4,0,.2,1);
}
input:focus, textarea:focus, select:focus {
  border-color: #A08113;
}
label {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #244262;
  font-size: 1rem;
  margin-bottom: 4px;
  font-weight: 500;
  letter-spacing: 0.01em;
}

/* Hide visually but keep for screen readers */
.sr-only {
  position: absolute !important;
  height: 1px; width: 1px;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
  white-space: nowrap;
}

/* Scrollbar styling for a touch of luxury */
::-webkit-scrollbar {
  width: 10px;
  background: #E8F0F9;
  border-radius: 10px;
}
::-webkit-scrollbar-thumb {
  background: #A08113;
  border-radius: 10px;
  min-height: 40px;
}

/* Highlight important links & headings with accent */
a.cta-btn, .accent, h2 strong, h1 strong {
  color: #A08113;
}

/* Ensure testimonials area has readable dark text */
.testimonial-card, .testimonial-card p, .testimonial-card span {
  color: #244262;
  background: #FAF7F0;
}

/* Extra: ensure all cards and lists have solid spacing and separation */
section ul, section ol {
  margin-top: 8px;
  margin-bottom: 8px;
}
section ul li:last-child, section ol li:last-child {
  margin-bottom: 0;
}

/* Accessibility for keyboard navigation */
a:focus, button:focus, .cta-btn:focus {
  outline: 2.5px solid #D8B54A;
  outline-offset: 1px;
}

/* Fix z-index stacking for overlays */
header, footer { position: relative; z-index: 10; }

/* End of CSS */
