/* CSS RESET & BASELINE */
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;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}
article, aside, details, figcaption, figure, 
footer, header, hgroup, main, menu, nav, section {
  display: block;
}
body {
  line-height: 1.5;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  background: #212529;
  color: #F1F5F8;
  min-height: 100vh;
}
img {
  max-width: 100%;
  display: block;
  height: auto;
}
a {
  color: #FABE3C;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #fff;
  text-decoration: underline;
}
ul, ol {
  list-style: none;
}
button {
  cursor: pointer;
  font-family: inherit;
  border: none;
  background: none;
  outline: none;
}


/* TYPOGRAPHY - Industrial Modern */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Open Sans', Arial, sans-serif;
  letter-spacing: 0.01em;
  color: #F1F5F8;
  font-weight: 700;
}
h1 {
  font-size: 2.25rem;
  margin-bottom: 24px;
  line-height: 1.13;
  text-shadow: 0 2px 16px rgba(20,30,33,0.6);
}
h2 {
  font-size: 1.75rem;
  margin-bottom: 16px;
  border-left: 6px solid #FABE3C;
  padding-left: 16px;
  letter-spacing: 0.01em;
}
h3 {
  font-size: 1.25rem;
  margin-bottom: 8px;
}
h4 {
  font-size: 1.1rem;
  margin-bottom: 10px;
  font-weight: 600;
}
p, li, blockquote {
  font-size: 1rem;
  color: #E4E7EA;
}
strong {
  color: #FABE3C;
  font-weight: 600;
}

/* CONTAINERS & SPACING */
.container {
  width: 100%;
  max-width: 1200px;
  padding: 0 20px;
  margin: 0 auto;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: rgba(30,34,37,0.92);
  border-radius: 16px;
  box-shadow: 0 2px 24px rgba(15,20,23,0.14);
}

/* HEADER & NAVIGATION */
header {
  background: #181D1F;
  box-shadow: 0 1px 10px rgba(121,134,146,0.12);
  position: relative;
  z-index: 11;
  font-family: 'Montserrat', Arial, sans-serif;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 16px;
  padding-bottom: 16px;
}
.logo {
  display: flex;
  align-items: center;
  margin-right: 16px;
}
.main-nav {
  display: flex;
  gap: 20px;
  align-items: center;
}
.main-nav a {
  color: #F1F5F8;
  font-weight: 500;
  font-size: 1rem;
  letter-spacing: 0.04em;
  padding: 4px 6px;
  border-radius: 5px;
  transition: background 0.15s,color 0.2s;
}
.main-nav a:hover, .main-nav a:focus {
  background: #24353A;
  color: #FABE3C;
  text-decoration: none;
}
.cta-btn {
  display: inline-flex;
  align-items: center;
  background: #FABE3C;
  color: #181D1F;
  padding: 12px 30px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.02rem;
  font-weight: 700;
  border-radius: 8px;
  box-shadow: 0 4px 18px rgba(250,190,60,0.08);
  letter-spacing: 0.03em;
  transition: background 0.22s, color 0.22s, box-shadow 0.3s;
  margin-left: 16px;
  border: 2px solid transparent;
  text-shadow: none;
}
.cta-btn:hover, .cta-btn:focus {
  background: #155064;
  color: #FABE3C;
  border: 2px solid #FABE3C;
  box-shadow: 0 0 18px #15506466;
  outline: none;
}

/* HAMBURGER (mobile) */
.mobile-menu-toggle {
  display: flex;
  background: #242B2F;
  color: #FABE3C;
  font-size: 2rem;
  border-radius: 8px;
  padding: 8px 13px;
  margin-left: 10px;
  transition: background 0.17s;
  z-index: 100;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: #155064;
  color: #fff;
}

/* hide on desktop */
@media (min-width: 1025px) {
  .mobile-menu-toggle {
    display: none !important;
  }
  .mobile-menu {
    display: none !important;
  }
}

/* MOBILE MENU OVERLAY */
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100vw;
  height: 100vh;
  background: #181D1F;
  box-shadow: 0 12px 64px 0 rgba(30,34,37,0.92);
  z-index: 111;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  padding-top: 16px;
  transition: transform 0.4s cubic-bezier(.60,.02,.5,1), opacity 0.27s;
  transform: translateX(100%);
  opacity: 0;
  pointer-events: none;
}
.mobile-menu.open {
  transform: translateX(0);
  opacity: 1;
  pointer-events: all;
}
.mobile-menu-close {
  background: none;
  color: #FABE3C;
  font-size: 2rem;
  border-radius: 7px;
  margin: 0 26px 24px 0;
  padding: 6px 15px;
  transition: background 0.14s;
  align-self: flex-end;
  z-index: 131;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #24353A;
  color: #fff;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 22px;
  width: 100%;
  padding: 12px 40px;
}
.mobile-nav a {
  color: #F1F5F8;
  font-size: 1.25rem;
  padding: 7px 0;
  border-radius: 4px;
  width: 100%;
  font-family: 'Montserrat', Arial, sans-serif;
  letter-spacing: 0.02em;
  font-weight: 600;
  transition: background 0.18s, color 0.18s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #24353A;
  color: #FABE3C;
}

/* NAV Toggle Responsive Hide/Show */
@media (max-width: 1024px) {
  .main-nav, .cta-btn {
    display: none;
  }
}

@media (max-width: 1024px) {
  header .container {
    justify-content: space-between;
  }
}


/* HERO SECTION */
.hero {
  background: linear-gradient(108deg, #212529 60%, #155064 100%), #212529;
  background-blend-mode: multiply;
  min-height: 350px;
  display: flex;
  align-items: center;
  margin-bottom: 60px;
  border-radius: 0 0 24px 24px;
  box-shadow: 0 3px 32px #1A232755;
}
.hero .container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  padding-bottom: 40px;
  padding-top: 40px;
}
.hero .content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-start;
  max-width: 640px;
}
.hero h1 {
  color: #FABE3C;
  text-shadow: 0 4px 24px #181D1FCC;
}
.hero p {
  margin-bottom: 12px;
  color: #F1F5F8;
  font-size: 1.13rem;
  max-width: 510px;
  line-height: 1.7;
}

/* FEATURE GRID (for .features, .feature-grid, .feature-item) */
.features .feature-grid, .feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
  margin-top: 20px;
}
.feature-item {
  background: #242B2F;
  border-radius: 13px;
  padding: 28px 22px 18px 22px;
  box-shadow: 0 2px 10px rgba(21,80,100,0.08);
  border: 1.5px solid #26353B;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  flex: 1 1 240px;
  min-width: 220px;
  max-width: 287px;
  margin-bottom: 20px;
  transition: border-color 0.23s, box-shadow 0.19s;
}
.feature-item img {
  width: 52px;
  height: 52px;
  object-fit: contain;
  filter: grayscale(30%) contrast(1.2);
}
.feature-item:hover, .feature-item:focus-within {
  border-color: #FABE3C;
  box-shadow: 0 6px 24px #FABE3C1A;
}
.feature-item h3 {
  color: #FABE3C;
  font-size: 1.12rem;
  margin-bottom: 6px;
}
.feature-item p {
  font-size: 0.98rem;
  color: #E9EBEF;
  margin-bottom: 0;
}

/* CARDS & CARD CONTAINERS (used for guides, tips, services, testimonials, etc.) */
.card-container, .guide-cards, .advice-cards, .service-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 20px;
}
.card, .guide-card, .tip-card, .service-card {
  background: #23272C;
  border-radius: 10px;
  box-shadow: 0 2px 12px #11151233;
  border: 1px solid #26353B;
  padding: 28px 20px 20px 20px;
  margin-bottom: 20px;
  flex: 1 1 230px;
  min-width: 200px;
  max-width: 280px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: border-color 0.22s, box-shadow 0.2s;
  cursor: pointer;
}
.card:hover, .guide-card:hover, .tip-card:hover, .service-card:hover {
  border-color: #FABE3C;
  box-shadow: 0 6px 28px #FABE3C20, 0 1.5px 20px #15506429;
}
.card h3, .guide-card h3, .tip-card h3, .service-card h3 {
  color: #FABE3C;
}
.card .price, .service-card .price {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  color: #FABE3C;
  margin-top: 6px;
  font-size: 1.03rem;
}

/* TESTIMONIALS */
.testimonials, .testimonial-slider {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  background: #F1F5F8;
  color: #212529;
  padding: 24px;
  border-radius: 13px;
  margin-bottom: 20px;
  box-shadow: 0 2px 10px #23272C33;
  border-left: 7px solid #FABE3C;
  font-family: 'Montserrat', Arial, sans-serif;
  position: relative;
  transition: box-shadow 0.19s, border-color 0.14s;
}
.testimonial-card:hover {
  box-shadow: 0 6px 32px #FABE3C35;
  border-color: #155064;
}
.testimonial-card p {
  color: #212529;
  font-family: 'Open Sans', Arial, sans-serif;
  margin-bottom: 0;
}
.testimonial-meta {
  margin-left: 16px;
  font-weight: bold;
  color: #155064;
  font-size: 0.98rem;
}
.user-quotes p {
  background: #23272C;
  padding: 12px 20px;
  border-radius: 7px;
  font-style: italic;
  font-size: 1rem;
  color: #FABE3C;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.user-quotes span {
  font-style: normal;
  color: #F1F5F8;
  margin-left: 10px;
}

/* TEXT/IMAGE + FLEX SECTIONS */
.text-image-section, .contact-info, .footer-grid {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
.text-image-section {
  margin-top: 20px;
}
.text-section, .mission-values, .team-intro, .unique-approach {
  padding: 8px 0 8px 0;
  font-size: 1.03rem;
  color: #E4E7EA;
  max-width: 760px;
}
.text-section ul, .mission-values ul {
  margin-top: 12px;
  margin-bottom: 8px;
  padding-left: 24px;
  color: #FABE3C;
  list-style: disc inside;
}
.text-section ul li, .mission-values ul li {
  color: #FABE3C;
  margin-bottom: 4px;
  font-size: 1rem;
  font-weight: 400;
}

/* About Brand, About & Services Sections */
.about-brand, .about, .services, .routes-features, .photo-tour-features, .tips-list, .city-guides-list, .confirmation, .call-to-action, .confirmation, .legal, .map {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: rgba(30,34,37,.97);
  border-radius: 16px;
  box-shadow: 0 2px 18px #1A232733;
}

/* Highlight Text */
.highlight-text {
  margin-top: 22px;
  background: #FABE3C;
  color: #181D1F;
  font-weight: 700;
  border-radius: 7px;
  padding: 12px 18px;
  display: inline-flex;
  align-items: center;
  font-size: 1.02rem;
}


/* QUICK-TIPS, CHECKLISTS, TIPS, etc. */
.quick-tips, .checklists, .tips {
  background: #23272C;
  border: 1.5px solid #155064;
  border-radius: 9px;
  padding: 20px 18px;
  margin-top: 14px;
  margin-bottom: 14px;
}
.quick-tips ul {
  color: #FABE3C;
  font-size: 1rem;
  margin-left: 13px;
}
.quick-tips h4, .checklists h4, .tips h4 {
  color: #FABE3C;
  margin-bottom: 10px;
  font-size: 1.07rem;
}
.checklists ul {
  color: #F1F5F8;
  font-size: 1rem;
  margin-left: 13px;
}

/* SERVICES LIST */
.services-list ul, .service-details ul, .tour-highlights ul, .photography-tips ul {
  list-style-type: disc;
  margin-left: 24px;
  margin-top: 12px;
  color: #FABE3C;
}
.services-list ul li, .service-details ul li {
  margin-bottom: 4px;
  color: #FABE3C;
}

/* Unique-photo */
.unique-photo-opportunities {
  color: #FABE3C;
  background: #22262A;
  border-left: 5px solid #FABE3C;
  padding: 10px 18px;
  border-radius: 7px;
  margin-top: 20px;
  font-size: 1.02rem;
}

/* MAP EMBED */
.embedded-map {
  width: 100%;
  border-radius: 9px;
  overflow: hidden;
  background: #F1F5F8;
  min-height: 240px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
}
.directions {
  color: #E4E7EA;
  font-size: 1rem;
  margin-bottom: 10px;
}

/* CALL TO ACTION */
.call-to-action {
  background: #181D1F;
  text-align: center;
  border: 0;
  box-shadow: 0 2px 16px #1A232743;
}
.call-to-action h2 {
  color: #FABE3C;
  margin-bottom: 28px;
}
.call-to-action .cta-btn {
  margin-left: 0;
  margin-top: 6px;
}

/* CONFIRMATION */
.confirmation .content-wrapper {
  align-items: center;
  text-align: center;
}
.confirmation .next-steps ul {
  list-style-type: disc;
  margin-left: 18px;
  color: #FABE3C;
}

/* FOOTER */
footer {
  background: #11181A;
  color: #BBC4CB;
  padding-top: 48px;
  padding-bottom: 16px;
  box-shadow: 0 -2px 22px #15506409;
  font-size: 1rem;
  position: relative;
}
.footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 22px;
}
@media (max-width: 900px) {
  .footer-grid {
    flex-direction: column;
    gap: 24px;
    align-items: flex-start;
  }
}
.footer-grid > div {
  min-width: 190px;
  flex: 1 1 180px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-grid h4 {
  color: #FABE3C;
  margin-bottom: 8px;
  font-weight: 700;
  font-size: 1.07em;
}
.footer-grid nav a {
  color: #bbc4cb;
  display: block;
  font-size: 1em;
  margin-bottom: 6px;
  transition: color 0.17s;
}
.footer-grid nav a:hover, .footer-grid nav a:focus {
  color: #FABE3C;
}
.social-media {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-top: 8px;
}
.social-media img {
  width: 24px;
  height: 24px;
  filter: grayscale(70%) brightness(0.99) contrast(1.1);
  transition: filter 0.22s;
}
.social-media img:hover, .social-media img:focus {
  filter: none;
}
.copyright {
  border-top: 1.5px solid #24353A;
  padding-top: 10px;
  text-align: center;
  color: #6D767D;
  font-size: 0.94em;
}

/* ICON Alignment inside p */
.footer-grid p img, .contact-info p img {
  vertical-align: middle;
  margin-right: 9px;
  margin-bottom: 2px;
  width: 1.05em;
  filter: grayscale(100%) contrast(1.1);
}

/* Responsive Structure */
@media (max-width: 900px) {
  .container {
    padding: 0 10px;
  }
  .content-wrapper {
    gap: 16px;
  }
}
@media (max-width: 768px) {
  .hero .container, .content-wrapper, .section {
    padding-left: 8px;
    padding-right: 8px;
  }
  .main-nav {
    display: none !important;
  }
  .feature-grid, .card-container, .guide-cards, .advice-cards, .service-cards, .footer-grid, .text-image-section, .contact-info {
    flex-direction: column !important;
    gap: 20px !important;
  }
  .feature-item, .card, .guide-card, .tip-card, .service-card {
    min-width: 90%;
    max-width: 99%;
    margin-bottom: 20px;
  }
}

/* Even Smaller (mobile) font scaling */
@media (max-width: 600px){
  h1 {
    font-size: 1.33rem;
    margin-bottom: 12px;
  }
  h2 {
    font-size: 1.12rem;
    margin-bottom: 10px;
  }
  .container {
    padding: 0 2vw;
  }
}

/* FOCUS ACCESSIBILITY */
a:focus, button:focus, .cta-btn:focus {
  outline: 2px solid #FABE3C;
  outline-offset: 2px;
}

/* VISUAL MICRO-INTERACTIONS */
.cta-btn, .feature-item, .card, .guide-card, .service-card, .tip-card, .testimonial-card {
  transition: 
    border-color 0.22s, background 0.23s, color 0.18s, 
    box-shadow 0.18s, transform 0.19s;
}
.cta-btn:active, .feature-item:active, .card:active {
  transform: scale(0.98);
}

/* COOKIES CONSENT BANNER */
.cookie-banner {
  position: fixed;
  left: 0; bottom: 0; right: 0;
  width: 100vw;
  background: #181D1F;
  color: #FABE3C;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 24px 32px 20px 32px;
  font-size: 1rem;
  z-index: 2100;
  box-shadow: 0 -5px 36px #181D1FCC;
  border-top: 3px solid #FABE3C;
  animation: cookieSlideIn 0.45s ease-in;
}
@keyframes cookieSlideIn {
  0% { transform: translateY(110%); }
  80% { transform: translateY(-12px); }
  100% { transform: translateY(0); }
}
.cookie-banner__actions {
  display: flex;
  align-items: center;
  gap: 14px;
}
.cookie-banner button {
  padding: 8px 20px;
  font-size: 0.98rem;
  border-radius: 7px;
  font-family: 'Montserrat', Arial, sans-serif;
  border: 2px solid transparent;
  transition: background 0.18s, color 0.18s, border 0.22s;
}
.cookie-banner .accept {
  background: #FABE3C;
  color: #181D1F;
  font-weight: 700;
}
.cookie-banner .accept:hover, .cookie-banner .accept:focus {
  background: #155064;
  color: #FABE3C;
  border: 2px solid #FABE3C;
}
.cookie-banner .reject {
  background: #242B2F;
  color: #FABE3C;
  font-weight: 600;
}
.cookie-banner .reject:hover, .cookie-banner .reject:focus {
  background: #155064;
  color: #F1F5F8;
  border: 2px solid #FABE3C;
}
.cookie-banner .settings {
  background: none;
  color: #FABE3C;
  text-decoration: underline;
  font-weight: 600;
}
.cookie-banner .settings:hover, .cookie-banner .settings:focus {
  color: #FABE3C;
  background: none;
}

/* COOKIE MODAL POPUP */
.cookie-modal {
  position: fixed;
  left: 0; top: 0; right: 0; bottom: 0;
  z-index: 2200;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(24,29,31,0.96);
  animation: cookieModalFadeIn 0.3s;
}
@keyframes cookieModalFadeIn {
  0%{ opacity:0; }
  100%{ opacity:1; }
}
.cookie-modal__content {
  background: #22262A;
  color: #F1F5F8;
  border-radius: 14px;
  max-width: 420px;
  width: 90vw;
  padding: 32px 30px 24px 30px;
  box-shadow: 0 4px 38px #1A2327AA;
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: flex-start;
  animation: cookieModalPopIn 0.2s;
}
@keyframes cookieModalPopIn {
  0% { transform: scale(0.98); opacity: 0; }
  100% { transform: scale(1); opacity: 1; }
}
.cookie-modal__content h2 {
  color: #FABE3C;
  margin-bottom: 12px;
  border-left: 4px solid #FABE3C;
  padding-left: 12px;
  font-size: 1.1rem;
}
.cookie-modal__category {
  margin-bottom: 14px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 16px;
  font-size: 1rem;
}
.cookie-modal__category label {
  flex: 1 1 auto;
  color: #F1F5F8;
}
.cookie-modal__category input[type="checkbox"] {
  width: 22px;
  height: 22px;
  accent-color: #FABE3C;
}
.cookie-modal__category input[disabled] {
  opacity: 0.6;
}
.cookie-modal__actions {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 16px;
}
.cookie-modal__actions button {
  padding: 10px 28px;
  font-size: 1rem;
  border-radius: 8px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  transition: background 0.18s, color 0.18s;
}
.cookie-modal__actions .save {
  background: #FABE3C;
  color: #181D1F;
}
.cookie-modal__actions .save:hover, .cookie-modal__actions .save:focus {
  background: #155064;
  color: #FABE3C;
}
.cookie-modal__actions .cancel {
  background: #23272C;
  color: #FABE3C;
}
.cookie-modal__actions .cancel:hover, .cookie-modal__actions .cancel:focus {
  background: #155064;
  color: #F1F5F8;
}
@media (max-width: 500px){
  .cookie-modal__content {
    padding: 19px 7vw 16px 7vw;
    min-width: unset;
    font-size: 0.98rem;
  }
}

/* --- MISC: Utility alignment classes that may appear --- */
.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;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
}

/* Print - Hide unnecessary */
@media print {
  header, footer, .cookie-banner, .mobile-menu {
    display: none !important;
  }
  main {
    padding: 0 !important;
    background: #fff;
    color: #181D1F;
  }
  body {
    background: #fff !important;
    color: #181D1F;
  }
}
