/* --- 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;
}
body {
  line-height: 1.5;
  font-family: 'Roboto', Arial, sans-serif;
  background: #181e25;
  color: #E0E7EF;
  min-height: 100vh;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: #A8C1D1;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #F8F6F2;
}
ul, ol {
  padding-left: 1.6em;
  margin-bottom: 20px;
}
strong {
  font-weight: 700;
  color: #F8F6F2;
}

/* --- BRAND TYPOGRAPHY --- */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Roboto', Arial, Helvetica, sans-serif;
  color: #F8F6F2;
  letter-spacing: 0.5px;
  font-weight: 800;
}
h1 { font-size: 2.5rem; line-height: 1.1; margin-bottom: 20px; }
h2 { font-size: 2rem; line-height: 1.2; margin-bottom: 18px; }
h3 { font-size: 1.3rem; margin-bottom: 10px; text-transform: uppercase; }
h4, h5, h6 { font-size: 1rem; margin-bottom: 8px; }

p, li, span, blockquote {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  color: #D1D5DB;
}
blockquote {
  font-style: italic;
  color: #213147;
  background: #F8F6F2;
  border-left: 4px solid #A8C1D1;
  margin: 0 0 12px 0;
  padding: 16px 20px;
  border-radius: 10px 4px 4px 10px;
}

/* --- LAYOUT CONTAINERS --- */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 18px;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

/* --- HEADER & NAVIGATION --- */
header {
  width: 100%;
  background: #202C38;
  border-bottom: 2px solid #39475B;
  position: sticky;
  top: 0;
  z-index: 120;
}
header nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
  padding: 0;
  min-height: 66px;
}
header nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: .8px;
  text-transform: uppercase;
  padding: 10px 14px;
  border-radius: 7px;
  color: #A8C1D1;
  position: relative;
  transition: background 0.18s, color 0.18s;
}
header nav a:hover, header nav a:focus {
  color: #F8F6F2;
  background: #213147;
}
header nav img {
  height: 42px;
  margin-right: 12px;
}

/* --- MOBILE NAV BUTTONS --- */
.mobile-menu-toggle {
  display: none;
  background: none;
  color: #F8F6F2;
  font-size: 2rem;
  border: none;
  margin-left: auto;
  padding: 6px 8px;
  cursor: pointer;
  z-index: 201;
  transition: color 0.2s;
}
.mobile-menu-toggle:focus {
  outline: 2px solid #A8C1D1;
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(33, 49, 71, 0.97);
  z-index: 222;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  transform: translateX(-100vw);
  transition: transform 0.35s ease;
}
.mobile-menu.open {
  display: flex;
  transform: translateX(0);
  animation: slideInMenu 0.3s cubic-bezier(.86,0,.07,1) 1;
}
@keyframes slideInMenu {
  from { transform: translateX(-100vw); }
  to { transform: translateX(0); }
}
.mobile-menu-close {
  background: none;
  border: none;
  color: #F8F6F2;
  font-size: 2rem;
  padding: 16px 22px;
  align-self: flex-end;
  cursor: pointer;
  transition: color 0.18s;
  z-index: 243;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: #A8C1D1;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 30px;
  margin-left: 28px;
}
.mobile-nav a {
  color: #A8C1D1;
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 8px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(168,193,209,0.09);
  transition: color 0.18s, background 0.18s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: #F8F6F2;
  background: #213147;
  border-radius: 6px;
}

/* --- FLEX UTILITY CLASSES --- */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #232832;
  border-radius: 13px;
  box-shadow: 0 2px 10px 0 rgba(33,49,71,0.12);
  display: flex;
  flex-direction: column;
  padding: 26px 22px;
  transition: box-shadow 0.22s, transform 0.22s;
  border: 1px solid #2A3541;
}
.card:hover {
  transform: translateY(-2px) scale(1.012);
  box-shadow: 0 6px 22px 0 rgba(40,52,65,0.21);
}
.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: #F8F6F2;
  color: #213147;
  padding: 20px;
  border-radius: 14px;
  box-shadow: 0 4px 20px 0 rgba(33,49,71,0.08);
  margin-bottom: 24px;
  max-width: 580px;
}
.testimonial-card blockquote {
  background: none;
  border: none;
  color: #213147;
  font-size: 1.12rem;
  line-height: 1.4;
  padding: 0;
}
.testimonial-card span,
.testimonial-card strong {
  color: #213147;
  font-weight: 700;
  font-size: 1rem;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* --- FEATURE GRID --- */
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  justify-content: space-between;
}
.feature-grid > div {
  background: #232832;
  border-radius: 10px;
  padding: 26px 22px;
  flex: 1 1 260px;
  min-width: 222px;
  box-shadow: 0 2px 10px 0 rgba(33,49,71,0.10);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  border: 1px solid #2A3541;
  position: relative;
  transition: border 0.18s, box-shadow 0.18s;
}
.feature-grid > div img {
  margin-bottom: 10px;
  border-radius: 5px;
  background: #192330;
  padding: 5px;
  box-shadow: 0 1px 5px rgba(33,49,71,0.12);
}
.feature-grid > div:hover {
  box-shadow: 0 6px 22px rgba(40,52,65,0.13);
  border-color: #A8C1D1;
}

/* --- MISC CARDS & BLOCKS --- */
.service-details,
.participation-info,
.practical-tips-block,
.review-process,
.techniques-list,
.service-descriptions,
.community-benefits,
.team-short-profile,
.address-block,
.opening-hours,
.next-steps,
.map-placeholder,
.qualifications,
.text-section,
.guide-profile {
  background: #1B222B;
  border-radius: 9px;
  padding: 22px 18px;
  color: #E0E7EF;
  margin-bottom: 24px;
  box-shadow: 0 2px 8px rgba(33,49,71,0.06);
}
.price-highlight {
  font-size: 1.08rem;
  font-weight: 700;
  color: #A8C1D1;
  background: #212838;
  padding: 8px 16px;
  border-radius: 7px;
  margin: 16px 0 0 0;
  display: inline-block;
  letter-spacing: 1px;
  text-shadow: 0 1px 2px #181c23;
}
.map-placeholder p {
  font-size: 1rem;
  color: #A8C1D1;
  font-style: italic;
}

/* --- BUTTON STYLES --- */
.cta-primary, .cookie-btn {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.13rem;
  font-weight: 700;
  color: #213147;
  background: linear-gradient(90deg, #F8F6F2 75%, #DFE5ED 100%);
  box-shadow: 0 2px 10px 0 rgba(33,49,71,0.13);
  border: none;
  border-radius: 7px;
  padding: 14px 30px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.19s, color 0.22s, box-shadow 0.19s, transform 0.19s;
  margin: 18px 0 0 0;
  display: inline-block;
}
.cta-primary:hover, .cta-primary:focus, .cookie-btn:hover, .cookie-btn:focus {
  background: linear-gradient(90deg, #A8C1D1 60%, #F8F6F2 100%);
  color: #213147;
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 6px 22px rgba(40,52,65,0.14);
}

/* --- FOOTER --- */
footer {
  background: #202C38;
  border-top: 2px solid #39475B;
  margin-top: 65px;
  width: 100%;
  color: #9BA8B8;
  font-size: 0.95rem;
}
footer .container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 24px;
  padding: 35px 20px 24px 20px;
  justify-content: space-between;
}
footer nav {
  display: flex;
  gap: 18px;
}
footer nav a {
  color: #A8C1D1;
  font-size: 1rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  letter-spacing: 0.2px;
  transition: color 0.16s;
}
footer nav a:hover, footer nav a:focus {
  color: #F8F6F2;
}
footer p {
  color: #9BA8B8;
  margin-top: 7px;
}
footer img {
  height: 40px;
}

/* --- COOKIE CONSENT BANNER & MODAL --- */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  width: 100vw;
  background: #232832;
  color: #F8F6F2;
  border-top: 2px solid #39475B;
  z-index: 2500;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 31px;
  padding: 20px 15px 18px 15px;
  box-shadow: 0 -2px 16px rgba(33,49,71,0.22);
  animation: cookieSlideIn 0.6s cubic-bezier(.43,1.49,.56,-0.49);
}
@keyframes cookieSlideIn {
  from { transform: translateY(120%); }
  to { transform: translateY(0); }
}
.cookie-banner p {
  color: #F8F6F2;
  font-size: 1rem;
  margin: 0 0 7px 0;
  max-width: 380px;
}
.cookie-banner .cookie-btn {
  margin: 0 9px;
  min-width: 120px;
}
.cookie-banner .cookie-btn.cookie-settings {
  background: #213147;
  color: #F8F6F2;
  border: 1px solid #A8C1D1;
}
.cookie-banner .cookie-btn.cookie-reject {
  background: #A8C1D1;
  color: #213147;
  border: 1px solid #39475B;
}
.cookie-banner .cookie-btn:active {
  opacity: .88;
}

/* Cookie Modal */
.cookie-modal {
  position: fixed;
  left: 0; top: 0; right: 0; bottom: 0;
  z-index: 3001;
  background: rgba(33,49,71,0.93);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: modalIn 0.27s cubic-bezier(.86,0,.07,1);
}
@keyframes modalIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
.cookie-modal-content {
  background: #213147;
  color: #F8F6F2;
  border-radius: 15px;
  width: 95vw;
  max-width: 420px;
  padding: 28px 20px 22px 20px;
  box-shadow: 0 8px 50px 0 rgba(28,40,56,0.21);
  display: flex;
  flex-direction: column;
  gap: 22px;
  align-items: flex-start;
  position: relative;
}
.cookie-modal-content h3 {
  color: #A8C1D1;
  font-size: 1.25rem;
  margin-bottom: 6px;
}
.cookie-modal-content .cookie-category {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
}
.cookie-modal-content .cookie-toggle {
  width: 38px; height: 22px;
  border-radius: 13px;
  background: #39475B;
  position: relative;
  cursor: pointer;
  transition: background 0.18s;
}
.cookie-modal-content .cookie-toggle[data-enabled="true"] {
  background: #A8C1D1;
}
.cookie-modal-content .cookie-toggle:before {
  content: '';
  position: absolute;
  left: 3px;
  top: 3px;
  width: 16px; height: 16px;
  border-radius: 50%;
  background: #F8F6F2;
  transition: left 0.18s;
}
.cookie-modal-content .cookie-toggle[data-enabled="true"]:before {
  left: 19px;
  background: #213147;
}
.cookie-modal-content .cookie-btn {
  margin-top: 16px;
  align-self: stretch;
}
.cookie-modal-content .cookie-close {
  position: absolute;
  right: 18px; top: 13px;
  background: none;
  color: #F8F6F2;
  border: none;
  font-size: 1.7rem;
  cursor: pointer;
  transition: color 0.18s;
}
.cookie-modal-content .cookie-close:hover {
  color: #A8C1D1;
}

/* --- RESPONSIVENESS --- */
@media (max-width: 1100px) {
  .feature-grid {
    gap: 18px;
  }
}
@media (max-width: 900px) {
  .container {
    max-width: 97vw;
    padding: 0 10px;
  }
  .feature-grid > div {
    min-width: 44vw;
    flex: 1 1 180px;
  }
}
@media (max-width: 768px) {
  .container {
    max-width: 100vw;
    padding: 0 6px;
  }
  .section {
    margin-bottom: 30px;
    padding: 27px 7px;
  }
  header nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
    padding: 17px 10px 16px 14px;
  }
  .content-wrapper {
    gap: 17px;
  }
  .feature-grid {
    flex-direction: column;
    gap: 22px;
  }
  .feature-grid > div {
    min-width: 0;
    width: 100%;
    padding: 19px 12px;
  }
  .card-container {
    flex-direction: column;
    gap: 18px;
  }
  .content-grid {
    flex-direction: column;
    gap: 14px;
  }
  .testimonial-card {
    max-width: 99vw;
    padding: 14px 7px;
  }
  footer .container {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    padding: 22px 7px 20px 7px;
  }
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 17px;
  }
}
@media (max-width: 540px) {
  h1 { font-size: 1.45rem; }
  h2 { font-size: 1.23rem; }
  h3 { font-size: 1.09rem; }
}

/* --- VISUAL ACCENTS (INDUSTRIAL MODERN) --- */
.section, .feature-grid > div, .card {
  box-shadow: 0 4px 26px 0 rgba(28,35,41,0.22), 0 1.5px 2.5px #23283244;
  border: 1.5px solid #303A4A;
}
.section {
  border-radius: 14px;
  background: linear-gradient(95deg, rgba(33,49,71,0.69) 0%, rgba(34,40,51,0.88) 100%);
}
.feature-grid > div:after {
  content: '';
  position: absolute;
  right: 7px; bottom: 7px;
  width: 25px; height: 25px;
  border-radius: 50%;
  background: radial-gradient(circle at 60% 40%, #A8C1D122 50%, transparent 100%);
  z-index: 1;
  pointer-events: none;
}

/* --- MICRO-INTERACTIONS & ANIMATIONS --- */
.cta-primary, .cookie-btn, .feature-grid > div, .card {
  transition: box-shadow 0.18s, background 0.18s, color 0.16s, transform 0.13s;
}
.cta-primary:active, .cookie-btn:active {
  opacity: 0.93;
  transform: scale(0.98);
}

/* --- MISCELLANEOUS --- */
::-webkit-input-placeholder { color: #A8C1D1; opacity: 1; }
::-moz-placeholder { color: #A8C1D1; opacity: 1; }
:-ms-input-placeholder { color: #A8C1D1; opacity: 1; }
::placeholder { color: #A8C1D1; opacity: 1; }

hr {
  border: 0;
  height: 1px;
  background: #39475B;
  margin: 32px 0;
  border-radius: 2px;
}

/* --- SCROLLBAR Styling (industrial) --- */
body {
  scrollbar-color: #39475B #232832;
  scrollbar-width: thin;
}
::-webkit-scrollbar {
  width: 9px;
  background: #232832;
}
::-webkit-scrollbar-thumb {
  background: #39475B;
  border-radius: 4px;
}

/* Ensure all layout is flexbox based, no display:grid, no columns, no absolute for cards/content */
