/* --- CSS RESET & NORMALIZE --- */
html {
  box-sizing: border-box;
  scroll-behavior: smooth;
}
*, *:before, *:after {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  vertical-align: baseline;
}
body {
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  font-size: 16px;
  color: #154273;
  background: #F2F5F7;
  line-height: 1.6;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img, svg {
  display: block;
  max-width: 100%;
  height: auto;
}
a {
  color: #154273;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #F89C1C;
}
button {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: bold;
  cursor: pointer;
  background: none;
  border: none;
}
ul, ol {
  padding-left: 20px;
}

/* --- BRAND VARIABLES (with fallbacks) --- */
:root {
  --primary: #154273;
  --secondary: #F2F5F7;
  --accent: #F89C1C;
  --danger: #EF5350;
  --success: #06c167;
  --shadow: 0 6px 24px 0 rgba(21, 66, 115, 0.10);
}

/* --- TYPOGRAPHY --- */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 12px;
}
h1 {
  font-size: 2.5rem;
  letter-spacing: -1px;
  color: var(--primary);
}
h2 {
  font-size: 2rem;
  color: var(--accent);
}
h3 {
  font-size: 1.3rem;
  color: var(--primary);
  font-weight: 600;
}
h4, h5, h6 {
  font-size: 1.1rem;
  color: var(--primary);
}
.subheadline {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.2rem;
  color: var(--primary);
  margin-bottom: 20px;
  font-weight: 600;
}
p {
  margin-bottom: 16px;
}
strong {
  font-weight: bold;
}

/* --- GENERAL LAYOUT SPACING PATTERNS --- */
.container {
  width: 100%;
  max-width: 1220px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.content-wrapper {
  margin-top: 24px;
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: 20px;
  box-shadow: var(--shadow);
  padding: 32px 28px;
  margin-bottom: 20px;
  position: relative;
  flex: 1 1 320px;
  min-width: 260px;
  max-width: 100%;
  transition: box-shadow 0.2s, transform 0.2s;
}
.card:hover {
  box-shadow: 0 10px 32px 0 rgba(248,156,28,0.10);
  transform: translateY(-4px) scale(1.025);
}
.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: center;
  gap: 20px;
  background: #fff;
  box-shadow: var(--shadow);
  border-radius: 20px;
  padding: 20px 32px;
  margin: 0 0 20px 0;
  min-width: 270px;
  max-width: 350px;
  font-size: 1.08rem;
  transition: box-shadow 0.2s, transform 0.2s;
}
.testimonial-card .stars {
  font-size: 1.2em;
  color: var(--accent);
  margin-bottom: 4px;
  letter-spacing: 1px;
}
.testimonial-slider {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 24px;
}
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.feature-item {
  background: #fff;
  border-radius: 20px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  padding: 28px 20px;
  min-width: 220px;
  max-width: 340px;
  flex: 1 1 260px;
  transition: box-shadow 0.2s, transform 0.2s;
  margin-bottom: 20px;
}
.feature-item:hover {
  box-shadow: 0 12px 42px 0 rgba(248,156,28,0.13);
  transform: translateY(-2px) scale(1.012);
}
.feature-item img {
  width: 44px;
  height: 44px;
  margin-bottom: 6px;
}

.text-section {
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: flex-start;
}

/* --- PRIMARY BUTTON STYLES --- */
.button-primary, .mobile-nav a.button-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.07rem;
  background: linear-gradient(90deg,#F89C1C 80%, #FFD762 100%);
  color: #154273;
  border: none;
  border-radius: 999px;
  padding: 13px 28px;
  margin-top: 8px;
  cursor: pointer;
  box-shadow: 0 2px 12px 0 rgba(248,156,28,.17);
  text-shadow: none;
  text-transform: uppercase;
  letter-spacing: .06em;
  transition: background 0.17s, transform 0.17s, color 0.17s;
  outline: none;
}
.button-primary:hover, .button-primary:focus {
  background: linear-gradient(90deg,#FFD762 0%, #F89C1C 100%);
  color: #154273;
  transform: scale(1.04);
  box-shadow: 0 6px 24px 0 rgba(248,156,28,.29);
}

/* --- HEADER & NAVIGATION --- */
header {
  background: #fff;
  box-shadow: 0 6px 20px -6px rgba(21,66,115,0.10);
  padding-top: 0;
  padding-bottom: 0;
  position: sticky;
  top: 0;
  z-index: 98;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 74px;
  padding-top: 12px;
  padding-bottom: 12px;
  gap: 28px;
}
header img {
  height: 48px;
  width: auto;
  margin-right: 18px;
}
.main-nav {
  display: flex;
  gap: 24px;
  align-items: center;
}
.main-nav a {
  color: var(--primary);
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: .03em;
  padding: 7px 10px;
  border-radius: 6px;
  transition: background 0.15s, color 0.15s;
}
.main-nav a:not(.button-primary):hover,
.main-nav a:not(.button-primary):focus {
  background: var(--accent);
  color: #154273;
}
.main-nav .button-primary {
  margin-left: 14px;
}

/* --- MOBILE BURGER MENU --- */
.mobile-menu-toggle {
  display: none;
  background: var(--accent);
  color: #154273;
  border-radius: 50%;
  padding: 10px;
  font-size: 2rem;
  width: 48px;
  height: 48px;
  transition: background 0.17s, color 0.17s;
  z-index: 101;
}
.mobile-menu-toggle:focus,
.mobile-menu-toggle:hover {
  background: #ffe0b2;
  color: #154273;
}
.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  background: rgba(21,66,115,0.97);
  color: #fff;
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 36px 22px 22px 22px;
  transform: translateX(-100vw);
  transition: transform 0.33s cubic-bezier(.83,.09,.27,1.09);
}
.mobile-menu.open {
  transform: translateX(0);
  box-shadow: 0 16px 60px 0 rgba(21,66,115,0.35);
}
.mobile-menu-close {
  background: none;
  color: #fff;
  font-size: 2.2rem;
  position: absolute;
  top: 24px;
  right: 26px;
  z-index: 1001;
  border-radius: 50%;
  transition: background 0.12s, color 0.12s;
}
.mobile-menu-close:focus,
.mobile-menu-close:hover {
  color: var(--accent);
  background: #fff2dc;
}
.mobile-nav {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 52px;
}
.mobile-nav a {
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: bold;
  font-size: 1.18rem;
  padding: 14px 8px 13px 2px;
  border-radius: 10px;
  transition: background 0.14s, color 0.14s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--accent);
  color: #154273;
}
.mobile-nav a.button-primary {
  background: #fff;
  color: #154273;
  font-size: 1.18rem;
  font-weight: bold;
  margin-top: 24px;
  justify-content: center;
  text-align: center;
}
.mobile-nav a.button-primary:hover {
  background: var(--accent);
  color: #154273;
}

/* --- HERO & CTA --- */
main section:first-of-type {
  background: linear-gradient(90deg,#F2F5F7 50%, #FFD762 100%);
  border-bottom: 5px solid var(--accent);
  box-shadow: 0 2px 12px 0 rgba(21,66,115,0.08);
}
main h1 {
  font-size: 2.6rem;
  color: var(--primary);
  font-family: 'Montserrat', Arial, sans-serif;
  letter-spacing: -2px;
  font-weight: 900;
  margin-bottom: 10px;
}

main .cta-strip, main section .cta-strip {
  background: var(--accent);
  color: #154273;
  border-radius: 20px;
  box-shadow: 0 4px 14px 0 rgba(248,156,28,0.13);
  padding: 34px 30px 28px 32px;
  margin-top: 38px;
  margin-bottom: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}

/* --- TABLES --- */
table {
  border-collapse: collapse;
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 24px;
  background: #fff;
  box-shadow: var(--shadow);
}
th, td {
  padding: 16px 12px;
  text-align: left;
  font-size: 1rem;
}
th {
  background: var(--primary);
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 800;
  font-size: 1.09rem;
  letter-spacing: .04em;
  border-bottom: 2px solid var(--accent);
}
tr:nth-child(even) td {
  background: #F2F5F7;
}

.compare-table td, .price-table td {
  color: #273a53;
}

/* --- FAQ ACCORDION (non-dynamic) --- */
.faq-accordion h3 {
  margin-top: 18px;
  cursor: pointer;
  color: var(--accent);
  font-size: 1.13rem;
  transition: color 0.17s;
  font-weight: 800;
}
.faq-accordion p {
  margin-bottom: 14px;
}

/* --- SPECIAL ELEMENTS --- */
.quick-facts, .service-list, .links-list ul, .checklist ul, .visitor-tips ul, .timeline ul, .infographic-items ul {
  list-style: disc;
  margin-bottom: 18px;
}
.quick-facts li,
.service-list li {
  margin-bottom: 7px;
  font-weight: 500;
}
.insider-tips {
  background: #fff7e1;
  color: #154273;
  border-left: 5px solid var(--accent);
  border-radius: 10px;
  padding: 18px 24px;
  margin-top: 16px;
  font-size: 1.09rem;
}
.address-details,
.email-phone,
.opening-hours,
.embedded-map,
.directions-text,
.links-list {
  margin-bottom: 18px;
}
.embedded-map img {
  border-radius: 10px;
  box-shadow: 0 4px 18px 0 rgba(21,66,115,0.10);
}

/* --- FOOTER --- */
footer {
  background: var(--primary);
  color: #fff;
  padding: 36px 0 16px 0;
  font-size: 1rem;
  margin-top: 54px;
}
footer .container {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 28px;
  justify-content: space-between;
}
.footer-nav {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}
.footer-nav a {
  color: #fff;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 6px;
  font-size: .98rem;
  transition: background 0.12s,color 0.12s;
}
.footer-nav a:hover {
  background: var(--accent);
  color: #154273;
}
.footer-contact p {
  margin-bottom: 5px;
  font-size: .93rem;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .98rem;
  margin-top: 8px;
  color: #FFD762;
}
.footer-brand img {
  height: 36px;
  width: auto;
  margin-right: 4px;
}

/* --- COOKIE CONSENT BANNER --- */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  background: #fff;
  color: #154273;
  border-top: 4px solid var(--accent);
  box-shadow: 0 -3px 18px 0 rgba(21,66,115,.12);
  z-index: 1002;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 38px;
  padding: 26px 14px 21px 14px;
  font-size: 1.03rem;
  animation: slideUp 0.6s cubic-bezier(.66,.12,.20,1.11);
}
@keyframes slideUp {
  from { transform: translateY(120%); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.cookie-banner .cookie-buttons {
  display: flex;
  gap: 18px;
}
.cookie-banner button {
  border-radius: 999px;
  padding: 10px 22px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: bold;
  font-size: 1rem;
  background: var(--accent);
  color: #154273;
  border: none;
  margin-left: 2px;
  transition: background 0.13s, color 0.13s, box-shadow 0.12s;
  box-shadow: 0 2px 8px 0 rgba(248,156,28,.10);
}
.cookie-banner button:hover, .cookie-banner button:focus {
  background: #FFD762;
  color: #154273;
}
.cookie-banner button.reject {
  background: var(--danger);
  color: #fff;
}
.cookie-banner button.reject:hover, .cookie-banner button.reject:focus {
  background: #b71c1c;
  color: #ffd762;
}
.cookie-banner button.settings {
  background: #ECEFF1;
  color: var(--primary);
}
.cookie-banner button.settings:hover, .cookie-banner button.settings:focus {
  background: #FFD762;
  color: var(--primary);
}

/* --- COOKIE MODAL --- */
.cookie-modal {
  position: fixed;
  left: 0; top: 0; bottom: 0; right: 0;
  background: rgba(21,66,115,.86);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  opacity: 1;
  transition: opacity 0.21s;
  animation: fadeInModal 0.4s;
}
@keyframes fadeInModal {
  from { opacity: 0; }
  to { opacity: 1; }
}
.cookie-modal-content {
  background: #fff;
  color: #154273;
  padding: 38px 34px 28px 34px;
  border-radius: 18px;
  box-shadow: 0 10px 32px 0 rgba(21,66,115,.22);
  min-width: 320px;
  max-width: 94vw;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-start;
  position: relative;
  animation: modalDrop 0.4s cubic-bezier(.87,.09,.18,1.12);
}
@keyframes modalDrop {
  0% { transform: translateY(-40px); opacity: 0; }
  100% { transform: translateY(0); opacity: 1; }
}
.cookie-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: none;
  font-size: 1.8rem;
  color: #154273;
  border-radius: 50%;
  padding: 4px 8px;
  cursor: pointer;
  transition: background 0.13s, color 0.13s;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  background: #FFD762;
  color: #F89C1C;
}
.cookie-modal h2 {
  color: var(--primary);
  font-size: 1.34rem;
  font-family: 'Montserrat',Arial,sans-serif;
  margin-bottom: 4px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 10px;
}
.cookie-category-label {
  font-weight: bold;
}
.cookie-category-toggle input[type="checkbox"] {
  appearance: none;
  width: 38px;
  height: 20px;
  background: #E0E0E0;
  border-radius: 14px;
  position: relative;
  outline: none;
  cursor: pointer;
  transition: background 0.14s;
}
.cookie-category-toggle input[type="checkbox"]:checked {
  background: var(--accent);
}
.cookie-category-toggle input[type="checkbox"]::after {
  content: '';
  width: 16px;
  height: 16px;
  background: #fff;
  border-radius: 50%;
  position: absolute;
  top: 2px;
  left: 2px;
  box-shadow: 0 2px 8px rgba(21,66,115,.11);
  transition: left 0.14s;
}
.cookie-category-toggle input[type="checkbox"]:checked::after {
  left: 20px;
}
.cookie-category input[disabled],
.cookie-category-toggle input[disabled] {
  opacity: 0.4;
  pointer-events: none;
}

.cookie-modal-actions {
  display: flex;
  gap: 16px;
  margin-top: 14px;
}
.cookie-modal-actions button {
  border-radius: 999px;
  padding: 10px 22px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: bold;
  font-size: 1rem;
  background: var(--accent);
  color: #154273;
  border: none;
  transition: background 0.13s, color 0.13s, box-shadow 0.12s;
  box-shadow: 0 2px 8px 0 rgba(248,156,28,.10);
}
.cookie-modal-actions button.reject {
  background: var(--danger);
  color: #fff;
}
.cookie-modal-actions button.settings {
  background: #ECEFF1;
  color: var(--primary);
}
.cookie-modal-actions button:hover, .cookie-modal-actions button:focus {
  background: #FFD762;
  color: #154273;
}
.cookie-modal-actions button.reject:hover, .cookie-modal-actions button.reject:focus {
  background: #b71c1c;
  color: #ffd762;
}

/* --- RESPONSIVE DESIGN --- */
@media (max-width: 1050px) {
  .feature-grid,
  .testimonial-slider,
  .card-container,
  .content-grid {
    flex-direction: column;
    gap: 18px;
    align-items: stretch;
  }
  .section {
    padding-left: 10px;
    padding-right: 10px;
  }
}
@media (max-width: 900px) {
  header .container, footer .container {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
  .feature-grid,
  .testimonial-slider,
  .card-container,
  .content-grid {
    gap: 16px;
  }
}
@media (max-width: 768px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
  header .container {
    flex-direction: row;
    align-items: center;
    min-height: 62px;
    gap: 14px;
  }
  .section {
    margin-bottom: 36px;
    padding: 26px 8px;
  }
  h1 {
    font-size: 2rem;
  }
  h2 {
    font-size: 1.36rem;
  }
  .feature-item, .testimonial-card, .card {
    min-width: 90vw;
    max-width: 100vw;
    padding-left: 12px;
    padding-right: 12px;
  }
  .feature-item img {
    width: 38px; height: 38px;
  }
  .testimonial-slider {
    gap: 12px;
  }
  .content-wrapper, .text-section {
    gap: 12px;
    margin-top: 15px;
    margin-bottom: 16px;
  }
  table, th, td {
    font-size: .95rem;
    padding: 10px 5px;
  }
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    font-size: .97rem;
    padding-top: 16px; padding-bottom: 16px;
  }
  .footer-brand img {
    height: 28px;
  }
}
@media (max-width: 520px) {
  .container {
    padding-left: 5px;
    padding-right: 5px;
  }
  .feature-item, .testimonial-card, .card {
    padding-left: 4px;
    padding-right: 4px;
  }
}
@media (max-width: 380px) {
  .cookie-modal-content {
    padding: 12px 6px;
    min-width: unset;
    font-size: .9rem;
  }
  .footer-brand img {
    height: 20px;
  }
}
/* --- SCROLLBARS --- */
body, * {
  scrollbar-color: var(--accent) var(--secondary);
  scrollbar-width: thin;
}
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-thumb {
  background: var(--accent);
  border-radius: 8px;
}
::-webkit-scrollbar-track {
  background: var(--secondary);
}

/* --- MICRO-INTERACTIONS --- */
.button-primary, .main-nav a, .mobile-nav a, .cookie-banner button, .cookie-modal-actions button, .feature-item, .testimonial-card, .mobile-menu-toggle {
  transition: background 0.17s, color 0.17s, box-shadow 0.17s, transform 0.17s;
}

/* --- VISUAL ELEMENTS & HIERARCHY --- */
.section {
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 4px 22px 0 rgba(21,66,115,.05);
}

/* --- SHADOWS & RADIUS FOR CARDS --- */
.feature-item, .card, .testimonial-card {
  box-shadow: 0 4px 18px 0 rgba(21,66,115,.06);
  border: 2px solid #F2F5F7;
  background: #fff;
}

/* --- ACCESSIBILITY --- */
.testimonial-card {
  color: #273a53;
  background: #fff;
}
.testimonial-card span {
  font-style: italic;
  color: #154273;
  font-size: .97em;
  font-weight: 600;
  opacity: .82;
}

/* --- TEXT-LINKS --- */
.text-section a:not(.button-primary) {
  border-bottom: 2px solid var(--accent);
  color: #154273;
  font-weight: bold;
  transition: color 0.13s, border 0.14s;
}
.text-section a:not(.button-primary):hover, .text-section a:not(.button-primary):focus {
  color: var(--accent);
  border-bottom-color: #154273;
}

/* --- LIST ICON/STYLE FOR TICKS --- */
ul li:before {
  content: '';
  display: inline-block;
  width: 13px; height: 13px;
  margin-right: 8px;
  vertical-align: middle;
  border-radius: 50%;
  background: var(--accent);
}
ul li {
  list-style: none;
  margin-bottom: 9px;
  padding-left: 0;
  color: #273a53;
}
ul li strong {
  color: #154273;
}
.service-list li span {
  color: var(--accent);
  font-weight: bold;
  margin-left: 7px;
}

/**** Accessibility: Remove dot for unicode tick items ****/
ul li:has(> .fa, > i, > span) {
  background: none;
  padding-left: 0;
}

/* --- FOCUS VISIBLE --- */
:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 1px;
}

/* -- Hide visually but keep for screen readers -- */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}
