/* ==========================================================================
   CSS RESET AND NORMALIZATION (mobile-first)
   ========================================================================== */
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, caption, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, main, 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;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-behavior: smooth;
}
body {
  min-height: 100vh;
  background: #181B1F;
  color: #E4E6EB;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  letter-spacing: 0.03em;
}
*, *:before, *:after { box-sizing: inherit; }
a { text-decoration: none; color: inherit; }
ul, ol { list-style: none; }
img { display: block; max-width: 100%; height: auto; vertical-align: middle; }
button, input, textarea, select { font: inherit; color: inherit; background: none; border: none; outline: none; }
:root {
  --primary: #243E6C;
  --secondary: #359C7C;
  --accent: #FAF8F3;
  --bg-dark: #181B1F;
  --bg-mid: #20242A;
  --metal-dark: #565D65;
  --text-main: #E4E6EB;
  --text-light: #FAF8F3;
  --text-dark: #212325;
  --border: #23272d;
  --shadow: 0 2px 16px 0 rgba(44,42,42,0.12), 0 1.5px 0px 0 rgba(42,54,68,0.06);
  --card-radius: 12px;
}

/* ==========================================================================
   FONTS
   ========================================================================== */
@import url('https://fonts.googleapis.com/css?family=Montserrat:700,600|Roboto:400,500,700&display=swap');
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  color: var(--text-light);
  letter-spacing: 0.01em;
}
h1 { font-size: 2.4rem; margin-bottom: 20px; line-height: 1.1; }
h2 { font-size: 1.7rem; margin-bottom: 16px; }
h3 { font-size: 1.3rem; margin-bottom: 12px; }
h4, h5, h6 { margin-bottom: 8px; }

p, li, a, span {
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  color: var(--text-main);
  font-size: 1rem;
}
strong { color: var(--accent); font-weight: 700; }

/* ==========================================================================
   LAYOUT CONTAINERS
   ========================================================================== */
.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

/* INDUSTRIAL MODERN URBAN TOUCH: shadow and solid border */
.card, .testimonial-card, .feature-item, .services-list li, .team li, .map, .about, .privacy-policy, .gdpr, .cookies-policy, .terms-of-use, .thank-you, .collections-preview, .highlights {
  background: var(--bg-mid);
  border-radius: var(--card-radius);
  box-shadow: var(--shadow);
  border: 1.5px solid var(--metal-dark);
}

.card-container { display: flex; flex-wrap: wrap; gap: 24px; }
.card { margin-bottom: 20px; position: relative; display: flex; flex-direction: column; }
.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: flex-start;
  gap: 20px;
  padding: 20px;
  background: var(--accent);
  color: var(--text-dark);
  border-left: 5px solid var(--secondary);
}
.feature-item, .features ul li, .services-list ul li {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}
.features {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.features ul {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.features ul li {
  padding: 18px 16px;
  background: var(--bg-mid);
  border-radius: var(--card-radius);
  box-shadow: var(--shadow);
  border-left: 3px solid var(--primary);
  margin-bottom: 0;
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.features ul li img {
  width: 32px;
  height: 32px;
  margin-right: 8px;
  filter: grayscale(0.7) brightness(1.1) contrast(1.1);
}

/* Hero */
.hero {
  margin-bottom: 60px;
  padding: 44px 0 44px 0;
  background: linear-gradient(120deg, #21232b 80%, var(--primary) 160%);
  box-shadow: var(--shadow);
  border-bottom: 3.5px solid var(--secondary);
}
.hero .container {
  min-height: 260px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.hero h1 { color: var(--accent); text-shadow: 0 2px 8px rgba(32,40,52,0.17); }
.hero p { color: var(--accent); font-size: 1.15rem; }
.hero .btn { margin-top: 24px; }

/* ==========================================================================
   HEADER & NAVIGATION
   ========================================================================== */
header {
  background: #22252B;
  box-shadow: 0 1.5px 8px 0 rgba(36,62,108,0.06);
  position: sticky;
  top: 0;
  z-index: 98;
}
header .container {
  height: 70px;
  display: flex;
  align-items: center;
  flex-direction: row;
  gap: 18px;
  justify-content: space-between;
}
header a img {
  height: 38px;
  margin-right: 18px;
}
nav {
  display: flex;
  align-items: center;
  gap: 14px;
}
nav a {
  font-size: 1rem;
  padding: 7px 14px;
  border-radius: 6px;
  color: var(--text-light);
  transition: background 0.16s, color 0.16s;
  letter-spacing: 0.04em;
}
nav a:hover, nav a:focus {
  background: var(--secondary);
  color: var(--bg-dark);
}

/* MOBILE BURGER MENU */
.mobile-menu-toggle {
  background: none;
  color: var(--accent);
  border: 2px solid var(--metal-dark);
  border-radius: 7px;
  padding: 7px 14px;
  font-size: 1.5rem;
  cursor: pointer;
  margin-left: 10px;
  display: flex;
  align-items: center;
  transition: background 0.15s, color 0.18s, border 0.15s;
  z-index: 120;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: var(--metal-dark);
  color: var(--accent);
}
/* Hide nav/only show toggle on small */
@media (max-width: 900px) {
  header nav { display: none; }
  .mobile-menu-toggle { display: flex; }
}
@media (min-width: 901px) {
  .mobile-menu-toggle { display: none; }
  .mobile-menu { display: none !important; }
}

/* MOBILE MENU OVERLAY */
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(24, 27, 31, 0.95);
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: flex-start;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.58,0.12,0.13,0.98);
  visibility: hidden;
  opacity: 0;
}
.mobile-menu.open {
  transform: translateX(0);
  visibility: visible;
  opacity: 1;
}
.mobile-menu-close {
  background: none;
  border: none;
  font-size: 2.4rem;
  color: var(--accent);
  padding: 18px 18px 5px 0;
  margin-right: 12px;
  cursor: pointer;
}
.mobile-nav {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  padding: 30px 36px;
}
.mobile-nav a {
  font-size: 1.3rem;
  width: 100%;
  padding: 16px 0;
  color: var(--accent);
  border-bottom: 1.5px solid var(--metal-dark);
  display: flex;
  align-items: center;
  transition: color 0.18s, background 0.13s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--secondary);
  color: var(--primary);
}


/* ==========================================================================
   BUTTONS
   ========================================================================== */
.btn, .btn-primary {
  display: inline-block;
  padding: 12px 34px;
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  border-radius: 8px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border: none;
  cursor: pointer;
  transition: background 0.16s, color 0.17s, box-shadow 0.16s, border 0.18s;
  margin-top: 14px;
  background: var(--metal-dark);
  color: var(--accent);
  box-shadow: 0 2px 12px 0 rgba(32,40,52,0.09);
}
.btn-primary {
  background: var(--secondary);
  color: var(--bg-dark);
  border: 2px solid var(--secondary);
}
.btn:hover, .btn:focus {
  background: var(--primary);
  color: var(--accent);
  box-shadow: 0 4px 16px 2px rgba(44,68,75,0.12);
}
.btn-primary:hover, .btn-primary:focus {
  background: var(--primary);
  color: var(--accent);
  border-color: var(--primary);
}

/* ==========================================================================
   MAIN SECTION SPACING & UTILITY CLASSES
   ========================================================================== */
section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
@media (max-width: 768px) {
  section {
    margin-bottom: 38px;
    padding: 24px 8px;
  }
}

.card-container, .content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.card {
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
  background: var(--bg-mid);
  border-radius: var(--card-radius);
  box-shadow: var(--shadow);
  border: 1.5px solid var(--metal-dark);
}
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    align-items: stretch;
  }
}

/* Testimonials */
.testimonials {
  margin-bottom: 60px;
  padding: 40px 0 40px 0;
}
.testimonials h2 {
  color: var(--secondary);
  margin-bottom: 28px;
}
.testimonials .content-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.testimonial-card {
  min-width: 260px;
  max-width: 370px;
  background: var(--accent);
  color: var(--text-dark);
  border-radius: var(--card-radius);
  border-left: 5px solid var(--secondary);
  box-shadow: 0 2px 14px 0 rgba(44,40,40,0.12);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  padding: 20px 26px;
  margin-bottom: 20px;
  font-size: 1.04rem;
  transition: box-shadow 0.2s, transform 0.14s;
}
.testimonial-card:hover, .testimonial-card:focus {
  transform: translateY(-3px) scale(1.014);
  box-shadow: 0 8px 24px 0 rgba(36,62,108,0.16);
}
.testimonial-card p {
  color: var(--text-dark);
  font-style: italic;
}
.testimonial-card span {
  color: var(--primary);
}

/* Services Overview + Services List */
.services-overview, .services-list {
  margin-bottom: 60px;
  padding: 40px 0;
}
.services-list ul {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.services-list li {
  background: var(--bg-mid);
  border-radius: var(--card-radius);
  padding: 22px 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  box-shadow: var(--shadow);
  border-left: 4px solid var(--secondary);
}
.services-list li strong {
  color: var(--secondary);
}
.services-list li img {
  width: 34px;
  height: 34px;
  margin-bottom: 10px;
}

/* List and Feature Highlights */
.highlights ul, .collections-preview ul, .team ul {
  display: flex;
  flex-direction: column;
  gap: 19px;
}

.collections-preview {
  background: var(--bg-mid);
  border-radius: var(--card-radius);
  box-shadow: var(--shadow);
  margin-bottom: 56px;
}
.collections-preview .btn {
  margin-top: 18px;
}

/* Map + About + Team Section */
.map, .about, .team {
  background: var(--bg-mid);
  border-radius: var(--card-radius);
  box-shadow: var(--shadow);
  padding: 34px 18px;
  margin-bottom: 40px;
}
.team ul li {
  background: var(--bg-mid);
  border-radius: var(--card-radius);
  box-shadow: var(--shadow);
  border-left: 3px solid var(--primary);
  padding: 16px 14px;
  margin-bottom: 10px;
}

/* Privacy, GDPR, Cookies, ToU Single Sections */
.privacy-policy, .gdpr, .cookies-policy, .terms-of-use, .thank-you {
  background: var(--bg-mid);
  border-radius: var(--card-radius);
  box-shadow: var(--shadow);
  padding: 40px 18px;
  margin-bottom: 56px;
}
.text-section {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
footer {
  padding: 35px 0 18px 0;
  background: #21252B;
  border-top: 2px solid var(--metal-dark);
}
footer .container {
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: center;
  justify-content: center;
}
footer a img {
  height: 35px;
  margin-bottom: 10px;
}
footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}
footer nav a {
  color: var(--secondary);
  font-size: 0.96rem;
  border-radius: 5px;
  padding: 4px 10px;
  transition: background 0.15s, color 0.14s;
}
footer nav a:hover, footer nav a:focus {
  color: var(--primary);
  background: var(--accent);
}
footer p {
  color: #a1a3ae;
  font-size: 0.9rem;
  margin: 2px 0 0 0;
}

@media (max-width: 550px) {
  .footer .container, .footer nav { flex-direction: column; gap: 8px; }
  footer nav { gap: 10px; }
}

/* ==========================================================================
   RESPONSIVE DESIGN
   ========================================================================== */
@media (max-width: 1200px) {
  .container { max-width: 98vw; }
}
@media (max-width: 900px) {
  .container { max-width: 98vw; }
  .hero h1 { font-size: 2.1rem; }
  .features ul li, .services-list li {
    flex-direction: column;
    gap: 12px;
    padding: 16px 12px;
  }
}
@media (max-width: 768px) {
  h1 {font-size: 1.5rem;}
  h2 {font-size: 1.18rem;}
  .card-container, .content-grid, .testimonials .content-wrapper {
    flex-direction: column;
    gap: 20px;
  }
  .testimonial-card {
    min-width: 85vw;
    padding: 18px 8vw;
  }
  .team ul, .features ul, .services-list ul {
    gap: 12px;
  }
  .map, .about, .team, .privacy-policy, .gdpr, .cookies-policy, .terms-of-use, .thank-you {
    padding: 18px 5px;
  }
}
@media (max-width: 480px) {
  .testimonial-card {
    padding: 18px 5vw;
    font-size: 0.99rem;
  }
  .btn, .btn-primary {padding: 10px 18px; font-size: .93rem;}
  header .container {height: auto; flex-direction: column;gap: 8px;}
}

/* ==========================================================================
   MICRO-INTERACTIONS & HOVER EFFECTS
   ========================================================================== */
.card, .feature-item, .services-list li, .team li {
  transition: box-shadow 0.18s, border-color 0.16s, background 0.16s, transform 0.13s;
}
.card:hover, .feature-item:hover, .services-list li:hover, .team li:hover {
  background: #293243;
  border-color: var(--secondary);
  box-shadow: 0 8px 32px 0 rgba(36,62,108,0.20);
  transform: translateY(-3px) scale(1.016);
}
.features ul li:hover {
  background: #28303b;
  border-color: var(--secondary);
}
.btn, .btn-primary { transition: background 0.18s, color 0.15s, box-shadow 0.14s; }
.btn:active, .btn-primary:active { transform: scale(0.96); }

/* ==========================================================================
   COOKIE CONSENT BANNER
   ========================================================================== */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  width: 100vw;
  z-index: 10000;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #232936;
  color: var(--accent);
  box-shadow: 0 -3px 24px 0 rgba(24,28,30,.12);
  padding: 20px 20px 16px 20px;
  animation: banner-fade-in 0.69s cubic-bezier(.28,.86,.52,.96);
  min-height: 64px;
}
@keyframes banner-fade-in {
  from { opacity: 0; transform: translateY(70px); }
  to { opacity: 1; transform: translateY(0); }
}
.cookie-banner-content {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 14px;
  max-width: 530px;
  width: 100%;
}
.cookie-banner-buttons {
  margin-top: 10px;
  display: flex;
  gap: 12px;
}
.cookie-banner button {
  padding: 9px 22px;
  font-size: 1rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  background: var(--secondary);
  color: var(--bg-dark);
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: background 0.16s, color 0.18s;
}
.cookie-banner button.accept {
  background: var(--secondary);
  color: var(--bg-dark);
}
.cookie-banner button.settings {
  background: var(--primary);
  color: var(--accent);
}
.cookie-banner button.reject {
  background: #8a2e2e;
  color: #fff;
}
.cookie-banner button:hover, .cookie-banner button:focus {
  background: var(--accent);
  color: var(--primary);
}

@media (max-width: 480px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    padding: 16px 6px 10px 6px;
  }
  .cookie-banner-content { max-width: 98vw; padding-right: 0; }
}

/* COOKIE SETTINGS MODAL */
.cookie-modal-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(24, 27, 31, 0.75);
  z-index: 10500;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: modal-fade-in 0.44s cubic-bezier(.29,.89,.45,1.04);
}
@keyframes modal-fade-in {
  from { opacity: 0; }
  to { opacity: 1; }
}
.cookie-modal {
  background: var(--bg-mid);
  color: var(--text-light);
  border-radius: var(--card-radius);
  box-shadow: 0 8px 42px 0 rgba(44,62,108,0.19);
  padding: 36px 28px 24px 28px;
  max-width: 420px;
  width: 94vw;
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.cookie-modal h2, .cookie-modal h3 { color: var(--accent); margin-bottom: 6px; }
.cookie-category {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 12px;
}
.cookie-category label {
  font-weight: 500;
  color: var(--accent);
  font-size: 1.05rem;
}
.cookie-modal input[type="checkbox"] {
  accent-color: var(--secondary);
}
.cookie-modal .cookie-category.essential label {
  color: var(--secondary);
  font-weight: 700;
}
.cookie-modal-buttons {
  display: flex;
  gap: 18px;
  justify-content: flex-end;
  margin-top: 6px;
}
.cookie-modal .close-modal {
  background: none;
  border: none;
  color: var(--secondary);
  font-size: 2rem;
  position: absolute;
  top: 11px;
  right: 18px;
  cursor: pointer;
}

/* ==========================================================================
   SCROLLBAR (for industrial/urban feel) & SELECTION
   ========================================================================== */
::-webkit-scrollbar {
  width: 12px;
  background: #20242a;
}
::-webkit-scrollbar-thumb {
  background: var(--metal-dark);
  border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--secondary);
}
::selection {
  background: var(--secondary);
  color: var(--accent);
}

/* ==========================================================================
   MISC UTILITY CLASSES
   ========================================================================== */
.text-center { text-align: center; }
.flex-row { display: flex; flex-direction: row; }
.flex-col { display: flex; flex-direction: column; }
.align-center { align-items: center; }
.justify-center { justify-content: center; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }
.gap-20 { gap: 20px; }
.rounded { border-radius: var(--card-radius); }

/* ==========================================================================
   FORM ELEMENTS: (mainly for Contact page if extended in future)
   ========================================================================== */
input, textarea {
  width: 100%;
  background: #23262b;
  color: var(--accent);
  border: 1.5px solid var(--metal-dark);
  border-radius: 8px;
  padding: 10px 14px;
  margin-bottom: 18px;
  font-family: inherit;
  font-size: 1rem;
  transition: border 0.16s, box-shadow 0.15s;
}
input:focus, textarea:focus {
  border: 1.5px solid var(--secondary);
  box-shadow: 0 1.5px 6px 0 rgba(53,156,124,0.10);
}
label { color: var(--accent); font-weight: 500; }

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