/* Atomic Flick Chairs – Industrial Modern CSS Reset & Theme */

/* ----------------- 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;
}
article,aside,details,figcaption,figure,
footer,header,hgroup,menu,nav,section {
  display: block;
}
body {
  line-height: 1.6;
  color: #e7e7e7;
  background: #151b24;
  font-family: 'Lato', Arial, sans-serif;
  font-size: 16px;
  min-height: 100vh;
  scroll-behavior: smooth;
}
a {
  color: #48A9B3;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #F6ECC0;
  text-decoration: underline;
}
img {
  max-width: 100%;
  display: block;
}
ul, ol {
  margin-left: 1.3em;
  margin-bottom: 1em;
  padding-left: 1em;
}
li {
  margin-bottom: 0.5em;
}

/* ----------- INDUSTRIAL MODERN TYPOGRAPHY ----------- */
@import url('https://fonts.googleapis.com/css?family=Montserrat:700,900&display=swap');
@import url('https://fonts.googleapis.com/css?family=Lato:400,700&display=swap');

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Segoe UI', Arial, sans-serif;
  color: #F6ECC0;
  letter-spacing: 1px;
  font-weight: 800;
  line-height: 1.17;
  margin-bottom: 18px;
}
h1 {
  font-size: 2.4rem;
  margin-bottom: 24px;
}
h2 {
  font-size: 2rem;
  margin-bottom: 18px;
}
h3 {
  font-size: 1.25rem;
  margin-bottom: 14px;
  text-transform: uppercase;
  letter-spacing: 2px;
}
p, .text-section p, td, th, li {
  font-family: 'Lato', Arial, sans-serif;
  font-size: 1rem;
  color: #f2f2f2;
}

strong, b {
  color: #F6ECC0;
  font-weight: 700;
}

/* ----------- COLORS & ACCENTS ----------- */
:root {
  --primary: #113365;
  --secondary: #48A9B3;
  --accent: #F6ECC0;
  --surface: #232729;
  --surface-alt: #1d232a;
  --surface-light: #304050;
  --gray-medium: #5d6a7e;
  --gray-dark: #232729;
  --text-light: #f2f2f2;
  --text-dark: #151B24;
  --metallic: #bcc4ce;
  --danger: #d13b3b;
  --success: #5cc882;
}

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

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

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

/* --------------- FLEXBOX PATTERNS ------------------- */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  background: var(--surface);
  border-radius: 14px;
  box-shadow: 0 2px 16px 0 rgba(36,38,40,0.19), 0 1.5px 4px 0 #162131;
  position: relative;
  padding: 24px 28px 22px 28px;
  min-width: 290px;
  flex: 1 1 320px;
}
.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;
  background: #fffbe7;
  color: var(--text-dark);
  padding: 20px;
  border-radius: 12px;
  margin-bottom: 20px;
  min-width: 260px;
  box-shadow: 0px 2px 8px 0 rgba(16,24,32,0.12);
}
.testimonials {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/***** Page-specific FLEX containers *****/
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
  justify-content: space-between;
}
.feature {
  flex: 1 1 220px;
  background: var(--surface);
  border-radius: 10px;
  padding: 22px 18px;
  box-shadow: 0 1.5px 6px 0 var(--gray-dark);
  transition: transform 0.18s cubic-bezier(.42,1.19,.64,1), box-shadow 0.18s;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  min-width: 210px;
  margin-bottom: 20px;
}
.feature:hover, .service-card:hover, .service-details:hover {
  transform: translateY(-3px) scale(1.015);
  box-shadow: 0 6px 28px 0 rgba(72,169,179,0.16), 0px 3px 9px 0 var(--gray-dark);
}

.services-grid, .service-listing {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}
.service-card, .service-details {
  background: var(--surface-alt);
  border-radius: 10px;
  box-shadow: 0 1.5px 8px 0 #19202B;
  padding: 22px 18px;
  min-width: 210px;
  flex: 1 1 290px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 9px;
  transition: box-shadow 0.2s, transform 0.2s;
}
.service-price {
  display: inline-block;
  margin-top: 8px;
  color: var(--secondary);
  font-weight: bold;
  background: #202937;
  padding: 2px 11px;
  border-radius: 30px;
  letter-spacing: 1px;
  font-size: 0.97rem;
}

.chair-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}
.chair-model {
  background: var(--surface);
  border-radius: 14px;
  box-shadow: 0 1.5px 6px 0 var(--gray-dark);
  padding: 22px 18px;
  flex: 1 1 250px;
  min-width: 230px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 11px;
  border-left: 4px solid var(--primary);
  transition: border-color 0.15s, box-shadow 0.20s;
}
.chair-model:hover {
  border-color: var(--secondary);
  box-shadow: 0 4px 18px 0 rgba(72,169,179,0.11);
}

.text-section {
  background: transparent;
  padding: 0;
  border-radius: 0;
  margin-bottom: 0;
  color: var(--text-light);
  font-size: 1rem;
}

/**** HERO SECTION ****/
.hero {
  background: linear-gradient(125deg, #222d3a 80%, #354f68 100%);
  position: relative;
  min-height: 380px;
  border-radius: 12px;
  margin-bottom: 60px;
  padding: 60px 20px 70px 20px;
  box-shadow: 0 14px 40px 0 #10192160;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero h1 {
  color: var(--accent);
  font-size: 2.8rem;
  margin-bottom: 16px;
  letter-spacing: 1.1px;
}
.hero p {
  color: #CED5DC;
  font-size: 1.25rem;
  margin-bottom: 26px;
  max-width: 500px;
}
.hero .cta-button {
  margin-top: 5px;
}

/**** BUTTONS & INTERACTIVES ****/
.cta-button {
  background: var(--secondary);
  color: var(--text-dark);
  font-family: 'Montserrat', Arial, sans-serif;
  padding: 14px 34px 12px 34px;
  border: none;
  border-radius: 40px;
  text-transform: uppercase;
  font-weight: 900;
  font-size: 1.1rem;
  letter-spacing: 1.6px;
  box-shadow: 0 2px 18px 0 #12376866;
  transition: background 0.18s, color 0.13s, transform 0.10s;
  cursor: pointer;
  outline: none;
  display: inline-block;
}
.cta-button:hover, .cta-button:focus {
  background: var(--primary);
  color: var(--accent);
  transform: scale(1.035);
}

button, .button {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: bold;
  font-size: 1rem;
  background: var(--primary);
  color: var(--accent);
  border: none;
  border-radius: 25px;
  padding: 10px 20px;
  cursor: pointer;
  transition: background 0.15s, color 0.13s, box-shadow 0.15s, transform 0.10s;
}
button:hover, .button:hover, button:focus {
  background: var(--secondary);
  color: var(--text-dark);
  box-shadow: 0 4px 18px 0 #48A9B366;
  transform: scale(1.04);
}

/**** FORMS (used in contact forms, future-proofing) ****/
input, select, textarea {
  font-family: inherit;
  border-radius: 8px;
  border: 1px solid #374560;
  padding: 12px 14px;
  background: #181e25;
  color: var(--accent);
  margin-bottom: 16px;
  width: 100%;
  box-sizing: border-box;
  font-size: 1rem;
}
input:focus, textarea:focus, select:focus {
  outline: 2px solid var(--secondary);
  background: #23272c;
}
label {
  color: var(--accent);
  font-size: 1rem;
  margin-bottom: 6px;
  display: block;
  font-family: 'Montserrat', Arial, sans-serif;
}

/**** TABLES (comparison, pricing) ****/
table {
  width: 100%;
  border-collapse: collapse;
  margin: 32px 0 16px 0;
  background: var(--surface-light);
  border-radius: 12px 12px 0 0;
  overflow: hidden;
  font-size: 1rem;
  box-shadow: 0 1.5px 9px 0 #233;
}
thead {
  background: var(--primary);
  color: var(--accent);
}
th, td {
  padding: 13px 14px;
  text-align: left;
  border-bottom: 1px solid #314058;
}
th {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: bold;
  letter-spacing: 1.1px;
  font-size: 1rem;
}
tr:last-of-type td {
  border-bottom: none;
}
td {
  background: var(--surface-alt);
  color: var(--text-light);
}
tbody tr:hover td {
  background: #3d4a63;
  color: var(--accent);
  transition: background 0.16s;
}

/**** HEADER & NAVIGATION ****/
header {
  background: #192231;
  border-bottom: 2px solid #374560;
  box-shadow: 0 3px 14px 0 #1018201a;
  position: sticky;
  top: 0;
  z-index: 40;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px 10px 20px;
}
.logo {
  padding-right: 24px;
  display: flex;
  align-items: center;
}
.logo img {
  height: 32px;
  width: auto;
  filter: contrast(1.2) brightness(1.05);
}
.main-nav {
  display: flex;
  gap: 32px;
  align-items: center;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  color: var(--accent);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 1.1px;
  position: relative;
  padding-bottom: 4px;
  text-transform: uppercase;
  transition: color 0.19s;
}
.main-nav a:hover,
.main-nav a:focus {
  color: var(--secondary);
}
.mobile-menu-toggle {
  background: none;
  border: none;
  font-size: 2rem;
  color: var(--secondary);
  cursor: pointer;
  display: none;
  padding: 6px 12px;
  margin-left: 22px;
}

/**** MOBILE MENU ****/
.mobile-menu {
  position: fixed;
  left: 0; top: 0;
  width: 100vw; height: 100vh;
  background: rgba(35,39,41,0.95);
  z-index: 9999;
  transform: translateX(-100%);
  transition: transform 0.38s cubic-bezier(0.91,0.05,0.5,1.14);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  pointer-events: none;
}
.mobile-menu.open {
  transform: translateX(0);
  pointer-events: auto;
}
.mobile-menu-close {
  font-size: 2rem;
  background: none;
  border: none;
  color: var(--accent);
  padding: 14px 22px;
  align-self: flex-end;
  cursor: pointer;
  transition: color 0.14s, transform 0.09s;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  color: var(--secondary);
  transform: rotate(9deg) scale(1.09);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 26px;
  width: 100%;
  padding: 36px;
  margin-top: 22px;
}
.mobile-nav a {
  color: var(--accent);
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: bold;
  font-size: 1.2rem;
  padding: 9px 7px 9px 0;
  border-bottom: 1px solid #37456044;
  transition: color 0.16s, border 0.12s;
  letter-spacing: 1.1px;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: var(--secondary);
  border-bottom: 2px solid var(--secondary);
  text-decoration: none;
}

/**** FOOTER ****/
footer {
  background: #181e25;
  border-top: 1.5px solid #374560;
  padding: 32px 0 18px 0;
  margin-top: 70px;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
  margin-bottom: 16px;
}
.footer-nav a {
  color: var(--secondary);
  font-family: 'Montserrat', Arial, sans-serif;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 1.1px;
  transition: color 0.16s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: var(--accent);
}
.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.footer-brand img {
  height: 32px;
  filter: grayscale(0.2) brightness(0.87);
}
.footer-brand span {
  color: #d8dee7;
  font-size: 0.95rem;
}

/**** TESTIMONIALS (high contrast cards) ****/
.testimonial-card {
  border-left: 4px solid var(--secondary);
  background: #fffbe7;
  color: #1b2230;
  box-shadow: 0 4px 18px 0 #20293713;
}
.testimonial-card p {
  font-size: 1.08rem;
  color: #181e25;
}
.testimonial-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  font-size: 0.97rem;
  color: #384050;
  font-weight: 600;
}
.testimonial-meta span:last-of-type {
  color: #dfae16;
  font-size: 1.3rem;
  letter-spacing: 0.5px;
}

/********** RESPONSIVE DESIGN **************/
@media (max-width: 1100px) {
  .container {
    max-width: 94vw;
  }
  .feature-grid, .services-grid, .chair-grid {
    gap: 18px;
  }
  .feature, .service-card, .chair-model {
    min-width: 180px;
    padding: 16px 10px;
  }
}

@media (max-width: 900px) {
  .main-nav {
    gap: 18px;
  }
  .feature-grid, .services-grid, .chair-grid {
    flex-wrap: wrap;
    gap: 14px;
  }
}

@media (max-width: 768px) {
  .main-nav,
  .cta-button {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: inline-block !important;
  }
  .feature-grid, .services-grid, .chair-grid {
    flex-direction: column;
    gap: 20px;
  }
  .feature, .service-card, .service-details, .chair-model {
    flex: 1 1 100%;
    min-width: 0;
    margin-bottom: 20px;
    max-width: 96vw;
  }
  .container {
    padding: 0 8px;
    max-width: 100vw;
  }
  .section, section {
    padding: 32px 7px;
  }
  .hero {
    min-height: 280px;
    padding: 40px 10px;
    border-radius: 7px;
  }
  .content-wrapper {
    gap: 18px;
  }
  .testimonials, .card-container, .content-grid {
    flex-direction: column;
    gap: 18px;
  }
  .testimonial-card {
    min-width: 0;
    max-width: 97vw;
  }
  .text-image-section {
    flex-direction: column;
    gap: 20px;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 1.7rem;
  }
  h2 {
    font-size: 1.35rem;
  }
  .hero {
    min-height: 160px;
    padding: 16px 4px 22px 4px;
    border-radius: 0;
  }
  .footer-brand img {
    height: 24px;
  }
  .mobile-nav {
    padding: 20px 10px;
    gap: 18px;
  }
}

/**** LISTS ****/
.text-section ul, .text-section ol, ul, ol {
  margin-bottom: 16px;
  padding-left: 20px;
  color: var(--text-light);
  font-size: 1rem;
}

/**** HORIZONTAL LINES ****/
hr {
  border: 0;
  height: 1px;
  background: #374560;
  margin: 30px 0;
}

/**** UTILITY CLASSES ****/
.muted {
  color: var(--gray-medium);
  font-size: 0.98rem;
}
.text-center {
  text-align: center !important;
}
.flex-row {
  display: flex;
  flex-direction: row;
  gap: 15px;
}
.flex-column {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

/*********** COOKIE BANNER & PREFERENCE MODAL ***********/
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  width: 100vw;
  background: #222b36ee;
  box-shadow: 0 -2px 18px 0 #00000038;
  color: #F6ECC0;
  font-size: 1.05rem;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  z-index: 99999;
  padding: 20px 14px 20px 30px;
  animation: cookieBannerSlideIn 0.45s cubic-bezier(.49,1.28,.75,1.03);
}
@keyframes cookieBannerSlideIn {
  0% { transform: translateY(100%); opacity: 0; }
  88% { opacity: 1; }
  100% { transform: translateY(0); opacity: 1; }
}
.cookie-banner p {
  margin: 0;
  font-size: 0.98rem;
  flex: 1 1 200px;
  color: #F6ECC0;
}
.cookie-banner .cookie-controls {
  display: flex;
  gap: 14px;
}
.cookie-banner .cookie-controls button {
  padding: 8px 19px;
  font-size: 1rem;
  border-radius: 24px;
  font-weight: bold;
  border: none;
  outline: none;
  margin-right: 0;
  transition: background 0.14s, color 0.11s, transform 0.09s;
}
.cookie-banner .accept {
  background: var(--success);
  color: #171e25;
}
.cookie-banner .accept:hover { background: #329e5d; }
.cookie-banner .reject {
  background: var(--danger);
  color: #fffbe7;
}
.cookie-banner .reject:hover { background: #b11818; }
.cookie-banner .settings {
  background: var(--secondary);
  color: #101729;
}
.cookie-banner .settings:hover {
  background: var(--primary);
  color: var(--accent);
}

/***** COOKIE PREFERENCES MODAL *****/
.cookie-modal-overlay {
  position: fixed; z-index: 100000;
  left: 0; top: 0; width: 100vw; height: 100vh;
  background: rgba(16,24,32,0.79);
  display: none;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}
.cookie-modal-overlay.open {
  display: flex;
  pointer-events: auto;
}
.cookie-modal {
  background: #222b36;
  color: #F6ECC0;
  border-radius: 18px;
  box-shadow: 0 8px 60px 0 #00000044;
  padding: 38px 32px 28px 32px;
  max-width: 380px;
  width: 92vw;
  animation: cookieModalSlideIn 0.28s cubic-bezier(.51,1.2,.49,1);
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: relative;
}
@keyframes cookieModalSlideIn {
  0% { opacity: 0; transform: translateY(28px) scale(0.93); }
  100% { opacity: 1; transform: translateY(0) scale(1); }
}
.cookie-modal h2 {
  color: var(--accent);
  font-size: 1.45rem;
  margin-bottom: 7px;
  letter-spacing: 1.1px;
}
.cookie-modal .modal-close {
  position: absolute;
  right: 16px; top: 16px;
  background: none; border: none;
  color: var(--secondary);
  font-size: 1.32rem;
  cursor: pointer;
}
.cookie-modal .modal-close:hover {
  color: var(--primary);
}
.cookie-modal form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.cookie-modal .cookie-category {
  display: flex;
  align-items: center;
  gap: 16px;
}
.cookie-modal label {
  font-weight: 600;
  color: var(--accent);
  font-size: 1.04rem;
  margin-bottom: 0;
  margin-right: 6px;
}
.cookie-modal .toggle-switch {
  position: relative;
  width: 44px; height: 24px;
  display: inline-block;
}
.cookie-modal .toggle-switch input {
  opacity: 0;
  width: 0; height: 0;
}
.cookie-modal .slider {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: #2b3950;
  border-radius: 16px;
  transition: .3s;
}
.cookie-modal .toggle-switch input:checked + .slider {
  background: var(--secondary);
}
.cookie-modal .slider:before {
  position: absolute;
  content: '';
  height: 18px; width: 18px;
  left: 3px; bottom: 3px;
  background: #fffbe7;
  border-radius: 50%;
  box-shadow: 0 1.5px 6px #1d2c37;
  transition: .3s;
}
.cookie-modal .toggle-switch input:checked + .slider:before {
  transform: translateX(18px);
}
.cookie-modal .category-description {
  font-size: 0.92rem;
  color: #f6ecc099;
  margin-top: 2px;
}
.cookie-modal .save-btn {
  background: var(--primary);
  color: var(--accent);
  padding: 11px 21px;
  border-radius: 22px;
  font-weight: bold;
  font-size: 1rem;
  letter-spacing: 1px;
  border: none;
  margin-top: 22px;
  transition: background 0.19s, color 0.14s, transform 0.11s;
  cursor: pointer;
}
.cookie-modal .save-btn:hover {
  background: var(--secondary);
  color: #222b36;
  transform: scale(1.04);
}

@media (max-width: 680px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    padding: 14px 7px 14px 10px;
    font-size: 0.97rem;
  }
  .cookie-modal {
    padding: 21px 9px 16px 14px;
    font-size: 0.97rem;
  }
}

/************ MICRO-INTERACTIONS & HOVER EFFECTS ***************/
.feature img, .service-card img {
  filter: grayscale(0.3) brightness(1.07) drop-shadow(0 2px 10px #1b22255c);
  margin-bottom: 6px;
  max-height: 38px;
  transition: filter 0.15s, transform 0.21s;
}
.feature:hover img, .service-card:hover img {
  filter: none;
  transform: scale(1.13) rotate(-4deg);
}

.cta-button, .button, button, .service-card, .feature, .chair-model, .testimonial-card {
  transition: box-shadow 0.22s cubic-bezier(.5,1.2,.65,1), transform 0.17s;
}

/************ ICONS AND DECORATIVE METALLIC EFFECTS *************/
.feature, .service-card, .chair-model {
  border-top: 3px solid var(--metallic);
  box-shadow: 0 2px 16px 0 #2c2c2c2a;
}
.feature:hover, .service-card:hover, .chair-model:hover {
  border-top: 3px solid var(--secondary);
  box-shadow: 0 5px 22px 0 #48A9B3AA;
}

/************ Z-INDEX LAYERS ************/
header, .cookie-banner, .mobile-menu, .cookie-modal-overlay, .cookie-modal {
  z-index: 9999 !important;
}

/*********** HIDE OUTLINE ON MOUSE USERS ***********/
:focus:not(:focus-visible) {
  outline: none;
}

/************ PRINT OVERRIDES ************/
@media print {
  .cookie-banner, .mobile-menu, .mobile-menu-toggle {
    display: none !important;
  }
}
