/* =============================================================
   GlossyTread London Guides - Scandinavian Clean CSS
   Modern, light, clear, and calming UI for professional guides
   ============================================================= */

/* ===== CSS RESET & BASE ===== */
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;
  background: #FAFAF8;
}

body {
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  color: #22385A;
  line-height: 1.6;
  background: #FAFAF8;
  font-size: 16px;
  min-height: 100vh;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul, ol {
  list-style: none;
}

a {
  color: #22385A;
  text-decoration: none;
  transition: color 0.2s;
}
a:focus {
  outline: 2px solid #6CB1E2;
  outline-offset: 2px;
}
a:hover, a:active {
  color: #6CB1E2;
}

button, input, select, textarea {
  font-family: inherit;
  font-size: 100%;
  border: none;
  outline: none;
  background: none;
}

/* ===== COLORS & FONTS ===== */
:root {
  --primary: #22385A;
  --secondary: #6CB1E2;
  --accent: #F4E7C5;
  --bg-light: #FAFAF8;
  --bg-hero: #F9F9F7;
  --text-main: #22385A;
  --text-muted: #64748B;
  --card-bg: #fff;
  --border-light: #ECECEC;
  --shadow-sm: 0 2px 8px 0 rgba(34,56,90,0.04);
  --shadow-md: 0 4px 18px 0 rgba(34,56,90,0.10);
  --radius: 14px;
  --transition: 0.15s cubic-bezier(.55,.09,.68,.53);
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  color: var(--text-main);
  letter-spacing: 0.01em;
}
h1 {
  font-size: 2.25rem;
  margin-bottom: 16px;
  line-height: 1.13;
}
h2 {
  font-size: 1.5rem;
  margin-bottom: 14px;
}
h3 {
  font-size: 1.13rem;
  margin-bottom: 10px;
  font-weight: 700;
}
h4, h5, h6 {
  font-size: 1rem;
  margin-bottom: 8px;
}
p, ul, ol, li {
  font-size: 1rem;
  color: var(--text-main);
  margin-bottom: 8px;
}
strong, b {
  font-weight: 700;
}
.small {
  font-size: 0.95rem;
  color: var(--text-muted);
}

/* ===== UTILITY CONTAINERS ===== */
.container {
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 28px;
}

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

@media (max-width: 768px) {
  .section {
    padding: 32px 8px;
    margin-bottom: 36px;
  }
  .container {
    padding: 0 10px;
  }
}

/* ===== HEADER & NAVIGATION ===== */
header {
  background: var(--bg-light);
  box-shadow: var(--shadow-sm);
  padding: 0;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 68px;
}
.logo-link img {
  height: 44px;
  width: auto;
  margin-right: 12px;
}

.desktop-nav {
  display: flex;
  flex-direction: row;
  gap: 28px;
  align-items: center;
}
.desktop-nav a {
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  color: var(--text-main);
  padding: 8px 0;
  transition: color 0.2s;
  position: relative;
  letter-spacing: 0.02em;
}
.desktop-nav a:hover {
  color: var(--secondary);
}
.desktop-nav a.active {
  color: var(--secondary);
  border-bottom: 2px solid var(--secondary);
}

.btn {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  border-radius: var(--radius);
  padding: 10px 24px;
  background: var(--accent);
  color: var(--primary);
  border: none;
  box-shadow: var(--shadow-sm);
  font-size: 1.05rem;
  transition: background 0.18s, color 0.18s, box-shadow 0.18s;
  cursor: pointer;
  outline: none;
  margin-right: 0;
  margin-bottom: 0;
  display: inline-block;
  letter-spacing: 0.03em;
}
.btn:focus {
  box-shadow: 0 0 0 3px var(--secondary);
}
.btn:hover, .btn:active {
  background: var(--secondary);
  color: #fff;
}

.btn-primary {
  background: var(--primary);
  color: #fff;
  border: none;
  margin-left: 16px;
  box-shadow: var(--shadow-md);
}
.btn-primary:hover, .btn-primary:active {
  background: var(--secondary);
  color: #22385A;
}

/* ===== MOBILE MENU ===== */
.mobile-menu-toggle {
  display: none;
  background: var(--primary);
  color: #fff;
  font-size: 2rem;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.17s;
  border: none;
  z-index: 1030;
}
.mobile-menu-toggle:focus {
  box-shadow: 0 0 0 3px var(--secondary);
}

.mobile-menu {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(34,56,90,0.96);
  box-shadow: var(--shadow-md);
  z-index: 1050;
  transform: translateX(-100%);
  transition: transform 0.35s cubic-bezier(.76,.04,.51,.92);
  visibility: hidden;
}
.mobile-menu.active {
  transform: translateX(0);
  visibility: visible;
}
.mobile-menu-close {
  color: #fff;
  background: var(--secondary);
  font-size: 2rem;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  margin: 28px 0 16px 22px;
  border: none;
  cursor: pointer;
  align-self: flex-start;
  box-shadow: var(--shadow-sm);
  transition: background 0.2s;
  z-index: 1060;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #fff;
  color: var(--secondary);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 28px;
  padding-left: 38px;
  margin-top: 10px;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.25rem;
  color: #fff;
  font-weight: 600;
  letter-spacing: 0.06em;
  transition: color 0.16s;
  padding: 6px 0;
}
.mobile-nav a:focus, .mobile-nav a:hover {
  color: var(--accent);
}

@media (max-width: 1024px) {
  .desktop-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
  .btn-primary {
    margin-left: 8px;
    padding: 10px 18px;
  }
}
@media (max-width: 768px) {
  header .container {
    gap: 8px;
    min-height: 50px;
  }
  .logo-link img {
    height: 36px;
  }
}

/* ===== HERO SECTION ===== */
.hero {
  background: var(--bg-hero);
  border-radius: 0 0 var(--radius) var(--radius);
  box-shadow: 0 4px 18px 0 rgba(60,90,120,0.03);
  padding-top: 30px;
  padding-bottom: 44px;
  margin-bottom: 46px;
}
.hero .container {
  align-items: center;
  flex-direction: column;
}
.hero .content-wrapper {
  align-items: flex-start;
  gap: 18px;
  max-width: 660px;
  margin: 0 auto;
}
.hero h1 {
  color: var(--primary);
}
.hero p {
  font-size: 1.13rem;
  color: var(--text-muted);
}

/* ===== FLEX CONTENT LAYOUTS ===== */
.feature-grid, .team-list, .guide-categories-grid, .attraction-list-grid, .neighborhood-list, .tip-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.feature {
  background: var(--card-bg);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  padding: 28px 22px;
  flex: 1 1 210px;
  min-width: 220px;
  max-width: 290px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: box-shadow 0.18s, transform 0.18s;
  margin-bottom: 20px;
}
.feature img, .guide-category img, .attraction-item img, .neighborhood-item img, .tip-item img, .contact-info-list img {
  width: 36px;
  height: 36px;
  margin-bottom: 16px;
}
.feature:hover, .guide-category:hover, .attraction-item:hover, .neighborhood-item:hover, .tip-item:hover {
  box-shadow: 0 4px 18px 0 rgba(60,70,80,0.13);
  transform: translateY(-5px) scale(1.025);
  background: #F5F8FB;
}

.guide-category, .attraction-item, .neighborhood-item, .tip-item {
  background: var(--card-bg);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  padding: 26px 18px 22px 18px;
  flex: 1 1 200px;
  min-width: 190px;
  max-width: 265px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 20px;
  transition: box-shadow 0.16s, transform 0.15s;
}

.faq-list, .guide-summaries, .area-descriptions, .key-info-blurbs, .icon-list, .contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 16px;
}
.contact-info-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 1rem;
  color: var(--text-main);
}

/* ===== FLEX & CARD PATTERNS ===== */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: var(--card-bg);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  padding: 28px 22px;
}
.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;
}
@media (max-width: 768px) {
  .feature-grid, .guide-categories-grid, .attraction-list-grid, .neighborhood-list, .tip-grid, .card-container, .content-grid {
    flex-direction: column;
    gap: 20px;
  }
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }
}

/* ===== FEATURE / LIST ITEM PATTERNS ===== */
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}
.guide-highlights ul, .guide-summaries ul, .area-descriptions ul, .key-info-blurbs ul, .icon-list ul, .faq-list, .next-steps-info ul {
  padding-left: 24px!important;
  margin-top: 0;
  margin-bottom: 0;
}
.guide-highlights li, .guide-summaries li, .area-descriptions li, .key-info-blurbs li, .icon-list li, .next-steps-info li {
  margin-bottom: 10px;
  color: var(--text-main);
  font-size: 1rem;
  padding-left: 0;
}
.icon-list img {
  vertical-align: middle;
  margin-right: 8px;
  width: 28px;
  height: 28px;
  display: inline-block;
}

/* ===== TESTIMONIALS ===== */
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  margin-bottom: 20px;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  max-width: 580px;
  min-width: 220px;
}
.testimonial-content {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.testimonial-content p {
  font-size: 1.07rem;
  color: var(--primary);
}
.testimonial-stars {
  display: flex;
  flex-direction: row;
  gap: 6px;
}
.testimonial-stars img {
  width: 20px;
  height: 20px;
  display: inline-block;
}
cite {
  font-style: normal;
  color: var(--secondary);
  font-size: 0.97rem;
  font-weight: 700;
  margin-top: 6px;
}

@media (max-width: 640px) {
  .testimonial-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    padding: 16px 10px;
    font-size: 0.98rem;
  }
  .testimonial-stars img {
    width: 18px;
    height: 18px;
  }
}

/* ===== BUTTONS & INTERACTIONS ===== */
.btn, .btn-primary {
  box-shadow: var(--shadow-sm);
  transition: background 0.19s, color 0.19s, box-shadow 0.21s, transform 0.14s;
}
.btn:active, .btn-primary:active {
  transform: translateY(1px) scale(.97);
}

.quick-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 16px;
}
@media (max-width:600px) {
  .quick-links {
    flex-direction: column;
    gap: 10px;
  }
}

/* ===== CARDS & FAQ ===== */
.faq-list {
  background: var(--card-bg);
  padding: 18px 12px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  gap: 20px;
}
.faq-item h3 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: var(--secondary);
  margin-bottom: 6px;
  font-size: 1.03rem;
}
.faq-item p {
  font-size: 1rem;
  color: var(--text-main);
}

/* ===== FOOTER ===== */
footer {
  background: #F6F5F2;
  padding: 34px 0 22px 0;
  border-top: 1px solid var(--border-light);
  margin-top: 60px;
}
footer .container {
  flex-direction: column;
  align-items: center;
  gap: 22px;
  text-align: center;
}
.footer-logo img {
  height: 38px;
  margin-bottom: 14px;
}
.footer-nav {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 10px;
}
.footer-nav a {
  color: var(--primary);
  font-size: 1rem;
  font-weight: 600;
  opacity: 0.95;
  transition: color 0.18s;
}
.footer-nav a:hover {
  color: var(--secondary);
}
.footer-contact {
  color: var(--text-muted);
  font-size: 0.96rem;
}
.footer-tagline {
  color: #9CA3AF;
  font-size: 0.98rem;
  margin-top: 8px;
}

@media (max-width: 600px) {
   .footer-nav {
    gap: 14px;
    font-size: 0.98rem;
  }
}

/* ===== COOKIE CONSENT BANNER ===== */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;
  background: #fff;
  border-top: 1.5px solid var(--border-light);
  box-shadow: 0 -2px 12px 0 rgba(34,56,90,0.07);
  z-index: 1200;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 20px 32px;
  gap: 18px;
  transition: transform 0.4s;
}
.cookie-banner.hide {
  transform: translateY(120%);
  pointer-events: none;
  opacity: 0;
}
.cookie-banner .cookie-text {
  font-size: 1rem;
  color: var(--primary);
  flex: 1 1 auto;
  margin-right: 12px;
}
.cookie-banner .cookie-btns {
  display: flex;
  gap: 12px;
}
.cookie-banner .cookie-btns .btn {
  padding: 8px 18px;
  border-radius: 9px;
  box-shadow: none;
  font-size: 0.98rem;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  font-weight: 700;
}
.cookie-accept {
  background: var(--primary);
  color: #fff;
}
.cookie-accept:hover, .cookie-accept:focus {
  background: var(--secondary); color: #22385A;
}
.cookie-reject {
  background: #EEF3FA;
  color: var(--primary);
}
.cookie-reject:hover, .cookie-reject:focus {
  background: #F4E7C5;
}
.cookie-settings {
  background: var(--accent);
  color: var(--primary);
}
.cookie-settings:hover, .cookie-settings:focus {
  background: var(--secondary);
  color: #fff;
}

@media (max-width: 700px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    padding: 18px 10px;
  }
  .cookie-banner .cookie-btns {
    gap: 10px;
  }
}

/* ===== COOKIE PREFERENCES MODAL ===== */
.cookie-modal {
  position: fixed;
  z-index: 1300;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(34,56,90,0.54);
  display: flex;
  align-items: center;
  justify-content: center;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.24s;
}
.cookie-modal.active {
  visibility: visible;
  opacity: 1;
}
.cookie-modal-content {
  background: #fff;
  padding: 32px 34px 28px 34px;
  border-radius: 22px;
  box-shadow: var(--shadow-md);
  max-width: 430px;
  width: 94vw;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 19px;
}
.cookie-modal-content h3 {
  font-size: 1.15rem;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  margin-bottom: 10px;
}
.cookie-category {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid #ECECEC;
  font-size: 1.03rem;
}
.cookie-category:last-child {
  border-bottom: none;
}
.cookie-category input[type="checkbox"] {
  accent-color: var(--primary);
  width: 18px;
  height: 18px;
  margin: 0 4px 0 0;
  cursor: pointer;
}
.cookie-modal-close {
  position: absolute;
  top: 14px; right: 20px;
  background: var(--secondary);
  color: #fff;
  font-size: 1.33rem;
  width: 32px; height: 32px;
  border-radius: 50%;
  border: none;
  align-items: center;
  justify-content: center;
  display: flex;
  cursor: pointer;
  transition: background 0.19s, color 0.19s;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  background: #fff;
  color: var(--secondary);
}
.cookie-modal-content .btn {
  margin-top: 12px;
  width: 100%;
}
@media (max-width: 480px) {
  .cookie-modal-content {
    padding: 20px 10px 18px 10px;
    font-size: 0.98rem;
  }
}

/* ===== MISC CLASSES & UTILITIES ===== */
.text-section {
  font-size: 1.01rem;
  color: var(--text-main);
  line-height: 1.66;
  gap: 12px;
}
.text-section ul, .text-section ol {
  margin-left: 24px;
  line-height: 1.66;
  list-style-type: disc;
}
.text-section h2 {
  margin-top: 14px;
}
.next-steps-info ul {
  list-style-type: disc;
  margin-left: 18px;
  color: var(--text-main);
}
.sample-itineraries, .quick-advice {
  margin-top: 12px;
  background: #F6F5F2;
  padding: 16px 18px;
  border-radius: 11px;
  font-size: 1rem;
  color: var(--text-main);
}

/* ===== MEDIA QUERIES (RESPONSIVE) ===== */
@media (max-width: 1024px) {
  .container {
    max-width: 98vw;
    padding: 0 10px;
  }
  .feature, .guide-category, .attraction-item, .neighborhood-item, .tip-item {
    min-width: 165px;
    max-width: 100%;
  }
}
@media (max-width: 768px) {
  h1 { font-size: 1.56rem; }
  h2 { font-size: 1.18rem; }
  .hero {
    padding-top: 18px; padding-bottom: 26px;
    margin-bottom: 30px;
  }
  .footer-logo img {
    height: 28px;
  }
  .sample-itineraries, .quick-advice {
    font-size: 0.98rem;
    padding: 12px 8px;
  }
  .faq-list {
    padding: 12px 6px;
    gap: 14px;
  }
}

/* ===== ACCESSIBILITY: FOCUS VISIBLE ===== */
:focus-visible {
  outline: 2px solid var(--secondary);
  outline-offset: 2px;
}

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