/*-------------------------------------------
  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;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
body {
  line-height: 1.6;
  background: #F1F3F9;
  color: #18486B;
  min-height: 100vh;
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 16px;
  letter-spacing: 0.01em;
}
*, *:before, *:after {
  box-sizing: inherit;
}
a {
  color: #21717C;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #388E9B;
  outline: none;
  text-decoration: underline;
}
ul, ol {
  list-style: none;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Open Sans', Arial, sans-serif;
  color: #18486B;
  font-weight: 700;
  line-height: 1.13;
}
h1 { font-size: 2.4rem; margin-bottom: 16px; }
h2 { font-size: 2rem; margin-bottom: 16px; }
h3 { font-size: 1.25rem; margin-bottom: 12px; font-weight: 600; }
h4 { font-size: 1.1rem; margin-bottom: 10px; font-weight: 600; }

/*-------------------------------------------
  BRAND COLORS & FONTS
-------------------------------------------*/
:root {
  --primary: #18486B;
  --primary-dark: #142f47;
  --primary-light: #285d87;
  --secondary: #FFFFFF;
  --bg: #F1F3F9;
  --accent: #21717C;
  --accent-light: #388E9B;
  --gold: #C8A03C;
  --grey: #ececec;
  --shadow: 0 2px 20px 0 rgba(24,72,107,0.08);
  --radius: 16px;
  --radius-small: 8px;
}

/*-------------------------------------------
  LUXURY PREMIUM ENHANCEMENTS
-------------------------------------------*/
.gold-text {
  color: var(--gold);
  font-weight: 700;
  letter-spacing: 0.03em;
}
.gold-accent {
  border-color: var(--gold) !important;
  color: var(--gold) !important;
}
.lux-shadow {
  box-shadow: 0 4px 24px 0 rgba(24,72,107,0.10), 0 1.5px 4px 0 #C8A03C44;
}

/*-------------------------------------------
  LAYOUT CONTAINERS (Mandatory Classes)
-------------------------------------------*/
.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 16px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--secondary);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  position: relative;
  transition: box-shadow 0.3s;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  flex: 1 1 260px;
  min-width: 260px;
  background: var(--bg);
  border-radius: var(--radius-small);
  padding: 28px 20px 20px 20px;
  box-shadow: var(--shadow);
  border: 1.5px solid var(--accent-light);
  transition: box-shadow 0.22s, border-color 0.22s;
}
.card:hover {
  box-shadow: 0 4px 40px 0 rgba(200,160,60,0.11), 0 3px 12px 0 var(--primary-light);
  border-color: var(--gold);
}
.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: 20px;
  padding: 24px 32px;
  margin-bottom: 20px;
  background: #fff;
  border-radius: var(--radius);
  border: 1.5px solid var(--gold);
  box-shadow: 0 1.5px 8px 0 rgba(200,160,60,0.06), var(--shadow);
  color: #222;
  font-size: 1.08rem;
  position: relative;
}
.testimonial-card blockquote {
  font-family: 'Montserrat', serif;
  font-style: italic;
  color: #0e304a;
  margin-bottom: 6px;
  background: none;
  border-left: 4px solid var(--gold);
  padding-left: 18px;
}
.testimonial-card span {
  color: var(--primary);
  font-weight: 600;
  font-size: 1rem;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}
.content-wrapper {
  width: 100%;
}
.text-section {
  margin-top: 20px;
  margin-bottom: 12px;
  color: var(--primary-light);
  font-size: 1.1rem;
  line-height: 1.55;
}
.text-section strong {
  color: var(--primary-dark);
  font-weight: bold;
  font-family: 'Montserrat', sans-serif;
}

/*-------------------------------------------
  BUTTONS & CTA
-------------------------------------------*/
.cta-btn, .btn {
  display: inline-flex;
  align-items: center;
  padding: 12px 34px;
  font-family: 'Montserrat', 'Open Sans', Arial, sans-serif;
  font-weight: 600;
  font-size: 1.08rem;
  color: var(--secondary);
  background: var(--primary);
  border: none;
  border-radius: var(--radius-small);
  letter-spacing: 0.02em;
  cursor: pointer;
  box-shadow: 0 2px 8px 0 rgba(24,72,107,0.12);
  transition: background 0.18s, box-shadow 0.22s, color 0.13s, border 0.2s;
  margin: 20px 0 0 0;
}
.cta-btn:hover, .cta-btn:focus, .btn:hover, .btn:focus {
  background: var(--gold);
  color: var(--primary-dark);
  box-shadow: 0 4px 18px 0 rgba(200,160,60,0.10);
  border: 1.5px solid var(--primary-light);
}
.mobile-nav .cta-btn {
  width: 100%;
  box-sizing: border-box;
  margin-bottom: 16px;
}

/*-------------------------------------------
  HEADER & NAVIGATION
-------------------------------------------*/
header {
  background: var(--secondary);
  box-shadow: 0 1.5px 8px 0 rgba(24,72,107,0.05);
  position: sticky;
  top: 0;
  z-index: 999;
}
header nav {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 18px 20px 18px 20px;
  max-width: 1120px;
  margin: 0 auto;
}
header nav a {
  font-family: 'Montserrat', 'Open Sans', Arial, sans-serif;
  font-weight: 500;
  font-size: 1rem;
  color: var(--primary);
  padding: 7px 16px;
  border-radius: var(--radius-small);
  transition: background 0.16s, color 0.16s;
  position: relative;
}
header nav a.cta-btn {
  margin-left: auto;
}
header nav a:not(.cta-btn):hover, header nav a:not(.cta-btn):focus {
  background: var(--accent-light);
  color: #fff;
}
header nav a.cta-btn {
  background: var(--gold);
  color: var(--primary);
  border: 1.5px solid var(--primary-light);
  box-shadow: 0 3px 20px 0 rgba(200,160,60,0.12);
  margin-left: 20px;
}
header nav a.cta-btn:hover, header nav a.cta-btn:focus {
  background: var(--primary);
  color: var(--secondary);
}
header nav img {
  max-width: 98px;
  margin-right: 26px;
}

/*-------------------------------------------
  MOBILE MENU (Hamburger Navigation)
-------------------------------------------*/
.mobile-menu-toggle {
  display: none;
  background: var(--gold);
  border: none;
  color: var(--primary);
  font-size: 2.1rem;
  padding: 6px 16px;
  border-radius: var(--radius-small);
  cursor: pointer;
  position: absolute;
  right: 20px;
  top: 19px;
  z-index: 1102;
  transition: background 0.17s;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: var(--primary);
  color: var(--secondary);
}
.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(24,72,107,0.98);
  transform: translateX(-100vw);
  transition: transform 0.38s cubic-bezier(0.77,0,0.175,1);
  z-index: 1500;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  visibility: hidden;
}
.mobile-menu.open {
  transform: translateX(0);
  visibility: visible;
}
.mobile-menu-close {
  font-size: 2rem;
  background: transparent;
  color: var(--gold);
  border: none;
  cursor: pointer;
  padding: 18px 18px 18px 14px;
  align-self: flex-end;
  margin-right: 10px;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  width: 100%;
  margin-top: 24px;
  gap: 4px;
  padding: 0 32px;
}
.mobile-nav a {
  display: block;
  font-family: 'Montserrat', sans-serif;
  padding: 16px 0;
  color: var(--secondary);
  font-size: 1.17rem;
  border-bottom: 1px solid #26557666;
  transition: background 0.13s, color 0.15s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--gold);
  color: var(--primary);
  border-radius: var(--radius-small);
}

/* Hide main navigation on mobile */
@media (max-width: 991px) {
  header nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}

/*-------------------------------------------
  TYPOGRAPHY & HEADINGS
-------------------------------------------*/
h1, h2, h3, h4, .gold-text {
  font-family: 'Montserrat', 'Open Sans', Arial, sans-serif;
}
strong {
  font-weight: 700;
  color: var(--primary-dark);
}
em {
  font-style: italic;
  color: var(--primary-light);
}
section ul, section ol {
  margin: 16px 0 0 0;
  padding-left: 1.2em;
  color: var(--primary-light);
}
section ul li, section ol li {
  margin-bottom: 10px;
  font-size: 1.04rem;
  line-height: 1.6;
}
section ul > li > strong {
  color: var(--primary-dark);
  font-weight: bold;
}

/*-------------------------------------------
  MAIN & PAGE STRUCTURE
-------------------------------------------*/
main {
  margin-top: 0;
  min-height: 72vh;
}

/*-------------------------------------------
  FOOTER
-------------------------------------------*/
footer {
  background: var(--primary);
  padding: 36px 20px 18px 20px;
  color: #fff;
  text-align: center;
  border-radius: var(--radius) var(--radius) 0 0;
  margin-top: 60px;
}
footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
footer nav a {
  color: #fff;
  font-family: 'Montserrat', 'Open Sans', Arial, sans-serif;
  font-size: 1rem;
  padding: 6px 11px;
  border-radius: var(--radius-small);
  transition: background 0.16s, color 0.16s;
}
footer nav a:hover, footer nav a:focus {
  background: var(--gold);
  color: var(--primary-dark);
}
footer .text-section {
  font-size: 1rem;
  color: #eee !important;
}

/*-------------------------------------------
  COOKIE CONSENT BANNER
-------------------------------------------*/
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  width: 100vw;
  background: var(--secondary);
  color: var(--primary);
  box-shadow: 0 -2px 24px 0 rgba(24,72,107,0.09);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px;
  z-index: 2200;
  gap: 16px;
}
.cookie-banner p {
  flex: 1 1 240px;
  font-size: 1.03rem;
}
.cookie-banner .btn {
  background: var(--gold);
  color: var(--primary-dark);
  border: 1.5px solid var(--primary-light);
  font-weight: 700;
  font-size: 1rem;
  margin: 0 8px 0 0;
  box-shadow: none;
}
.cookie-banner .btn.accept {
  background: var(--primary);
  color: var(--secondary);
}
.cookie-banner .btn.settings {
  background: var(--accent-light);
  color: #fff;
}
.cookie-banner .btn.reject {
  background: var(--grey);
  color: var(--primary);
}
.cookie-banner .btn:focus, .cookie-banner .btn:hover {
  background: var(--gold);
  color: var(--primary-dark);
}
@media (max-width: 540px) {
  .cookie-banner {
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
  }
}

/* COOKIE SETTINGS MODAL */
.cookie-modal-overlay {
  position: fixed;
  left: 0; top: 0; right: 0; bottom: 0;
  width: 100vw; height: 100vh;
  background: rgba(24,72,107,0.45);
  z-index: 2300;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s;
}
.cookie-modal-overlay.open {
  opacity: 1;
  pointer-events: all;
}
.cookie-modal {
  background: var(--secondary);
  border-radius: var(--radius);
  box-shadow: 0 8px 40px 0 rgba(24,72,107,0.20);
  max-width: 368px;
  width: 92vw;
  padding: 30px 24px 20px 24px;
  position: relative;
  color: var(--primary);
  font-size: 1.07rem;
  display: flex;
  flex-direction: column;
  gap: 26px;
  animation: fadeInModal 0.32s cubic-bezier(0.21,0.76,0.22,1.14);
}
@keyframes fadeInModal {
  0% { transform: scale(0.95); opacity: 0; }
  78% { opacity: 0.93; }
  100% { transform: scale(1); opacity: 1; }
}
.cookie-modal h2 {
  font-size: 1.25rem;
  margin-bottom: 12px;
  color: var(--gold);
}
.cookie-modal ul {
  padding-left: 18px;
  margin: 10px 0 18px 0;
  color: var(--primary-light);
}
.cookie-modal li {
  margin-bottom: 11px;
  font-size: 1rem;
  line-height: 1.5;
}
.cookie-modal .cookie-category {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 12px;
}
.cookie-modal .cookie-toggle {
  display: inline-flex;
  align-items: center;
}
.cookie-modal .cookie-toggle input[type="checkbox"] {
  width: 38px;
  height: 22px;
  accent-color: var(--gold);
  margin-right: 10px;
}
.cookie-modal .cookie-toggle label {
  font-family: 'Open Sans', sans-serif;
  font-size: 1rem;
  color: var(--primary-light);
}
.cookie-modal .cookie-actions {
  display: flex;
  gap: 12px;
  margin-top: 10px;
}
.cookie-modal .btn {
  font-size: 1rem;
  background: var(--primary);
  color: var(--secondary);
}
.cookie-modal .btn.close-modal {
  position: absolute;
  top: 10px; right: 10px;
  background: transparent;
  color: var(--gold);
  border: none;
  font-size: 1.5rem;
  padding: 2px 4px;
  cursor: pointer;
}
.cookie-modal .btn.close-modal:hover,
.cookie-modal .btn.close-modal:focus {
  color: var(--primary-dark);
  background: var(--grey);
}

/*-------------------------------------------
  RESPONSIVE
-------------------------------------------*/
@media (max-width: 1024px) {
  .container { max-width: 98vw; }
  header nav img { max-width: 82px; }
}
@media (max-width: 820px) {
  .section { padding: 28px 6vw; }
  .testimonial-card { padding: 18px 12px; }
}
@media (max-width: 768px) {
  .container { padding: 0 7px; }
  .section { padding: 25px 2vw; }
  .content-grid, .text-image-section, .card-container {
    flex-direction: column;
    gap: 20px;
  }
  .card { min-width: 100%; }
  .testimonial-card { padding: 15px 7px; }
  .footer nav { flex-direction: column; gap: 4px; }
}
@media (max-width: 480px) {
  h1 { font-size: 1.5rem; }
  h2 { font-size: 1.2rem; }
  h3 { font-size: 1.1rem; }
  .cta-btn, .btn { font-size: 0.98rem; padding: 10px 19px; }
  .section { margin-bottom: 32px; padding: 16px 3vw; }
}

/*-------------------------------------------
  UTILS & MICRO-INTERACTIONS
-------------------------------------------*/
::-webkit-scrollbar {
  width: 10px;
  background: var(--bg);
}
::-webkit-scrollbar-thumb {
  background: var(--primary-light);
  border-radius: 6px;
}
::selection {
  background: var(--accent-light);
  color: #fff;
}

@media print {
  header, .mobile-menu, .cookie-banner, .cookie-modal-overlay, footer { display: none !important; }
  .section { box-shadow: none; }
}

/*-------------------------------------------
  FLEX HELPERS (If needed)
-------------------------------------------*/
.flex { display: flex; }
.flex-column { flex-direction: column; }
.flex-center { justify-content: center; align-items: center; }
.flex-between { justify-content: space-between; align-items: center; }
.gap-20 { gap: 20px; }

/* END OF STYLE.CSS */
