/*==============================*
  SYNTELEON SPOT | INDUSTRIAL MODERN STYLE
  Responsive CSS (FLEXBOX ONLY)
  Brand colors: #24282B (primary), #F6C559 (secondary), #E8E6E4 (accent)
  Fonts: Montserrat (display), Roboto (body)
  ===============================*/

/* ==== 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 {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  background: #24282B;
  color: #E8E6E4;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}
a {
  color: #F6C559;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #fffbe2;
}

button {
  font: inherit;
  background: none;
  border: none;
  cursor: pointer;
  outline: none;
}

ul, ol {
  padding-left: 1.2em;
  margin-top: 16px;
  margin-bottom: 16px;
}

li {
  margin-bottom: 10px;
}
strong {
  font-weight: 700;
}

/* ==== TYPOGRAPHY ==== */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: #F6C559;
  letter-spacing: 0.02em;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
}
h1 { font-size: 2.5rem; margin-bottom: 24px; }
h2 { font-size: 2rem; margin-bottom: 20px; }
h3 { font-size: 1.3rem; margin-bottom: 14px; }
h4 { font-size: 1.1rem; margin-bottom: 12px; }

@media (max-width: 540px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.4rem; }
}

p {
  margin-bottom: 18px;
  font-size: 1rem;
  font-family: 'Roboto', Arial, sans-serif;
  color: #E8E6E4;
}

blockquote, q {
  border-left: 4px solid #F6C559;
  margin: 24px 0;
  padding-left: 18px;
  font-size: 1.15rem;
  color: #E8E6E4;
  font-style: italic;
}

/* ==== CONTAINERS & SECTION SPACING ==== */
.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 20px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: rgba(36, 40, 43, 0.83);
  border-radius: 12px;
  box-shadow: 0 4px 24px 0 rgba(32,34,38,0.14);
}

.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-start;
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 20px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #222528;
  border-radius: 10px;
  box-shadow: 0 2px 10px 0 rgba(30, 32, 34, 0.07);
  padding: 24px;
  transition: box-shadow 0.2s, transform 0.2s;
}
.card:hover {
  box-shadow: 0 6px 32px 0 rgba(246,197,89,0.13);
  transform: translateY(-2px) scale(1.01);
  z-index: 1;
}
.service-card {
  background: #222528;
  border-left: 4px solid #F6C559;
  border-radius: 10px;
  padding: 28px 20px 26px 26px;
  margin-bottom: 20px;
  box-shadow: 0 2px 10px 0 rgba(36,40,43,0.13);
  transition: box-shadow 0.2s, border-color 0.2s;
}
.service-card:hover {
  box-shadow: 0 6px 24px rgba(246,197,89,0.14);
  border-color: #b08727;
}

.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;
  margin-bottom: 24px;
  background: #F5F5F6;
  border-radius: 8px;
  box-shadow: 0 1px 8px rgba(36,40,43,0.10);
  color: #181616 !important;
  font-size: 1.07rem;
  position: relative;
}
.testimonial-card p {
  color: #24282B;
  margin-bottom: 8px;
}
.testimonial-card span {
  color: #6C6B6A;
  font-size: 0.97rem;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* ==== HERO SECTION ==== */
.hero {
  background: linear-gradient(100deg, #232427 65%, #29261e 100%);
  color: #F6C559;
  min-height: 360px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0 0 16px 16px;
  margin-bottom: 48px;
  box-shadow: 0 8px 32px 0 rgba(36,40,43,0.12);
  position: relative;
}
.hero .container {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 240px;
}
.hero .content-wrapper {
  gap: 18px;
  max-width: 550px;
  align-items: flex-start;
}
.hero h1 {
  color: #F6C559;
  text-shadow: 0 1px 4px #1E2022;
}
.hero p {
  color: #fff6e4;
  font-size: 1.18rem;
  margin-bottom: 22px;
}
.hero .cta-primary {
  margin-top: 20px;
}

/* ==== BUTTONS ==== */
.cta-primary {
  display: inline-flex;
  align-items: center;
  padding: 12px 28px;
  background: #F6C559;
  color: #24282B;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.09rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  border: none;
  border-radius: 8px;
  box-shadow: 0 2px 8px 0 rgba(246,197,89,0.11);
  cursor: pointer;
  transition: background 0.18s, color 0.18s, transform 0.18s;
  margin-top: 10px;
  margin-bottom: 10px;
}
.cta-primary:hover, .cta-primary:focus {
  background: #e7b937;
  color: #191919;
  transform: translateY(-2px) scale(1.025);
  outline: none;
}

.cta-secondary {
  display: inline-flex;
  padding: 10px 20px;
  font-family: inherit;
  background: transparent;
  border: 2px solid #F6C559;
  color: #F6C559;
  border-radius: 7px;
  font-weight: 600;
  transition: background 0.15s, color 0.15s;
}
.cta-secondary:hover, .cta-secondary:focus {
  background: #F6C559;
  color: #1C1D1F;
}

/* ==== HEADER & NAVIGATION ==== */
header {
  width: 100%;
  background: #222528;
  padding: 7px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 20;
  box-shadow: 0 2px 12px 0 rgba(36,40,43,0.10);
}
header nav {
  display: flex;
  align-items: center;
  gap: 20px;
}
header nav a {
  color: #E8E6E4;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.04rem;
  font-weight: 500;
  padding: 7px 12px;
  border-radius: 6px;
  letter-spacing: 0.03em;
  transition: background 0.18s, color 0.18s;
}
header nav a:hover, header nav a:focus {
  background: #F6C559;
  color: #24282B;
}
header nav img {
  height: 32px;
  margin-right: 8px;
}
header .cta-primary {
  margin-left: 16px;
  margin-right: 8px;
  box-shadow: none;
}
header .mobile-menu-toggle {
  display: none;
  background: #F6C559;
  color: #24282B;
  border-radius: 50%;
  width: 42px;
  height: 42px;
  font-size: 1.45rem;
  margin-left: 16px;
  justify-content: center;
  align-items: center;
  box-shadow: 0 1px 4px rgba(246,197,89,0.16);
  border: none;
  transition: background 0.16s, color 0.16s;
}
header .mobile-menu-toggle:hover, header .mobile-menu-toggle:focus {
  background: #24282B;
  color: #F6C559;
  outline: 2px solid #F6C559;
}

/* ==== MOBILE MENU ==== */
.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  background: rgba(36, 40, 43, 0.96);
  z-index: 2000;
  transform: translateX(-100vw);
  transition: transform 0.35s cubic-bezier(0.6,0,0.3,1);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 32px 24px 12px 24px;
  box-sizing: border-box;
}
.mobile-menu.active {
  transform: translateX(0);
}
.mobile-menu-close {
  position: absolute;
  top: 22px; right: 24px;
  font-size: 2.6rem;
  color: #F6C559;
  background: none;
  border: none;
  z-index: 2101;
  width: 44px; height: 44px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.16s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #231F19;
  color: #fff1b2;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin-top: 68px;
  width: 100%;
}
.mobile-nav a {
  color: #F6C559;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.22rem;
  font-weight: 600;
  padding: 14px 0;
  border-radius: 6px;
  transition: background 0.15s, color 0.15s;
  width: 100%;
  text-align: left;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #F6C559;
  color: #24282B;
}

/* ==== FOOTER ==== */
footer {
  background: #1d1f21;
  padding: 38px 0 26px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 40px;
  gap: 18px;
}
footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 12px;
}
footer nav a {
  color: #F6C559;
  font-family: 'Montserrat';
  font-weight: 500;
  font-size: 1rem;
  padding: 4px 10px;
  border-radius: 5px;
}
footer nav a:hover, footer nav a:focus {
  background: #F6C559;
  color: #1d1f21;
}
.footer-contact {
  color: #E8E6E4;
  font-size: 0.97rem;
  font-family: 'Roboto', Arial, sans-serif;
  text-align: center;
  margin-bottom: 8px;
  line-height: 1.4;
}
.footer-contact a {
  color: #F6C559;
  text-decoration: underline;
}
footer span {
  color: #66695E;
  font-size: 0.95rem;
}

/* ==== GALLERIA STYLE TIPS ==== */
.style-tips {
  background: #222528;
  border-left: 4px solid #F6C559;
  padding: 20px 22px;
  border-radius: 8px;
  margin-top: 24px;
  margin-bottom: 12px;
  box-shadow: 0 1px 6px rgba(246,197,89,0.10);
}
.style-tips h3 {
  color: #F6C559;
  margin-bottom: 12px;
}
.style-tips ul {
  margin: 0;
  padding-left: 18px;
  color: #E8E6E4;
}

/* ==== COOKIE CONSENT BANNER ==== */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 4000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 22px 16px;
  background: #24282B;
  color: #E8E6E4;
  box-shadow: 0 -4px 24px rgba(36,40,43,0.12);
  gap: 30px;
  transition: transform 0.33s cubic-bezier(0.7, 0, 0.3, 1);
}
.cookie-banner.hidden {
  transform: translateY(120%);
}
.cookie-banner-message {
  font-size: 1.07rem;
  line-height: 1.5;
  max-width: 480px;
}
.cookie-banner-btns {
  display: flex;
  align-items: center;
  gap: 14px;
}
.cookie-banner-btns button {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 0.98rem;
  font-weight: 700;
  padding: 9px 18px;
  border-radius: 8px;
  border: none;
  transition: background 0.18s, color 0.18s;
}
.cookie-accept {
  background: #F6C559;
  color: #24282B;
}
.cookie-accept:hover, .cookie-accept:focus {
  background: #eed073;
}
.cookie-reject {
  background: none;
  border: 2px solid #F6C559;
  color: #F6C559;
}
.cookie-reject:hover, .cookie-reject:focus {
  background: #fffbe3;
  color: #24282B;
}
.cookie-settings {
  background: #222528;
  border: 1.5px solid #F6C559;
  color: #F6C559;
}
.cookie-settings:hover, .cookie-settings:focus {
  background: #F6C559;
  color: #24282B;
}

/* ==== COOKIE MODAL ==== */
.cookie-modal-overlay {
  position: fixed;
  left: 0; top: 0; right: 0; bottom: 0;
  background: rgba(36,40,43,0.89);
  z-index: 4100;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.18s;
}
.cookie-modal {
  background: #222528;
  color: #F6C559;
  border-radius: 14px;
  padding: 36px 28px;
  max-width: 430px;
  width: 95%;
  display: flex;
  flex-direction: column;
  gap: 18px;
  box-shadow: 0 6px 32px rgba(36,40,43,0.26);
  animation: cookieModalAppear 0.41s cubic-bezier(0.6,0,0.3,1);
}
@keyframes cookieModalAppear {
  from { transform: translateY(30px) scale(0.95); opacity:0 }
  to   { transform: none; opacity: 1 }
}
.cookie-modal-title {
  color: #F6C559;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.32rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  margin-bottom: 6px;
}
.cookie-modal-categories {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.cookie-modal-category {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #1d1f21;
  border-radius: 7px;
  padding: 10px 12px;
  color: #E8E6E4;
}
.cookie-toggle {
  width: 36px; height: 20px;
  background: #F6C559;
  border-radius: 20px;
  position: relative;
  display: inline-block;
  transition: background 0.15s;
}
.cookie-toggle input {
  display: none;
}
.cookie-toggle-slider {
  position: absolute;
  left: 3px; top: 3px;
  width: 14px; height: 14px;
  border-radius: 50%;
  background: #fffbe2;
  transition: left 0.2s;
}
.cookie-toggle input:checked + .cookie-toggle-slider {
  left: 19px;
  background: #222528;
}
.cookie-modal-actions {
  display: flex;
  gap: 18px;
  justify-content: flex-end;
  margin-top: 8px;
}

/* ==== RESPONSIVE DESIGN ==== */
@media (max-width: 992px) {
  .container { max-width: 100%; }
}

@media (max-width: 768px) {
  h1 { font-size: 1.6rem; }
  h2 { font-size: 1.17rem; }
  header nav {
    display: none;
  }
  header .cta-primary {
    display: none;
  }
  header .mobile-menu-toggle {
    display: flex;
  }
  .content-wrapper,
  .card-container,
  .content-grid {
    flex-direction: column;
    gap: 18px;
  }
  .hero {
    min-height: 230px;
    padding-top: 1.8em;
    padding-bottom: 1.5em;
  }
  .section {
    padding: 30px 10px;
    margin-bottom: 38px;
  }
  .testimonial-card {
    padding: 16px 10px;
    font-size: 1rem;
  }
  .service-card {
    padding: 18px 10px 15px 12px;
  }
  .mobile-menu {
    padding-top: 18px;
    font-size: 1.09rem;
  }
  .mobile-nav {
    gap: 22px;
    margin-top: 48px;
  }
  .footer-contact {
    font-size: 0.9rem;
  }
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    padding: 14px 10px;
  }
}

@media (max-width: 520px) {
  .container {
    padding: 0 6px;
  }
  .cookie-modal {
    padding: 20px 6px;
  }
}

/* ==== FLEX CRITICAL ALIGNMENTS (MANDATORY SPACING!!) ==== */
.section      { margin-bottom: 60px; padding: 40px 20px; }
.card-container { display: flex; flex-wrap: wrap; gap: 24px; }
.card        { margin-bottom: 20px; position: relative; }
.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; }

/* ==== MISCELLANEOUS ==== */
::-webkit-scrollbar {
  width: 9px;
  background: #191a1c;
}
::-webkit-scrollbar-thumb {
  background: #393d41;
  border-radius: 8px;
}

/* List icons (e.g. / Feature List) */
.content-wrapper ul img {
  width: 22px;
  height: 22px;
  object-fit: contain;
  vertical-align: middle;
  margin-right: 11px;
  background: #212224;
  border-radius: 4px;
  box-shadow: 0 1px 6px rgba(36, 40, 43, 0.14);
}

/* OTHERS: Form fallback styles if needed */
input, textarea, select {
  font-family: 'Roboto', Arial, sans-serif;
  background: #ededed;
  color: #24282B;
  border: 1.5px solid #bbb;
  border-radius: 7px;
  padding: 10px 12px;
  margin-bottom: 16px;
  width: 100%;
  box-sizing: border-box;
  font-size: 1rem;
  transition: border-color 0.16s;
}
input:focus, textarea:focus, select:focus {
  border-color: #F6C559;
  outline: none;
}

/* ==== TRANSITION EFFECTS ==== */
.cta-primary, .cta-secondary, .cookie-banner-btns button, .mobile-menu-toggle, .mobile-menu-close, header nav a, .mobile-nav a, footer nav a {
  transition: background 0.18s, color 0.18s, transform 0.14s;
}

/* ==== VISUAL DIVIDERS ==== */
hr {
  border: none;
  border-top: 1px solid #393d41;
  margin: 36px 0;
}

/* ==== SELECTION COLOR ==== */
::selection {
  background: #F6C559;
  color: #24282B;
}

/* ==== FOCUS VISIBLE ==== */
:focus-visible {
  outline: 2px solid #F6C559;
  outline-offset: 2px;
}

/* ================================ */
/* ANIMATIONS */
.fade-in {
  animation: fadeIn 0.65s cubic-bezier(0.45,0.18,0.55,1.0);
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
/* ================================ */