/* LodgingPro Scandinavian Clean CSS Theme */

/* =========================
   CSS RESET & BASE
   ========================= */
html {
  box-sizing: border-box;
  font-size: 16px;
  scroll-behavior: smooth;
}
*, *:before, *:after {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
}
body {
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  color: #22334C;
  background: #F6F7F9;
  font-size: 1rem;
  line-height: 1.7;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img {
  max-width: 100%;
  display: block;
  height: auto;
}
input, button, textarea, select {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  background: none;
  border: none;
  outline: none;
  box-shadow: none;
  appearance: none;
}
a {
  color: #22334C;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #60B2A7;
}

.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px;
}

section, .section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 4px 16px rgba(34,51,76,0.06);
  transition: box-shadow 0.2s;
}
main > section:last-child, .section:last-child {
  margin-bottom: 0;
}

.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

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

strong {
  font-weight: 600;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  color: #22334C;
  margin-bottom: 16px;
  line-height: 1.1;
}
h1 { font-size: 2.5rem; margin-top: 0; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }
h5 { font-size: 1.125rem; }
h6 { font-size: 1rem; }

p {
  font-size: 1rem;
  margin-bottom: 14px;
  color: #22334C;
}

/* =========================
   HEADER & NAVBAR
   ========================= */
header {
  background: #fff;
  box-shadow: 0 2px 8px rgba(34,51,76,0.06);
  position: sticky;
  top: 0;
  z-index: 30;
}
header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 70px;
}
header img {
  height: 38px;
}
header nav {
  display: flex;
  align-items: center;
  gap: 24px;
}
header nav a {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 500;
  font-size: 1rem;
  padding: 8px 0;
  border-radius: 6px;
  color: #22334C;
  transition: color 0.2s, background 0.2s;
}
header nav a:hover, header nav a:focus {
  color: #60B2A7;
  background: #F5FCFA;
}
.cta-primary {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  background: #60B2A7;
  color: #fff !important;
  border-radius: 8px;
  font-weight: 700;
  padding: 10px 28px;
  margin-left: 14px;
  font-size: 1rem;
  box-shadow: 0 2px 8px rgba(96,178,167,0.05);
  transition: background 0.23s, color 0.2s, box-shadow 0.2s;
  cursor: pointer;
  border: none;
  display: inline-block;
  letter-spacing: 0.02em;
}
.cta-primary:hover, .cta-primary:focus {
  background: #45a194;
  color: #fff;
  box-shadow: 0 4px 16px rgba(96,178,167,0.13);
}
.cta-secondary {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  background: transparent;
  color: #22334C;
  border: 2px solid #60B2A7;
  border-radius: 8px;
  padding: 10px 28px;
  margin-left: 0;
  font-size: 1rem;
  font-weight: 600;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
  cursor: pointer;
  box-shadow: none;
  letter-spacing: 0.01em;
}
.cta-secondary:hover, .cta-secondary:focus {
  background: #60B2A7;
  color: #fff;
  border-color: #60B2A7;
}

/* ===============
   MOBILE MENU
   =============== */
.mobile-menu-toggle {
  display: none;
  font-size: 2rem;
  background: none;
  border: none;
  color: #22334C;
  cursor: pointer;
  padding: 5px 12px;
  margin-left: 18px;
  border-radius: 6px;
  transition: background 0.18s;
  z-index: 88;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: #F6F7F9;
}

.mobile-menu {
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100vw;
  background: rgba(34,51,76, 0.9);
  transform: translateX(-100%);
  transition: transform 0.4s cubic-bezier(0.7,0,0.3,1);
  z-index: 140;
  pointer-events: none;
  opacity: 0;
}
.mobile-menu.active {
  transform: translateX(0);
  pointer-events: auto;
  opacity: 1;
}
.mobile-menu-close {
  position: absolute;
  top: 22px;
  right: 22px;
  background: #fff;
  color: #22334C;
  border: none;
  font-size: 2rem;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(34,51,76,0.10);
  z-index: 2;
  transition: background 0.19s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #F0F0F3;
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 28px;
  margin-top: 90px;
  margin-left: 40px;
}
.mobile-nav a {
  font-size: 1.2rem;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 600;
  color: #fff;
  padding: 12px 0;
  width: 100%;
  transition: color 0.2s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: #60B2A7;
}


/* Hide Desktop Nav on Mobile, Show Hamburger */
@media (max-width: 1000px) {
  header nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: inline-block;
  }
}
@media (min-width: 1001px) {
  .mobile-menu {
    display: none !important;
  }
}

/* =========================
   HERO BANNER (index)
   ========================= */
.hero {
  background: #F6F7F9;
  border-radius: 28px;
  min-height: 340px;
  display: flex;
  align-items: center;
  margin-bottom: 60px;
  box-shadow: 0 8px 32px rgba(34,51,76,0.045);
}
.hero h1 {
  font-size: 2.6rem;
  color: #22334C;
  font-weight: 700;
}
.hero p {
  font-size: 1.17rem;
  margin-bottom: 20px;
}
.hero .cta-primary {
  margin-top: 18px;
  font-size: 1.07rem;
}

/* =========================
   FEATURES, SERVICES, VALUES (Summary Cards/lists)
   ========================= */
.features ul, .values ul, .services ul, .faq ul, .case-studies ul, .blog-list ul {
  list-style: none;
  padding-left: 0;
  margin-left: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.features li, .values li, .services li, .faq li, .case-studies li, .blog-list li {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  background: #F5FCFA;
  border-radius: 14px;
  padding: 20px 18px;
  color: #22334C;
  font-size: 1rem;
  box-shadow: 0 2px 8px rgba(96,178,167,0.06);
  min-height: 68px;
  transition: box-shadow 0.18s;
}
.features li img, .services li img, .process li img, .case-studies li img {
  width: 38px;
  height: 38px;
  flex-shrink: 0;
}
.features li:hover, .services li:hover, .blog-list li:hover {
  box-shadow: 0 4px 18px rgba(96,178,167,0.09);
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* =========================
   CARDS & TESTIMONIALS
   ========================= */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card, .testimonial-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 10px rgba(34,51,76,0.08);
  margin-bottom: 20px;
  position: relative;
  padding: 32px 26px 26px 26px;
  min-width: 260px;
  max-width: 480px;
  flex: 1 1 320px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: box-shadow 0.18s;
}
.testimonial-card {
  background: #F5FCFA;
  color: #22334C;
  box-shadow: 0 4px 16px rgba(96,178,167,0.10);
  border-left: 5px solid #60B2A7;
  align-items: flex-start;
  gap: 20px;
  padding: 20px 30px;
  margin-bottom: 20px;
  width: 100%;
  max-width: 680px;
}
.testimonial-card p {
  font-size: 1.15rem;
  color: #22334C;
  margin-bottom: 0.7em;
  margin-right: 0;
}
.testimonial-card span:last-child {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.25rem;
  color: #60B2A7;
  font-weight: 700;
}
.testimonial-card span {
  color: #22334C;
  font-size: 1rem;
  opacity: 0.7;
}

.card:hover, .testimonial-card:hover {
  box-shadow: 0 10px 24px rgba(34,51,76,0.14);
}

.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}

/* =============================
   PROCESS, FAQ, CASE STUDIES
   ============================= */
.process ol {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.process li {
  display: flex;
  align-items: center;
  gap: 18px;
  background: #F6F7F9;
  border-radius: 14px;
  padding: 20px 24px;
  box-shadow: 0 2px 8px rgba(34,51,76,0.04);
  font-size: 1.06rem;
  margin-bottom: 0;
  flex: 1 1 270px;
  min-width: 200px;
  max-width: 340px;
}

.faq ul {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.faq li {
  background: #F8FAFB;
  border-left: 4px solid #60B2A7;
  border-radius: 11px;
  padding: 18px 20px;
  color: #22334C;
  font-size: 1rem;
  margin-bottom: 0;
}
.faq strong { font-weight: 600; }


/* =========================
   CTA SECTIONS
   ========================= */
.cta {
  background: #60B2A7;
  color: #fff;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 3px 14px rgba(96,178,167,0.11);
  padding-top: 36px;
  padding-bottom: 36px;
  margin-bottom: 0;
}
.cta h3, .cta p {
  color: #fff;
}
.cta a.cta-primary {
  margin-top: 22px;
  box-shadow: 0 2px 8px rgba(255,255,255,0.07);
  background: #fff;
  color: #60B2A7 !important;
  border: 2px solid #fff;
}
.cta a.cta-primary:hover, .cta a.cta-primary:focus {
  background: #F6F7F9;
  color: #60B2A7;
  border: 2px solid #F5FCFA;
}


/* =========================
   BLOG & CASE STUDIES
   ========================= */
.blog-list li {
  background: #fff;
  border: 1px solid #F5FCFA;
  border-radius: 14px;
  box-shadow: 0 2px 10px rgba(225,232,235,0.13);
  transition: box-shadow 0.18s, border 0.18s;
  padding: 24px 20px 16px 20px;
  margin-bottom: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.blog-list li h3 {
  margin-bottom: 8px;
  font-size: 1.2rem;
  color: #22334C;
}
.blog-list li a {
  color: #60B2A7;
  font-weight: 500;
  font-size: 1rem;
  margin-top: 12px;
}
.blog-list li a:hover { text-decoration: underline; }


/* =========================
   FOOTER
   ========================= */
footer {
  background: #fff;
  border-top: 2px solid #F0F0F3;
  padding: 30px 0 15px 0;
  font-size: 0.96rem;
  color: #22334C;
  margin-top: 40px;
}
footer .container {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: flex-start;
  justify-content: space-between;
  flex-direction: row;
}
.footer-brand img {
  height: 55px;
  margin-bottom: 8px;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.footer-nav a {
  color: #22334C;
  text-decoration: none;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  font-weight: 500;
  opacity: 0.88;
  transition: color 0.17s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: #60B2A7;
}
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 10px;
  color: #22334C;
  margin-top: 10px;
}
.footer-contact span {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1rem;
}
.footer-contact img {
  width: 18px;
  height: 18px;
}

/* =========================
   CONTACT DETAILS BOX
   ========================= */
.contact-details p, .footer-contact span {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1rem;
}
.contact-details img {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}

/* =========================
   POLICY PAGES
   ========================= */
.policy {
  background: #fff;
  border-radius: 16px;
  padding: 38px 22px;
  margin-bottom: 0;
  font-size: 1rem;
  color: #22334C;
  box-shadow: 0 2px 10px rgba(225,232,235,0.09);
}
.policy h1 {
  font-size: 2rem;
}
.policy p, .policy strong, .policy ul, .policy li, .policy br {
  font-size: 1rem;
  color: #22334C;
}

/* ===============
   THANK YOU
   =============== */
.thanks {
  background: #F6F7F9;
  border-radius: 22px;
  box-shadow: 0 6px 20px rgba(34,51,76,0.09);
  text-align: center;
}
.thanks h1 {
  font-size: 2rem;
  margin-bottom: 1.2em;
}
.thanks a.cta-primary {
  margin-top: 20px;
  color: #60B2A7;
  background: #fff;
  border: 2px solid #60B2A7;
}

/* =========================
   COOKIE CONSENT BANNER
   ========================= */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; width: 100vw;
  background: #fff;
  box-shadow: 0 -8px 32px rgba(34,51,76,0.08);
  z-index: 2000;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 26px 24px 22px 24px;
  font-size: 1rem;
  color: #22334C;
  transition: transform 0.35s;
}
.cookie-banner.hidden {
  transform: translateY(120%);
  pointer-events: none;
  opacity: 0;
}
.cookie-banner .cookie-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 10px;
}
.cookie-banner button {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  padding: 8px 24px;
  border-radius: 7px;
  font-size: 0.98rem;
  border: none;
  cursor: pointer;
  font-weight: 600;
  margin-left: 0;
  transition: background 0.16s, color 0.16s;
}
.cookie-banner .cookie-accept {
  background: #60B2A7;
  color: #fff;
  border: 2px solid #60B2A7;
}
.cookie-banner .cookie-accept:hover, .cookie-banner .cookie-accept:focus {
  background: #45a194;
}
.cookie-banner .cookie-reject {
  background: #fff;
  color: #60B2A7;
  border: 2px solid #60B2A7;
}
.cookie-banner .cookie-reject:hover, .cookie-banner .cookie-reject:focus {
  background: #F8FAFB;
  color: #22334C;
}
.cookie-banner .cookie-settings {
  background: #F8FAFB;
  color: #22334C;
  border: 2px solid #F0F0F0;
}
.cookie-banner .cookie-settings:hover, .cookie-banner .cookie-settings:focus {
  background: #60B2A7;
  color: #fff;
}

/* =========================
   COOKIE PREFERENCES MODAL
   ========================= */
.cookie-modal-bg {
  position: fixed;
  z-index: 2200;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  background: rgba(34,51,76,0.37);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  transition: opacity 0.25s;
}
.cookie-modal-bg.hidden {
  opacity: 0;
  pointer-events: none;
}
.cookie-modal {
  background: #fff;
  border-radius: 13px;
  padding: 34px 24px 22px 24px;
  min-width: 325px;
  width: 90vw;
  max-width: 400px;
  color: #22334C;
  box-shadow: 0 10px 48px rgba(34,51,76,0.13);
  position: relative;
  animation: cookieModalSlideIn 0.34s cubic-bezier(0.7,0,0.3,1);
}
@keyframes cookieModalSlideIn {
  from {transform: translateY(60px) scale(0.97); opacity:0;}
  to {transform: translateY(0) scale(1); opacity:1;}
}
.cookie-modal h3 {
  font-size: 1.18rem;
  color: #22334C;
  margin-bottom: 18px;
}
.cookie-modal .cookie-pref-group {
  margin-bottom: 14px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.cookie-modal .cookie-essential {
  color: #aaa;
  font-style: italic;
}
.cookie-modal .cookie-switch {
  margin-left: auto;
}
.cookie-modal .cookie-modal-actions {
  display: flex;
  gap: 16px;
  padding-top: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cookie-modal button {
  background: #60B2A7;
  color: #fff;
  border-radius: 6px;
  padding: 8px 24px;
  border: none;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.18s;
}
.cookie-modal button.secondary {
  background: #fff;
  color: #22334C;
  border: 2px solid #60B2A7;
}
.cookie-modal button.secondary:hover, .cookie-modal button.secondary:focus {
  background: #60B2A7;
  color: #fff;
}
.cookie-modal .cookie-close-modal {
  position: absolute;
  top: 10px;
  right: 10px;
  background: none;
  border: none;
  color: #22334C;
  font-size: 1.4rem;
  cursor: pointer;
  transition: color 0.16s;
}
.cookie-modal .cookie-close-modal:hover, .cookie-modal .cookie-close-modal:focus {
  color: #60B2A7;
}

/* Cookie Switch Toggle */
.cookie-switch {
  --size: 24px;
  position: relative;
  width: 46px;
  height: var(--size);
  display: inline-block;
}
.cookie-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}
.cookie-switch .slider {
  position: absolute;
  cursor: pointer;
  background: #F0F0F3;
  border-radius: 24px;
  top: 0; left: 0; right: 0; bottom: 0;
  transition: background 0.2s;
}
.cookie-switch input:checked + .slider {
  background: #60B2A7;
}
.cookie-switch .slider:before {
  content: "";
  position: absolute;
  left: 4px;
  top: 4px;
  width: 16px;
  height: 16px;
  background: #fff;
  border-radius: 50%;
  transition: transform 0.19s;
}
.cookie-switch input:checked + .slider:before {
  transform: translateX(22px);
}

/* =========================
   RESPONSIVE LAYOUT & FLEX PATTERNS
   ========================= */
@media (max-width: 900px) {
  .container {
    max-width: 98vw;
    padding: 0 10px;
  }
  .card, .testimonial-card, .process li {
    min-width: 180px;
    max-width: 100%;
    flex: 1 1 100%;
  }
  section, .section {
    padding: 28px 7px;
    border-radius: 15px;
    margin-bottom: 38px;
  }
}
@media (max-width: 768px) {
  .content-wrapper, .content-grid {
    gap: 16px;
  }
  .section, section {
    padding: 20px 5px;
    border-radius: 10px;
    margin-bottom: 30px;
  }
  .features ul, .values ul, .services ul, .faq ul, .blog-list ul, .case-studies ul {
    gap: 12px;
  }
  .features li, .values li, .services li, .faq li, .case-studies li, .blog-list li {
    flex-direction: column;
    gap: 10px;
    padding: 14px 10px;
    font-size: 0.98rem;
    border-radius: 9px;
  }
  .process ol, .card-container, .content-grid {
    flex-direction: column;
    gap: 8px;
  }
  .process li {
    min-width: 140px;
    max-width: 100%;
    flex: 1 1 100%;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    padding: 11px 8px;
  }
  .testimonial-card {
    padding: 14px 10px;
    border-radius: 9px;
    min-width: 120px;
    max-width: 100%;
  }
  .text-image-section {
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
  }
  .faq {
    padding: 0 6px;
  }
  footer .container {
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
  }
}
@media (max-width: 560px) {
  html { font-size: 15px; }
  .hero h1, .policy h1, .thanks h1 {
    font-size: 1.35rem;
  }
  .cta {
    padding: 22px 4px;
    border-radius: 12px;
  }
  .card, .testimonial-card {
    padding: 13px 6px;
    border-radius: 8px;
    font-size: 0.95rem;
  }
  .cookie-banner {
    flex-direction: column;
    gap: 10px;
    padding: 15px 6px;
    font-size: 0.95rem;
  }
  .cookie-banner .cookie-actions {
    gap: 7px;
  }
  .cookie-modal {
    min-width: 0;
    width: 99vw;
    padding: 18px 3vw;
  }
}

/* =========================
   MICRO-INTERACTIONS & EFFECTS
   ========================= */
.cta-primary, .cta-secondary, .cookie-banner button, .cookie-modal button {
  transition: background 0.20s, color 0.20s, border-color 0.20s, box-shadow 0.20s;
}
nav a, .footer-nav a, .blog-list li a {
  transition: color 0.19s;
}
.card, .testimonial-card, .blog-list li, .features li {
  transition: box-shadow 0.21s, border 0.15s;
}

/* =========================
   UTILITIES/HELPERS
   ========================= */
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
.align-center {
  align-items: center !important;
}
.align-start {
  align-items: flex-start !important;
}
.justify-between {
  justify-content: space-between !important;
}
.gap-20 {
  gap: 20px !important;
}

/* Selection Color */
::selection {
  background: #60B2A7;
  color: #fff;
}

/* ===============
   END CSS
   =============== */
