/* 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 {
  height: 100%;
  scroll-behavior: smooth;
}
body {
  min-height: 100vh;
  line-height: 1.5;
  background: #1D232A;
  color: #E5E6EB;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
}
* {
  box-sizing: border-box !important;
}
a {
  color: #FFC300;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #FFFFFF;
  text-decoration: underline;
}
ul, ol {
  margin-left: 20px;
  margin-bottom: 16px;
}
li {
  margin-bottom: 8px;
}
img {
  max-width: 100%;
  display: block;
}
button {
  font-family: inherit;
  cursor: pointer;
  outline: none;
  border: none;
  background: none;
}

/* BRANDING FONTS & HEADINGS */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #F2F3F6;
}
h1 { font-size: 2.5rem; margin-bottom: 24px; line-height: 1.15; }
h2 { font-size: 2rem; margin-bottom: 20px; line-height: 1.2; }
h3 { font-size: 1.5rem; margin-bottom: 16px; line-height: 1.25; }
h4, h5, h6 { font-size: 1.125rem; margin-bottom: 12px; line-height: 1.3; }
p { font-size: 1rem; margin-bottom: 14px; color: #C3CBD3; }
strong { color: #FFC300; font-weight: 700; }

/* CONTAINER & LAYOUTS */
.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 18px;
  width: 100%;
}
.text-section {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #232A2F;
  border-radius: 18px;
  box-shadow: 0 4px 18px 0 rgba(30,36,43,0.10),
              0 1.5px 0 0 #232A2Fab;
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  border-radius: 14px;
  background: #232C34;
  box-shadow: 0 2px 12px 0 rgba(30,36,43,0.08);
  transition: box-shadow 0.23s, transform 0.18s;
  padding: 32px 28px;
  color: #E5E6EB;
}
.card:hover, .card:focus {
  box-shadow: 0 6px 32px 0 #11151c88;
  transform: translateY(-4px) scale(1.01);
}
.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: #FAFBFC;
  color: #232A2F;
  border-radius: 13px;
  box-shadow: 0 2px 12px 0 rgba(48,49,54,0.07);
  padding: 20px;
  margin-bottom: 20px;
}
.testimonial-card p {
  color: #1D232A;
  font-size: 1.08rem;
  line-height: 1.65;
}
.testimonial-card span {
  color: #304055;
  font-size: 0.95rem;
  font-style: italic;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* HERO SECTION */
.hero {
  background: linear-gradient(135deg, #232C34 55%, #23292F 100%);
  min-height: 340px;
  display: flex;
  align-items: center;
  margin-bottom: 60px;
  padding: 72px 0 64px 0;
  border-bottom: 4px solid #313A40;
  box-shadow: 0 6px 24px 0 #13131922;
}
.hero .content-wrapper {
  max-width: 540px;
}
.hero h1 {
  color: #FFC300;
  font-size: 2.4rem;
  margin-bottom: 20px;
  text-shadow: 0 2px 10px #232C34;} 
.hero p { color: #D5DEE6; margin-bottom: 32px; }

/* HEADER & NAV */
header {
  background: #181C20;
  border-bottom: 2px solid #232C34;
  box-shadow: 0 2px 8px 0 rgba(22,22,24,0.08);
}
.nav-container {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: space-between;
  min-height: 78px;
  padding: 14px 0;
  gap: 18px;
  width: 100%;
}
.logo img {
  height: 44px;
  width: auto;
}
.main-nav {
  display: flex;
  gap: 24px;
  align-items: center;
}
.main-nav a {
  color: #E5E6EB;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 0.01em;
  padding: 7px 2px;
  border-radius: 6px;
  transition: background 0.15s, color 0.2s;
}
.main-nav a:hover, .main-nav a:focus {
  background: #232C34;
  color: #FFC300;
}
.btn-primary {
  display: inline-block;
  padding: 11px 28px;
  border-radius: 7px;
  background: #FFC300;
  color: #232A2F;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  box-shadow: 0 2px 10px 0 #212D3766;
  transition: background 0.15s, color 0.15s, box-shadow 0.18s, transform 0.19s;
  border: none;
  cursor: pointer;
}
.btn-primary:hover, .btn-primary:focus {
  background: #e5ab08;
  color: #181C20;
  box-shadow: 0 6px 24px 0 #151A208c;
  transform: translateY(-2px) scale(1.03);
}
.btn-link {
  color: #FFC300;
  background: none;
  border: none;
  font-weight: 600;
  padding: 0 2px;
  font-size: 1rem;
  transition: color 0.17s;
}
.btn-link:hover, .btn-link:focus {
  color: #FFA428;
}

/* HAMBURGER + MOBILE NAV */
.mobile-menu-toggle {
  display: none;
  background: #232A2F;
  color: #FFC300;
  border: none;
  padding: 12px;
  font-size: 2rem;
  border-radius: 7px;
  margin-left: auto;
  transition: background 0.19s, color 0.18s;
  z-index: 101;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: #1d232a;
  color: #ffffff;
}
.mobile-menu {
  position: fixed;
  z-index: 300;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: #232C34fa;
  transform: translateX(-100%);
  transition: transform 0.36s cubic-bezier(0.65,0,0.35,1);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0;
}
.mobile-menu.active {
  transform: translateX(0);
}
.mobile-menu-close {
  font-size: 2rem;
  padding: 22px 24px 8px 18px;
  color: #FFC300;
  background: none;
  border: none;
  align-self: flex-end;
  transition: color 0.2s, background 0.2s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: #fff9e7;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 24px;
  width: 100%;
  padding: 0 40px;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  color: #E5E6EB;
  font-size: 1.25rem;
  padding: 12px 0;
  border-bottom: 1px solid #23292f77;
  transition: color 0.15s, background 0.15s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: #FFC300;
  background: #20262b;
}

/* Hide menu on desktop */
@media (min-width: 1025px) {
  .mobile-menu-toggle { display: none !important; }
  .mobile-menu { display: none !important; }
  .main-nav { display: flex !important; }
}
/* Mobile header layout */
@media (max-width: 1024px) {
  .main-nav {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: block;
  }
}

/* SECTION/CONTENT SPACING */
.features, .about-section, .team-section, .services-list-section,
.consultation-cta, .contact-section, .contact-cta-section, .hero,
.cta-block, .privacy-policy-section, .rodo-section, .terms-section,
.cookies-policy-section, .thank-you-section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

.section, .about-section, .team-section, .contact-section, .privacy-policy-section,
.cookies-policy-section, .rodo-section, .terms-section, .services-list-section, .consultation-cta, .cta-block, .thank-you-section {
  background: #232A2F;
  border-radius: 20px;
  box-shadow: 0 2px 10px 0 #212d3711;
}

/* FEATURES */
.features ul {
  display: flex;
  flex-direction: column;
  gap: 15px;
  font-size: 1.08rem;
}
.features li {
  position: relative;
  padding-left: 28px;
  color: #A9B2BC;
  font-weight: 400;
}
.features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 7px;
  width: 15px;
  height: 15px;
  background: #454F5A;
  border-radius: 3px;
  border: 2px solid #FFC300;
}

/* GUIDES & NEWSLETTER CTA */
.guide-list-section .guide-teasers ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.tag-filters {
  display: flex;
  gap: 9px;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 10px;
}
.tag-filters span {
  background: #232A2F;
  color: #FFC300;
  padding: 2px 12px;
  border-radius: 5px;
  font-size: 0.98rem;
}

/* RATINGS & SUMMARY */
.ratings-summary {
  background: #232c34;
  color: #FFC300;
  border-radius: 8px;
  font-weight: 600;
  padding: 16px 22px;
  margin-top: 24px;
  margin-bottom: 8px;
  font-size: 1.1rem;
}
.ratings-summary span { color: #F6F7F9; display: block; font-size: 0.98rem; margin-top: 8px; }

/* FOOTER */
footer {
  background: #181C20;
  padding: 40px 0 24px 0;
  border-top: 3px solid #232A2F;
}
footer .content-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: flex-start;
  justify-content: space-between;
}
.footer-logo img { height: 42px; }
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-nav a {
  color: #E5E6EB;
  font-size: 1rem;
  padding: 2px 0;
  transition: color 0.15s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: #FFC300;
}
.footer-contact > div {
  margin-bottom: 6px;
  color: #A9B2BC;
  font-size: 0.97rem;
}

/* BUTTONS/INTERACTION */
.btn-primary, .btn-link {
  transition: background 0.16s, color 0.16s, box-shadow 0.16s, transform 0.14s;
}
.btn-primary:active { transform: scale(0.98); box-shadow: 0 1px 1px 0 #111d1f44; }
.btn-link:active { color: #FFC30099; }

/* SHADOWS / DECORATION / INDUSTRIAL TOUCHES */
.section, .card, .testimonial-card {
  box-shadow: 0 4px 18px 0 #10121814, 0 2px 6px 0 #232a2f11;
}
.card, .testimonial-card, .section {
  border: 1.5px solid #313a40;
}

/* Metallic accent bar */
.section::before {
  content: "";
  display: block;
  width: 48px;
  height: 4px;
  background: linear-gradient(90deg, #AEC1CE 20%, #B6B9B7 50%, #FFC300 90%);
  border-radius: 2px;
  margin-bottom: 18px;
}

/* MOBILE & RESPONSIVE */
@media (max-width: 1024px) {
  .container { max-width: 94vw; padding: 0 14px; }
  .footer-logo img, .logo img { height: 40px; }
}
@media (max-width: 768px) {
  .container { max-width: 100vw; }
  .section { padding: 26px 7px; }
  .features, .about-section, .team-section, .services-list-section,
  .consultation-cta, .contact-section, .contact-cta-section, .hero,
  .cta-block, .privacy-policy-section, .rodo-section, .terms-section,
  .cookies-policy-section, .thank-you-section {
    padding: 26px 7px;
  }
  .content-wrapper, .footer .content-wrapper {
    flex-direction: column;
    gap: 16px;
  }
  .main-nav { flex-direction: column; gap: 8px; }
  .footer-nav { flex-direction: column; gap: 7px; }
  .card-container, .content-grid { flex-direction: column; }
  .testimonial-card { padding: 15px; gap: 15px; }
  .hero {
    padding: 36px 0 32px 0;
    min-height: unset;
  }
  .hero .content-wrapper { max-width: 100%; }
  .about-section, .team-section, .contact-section, .services-list-section { margin-bottom: 38px; }
  .text-image-section { flex-direction: column; gap: 14px; }
}

@media (max-width: 450px) {
  h1 { font-size: 1.50rem; }
  h2 { font-size: 1.18rem; }
  .logo img, .footer-logo img { height: 34px; }
  .btn-primary { padding: 9px 16px; font-size: 0.98rem; }
  .testimonial-card { padding: 11px; }
}

/* FORM / INPUTS (for newsletter subscribe etc.) */
input, textarea, select {
  width: 100%;
  padding: 10px 12px;
  border-radius: 5px;
  border: 1.2px solid #313a40;
  background: #232C34;
  color: #FFF;
  font-size: 1rem;
  margin-bottom: 14px;
  font-family: inherit;
}
input:focus, textarea:focus, select:focus {
  outline: 2px solid #FFC300;
}

/* --- COOKIE CONSENT BANNER --- */
.cookie-consent-banner {
  position: fixed;
  bottom: 0;
  left: 0; right: 0;
  width: 100vw;
  z-index: 401;
  background: #181C20f8;
  box-shadow: 0 -2px 26px 0 #11161D55;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 24px 20px 20px 20px;
  color: #E9ECF2;
  font-size: 1rem;
  gap: 18px;
  transition: transform 0.36s cubic-bezier(0.45,0,0.45,1);
}
.cookie-consent-banner.hide { transform: translateY(120%); }
.cookie-consent-banner .cookie-consent-text { flex: 1; margin: 0 0 8px 0; max-width: 480px; }
.cookie-consent-banner .cookie-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}
.cookie-consent-banner button {
  padding: 10px 22px;
  border-radius: 7px;
  font-size: 1rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  margin: 0 5px 0 0;
  cursor: pointer;
  border: none;
  transition: background 0.16s, color 0.16s, box-shadow 0.15s, transform 0.14s;
}
.cookie-consent-banner .accept {
  background: #FFC300;
  color: #232A2F;
  box-shadow: 0 2px 7px 0 #212D3756;
}
.cookie-consent-banner .accept:hover {
  background: #e5ab08; color: #232A2F;
}
.cookie-consent-banner .reject {
  background: #2D2F34;
  color: #FFC300;
  border: 1.2px solid #FFC300;
}
.cookie-consent-banner .reject:hover {
  background: #FFC300; color: #232A2F;
}
.cookie-consent-banner .settings {
  background: #181C20;
  color: #ffc300;
  border: 1.2px solid #FFC300;
}
.cookie-consent-banner .settings:hover {
  background: #313a40; color: #ffc300;
}

/* COOKIE MODAL (PREFERENCES) */
.cookie-modal-overlay {
  display: none;
  position: fixed;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  background: rgba(23, 27, 32, 0.88);
  z-index: 405;
  justify-content: center;
  align-items: center;
}
.cookie-modal-overlay.active {
  display: flex;
  animation: fadeInModal 0.4s cubic-bezier(0.43,0.11,0.78,0.24);
}
@keyframes fadeInModal {
  0% { opacity: 0; } 100% { opacity: 1; }
}
.cookie-modal {
  background: #181C20;
  border-radius: 14px;
  max-width: 410px;
  padding: 38px 30px 22px 30px;
  color: #E6E8ED;
  box-shadow: 0 4px 32px 0 #13131440;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.cookie-modal h2 {
  color: #FFC300;
  margin-bottom: 14px;
  font-size: 1.3rem;
}
.cookie-modal ul {
  list-style: none;
  padding: 0;
  margin-bottom: 12px;
  gap: 12px;
}
.cookie-modal li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 11px 0;
  border-bottom: 1px solid #232A2F;
}
.cookie-modal .cookie-toggle {
  width: 42px;
  height: 24px;
  border-radius: 14px;
  background: #2A3037;
  position: relative;
  cursor: pointer;
  transition: background 0.18s;
}
.cookie-modal .cookie-toggle[aria-checked="true"] {
  background: #FFC300;
}
.cookie-modal .cookie-toggle::after {
  content: "";
  position: absolute;
  left: 4px; top: 4px;
  width: 16px; height: 16px;
  border-radius: 50%;
  background: #fff;
  transition: left 0.19s;
}
.cookie-modal .cookie-toggle[aria-checked="true"]::after {
  left: 22px;
  background: #232A2F;
}
.cookie-modal .cookie-toggle[aria-disabled="true"] {
  cursor: not-allowed;
  opacity: 0.7;
  background: #FFC30044;
}
.cookie-modal .cookie-actions {
  display: flex;
  gap: 12px;
  justify-content: flex-end;
  margin-top: 18px;
}
.cookie-modal .cookie-actions button {
  background: #FFC300;
  color: #232A2F;
  border-radius: 7px;
  padding: 9px 19px;
  font-weight: 600;
  font-size: 1rem;
  border: none;
  transition: background 0.16s, color 0.16s;
}
.cookie-modal .cookie-actions .cancel {
  background: none;
  color: #FFC300;
  border: 1.2px solid #FFC300;
}
.cookie-modal .cookie-actions .cancel:hover,
.cookie-modal .cookie-actions .cancel:focus {
  background: #313A40;
  color: #FFC300;
}
.cookie-modal .cookie-actions .save:hover,
.cookie-modal .cookie-actions .save:focus {
  background: #e5ab08;
}

/* --- UTILITY CLASSES --- */
.d-flex { display: flex; }
.flex-column { flex-direction: column; }
.flex-row { flex-direction: row; }
.align-center { align-items: center; }
.align-start { align-items: flex-start; }
.justify-between { justify-content: space-between; }
.gap-20 { gap: 20px; }
.gap-24 { gap: 24px; }
.hidden { display: none!important; }

/* MAKE SURE ALL SPACING IS APPLIED FOR CRITICAL REQUIREMENTS */
.section, .about-section, .team-section, .services-list-section, .consultation-cta, 
.contact-section, .contact-cta-section, .hero, .cta-block, .privacy-policy-section, 
.rodo-section, .terms-section, .cookies-policy-section, .thank-you-section {
  margin-bottom: 60px !important;
  padding: 40px 20px !important;
}
.card-container, .content-grid {
  gap: 24px !important;
  margin-bottom: 20px;
}
.card {
  margin-bottom: 20px !important;
}
.text-image-section {
  gap: 30px !important;
}
.testimonial-card {
  gap: 20px !important;
  padding: 20px !important;
  margin-bottom: 20px !important;
}
.feature-item {
  gap: 15px !important;
}

/* OVERLAY EFFECTS FOR INTERACTIVES */
@media (max-width: 700px) {
  .footer .content-wrapper { flex-direction: column !important; gap: 24px !important; }
  .cookie-consent-banner { flex-direction: column; align-items: flex-start; gap: 11px; padding: 18px 7px; }
  .cookie-consent-banner .cookie-buttons { gap: 8px; }
  .cookie-consent-banner .cookie-consent-text { max-width: unset; }
}

/* ACCESSIBILITY FOCUS STYLE */
a:focus, button:focus, .btn-primary:focus { outline: 2px dashed #FFC300; outline-offset: 2px; }

/* INDUSTRIAL MODERN: DETAILED TOUCHES */
.section, .card, .testimonial-card, .cookie-modal {
  border-radius: 14px;
  border-bottom: 2.5px solid #B6B9B7;
  border-right: 1.5px solid #A7B3B8;
}
.section h2, .about-section h2, .team-section h2, .cta-block h2 {
  color: #FFC300;
  text-shadow: 0 1.5px 6px #1D232A;
  position: relative;
}
/* Small metallic separator bar for h2 */
.section h2::after, .about-section h2::after, .cta-block h2::after {
  content: "";
  display: block;
  height: 3px;
  width: 66px;
  background: linear-gradient(90deg, #B6B9B7, #FFC300 80%);
  margin: 10px 0 6px 0;
  border-radius: 2px;
}

/* ---------- END OF CSS ---------- */
