/* =============== 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;
}
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1.5;
  background: #F5F7FB;
  color: #232323;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
html {
  scroll-behavior: smooth;
}
a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}
button, input[type="button"], input[type="submit"] {
  font-family: inherit;
  background: none;
  border: none;
  cursor: pointer;
  outline: none;
}
ul, ol {
  list-style: none;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}

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

body, html {
  font-family: "Roboto", Arial, Helvetica, sans-serif;
  font-size: 16px;
  color: #232323;
  background: #F5F7FB;
}

h1, h2, h3, h4 {
  font-family: "Montserrat", Arial, Helvetica, sans-serif;
  color: #1b253a;
  font-weight: 700;
}
h1 {
  font-size: 2.25rem;
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}
h2 {
  font-size: 1.5rem;
  margin-bottom: 20px;
}
h3 {
  font-size: 1.125rem;
  margin-bottom: 12px;
}
h4 {
  font-size: 1rem;
  margin-bottom: 8px;
}
p, li, blockquote {
  font-family: "Roboto", Arial, Helvetica, sans-serif;
  color: #3a3a3a;
  font-size: 1rem;
}
p {
  margin-bottom: 12px;
}
strong {
  color: #17429B;
}
blockquote {
  font-style: italic;
  color: #1b253a;
  padding: 0 0 0 16px;
  border-left: 3px solid #d4af37;
  margin-bottom: 10px;
}

/* =================== LUXURY COLOR PALETTE =================== */
:root {
  --color-primary: #17429B;
  --color-secondary: #26B63C;
  --color-accent: #F5F7FB;
  --color-gold: #d4af37;
  --color-gold-light: #f7e6b2;
  --color-bg-dark: #17181C;
  --color-bg-light: #FFFFFF;
  --color-grey: #ececec;
  --color-contrast-dark: #232323;
  --color-contrast-light: #fff;
  --shadow-card: 0 2px 16px 0 rgba(23, 66, 155, 0.10), 0 2px 4px 0 rgba(44, 36, 1, 0.06);
  --radius-lg: 16px;
  --radius-md: 10px;
  --radius-sm: 6px;
}

/* =================== CONTAINER & LAYOUT =================== */
.container {
  max-width: 1230px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: transparent;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  border-radius: var(--radius-lg);
  background: var(--color-bg-light);
  box-shadow: var(--shadow-card);
  transition: box-shadow 0.2s, transform 0.2s;
  position: relative;
}
.card:hover {
  box-shadow: 0 4px 18px 0 rgba(212,175,55,0.20), 0 2px 8px 0 rgba(23,66,155,0.10);
  transform: translateY(-4px) scale(1.015);
}
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}
.text-image-section,
.text-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
.text-section {
  align-items: flex-start;
  flex-direction: column;
}
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  margin-bottom: 20px;
  background: #fff;
  border-radius: var(--radius-md);
  box-shadow: 0 2px 8px 0 rgba(212,175,55,.11);
  border-left: 5px solid var(--color-gold);
  transition: box-shadow .2s, border-color .2s;
}
.testimonial-card:hover {
  box-shadow: 0 4px 24px 0 rgba(23,66,155,0.10);
  border-color: #bfa138;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* Responsive common layouts */
@media (max-width: 900px) {
  .container { padding: 0 12px; }
  .section { padding: 34px 6px; }
  .hero .container { padding-top: 0; }
}
@media (max-width: 768px) {
  .content-wrapper, .card-container, .content-grid, .text-image-section {
    flex-direction: column;
    gap: 18px;
  }
  .section { padding: 18px 0; margin-bottom: 34px; }
  h1 { font-size: 2rem; }
  h2 { font-size: 1.25rem; }
  h3 { font-size: 1rem; }
}
@media (max-width: 520px) {
  .section { padding: 11px 0; margin-bottom: 22px; }
}

/* =================== MAIN NAVIGATION =================== */
.main-nav {
  display: flex;
  align-items: center;
  background: var(--color-bg-light);
  height: 80px;
  padding: 0 34px;
  border-bottom: 1px solid var(--color-grey);
  gap: 18px;
  position: relative;
  z-index: 201;
}
.main-nav > a {
  padding: 0 10px;
  font-family: "Montserrat", Arial, Helvetica, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: #252e45;
  border-radius: var(--radius-sm);
  transition: color 0.2s, background 0.2s;
  position: relative;
  line-height: 80px;
}
.main-nav > a:not(.cta-button):hover {
  color: var(--color-primary);
  background: rgba(212,175,55,0.10);
}
.main-nav .cta-button {
  background: linear-gradient(90deg, #d4af37 60%, #f7e6b2 100%);
  color: #232323;
  border: none;
  border-radius: 25px;
  padding: 11px 32px;
  font-size: 1.075rem;
  font-weight: 700;
  font-family: "Montserrat", Arial, Helvetica, sans-serif;
  box-shadow: 0 6px 16px 0 rgba(212,175,55,0.08);
  margin-left: 10px;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
  outline: none;
  letter-spacing: 0.05em;
}
.main-nav .cta-button:hover, .cta-button:focus {
  background: #17429B;
  color: #fff;
  box-shadow: 0 8px 26px 0 rgba(23,66,155,.14);
}
.main-nav img {
  height: 41px;
  margin-right: 10px;
  vertical-align: middle;
}

/* Hide main nav on mobile */
@media (max-width: 900px) {
  .main-nav {
    padding: 0 10px;
    gap: 9px;
  }
}
@media (max-width: 768px) {
  .main-nav {
    display: none;
  }
}

/* ================== HERO SECTION ================== */
.hero {
  background: linear-gradient(80deg, #fff 60%, #f7e6b2 100%);
  padding: 36px 0 16px 0;
  margin-bottom: 0;
}
.hero .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-top: 30px;
  padding-bottom: 30px;
}
.hero .content-wrapper {
  align-items: center;
  text-align: center;
  gap: 20px;
}
.hero p {
  font-size: 1.14rem;
  color: #414141;
  font-weight: 400;
  margin-bottom: 8px;
}

/* ================== BUTTONS ================== */
.cta-button, .cookie-banner .btn, .cookie-modal .btn {
  background: linear-gradient(90deg, #d4af37 60%, #e0be51 100%);
  color: #232323;
  font-family: "Montserrat", Arial, Helvetica, sans-serif;
  border: none;
  border-radius: 28px;
  padding: 12px 38px;
  font-weight: 700;
  font-size: 1.1rem;
  box-shadow: 0 2px 8px 0 rgba(212,175,55,0.10);
  cursor: pointer;
  margin-top: 12px;
  margin-bottom: 10px;
  letter-spacing: 0.04em;
  transition: background 0.2s, color 0.2s, box-shadow 0.18s, transform 0.11s;
}
.cta-button:hover, .cookie-banner .btn:hover, .cookie-modal .btn:hover {
  background: var(--color-primary);
  color: white;
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 6px 16px 0 rgba(23,66,155,.10);
}

/* ================== SECTIONS: LISTS & FEATURES ================== */
.section ul {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 10px;
  margin-bottom: 6px;
}
.section ul li {
  flex: 1 1 250px;
  min-width: 220px;
  background: #fff;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  padding: 22px 18px 16px 18px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 9px;
  border-top: 3px solid #d4af37;
  transition: box-shadow .2s, border-color .2s;
  position: relative;
}
.section ul li:hover {
  border-top-color: #17429B;
  box-shadow: 0 4px 20px 0 rgba(23,66,155,0.13);
}
.section ul li img {
  width: 36px;
  height: 36px;
  margin-bottom: 4px;
  filter: grayscale(18%);
}
.section ul li h3 {
  color: #17429B;
  font-family: "Montserrat", Arial, Helvetica, sans-serif;
  margin-bottom: 4px;
  margin-top: 5px;
}
.section ul li span {
  color: #d4af37;
  font-weight: bold;
  font-size: 1.01rem;
}
@media (max-width: 900px) {
  .section ul { gap: 15px; }
  .section ul li { min-width: 160px; }
}
@media (max-width: 700px) {
  .section ul { flex-direction: column; gap: 13px; }
  .section ul li { width: 100%; min-width: 0; }
}

/* ================== TEXT & BULLETS ================== */
.text-section {
  gap: 12px;
}
.text-section ul {
  align-items: flex-start;
  flex-direction: column;
  gap: 7px;
  margin-top: 0px;
}
.text-section ul li {
  background: none;
  padding: 0;
  margin-bottom: 0px;
  box-shadow: none;
  border: none;
  color: #17429B;
  font-weight: 500;
  font-size: 1rem;
}

.location-map {
  color: #344151;
  background: #f6f3ed;
  border-radius: var(--radius-md);
  padding: 12px 18px;
  box-shadow: var(--shadow-card);
}

.social-links p,
.social-links span {
  font-size: 1rem;
  color: #232323;
}
.social-links span {
  color: #17429B;
  font-weight: 600;
  margin-right: 10px;
  letter-spacing: 0.02em;
}

/* ================== TESTIMONIALS ================== */
.testimonial-card blockquote {
  font-size: 1.09rem;
  color: #232323;
  border-left: none;
  margin: 0 0 6px 0;
  padding-left: 0;
}
.testimonial-card p {
  margin-bottom: 0;
}
.testimonial-card strong {
  color: #17429B;
  font-family: "Montserrat", Arial, Helvetica, sans-serif;
}

@media (max-width: 600px) {
  .testimonial-card { flex-direction: column; gap: 10px; padding: 11px; }
}

/* ================== FOOTER ================== */
footer {
  background: #17181C;
  color: #fff;
  padding: 36px 0 18px 0;
}
footer .content-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
  align-items: flex-start;
  font-size: 1rem;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: "Montserrat", Arial, Helvetica, sans-serif;
  font-size: 1rem;
  font-weight: 700;
}
.footer-brand img {
  width: 32px;
  height: 32px;
}
.footer-nav, .legal-links {
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.footer-nav a, .legal-links a {
  color: #ccc;
  font-weight: 500;
  font-family: "Montserrat",Arial,Helvetica,sans-serif;
  font-size: 1rem;
  transition: color 0.18s;
}
.footer-nav a:hover, .legal-links a:hover {
  color: #d4af37;
}
.brand-info {
  color: #fff8db;
  font-size: .99rem;
  font-family: "Roboto", Arial, Helvetica, sans-serif;
  margin-top: 13px;
}
@media (max-width: 900px) {
  footer .content-wrapper { flex-direction: column; gap: 14px; }
}

/* ================== MOBILE MENU ================== */
.mobile-menu-toggle {
  display: none;
  position: absolute;
  right: 18px;
  top: 22px;
  background: linear-gradient(90deg, #d4af37 60%, #e0be51 100%);
  color: #232323;
  font-size: 2.7rem;
  border-radius: 9px;
  padding: 3px 14px 4px 14px;
  border: none;
  cursor: pointer;
  z-index: 220;
  transition: box-shadow 0.21s, background 0.19s;
}
.mobile-menu-toggle:hover {
  background: #17429B;
  color: #fff;
  box-shadow: 0 4px 14px 0 rgba(23,66,155,0.21);
}
@media (max-width: 768px) {
  .mobile-menu-toggle {
    display: block;
  }
}
.mobile-menu {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(30,34,40,0.91);
  opacity: 0;
  pointer-events: none;
  transform: translateX(-100%);
  z-index: 9999;
  transition: opacity .28s, transform .32s cubic-bezier(.65,.12,.36,.98);
}
.mobile-menu.open {
  opacity: 1;
  pointer-events: all;
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  font-size: 2.3rem;
  color: #d4af37;
  background: none;
  border: none;
  padding: 12px 18px 6px 18px;
  margin: 20px 10px 10px 0;
  cursor: pointer;
  transition: color 0.19s;
  z-index: 10001;
}
.mobile-menu-close:hover { color: #fff; }
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  margin-top: 24px;
  padding-left: 22px;
}
.mobile-nav a {
  color: #fff;
  font-family: "Montserrat", Arial, Helvetica, sans-serif;
  font-weight: 600;
  font-size: 1.21rem;
  padding: 13px 0;
  border-bottom: 1px solid rgba(244,244,244,0.09);
  min-width: 180px;
  transition: color 0.18s;
}
.mobile-nav a:hover {
  color: #d4af37;
}

/* ================== COOKIE CONSENT BANNER ================== */
.cookie-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  position: fixed;
  left: 0; right: 0; bottom: 0;
  width: 100vw;
  background: rgba(255,255,255,0.98);
  color: #1b253a;
  box-shadow: 0 -2px 22px 0 rgba(23,66,155,0.13);
  padding: 18px 28px;
  z-index: 10001;
  font-size: 1rem;
  border-top: 2px solid #d4af37;
  animation: fadeInBanner .7s;
}
@keyframes fadeInBanner { from { opacity: 0; transform: translateY(30px);} to {opacity:1;transform:none;}}
.cookie-banner p{flex:1 1 70%;color:#292929;font-family:'Roboto',Arial,sans-serif;}
.cookie-banner .btn {
  margin: 0 7px 0 0;
  padding: 10px 23px;
  background: linear-gradient(90deg,#d4af37 60%,#f7e6b2 100%);
  color:#232323;
  font-family:"Montserrat",Arial,Helvetica,sans-serif;
  border-radius: 20px;
  border: none;
  font-size: 1rem;
}
.cookie-banner .btn:last-child{margin-right:0;}
@media (max-width: 700px) {
  .cookie-banner {
    flex-direction: column;
    gap: 9px;
    padding: 12px 4px;
    font-size: 0.97rem;
    align-items: flex-start;
  }
}

/* Cookie Modal */
.cookie-modal-backdrop {
  position: fixed;
  z-index: 10003;
  left: 0; top: 0; width: 100vw; height: 100vh;
  background: rgba(32,30,21,0.33);
  opacity: 0;
  pointer-events: none;
  transition: opacity .27s;
}
.cookie-modal-backdrop.open {
  opacity: 1;
  pointer-events: all;
}
.cookie-modal {
  position: fixed;
  left: 50%; top: 50%;
  transform: translate(-50%, -50%) scale(.96);
  background: #fff;
  color: #232323;
  border-radius: var(--radius-lg);
  box-shadow: 0 14px 40px 0 rgba(23,66,155,0.13);
  padding: 40px 32px 28px 32px;
  min-width: 330px;
  max-width: 93vw;
  z-index: 10004;
  opacity: 0;
  pointer-events: none;
  transition: opacity .23s, transform .28s;
}
.cookie-modal.open {
  opacity: 1;
  pointer-events: all;
  transform: translate(-50%, -50%) scale(1);
}
.cookie-modal h2 {
  font-size: 1.45rem;
  margin-bottom: 13px;
  color: #17429B;
  font-family: "Montserrat", Arial, Helvetica, sans-serif;
}
.cookie-modal .cookie-category {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-bottom: 12px;
}
.cookie-modal .cookie-category label {
  font-weight: 500;
  color: #232323;
  font-size: 1rem;
}
.cookie-modal .toggle-switch {
  width: 40px; height: 22px;
  border-radius: 22px;
  background: #ececec;
  position: relative;
  transition: background .18s;
}
.cookie-modal .toggle-switch input {
  display: none;
}
.cookie-modal .toggle-switch .slider {
  display: block;
  width: 22px; height: 22px;
  border-radius: 100%;
  background: #d4af37;
  position: absolute; left: 0; top: 0;
  transition: left .21s, background .13s;
}
.cookie-modal .toggle-switch input:not(:checked) + .slider {
  background: #bbb;
  left: 0;
}
.cookie-modal .toggle-switch input:checked + .slider {
  background: #d4af37;
  left: 18px;
}
.cookie-modal .btn-row {
  display: flex;
  justify-content: flex-end;
  gap: 16px;
  margin-top: 22px;
}

/* ================== FORMS, LINKS, DETAILS ================== */
input, textarea, select {
  font-family: "Roboto", Arial, Helvetica, sans-serif;
  font-size: 1rem;
  border: 1px solid #d9d9d9;
  border-radius: 8px;
  padding: 12px;
  margin-bottom: 12px;
  background: #fff;
  color: #232323;
  outline: none;
  box-shadow: 0 1px 2px 0 rgba(23,66,155,.03);
  transition: border-color .18s, box-shadow .16s;
}
input:focus, textarea:focus, select:focus {
  border-color: #d4af37;
  box-shadow: 0 2px 9px 0 rgba(212,175,55,0.09);
}
a {
  color: #17429B;
  text-decoration: underline;
  transition: color .18s;
}
a:hover {
  color: #d4af37;
}

/* ======================= MISC ======================= */
::-webkit-scrollbar { width: 11px; background: #ececec; }
::-webkit-scrollbar-thumb { background: #d4af37; border-radius: 8px; }
::-webkit-selection { background: #d4af37; color: #fff; }
::selection { background: #d4af37; color: #fff; }

/* Decorative gold line on h2 */
h2::after {
  content: '';
  display: block;
  width: 40px;
  height: 3px;
  margin-top: 7px;
  background: #d4af37;
  border-radius: 2px;
}

/* Subtle animations for CTA, links, cards */
.cta-button, .card, .testimonial-card, .main-nav > a, .footer-nav a, .legal-links a {
  transition: box-shadow 0.2s, color .15s, background 0.2s, border-color 0.2s, transform 0.11s;
}

/* Lists with numbers (FAQ, steps) */
ol li, .content-wrapper ol li {
  list-style: decimal inside;
  margin-left: 18px;
  margin-bottom: 7px;
  color: #252e45;
  font-size: 1rem;
}
ol {
  margin: 7px 0 18px 0;
}

/* ================== ACCESSIBILITY CONTRAST ================== */
.testimonial-card, .testimonial-card blockquote, .testimonial-card p, .testimonial-card strong {
  color: #232323 !important; /* Always readable on white or light backgrounds */
}

/* ================== PRINT FRIENDLY ================== */
@media print {
  .main-nav, .mobile-menu, .cookie-banner, .cookie-modal-backdrop, .cookie-modal {
    display: none !important;
  }
  footer, header { page-break-after: avoid; }
}
