/* ================================================
   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, menu, 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;
  vertical-align: baseline;
  background: transparent;
  box-sizing: border-box;
}

html {
  font-size: 100%;
  box-sizing: border-box;
  scroll-behavior: smooth;
}
*, *:before, *:after {
  box-sizing: inherit;
}
body {
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  background: #fff;
  color: #1A2E40;
  font-size: 16px;
  line-height: 1.7;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}
img {
  max-width: 100%;
  display: block;
  height: auto;
  border: 0;
}
a {
  color: #1A2E40;
  text-decoration: none;
  transition: color 0.16s cubic-bezier(.45,.1,.1,1);
}
a:focus { outline: 2px dashed #1A2E40; outline-offset: 2px; }

ul, ol {
  padding-left: 1.4em;
  margin: 0 0 1.5em 0;
}
li {
  margin-bottom: 8px;
}

button {
  font-family: inherit;
  font-size: 16px;
  background: none;
  border: none;
  cursor: pointer;
  outline: none;
  transition: background 0.2s, color 0.2s;
}

/* ================================================
   FONTS (Brand)
   ================================================ */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@700&family=Open+Sans:wght@400;600&display=swap');

h1, h2, h3, h4, .logo {
  font-family: 'Montserrat', 'Open Sans', Arial, sans-serif;
  font-weight: 700;
  letter-spacing: 0.01em;
  color: #1A2E40;
}
h1 { font-size: 2.5rem; margin-bottom: 18px; line-height: 1.16; }
h2 { font-size: 2rem; margin-bottom: 16px; line-height: 1.24; }
h3 { font-size: 1.3rem; margin-bottom: 10px; line-height: 1.32; }
.subheadline { font-size: 1.125rem; color: #595960; font-weight: 400; margin-bottom: 22px; }

/* ================================================
   GLOBAL LAYOUT & CONTAINER
   ================================================ */
.container {
  width: 100%;
  max-width: 1100px;
  padding: 0 20px;
  margin: 0 auto;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

main {
  padding-bottom: 80px; /* for cookie banner room */
}

/* ================================================
   HEADER / NAVIGATION (DESKTOP)
   ================================================ */
header {
  background: #fff;
  border-bottom: 1px solid #F6F6F9;
  position: sticky;
  top: 0; left: 0; right: 0;
  z-index: 100;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
}
.logo {
  display: flex;
  align-items: center;
  height: 48px;
  margin-right: 30px;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}
.main-nav a {
  font-family: 'Montserrat', 'Open Sans', Arial, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  padding: 6px 6px;
  border-radius: 5px;
  transition: background 0.2s, color 0.2s;
}
.main-nav a:hover, .main-nav a:focus {
  background: #F6F6F9;
  color: #EC994B;
}

/* Hide burger by default (desktop) */
.mobile-menu-toggle {
  display: none;
  margin-left: 28px;
  font-size: 2rem;
  background: none;
  color: #1A2E40;
  border: none;
  border-radius: 7px;
  padding: 8px;
  transition: background 0.15s;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: #F6F6F9;
}

/* ================================================
   MOBILE NAVIGATION OVERLAY & MOBILE NAV
   ================================================ */
.mobile-menu {
  position: fixed;
  top: 0; right: 0; bottom: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(26,46,64, 0.97);
  z-index: 1200;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: flex-start;
  padding-top: 0;
  transform: translateX(100%);
  transition: transform 0.3s cubic-bezier(.66,.06,.22,1);
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: none;
  color: #fff;
  font-size: 2.2rem;
  padding: 16px 18px 18px 16px;
  border: none;
  align-self: flex-end;
  margin: 16px 18px 0 0;
  border-radius: 5px;
  cursor: pointer;
  transition: background 0.17s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: rgba(236,153,75,0.12);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin: 50px 0 0 0;
  align-items: flex-end;
  padding: 0 36px;
}
.mobile-nav a {
  color: #fff;
  font-family: 'Montserrat', 'Open Sans', sans-serif;
  font-size: 1.33rem;
  padding: 5px 0;
  border-radius: 6px;
  min-width: 160px;
  text-align: right;
  transition: background 0.16s, color 0.16s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #EC994B;
  color: #1A2E40;
}

/* ================================================
   HERO SECTION
   ================================================ */
.hero {
  background: #F6F6F9;
  padding: 60px 0 60px 0;
  margin-bottom: 60px;
}
.hero .container {
  display: flex;
  flex-direction: column;
  align-items: stretch;
}
.hero .content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
  padding: 0 0;
}

/* ================================================
   CTA BUTTONS
   ================================================ */
.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'Montserrat', 'Open Sans', Arial, sans-serif;
  font-weight: 600;
  text-align: center;
  font-size: 1.15rem;
  background: #EC994B;
  color: #fff;
  padding: 14px 32px;
  border-radius: 40px;
  border: none;
  outline: none;
  box-shadow: 0 2px 12px 0 rgba(236,153,75,0.07);
  cursor: pointer;
  transition: background 0.2s, color 0.19s, box-shadow 0.19s;
  margin-top: 10px;
}
.cta-button.primary {
  background: #EC994B;
  color: #fff;
}
.cta-button.secondary {
  background: #fff;
  border: 1px solid #EC994B;
  color: #EC994B;
}
.cta-button:hover, .cta-button:focus {
  background: #1A2E40;
  color: #fff;
  box-shadow: 0 6px 20px 0 rgba(26,46,64,0.09);
}

/* ================================================
   SECTION SPACING & FLEX LAYOUT PATTERNS
   ================================================ */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
}
.feature-grid, .card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 3px 28px 0 rgba(26,46,64,0.08);
  margin-bottom: 20px;
  position: relative;
  min-width: 220px;
  min-height: 120px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: box-shadow 0.21s cubic-bezier(.42,.17,.36,1);
}
.card:hover, .card:focus {
  box-shadow: 0 9px 44px 0 rgba(26,46,64,0.13);
}
.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: 20px 32px;
  margin-bottom: 20px;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 16px 0 rgba(26,46,64,0.10);
  border: 1px solid #F6F6F9;
  transition: box-shadow 0.19s cubic-bezier(.38,.12,.22,.97);
  color: #212634;
}
.testimonial-card:hover, .testimonial-card:focus {
  box-shadow: 0 9px 30px 0 rgba(236,153,75,0.10), 0 1.5px 2.5px 0 rgba(26,46,64,0.07);
}
.testimonial-meta {
  font-size: 1rem;
  color: #595960;
  font-family: 'Open Sans', Arial, sans-serif;
  font-weight: 600;
}

/* For features with icons */
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #F6F6F9;
  border-radius: 14px;
  padding: 24px 20px;
  min-width: 220px;
  flex: 1 1 220px;
  box-shadow: 0 2px 12px 0 rgba(26,46,64,0.06);
  transition: box-shadow 0.17s cubic-bezier(.41,.19,.18,.95);
}
.feature-item img {
  height: 40px;
  width: 40px;
}
.feature-item:hover, .feature-item:focus {
  box-shadow: 0 8px 32px 0 rgba(236,153,75,0.09);
}

.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 20px 0 0 0;
}
.tag {
  background: #EC994B;
  color: #fff;
  font-size: 0.93rem;
  padding: 4px 15px;
  border-radius: 17px;
  font-family: 'Montserrat', sans-serif;
  letter-spacing: 0.02em;
  font-weight: 600;
  margin-bottom: 6px;
}

/* ================================================
   CATEGORY, FILTERS, OPTIONS
   ================================================ */
.category-filters {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}
.category-filters ul {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  list-style: none;
  padding: 0;margin:0;
}
.category-filters li {
  padding: 2px 12px;
  background: #F6F6F9;
  border-radius: 12px;
  font-size: 0.95rem;
  color: #1A2E40;
  font-weight: 600;
  margin-bottom:0;
}
.sort-options {
  margin: 18px 0 0 0;
  font-size: 0.98rem;
  color: #818196;
}

/* ================================================
   SPECIAL/INFO BOXES
   ================================================ */
.map-placeholder {
  width: 100%;
  min-height: 110px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #F6F6F9;
  color: #818196;
  font-size: 1.1rem;
  border-radius: 10px;
  margin-top: 24px;
  border: 1px dashed #EC994B;
}

/* ================================================
   FOOTER
   ================================================ */
footer {
  background: #F6F6F9;
  padding: 44px 0 22px 0;
  border-top: 1px solid #F6F6F9;
  color: #1A2E40;
  font-size: 1rem;
}
.footer-main {
  display: flex;
  flex-wrap: wrap;
  gap: 36px;
  justify-content: space-between;
  align-items: flex-start;
}
.footer-logo {
  align-self: flex-start;
  padding-bottom: 10px;
}
.footer-logo img {
  height: 38px;
  width: auto;
}
.footer-nav, .footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 8px;
}
.footer-nav a, .footer-links a {
  color: #1A2E40;
  font-family: 'Montserrat', 'Open Sans', sans-serif;
  font-size: 1rem;
  padding: 2px 0;
  transition: color 0.18s;
}
.footer-nav a:hover, .footer-links a:hover, .footer-nav a:focus, .footer-links a:focus {
  color: #EC994B;
}
.footer-contact {
  font-size: 0.98rem;
  color: #333;
  margin-top: 2px;
  line-height: 1.8;
  max-width: 250px;
}
.footer-contact a {
  color: #EC994B;
  word-break: break-all;
}
.footer-social {
  display: flex;
  gap: 18px;
  align-items: center;
  margin-top: 4px;
}
.footer-social img {
  width: 28px;
  height: 28px;
  filter: grayscale(70%);
  transition: filter 0.19s;
  cursor: pointer;
}
.footer-social img:hover {
  filter: grayscale(0%) brightness(1.1);
}


/* ================================================
   COOKIE CONSENT BANNER & MODAL
   ================================================ */
.cookie-banner {
  position: fixed;
  left: 0; right: 0;
  bottom: 0;
  width: 100vw;
  background: #fff;
  border-top: 1.5px solid #F6F6F9;
  box-shadow: 0 -4px 24px rgba(26,46,64,0.06);
  z-index: 1500;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 22px 28px;
  gap: 16px;
  font-size: 1rem;
  transition: transform 0.26s cubic-bezier(.58,.1,.16,.99);
  transform: translateY(120%);
}
.cookie-banner.active {
  transform: translateY(0);
}
.cookie-banner-msg {
  flex: 2 1 0;
  color: #1A2E40;
}
.cookie-banner-buttons {
  display: flex;
  gap: 12px;
}
.cookie-btn {
  font-family: 'Montserrat', 'Open Sans', sans-serif;
  font-weight: 600;
  border: none;
  border-radius: 6px;
  padding: 9px 18px;
  font-size: 1rem;
  margin: 0 0;
  cursor: pointer;
  transition: background 0.16s, color 0.16s;
}
.cookie-btn.accept {
  background: #EC994B;
  color: #fff;
}
.cookie-btn.reject {
  background: #F6F6F9;
  color: #1A2E40;
}
.cookie-btn.settings {
  background: #fff;
  color: #1A2E40;
  border: 1.5px solid #F6F6F9;
}
.cookie-btn:hover, .cookie-btn:focus {
  background: #1A2E40;
  color: #fff;
}

/* Cookie preferences modal (centered overlay) */
.cookie-modal-backdrop {
  position: fixed;
  z-index: 1600;
  left: 0; right: 0; top: 0; bottom: 0;
  background: rgba(26,46,64,.38);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeIn .26s;
}
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
.cookie-modal {
  background: #fff;
  border-radius: 18px;
  padding: 36px 24px 28px 24px;
  box-shadow: 0 8px 42px rgba(26,46,64,0.13);
  min-width: 340px;
  max-width: 90vw;
  display: flex;
  flex-direction: column;
  gap: 22px;
  position: relative;
}
.cookie-modal h3 {
  font-size: 1.35rem;
  margin-bottom: 0;
}
.cookie-modal label {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-bottom: 12px;
  font-size: 1rem;
  font-family: 'Open Sans', sans-serif;
}
.cookie-modal input[type="checkbox"] {
  accent-color: #EC994B;
  width: 20px; height: 20px;
  cursor: pointer;
}
.cookie-modal .essential {
  font-weight: 600;
  color: #1A2E40;
}
.cookie-modal .close-cookie-modal {
  position: absolute;
  top: 13px; right: 13px;
  font-size: 1.45rem;
  color: #818196;
  background: none;
  border: none;
  cursor: pointer;
  padding: 2px 9px;
  border-radius: 3px;
  transition: background 0.15s;
}
.cookie-modal .close-cookie-modal:hover { background: #F6F6F9; }
.cookie-modal-actions {
  display: flex;
  gap: 14px;
  margin-top: 12px;
  justify-content: flex-end;
}

/* ================================================
   RESPONSIVE DESIGN (MOBILE-FIRST)
   ================================================ */
@media (max-width: 1050px) {
  .footer-main,
  .card-container,
  .feature-grid,
  .content-grid {
    flex-wrap: wrap;
    gap: 18px;
    justify-content: flex-start;
  }
  .feature-item,
  .card {
    min-width: 180px;
    padding: 20px;
  }
}
@media (max-width: 900px) {
  .footer-main {
    gap: 22px;
    flex-direction: column;
    align-items: flex-start;
  }
  .footer-contact {
    max-width: 100%;
  }
}
@media (max-width: 768px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.4rem; }
  .section,
  .hero,
  main { padding: 0 0 40px 0; }
  .hero { margin-bottom: 42px; padding-top: 36px; padding-bottom: 36px; }
  .container { padding: 0 11px; }
  .content-wrapper, .category-filters { gap: 18px; }
  .feature-grid, .card-container, .content-grid {
    gap: 14px;
  }
  .feature-item, .card {
    min-width: 100%;
    padding: 15px 13px;
  }
  .testimonial-card { padding: 15px 10px; }
  .text-image-section {
    flex-direction: column;
    gap: 18px;
  }
  .footer-logo img {
    height: 30px;
  }
  header .container {
    min-height: 60px;
    padding: 0 10px;
  }
  .main-nav { display: none; }
  .mobile-menu-toggle {
    display: inline-block;
    color: #1A2E40;
    font-size: 2rem;
  }
}
@media (max-width: 600px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    padding: 14px 12px;
    gap: 11px;
  }
  .footer-main {
    flex-direction: column;
    gap: 18px;
  }
  .testimonial-card { padding: 12px 5px; }
}
@media (max-width: 420px) {
  h1 { font-size: 1.33rem; }
  h2 { font-size: 1.09rem; }
  .cta-button { font-size: 1rem; padding: 10px 15px; }
}

/* ===============================
   MICRO-INTERACTIONS & TRANSITIONS
   =============================== */
.card, .feature-item, .testimonial-card,
.cta-button, .main-nav a, .mobile-nav a,
.cookie-banner, .cookie-btn {
  transition: box-shadow 0.18s, background 0.18s, color 0.18s, transform 0.16s;
}
.card:hover, .feature-item:hover, .testimonial-card:hover {
  transform: translateY(-3px) scale(1.007);
}
.cta-button:active, .cookie-btn:active {
  transform: scale(0.98);
}

/* ===============================
   PAGE-SPECIFIC / UTILS
   =============================== */
.service-steps ol,
.reservation-steps ol {
  margin-left: 1.3em;
  margin-bottom: 0.8em;
}
.service-icons, .service-descriptions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
  margin: 11px 0 0 0;
}
.service-icons img {
  width: 38px;
  height: 38px;
  background: #F6F6F9;
  border-radius: 10px;
}
.next-steps ul {
  margin-bottom: 1em;
}

/* Accessibility improvements */
:focus-visible {
  outline: 2px solid #EC994B;
  outline-offset: 2px;
}

/* Hide visually, keep accessible */
.sr-only {
  position: absolute;
  left: -9999px;
  width: 1px; height: 1px;
  overflow: hidden;
}
