/* --- 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 {
  font-size: 16px;
  scroll-behavior: smooth;
}
body {
  line-height: 1.6;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  background: #1C1C1E;
  color: #F3F6F9;
  min-height: 100vh;
  -webkit-text-size-adjust: 100%;
  min-width: 320px;
}
img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
  height: auto;
}
*, *::before, *::after {
  box-sizing: inherit;
}

/* --- VARIABLE DEFINITIONS (with fallback) --- */
:root {
  --primary: #3B1F1F;
  --primary-rgb: 59, 31, 31;
  --secondary: #CCB963;
  --secondary-rgb: 204, 185, 99;
  --accent: #F3F6F9;
  --accent-dark: #CCD0D4;
  --bg: #232326;
  --bg-lighter: #29292c;
  --steel: #a7a7ad;
  --card-bg: #24221E;
  --border: #3e3b2a;
  --shadow: 0 4px 24px rgba(43,43,46,0.13);
  --radius: 12px;
  --radius-sm: 7px;
  --font-display: 'Montserrat', 'Arial Black', Arial, sans-serif;
  --font-body: 'Roboto', Arial, Helvetica, sans-serif;
}

/* --- UTILITIES --- */
a {
  color: var(--secondary);
  text-decoration: none;
  transition: color 0.18s cubic-bezier(0.22, 0.68, 0.51, 1), background 0.18s;
}
a:hover,
a:focus {
  color: #ffe066;
  outline: none;
}
strong, b {
  font-weight: 700;
}
ul, ol {
  margin-left: 20px;
  margin-bottom: 20px;
}
li {
  margin-bottom: 5px;
  list-style: disc inside;
}
input, button, textarea, select {
  font: inherit;
  color: inherit;
}

/* --- CONTAINER & LAYOUT --- */
.container {
  width: 100%;
  max-width: 1150px;
  padding: 0 20px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
/* Section Spacing */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: none;
}

/* --- TYPOGRAPHY --- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  color: var(--secondary);
  font-weight: 800;
  text-transform: none;
  letter-spacing: 0.01em;
  line-height: 1.15;
}
h1 { font-size: 2.6rem; margin-bottom: 18px; }
h2 { font-size: 2rem; margin-bottom: 14px; }
h3 { font-size: 1.3rem; margin-bottom: 10px; }
h4 { font-size: 1rem; margin-bottom: 7px; }
h5, h6 { font-size: 0.95rem; margin-bottom: 7px; }
@media (min-width:600px) {
  h1 { font-size: 3.1rem; }
  h2 { font-size: 2.3rem; }
  h3 { font-size: 1.5rem; }
}
p, blockquote {
  font-family: var(--font-body);
  color: #efefef;
  font-size: 1.05rem;
  margin-bottom: 14px;
}
blockquote {
  font-style: italic;
  color: var(--primary);
  background: var(--accent);
  border-left: 5px solid var(--secondary);
  margin: 0 0 12px 0;
  padding: 14px 28px 14px 20px;
  border-radius: var(--radius-sm);
  font-size: 1.05rem;
  box-shadow: 0 2px 12px rgba(30,30,33,0.06);
}
@media (min-width:768px) {
  blockquote {
    font-size: 1.15rem;
  }
}

.label, label {
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 7px;
  display: block;
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: 0.94rem;
}

/* --- HEADER & NAVIGATION --- */
header {
  width: 100%;
  background: var(--primary);
  box-shadow: 0 0 20px rgba(30,30,30,0.04);
}
header .container {
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 0;
  min-height: 78px;
}
header nav {
  display: flex;
  align-items: center;
  gap: 36px;
}
header nav ul {
  display: flex;
  flex-direction: row;
  gap: 22px;
  list-style: none;
  margin: 0;
  align-items: center;
}
header nav ul li {
  margin: 0;
}
header nav a {
  color: var(--accent);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  padding: 8px 4px;
  text-shadow: 0 0 2px #18181b;
  border-radius: var(--radius-sm);
  transition: color 0.14s, background 0.16s;
}
header nav a:hover, header nav a:focus {
  background: var(--secondary);
  color: var(--primary);
}
.cta-btn {
  background: var(--secondary);
  color: var(--primary);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.13rem;
  border: none;
  padding: 13px 32px;
  border-radius: var(--radius);
  box-shadow: 0 2px 16px rgba(204,185,99,0.09), 0 1.5px 0 0 #bfaf5f;
  cursor: pointer;
  margin-left: 24px;
  text-transform: none;
  transition: background 0.22s, color 0.13s, transform 0.2s;
  display: inline-block;
}
.cta-btn:hover, .cta-btn:focus {
  background: #ffe066;
  color: #30251c;
  transform: translateY(-2px) scale(1.019);
  box-shadow: 0 3px 24px rgba(204,185,99,0.15), 0 3.5px 0 0 #d8cd8a;
}

/* --- MOBILE NAVIGATION --- */
.mobile-menu-toggle {
  display: flex;
  position: fixed;
  right: 18px;
  top: 18px;
  z-index: 203;
  font-size: 2.2rem;
  padding: 10px 13px;
  color: var(--accent);
  background: #24221e;
  border: 2px solid var(--secondary);
  border-radius: 10px;
  box-shadow: 0 1px 6px rgba(0,0,0,0.18);
  cursor: pointer;
  transition: background 0.2s, color 0.13s, border-color 0.2s;
  outline: none;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: var(--secondary);
  color: var(--primary);
}
@media (min-width: 980px) {
  .mobile-menu-toggle {
    display: none;
  }
}
.mobile-menu {
  position: fixed;
  z-index: 2033;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(32,28,26,0.99);
  transition: transform 0.38s cubic-bezier(0.22, 0.68, 0.51, 1);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 0;
  transform: translateX(-105vw);
  pointer-events: none;
}
.mobile-menu.open {
  transform: translateX(0);
  pointer-events: auto;
  box-shadow: 0 0 44px rgba(63,55,27,0.22);
}
.mobile-menu-close {
  font-size: 2.3rem;
  background: none;
  border: none;
  color: var(--secondary);
  align-self: flex-end;
  margin: 22px 24px 16px 0;
  cursor: pointer;
  transition: color 0.17s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: #ffe066;
  outline: none;
}
.mobile-nav {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-left: 0;
  align-items: flex-start;
  padding: 0 24px;
}
.mobile-nav a {
  display: block;
  width: 100%;
  font-size: 1.3rem;
  padding: 20px 0 20px 0;
  border-bottom: 1.2px solid var(--steel);
  color: var(--accent);
  font-family: var(--font-display);
  letter-spacing: 0.04em;
  font-weight: 600;
  transition: background 0.16s, color 0.18s;
}
.mobile-nav a:last-child {
  border-bottom: none;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--secondary);
  color: var(--primary);
}

@media (max-width: 980px) {
  header nav, header .cta-btn {
    display: none;
  }
}
@media (min-width: 980px) {
  .mobile-menu {
    display: none !important;
  }
}

/* --- HERO & CTA BANNER --- */
.hero {
  background: linear-gradient(98deg, #231f1d 55%, #392725 100%);
  box-shadow: 0 8px 36px rgba(57,50,40,0.15);
  border-bottom: 2px solid #534840;
  margin-bottom: 60px;
  padding: 0;
}
.hero .container {
  padding-top: 42px;
  padding-bottom: 42px;
}
.hero .content-wrapper {
  align-items: flex-start;
  text-align: left;
  gap: 26px;
}
.hero h1, .hero h2, .hero p {
  color: var(--accent);
}
.hero p {
  font-size: 1.19rem;
  color: var(--accent-dark);
}

.cta-banner {
  background: var(--primary);
  border-top: 1.5px solid #534840;
  box-shadow: 0 2px 16px rgba(59,31,31,0.11) inset;
  padding-top: 34px;
  padding-bottom: 34px;
}
.cta-banner .content-wrapper {
  align-items: center;
  text-align: center;
  gap: 18px;
}
.cta-banner .cta-btn {
  margin-left: 0;
}

/* --- CARD & FEATURE LAYOUTS --- */
.card-container, .service-cards,
.feature-grid, .user-journey-steps ol,
.core-values, .unique-selling-points,
.city-list ul, .guide-features, .faq-snippets ul {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 10px;
}
.card, .service-card, .testimonial-card {
  margin-bottom: 20px;
  position: relative;
  border-radius: var(--radius);
  background: var(--card-bg);
  box-shadow: var(--shadow);
  padding: 26px 22px;
  border: 1.5px solid var(--border);
  max-width: 100%;
  transition: box-shadow 0.16s, transform 0.18s, border-color 0.13s;
}
.card:hover, .service-card:hover, .testimonial-card:hover {
  box-shadow: 0 8px 44px 0 rgba(204,185,99,0.12);
  border-color: var(--secondary);
  transform: translateY(-3px) scale(1.03);
}
.feature-grid > div {
  flex: 1 1 220px;
  min-width: 220px;
  max-width: 360px;
  background: var(--bg-lighter);
  border-radius: var(--radius-sm);
  box-shadow: 0 3px 14px rgba(85,80,60, 0.07);
  padding: 28px 18px 20px 18px;
  margin: 0;
  border: 1.5px solid #2a271e;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-start;
  transition: box-shadow 0.18s, border-color 0.14s;
}
.feature-grid > div:hover {
  border-color: var(--secondary);
  box-shadow: 0 12px 32px rgba(204,185,99,0.07);
}
.feature-grid img {
  width: 45px;
  height: 45px;
  filter: grayscale(0.20) contrast(1.2);
}

.service-cards {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 14px;
}
.service-card {
  flex: 1 1 240px;
  min-width: 220px;
  max-width: 320px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background: var(--bg-lighter);
  border: 1.5px solid #372d23;
  border-radius: var(--radius);
  box-shadow: 0 2px 12px #1e1810bb;
  padding: 28px 20px;
  gap: 11px;
  font-size: 1.08rem;
  transition: box-shadow 0.17s, border-color 0.15s, transform 0.16s;
}
.service-card span {
  margin-top: 13px;
  display: inline-block;
  color: var(--secondary);
  font-weight: bold;
  font-size: 1.11rem;
  letter-spacing: 0.015em;
}

.feature-list, .guide-features, .faq-snippets ul, .sample-guide-highlights ul, .core-values, .unique-selling-points {
  flex-direction: column;
  gap: 12px;
  margin-bottom: 10px;
}
.feature-list li, .guide-features li, .faq-snippets li, .sample-guide-highlights li, .core-values li, .unique-selling-points li {
  list-style: disc inside;
  color: var(--accent-dark);
  font-size: 1rem;
}

.user-journey-steps ol {
  flex-direction: column;
  gap: 9px;
  margin-bottom: 7px;
  list-style: decimal inside;
}
.user-journey-steps li {
  color: var(--accent-dark);
}

.city-list ul {
  flex-direction: column;
  gap: 9px;
}
.city-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #2a2624;
  padding: 10px 18px;
  border-radius: var(--radius-sm);
  color: var(--accent);
}
.city-filter ul {
  display: flex;
  flex-direction: row;
  gap: 18px;
  list-style: none;
  padding: 0;
}
.city-filter li {
  background: #463a2c;
  color: var(--secondary);
  padding: 3px 14px;
  border-radius: var(--radius-sm);
  font-size: 0.97rem;
}

/* --- TESTIMONIALS --- */
.testimonial-carousel, .testimonial-card-group {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.testimonial-card {
  background: var(--accent);
  color: var(--primary);
  border: 1.5px solid #c1bb92;
  border-radius: var(--radius);
  box-shadow: 0 2px 22px rgba(70,55,22,0.07);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px 26px;
  min-width: 230px;
  max-width: 420px;
  margin-bottom: 20px;
  font-size: 1.08rem;
  transition: box-shadow 0.17s, transform 0.14s, border-color 0.13s;
}
.testimonial-card blockquote {
  color: var(--primary);
  background: none;
  border-left: none;
  font-style: italic;
  padding: 0;
  margin: 0;
  box-shadow: none;
  border-radius: 0;
  font-size: 1.08rem;
}
.testimonial-card span {
  color: var(--primary);
  font-weight: 700;
  font-family: var(--font-display);
  font-size: 1.05em;
}
.testimonial-card:hover {
  border-color: var(--secondary);
  box-shadow: 0 6px 44px 0 rgba(204,184,99,0.13);
  transform: translateY(-2.5px) scale(1.025);
}

/* --- SPACING CONVENTIONS & FLEXBOX --- */
.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;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* --- FOOTER --- */
footer {
  background: var(--primary);
  border-top: 2.5px solid #534840;
  box-shadow: 0 -3px 20px rgba(48,38,19,.07) inset;
  width: 100%;
  padding: 0;
  margin-top: 48px;
}
footer .container {
  flex-direction: column;
  gap: 32px;
  align-items: center;
  padding-top: 34px;
  padding-bottom: 26px;
}
.footer-logo img {
  height: 50px;
  filter: grayscale(0.25) contrast(1.25);
}
footer nav {
  display: flex;
  flex-direction: row;
  gap: 26px;
  justify-content: center;
  margin: 15px 0 0 0;
}
footer nav a {
  color: var(--secondary);
  font-size: 1.05rem;
  text-decoration: underline;
  font-family: var(--font-display);
  transition: color 0.13s;
  padding: 4px 6px;
  border-radius: var(--radius-sm);
}
footer nav a:hover, footer nav a:focus {
  color: #ffe066;
  background: #30251c;
}
.footer-contact {
  color: var(--accent-dark);
  font-size: 0.98rem;
  text-align: center;
  margin-top: 8px;
}
.footer-contact a {
  color: var(--secondary);
  text-decoration: underline;
  font-weight: 500;
}

/* --- FORMS, SEARCH & INPUTS --- */
input[type="text"], input[type="email"], textarea, select {
  background: #222224;
  border: 1.4px solid var(--secondary);
  border-radius: var(--radius-sm);
  color: var(--accent);
  padding: 12px 18px;
  font-size: 1.06rem;
  margin-top: 6px;
  margin-bottom: 18px;
  outline: none;
  transition: border-color 0.18s, box-shadow 0.11s;
}
input[type="text"]:focus, input[type="email"]:focus, textarea:focus, select:focus {
  border-color: #ffe066;
  box-shadow: 0 0 6px #ffe06677;
}
.city-search {
  display: flex;
  flex-direction: column;
  gap: 9px;
  margin-bottom: 18px;
}

/* --- MAP EMBED, CONTACT DETAILS --- */
.contact-details p {
  color: var(--accent-dark);
  font-size: 1.02rem;
}
.map-embed img {
  filter: grayscale(0.4) sepia(0.18) brightness(0.78) contrast(1.2);
  max-width: 320px;
  border-radius: var(--radius);
}

/* --- COOKIE CONSENT BAR --- */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 5000;
  background: #29261c;
  color: var(--accent);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 24px 20px 24px 20px;
  box-shadow: 0 -6px 24px rgba(75,56,17,0.09);
  font-size: 1.09rem;
  gap: 16px;
  transition: transform 0.27s cubic-bezier(.23,.97,.45,1.13), opacity 0.21s;
}
.cookie-banner.hide {
  opacity: 0; pointer-events: none; transform: translateY(150px);
}
.cookie-banner .cookie-btn-group {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 10px;
}
.cookie-btn, .cookie-settings-btn {
  background: var(--secondary);
  color: var(--primary);
  font-family: var(--font-display);
  padding: 10px 22px;
  border-radius: var(--radius-sm);
  border: none;
  font-size: 1rem;
  font-weight: 600;
  margin: 0 2px;
  cursor: pointer;
  box-shadow: 0 0.5px 6px rgba(204,185,99,0.10);
  transition: background 0.18s, color 0.14s, transform 0.18s;
}
.cookie-btn:hover, .cookie-btn:focus, .cookie-settings-btn:hover, .cookie-settings-btn:focus {
  background: #ffe066;
  color: #1c1916;
  outline: none;
  transform: scale(1.051);
}

/* Cookie Modal (for settings) */
.cookie-modal {
  position: fixed;
  z-index: 5100;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: rgba(23,16,10,0.36);
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.18s;
}
.cookie-modal.open {
  pointer-events: all;
  opacity: 1;
}
.cookie-modal-content {
  background: #26231C;
  color: var(--accent);
  border-radius: var(--radius);
  min-width: 320px;
  max-width: 370px;
  width: 90vw;
  padding: 34px 25px 26px 25px;
  box-shadow: 0 10px 44px 0 rgba(92,72,34,0.17);
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 21px;
}
.cookie-modal-content h3 {
  margin-bottom: 9px;
}
.cookie-modal-content .category {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 12px;
}
.cookie-modal-content label {
  font-size: .97rem;
  color: var(--accent-dark);
  margin-bottom: 0;
}
.cookie-modal-close {
  position: absolute;
  top: 11px;
  right: 18px;
  font-size: 1.7rem;
  color: var(--secondary);
  background: none;
  border: none;
  cursor: pointer;
  transition: color 0.15s;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  color: #ffe066;
}
.category-toggle {
  width: 22px;
  height: 22px;
  margin-right: 8px;
}
.category-desc {
  font-size: 0.96rem;
  color: var(--accent-dark);
}

/* --- MEDIA QUERIES: RESPONSIVE DESIGN --- */
@media (max-width: 1240px) {
  .container {
    max-width: 96vw;
  }
}
@media (max-width: 980px) {
  header .container {
    flex-direction: row;
    gap: 0;
    min-height: 64px;
  }
  .feature-grid,
  .service-cards,
  .testimonial-carousel {
    flex-direction: column;
    gap: 20px;
  }
  .content-grid, .card-container {
    flex-direction: column;
    gap: 20px;
  }
}
@media (max-width: 768px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.3rem; }
  .hero .container {
    padding-top: 32px; padding-bottom: 32px;
  }
  .cta-banner {
    padding: 25px 0 23px 0;
  }
  .testimonial-card, .feature-grid > div, .service-card {
    max-width: 100vw;
    padding: 18px 12px;
    font-size: 1.01rem;
  }
  .footer-logo img {
    height: 38px;
  }
  .footer-contact, footer nav a {
    font-size: 0.95rem;
  }
  .city-search, .contact-details, .text-section, .core-values, .unique-selling-points, .download-info, .card-content {
    font-size: 0.97rem;
  }
  .map-embed img {
    max-width: 180px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
  }
}
@media (max-width: 540px) {
  .container {
    padding: 0 5px;
  }
  .service-cards, .feature-grid, .card-container {
    gap: 14px;
  }
  .footer-contact {
    font-size: 0.90rem;
  }
  .cta-btn {
    font-size: 1rem;
    padding: 11px 18px;
  }
}

/* --- CONFIRMATIONS & INFO CARDS --- */
.confirmation .content-wrapper {
  align-items: center;
  gap: 24px;
}
.confirmation h1 {
  color: var(--secondary);
}
.confirmation a.cta-btn {
  margin-top: 18px;
}

/* --- MICRO-INTERACTIONS & STATE --- */
.card, .service-card, .feature-grid > div, .testimonial-card, .cta-btn, footer nav a, .mobile-menu-toggle, .mobile-nav a, .cookie-btn, .cookie-btn-group button, .cookie-modal-close {
  will-change: transform, box-shadow;
  transition-timing-function: cubic-bezier(.22,.68,.51,1);
}
::selection {
  background: #CCB963;
  color: #1c1c1d;
}

/* --- SCROLLBAR STYLES (industrial) --- */
::-webkit-scrollbar {
  width: 10px; background: #23221E;
}
::-webkit-scrollbar-thumb {
  background: #393732; border-radius: 7px;
  border: 2px solid #23221E;
}
::-webkit-scrollbar-thumb:hover {
  background: #b9af6a;
}

/* --- Z-INDEX for overlays, navs --- */
header, footer { z-index: 100; position: relative; }


/* --- INDUSTRIAL MODERN METALLIC ACCENTS --- */
.card, .service-card, .feature-grid > div, .testimonial-card, .cookie-modal-content {
  border: 1.5px solid #85774c; /* metallic/gold accent */
  box-shadow: 0 4px 24px rgba(89,85,77,0.07),0 1.5px 0 0 #625530;
}
/* Add steel-like lines */
.section, .card, .cta-banner, .hero {
  border-radius: var(--radius);
}

/* --- ACCENTUATE BUTTON FOCUS STATE for accessibility --- */
.cta-btn:focus, .cookie-btn:focus, .cookie-settings-btn:focus {
  outline: 2.5px solid #ffe066;
  outline-offset: 2px;
}

/* --- OVERRIDES & MINIMUM SPACE --- */
.card, .service-card, .testimonial-card, .feature-grid > div {
  margin-bottom: 20px;
}
.section > *, .container > * {
  margin-bottom: 20px;
}

/* Ensuring minimum spacing for all content cards/sections */
.card + .card, .service-card + .service-card, .testimonial-card + .testimonial-card, .feature-grid > div + div {
  margin-top: 24px;
}

/* --- NO GRID, ALL FLEXBOX --- */
/* (already handled above) */
