/* ----------------------
   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;
}
body { line-height: 1; }
ol, ul { list-style: none; }
a { text-decoration: none; color: inherit; }
table { border-collapse: collapse; border-spacing: 0; }
img { max-width: 100%; height: auto; display: block; }
button, input, optgroup, select, textarea { font-family: inherit; font-size: 100%; line-height: 1.15; margin: 0; }
button::focus, input::focus, textarea::focus, select::focus { outline: none; box-shadow: 0 0 0 3px rgba(26,67,101,0.1); }

/* --------------
   ROOT TOKENS
---------------- */
:root {
  --primary: #111;
  --secondary: #222;
  --offwhite: #fafafa;
  --gray-1: #e5e6e7;
  --gray-2: #cccccc;
  --gray-3: #868686;
  --brand-blue: #1A4365;
  --brand-gold: #B88F46;
  --brand-accent: #F6F6F6;
  --shadow-sm: 0 2px 8px rgba(40,40,40,0.08);
  --shadow-md: 0 2px 24px rgba(34,36,38,0.12);
  --border-radius: 10px;
  --transition: all 0.18s cubic-bezier(.4,.23,.14,1);
  --font-display: 'Montserrat', Arial, Helvetica, sans-serif;
  --font-body: 'Open Sans', Arial, Helvetica, sans-serif;
}
html { font-size: 16px; }
body {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--primary);
  background: #fff;
  min-height: 100vh;
  letter-spacing: 0.01em;
}

/* --------------------------
   TYPOGRAPHY & HIERARCHY
--------------------------- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  color: var(--secondary);
  text-rendering: optimizeLegibility;
  font-weight: 700;
  line-height: 1.2;
}
h1 { font-size: 2.5rem; margin-bottom: 24px; letter-spacing: -0.01em; }
h2 { font-size: 2rem; margin-bottom: 20px; }
h3 { font-size: 1.35rem; margin-bottom: 1em; font-weight: 600; }
h4, h5, h6 { font-size: 1rem; margin-bottom: .75em; font-weight: 500; }
p, ul, ol, blockquote {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--primary);
  margin-bottom: 18px;
}
strong { font-weight: 700; color: var(--secondary); }
em, i { font-style: italic; }
blockquote {
  border-left: 4px solid var(--brand-gold);
  padding: 0 0 0 18px;
  color: var(--secondary);
  font-style: italic;
  background: var(--offwhite);
  margin-bottom: 12px;
}
cite { display: block; color: var(--gray-3); font-style: normal; margin-top: 6px; font-size: .97rem; }

.inline-link, a.inline-link {
  color: var(--brand-blue);
  border-bottom: 1px solid var(--brand-blue);
  transition: var(--transition);
}
.inline-link:hover, a.inline-link:hover {
  color: var(--secondary);
  border-bottom: 1px solid var(--secondary);
}

/* -----------------------
   LAYOUT containers
------------------------ */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
}

/* Flex utility classes from prompt */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: var(--offwhite);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-sm);
  margin-bottom: 20px;
  padding: 26px 22px;
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 260px;
  flex: 1 1 310px;
  transition: var(--transition), box-shadow .24s cubic-bezier(.22,.61,.36,1);
}
.card:hover {
  box-shadow: 0 4px 32px rgba(0,0,0,0.13);
  background: #f2f3f4;
}
.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;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #fff;
  border-left: 4px solid var(--brand-blue);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-sm);
  margin-bottom: 20px;
  min-width: 250px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* Responsive flex for grid-like lists */
.feature-grid,
.offer-listings,
.service-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-bottom: 24px;
}
.feature-grid li,
.offer-listings li,
.service-grid > div {
  background: var(--offwhite);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-sm);
  flex: 1 1 220px;
  padding: 24px 18px 20px 18px;
  margin-bottom: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: box-shadow .22s cubic-bezier(.24,.75,.38,1);
}
.feature-grid li:hover,
.offer-listings li:hover,
.service-grid > div:hover {
  box-shadow: var(--shadow-md);
}

/* Interactive cards spacing */
.feature-grid > li:not(:last-child),
.offer-listings > li:not(:last-child),
.service-grid > div:not(:last-child) {
  margin-right: 0;
}

/* --------------------------
   HERO / SPECIAL BLOCKS
--------------------------- */
.hero {
  padding: 60px 0 50px 0;
  background: linear-gradient(120deg, #f8f9fa 65%, #d8dadc 100%);
  box-shadow: 0 4px 32px rgba(0,0,0,0.10);
  margin-bottom: 40px;
}
.hero .content-wrapper {
  gap: 14px;
  align-items: flex-start;
}
.hero h1, .hero h2 {
  color: var(--primary);
  font-family: var(--font-display);
}

/* -------------
   HEADER
---------------- */
header {
  background: #fff;
  box-shadow: 0 2px 16px rgba(0,0,0,0.06);
  padding: 0;
  position: sticky;
  top: 0;
  z-index: 1100;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 74px;
}
.logo img { height: 42px; }
.main-nav {
  display: flex;
  align-items: center;
  gap: 20px;
}
.main-nav a {
  font-family: var(--font-display);
  font-size: 1.09rem;
  letter-spacing: 0.02em;
  font-weight: 500;
  padding: 7px 13px;
  border-radius: 6px;
  color: var(--secondary);
  transition: var(--transition);
}
.main-nav a:hover, .main-nav a:focus {
  background: var(--gray-1);
  color: var(--brand-blue);
}
.btn-primary, .btn-secondary {
  padding: 0.8em 2.2em;
  font-family: var(--font-display);
  font-size: 1.07rem;
  letter-spacing: 0.02em;
  border: none;
  border-radius: var(--border-radius);
  cursor: pointer;
  font-weight: 600;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  margin-left: 14px;
  display: inline-block;
  background: var(--secondary);
  color: #fff;
}
.btn-primary {
  background: var(--primary);
  color: #fff;
}
.btn-primary:hover, .btn-primary:focus {
  background: var(--brand-blue);
}
.btn-secondary {
  background: transparent;
  border: 2px solid var(--primary);
  color: var(--primary);
}
.btn-secondary:hover, .btn-secondary:focus {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 2.2rem;
  color: var(--brand-blue);
  cursor: pointer;
  margin-left: 16px;
  transition: color .18s;
}
.mobile-menu-toggle:hover { color: var(--secondary); }

/* ----------------------
   MOBILE BURGER MENU
----------------------- */
.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(255,255,255,0.98);
  z-index: 1400;
  transform: translateX(100%);
  transition: transform .32s cubic-bezier(.36,1.14,.71,1);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 34px 0 0 0;
  box-shadow: 0 2px 32px rgba(0,0,0,0.12);
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu-close {
  position: absolute;
  top: 28px; right: 28px;
  background: none;
  border: none;
  font-size: 2rem;
  color: var(--primary);
  cursor: pointer;
  z-index: 2;
  transition: color .18s;
}
.mobile-menu-close:hover { color: var(--brand-blue); }
.mobile-nav {
  display: flex;
  flex-direction: column;
  width: 100%;
  margin-top: 48px;
  gap: 0;
  align-items: flex-start;
}
.mobile-nav a {
  display: block;
  width: 100%;
  padding: 19px 32px;
  font-size: 1.25rem;
  border-bottom: 1px solid #ededed;
  font-family: var(--font-display);
  color: var(--secondary);
  transition: background .2s, color .18s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--gray-1);
  color: var(--brand-blue);
}

/* Hide nav + show burger on mobile */
@media (max-width: 990px) {
  .main-nav { display: none !important; }
  .mobile-menu-toggle { display: inline-block; }
  .btn-primary { margin-left: 3px; }
}

/* Hide burger and mobile menu by default on desktop */
@media (min-width: 991px) {
  .mobile-menu { display: none !important; }
  .mobile-menu-toggle { display: none !important; }
}

/* -----------------
   FOOTER
------------------ */
footer {
  background: #181A1E;
  color: #fff;
  margin-top: 60px;
  padding: 38px 0 28px 0;
}
footer p {
  color: white;
}
footer .container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: flex-start;
  justify-content: space-between;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-nav a {
  color: #fff;
  opacity: 0.92;
  font-size: .98rem;
  margin-bottom: 0;
  transition: color .18s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: var(--brand-gold);
}
.footer-contact {
  color: #bbb;
  font-size: .98rem;
  margin-bottom: 0;
  line-height: 1.5;
}
.footer-contact a { color: var(--brand-gold); transition: color .16s; }
.footer-contact a:hover { color: #fff; text-decoration: underline; }
.footer-logo img { height: 46px; filter: contrast(1.12) brightness(.95); }

/* -------------------
   ICON-LISTS, ETC.
--------------------- */
.icon-list ul {
  display: flex;
  flex-wrap: wrap;
  gap: 19px;
  margin-top: 12px;
}
.icon-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1.02rem;
  color: var(--primary);
}
.icon-list img { height: 22px; }

/* Address/map */
.address-details, .map, .opening-hours {
  margin-bottom: 14px;
  font-size: 1.05rem;
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.address-details img,
.map img { height: 18px; margin-right: 6px; display: inline-block; }

/* Tips for Travelers Block */
.tips-for-travelers {
  background: var(--offwhite);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-sm);
  padding: 22px 20px 18px 20px;
  margin-bottom: 22px;
}
.tips-for-travelers h3 { margin-top: 0; margin-bottom: 12px; }

/* Trust Points/Accessibility Statement */
.trust-points, .accessibility-statement {
  background: var(--gray-1);
  border-radius: var(--border-radius);
  padding: 16px 16px 9px 16px;
  margin-bottom: 10px;
  box-shadow: 0 1px 8px rgba(200,200,200,0.05);
}
.trust-points h3, .accessibility-statement h3 { font-size: 1.10rem; margin-bottom: 7px; }

/* Blog preview/Offer preview */
.blog-preview, .offers-preview {
  padding-top: 34px;
  padding-bottom: 32px;
}

/* Lists */
ul, ol { padding-left: 18px; margin-bottom: 18px; }
ul li, ol li {
  margin-bottom: 11px;
  font-size: 1.03rem;
  color: var(--primary);
  line-height: 1.6;
}
ul li::marker { color: var(--gray-3); font-size: 1rem; }

/* Buttons in lists */
ul li .btn-primary, ul li .btn-secondary { margin-top: 10px; margin-left: 0; }

/* Offer categories */
.offer-categories {
  margin-bottom: 24px;
}
.offer-categories ul {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.offer-categories li {
  background: #fff;
  border: 1px solid var(--gray-2);
  color: var(--secondary);
  border-radius: 7px;
  padding: 7px 14px;
  font-size: 0.99rem;
  margin-bottom: 0;
}

/* ----------------------
   COOKIE CONSENT BANNER
------------------------ */
.cookie-consent-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  width: 100vw;
  background: #212226;
  color: #fafafa;
  padding: 20px 18px 20px 18px;
  box-shadow: 0 -4px 14px rgba(0,0,0,0.11);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  transition: transform .3s cubic-bezier(.4,.23,.14,1);
  gap: 32px;
}
.cookie-consent-banner.hide {
  transform: translateY(110%);
}
.cookie-consent-banner .cookie-text {
  max-width: 660px;
  font-size: 1.01rem;
  color: #fafafa;
  margin-right: 16px;
}
.cookie-consent-banner .btn-primary,
.cookie-consent-banner .btn-secondary {
  margin-left: 10px;
  box-shadow: none;
}
.cookie-consent-banner .btn-settings {
  background: transparent;
  color: var(--brand-gold);
  border: none;
  padding: 0.8em 1.7em;
  font-size: 1rem;
  font-family: var(--font-display);
  font-weight: 600;
  border-radius: var(--border-radius);
  cursor: pointer;
  transition: color .17s, background .18s;
}
.cookie-consent-banner .btn-settings:hover,
.cookie-consent-banner .btn-settings:focus {
  background: var(--gray-1);
  color: var(--secondary);
}

/* Cookie modal */
.cookie-modal-backdrop {
  display: none;
  position: fixed;
  left:0; top:0; width:100vw; height:100vh;
  background: rgba(32,32,32,0.54);
  z-index: 2100;
  justify-content: center;
  align-items: center;
}
.cookie-modal-backdrop.open { display: flex; animation: fadeIn .25s cubic-bezier(.4,.23,.14,1); }
@keyframes fadeIn {
  from { opacity: 0; } to { opacity: 1; }
}
.cookie-modal {
  background: #fff;
  color: var(--primary);
  border-radius: var(--border-radius);
  width: min(98vw, 420px);
  box-shadow: 0 8px 48px rgba(0,0,0,0.14);
  padding: 32px 25px 26px 25px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
}
.cookie-modal h2 {
  color: var(--secondary);
  font-size: 1.20rem;
  font-family: var(--font-display);
  margin-bottom: 8px;
}
.cookie-modal .category {
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.cookie-modal .category label {
  font-weight: 500;
  font-size: 1rem;
  cursor: pointer;
}
.cookie-modal .switch {
  width: 48px; height: 28px;
  display: inline-flex;
  align-items: center;
}
.cookie-modal input[type=checkbox] {
  width: 0; height: 0;
  opacity: 0;
}
.cookie-modal .slider {
  background: var(--gray-2);
  border-radius: 14px;
  width: 48px; height: 28px;
  position: relative;
  transition: background .18s;
}
.cookie-modal input[type=checkbox]:checked + .slider {
  background: var(--brand-blue);
}
.cookie-modal .slider:before {
  content: '';
  position: absolute;
  left: 4px;
  top: 4px;
  width: 20px; height: 20px;
  background: #fff;
  border-radius: 50%;
  transition: transform .18s;
}
.cookie-modal input[type=checkbox]:checked + .slider:before {
  transform: translateX(20px);
}
.cookie-modal .category .desc {
  font-size: 0.99rem;
  color: var(--gray-3);
  margin-left: 7px;
}
.cookie-modal .close-modal {
  position: absolute;
  right: 18px; top: 18px;
  background: none;
  border: none;
  font-size: 1.6rem;
  color: var(--secondary);
  cursor: pointer;
  transition: color .16s;
  z-index: 2;
}
.cookie-modal .close-modal:hover { color: var(--brand-blue); }
.cookie-modal .modal-actions {
  display: flex;
  gap: 16px;
  margin-top: 12px;
  justify-content: flex-end;
}
.cookie-modal .btn-primary, .cookie-modal .btn-secondary {
  margin: 0;
}

/* --------------
   RESPONSIVE
----------------- */
@media (max-width: 1200px) {
  .container { max-width: 980px; }
}
@media (max-width: 990px) {
  .container { max-width: 740px; }
}
@media (max-width: 768px) {
  html { font-size: 15px; }
  .section { padding: 32px 6px; margin-bottom: 32px; }
  .hero { padding: 34px 0 20px 0; }
  .blog-preview, .offers-preview { padding-top: 16px; padding-bottom: 16px; }
  .container { padding-left: 8px; padding-right: 8px; }
  .card-container, .content-grid, .feature-grid, .offer-listings, .service-grid, .icon-list ul, .offer-categories ul, .footer-nav {
    flex-direction: column;
    gap: 16px;
  }
  .card, .feature-grid li, .offer-listings li, .service-grid > div {
    min-width: 100%;
    flex: 1 1 100%;
    padding: 18px 11px;
  }
  .testimonial-card {
    flex-direction: column;
    min-width: 99%;
    padding: 14px 9px;
    gap: 10px;
  }
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }
  header .container, footer .container {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
  .footer-nav { flex-direction: column; }
  .footer-logo img { height: 34px; }
}
@media (max-width: 480px) {
  html { font-size: 14px; }
  .btn-primary, .btn-secondary { font-size: 1rem; padding: 0.7em 1.3em; }
  .cookie-consent-banner { flex-direction: column; gap: 16px; }
  .cookie-consent-banner .cookie-text { margin-right: 0; }
  .cookie-modal { padding: 19px 7px 15px 7px; }
}

/* -----------------------------
   MICRO-INTERACTIONS/ANIMATION
-------------------------------- */
.btn-primary, .btn-secondary, .mobile-menu-toggle, .mobile-menu-close, .cookie-consent-banner .btn-settings, .cookie-modal .close-modal {
  transition: background .18s, color .19s, box-shadow .19s, border-color .19s, transform .18s;
}
.card, .testimonial-card, .feature-grid li, .service-grid > div {
  transition: box-shadow .19s, transform .18s;
}
.card:hover, .feature-grid li:hover, .service-grid > div:hover {
  transform: translateY(-2px) scale(1.013);
}
.btn-primary:active, .btn-secondary:active, .mobile-menu-toggle:active, .mobile-menu-close:active, .cookie-consent-banner .btn-settings:active, .cookie-modal .close-modal:active {
  transform: scale(0.96);
}

/* -------------
   A11Y
--------------- */
:focus-visible {
  outline: 2px solid var(--brand-blue);
  outline-offset: 1px;
}

/* -----------------------------
   PRINT ADJUSTMENTS
-------------------------------- */
@media print {
  * { background: #fff !important; color: #111 !important; box-shadow: none !important; }
  header, footer, .mobile-menu, .cookie-consent-banner, .cookie-modal-backdrop { display: none !important; }
}

/* -----------
   Z-INDEX
------------- */
header { z-index: 1100; }
.mobile-menu { z-index: 1400; }
.cookie-consent-banner { z-index: 2000; }
.cookie-modal-backdrop { z-index: 2100; }

/*
-----------------
 END OF FILE
-----------------
*/
