/* CSS RESET & NORMALIZATION */
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 {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 16px;
  scroll-behavior: smooth;
}
body {
  line-height: 1.6;
  background: #F3F4F6;
  color: #374151;
  font-family: 'Open Sans', Arial, sans-serif;
  min-height: 100vh;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
  border: none;
}
a {
  color: #374151;
  text-decoration: none;
  transition: color 0.2s;
}
a:focus,
a:hover {
  color: #FBBF24;
  outline: none;
}
ul, ol {
  list-style: none;
  padding-left: 0;
}
button {
  font: inherit;
  border: none;
  background: none;
  color: inherit;
  cursor: pointer;
  outline: none;
  padding: 0;
}

/* TYPOGRAPHY */
h1, h2, h3, h4, h5 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  letter-spacing: 0.03em;
  color: #374151;
}
h1 {
  font-size: 2.75rem;
  line-height: 1.1;
  margin-bottom: 24px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-left: 8px solid #FBBF24;
  padding-left: 18px;
}
h3 {
  font-size: 1.25rem;
  margin-bottom: 14px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}
h4 {
  font-size: 1.125rem;
  margin-bottom: 12px;
}
h5 {
  font-size: 1rem;
  margin-bottom: 8px;
}
p {
  font-size: 1rem;
  margin-bottom: 16px;
  color: #374151;
  font-family: 'Open Sans', Arial, sans-serif;
}
strong {
  font-weight: 700;
  color: #374151;
}
blockquote {
  font-style: italic;
  color: #374151;
  background: #fffbe9;
  border-left: 5px solid #FBBF24;
  margin: 0 0 8px 0;
  padding: 20px 24px 14px 18px;
  border-radius: 0 16px 16px 0;
  box-shadow: 0 2px 8px rgba(55, 65, 81, 0.06);
  position: relative;
}

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

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 4px 24px rgba(55, 65, 81, 0.07);
  position: relative;
}

.card-container,
.card-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 10px rgba(55,65,81,0.08);
  margin-bottom: 20px;
  position: relative;
  padding: 30px 24px;
  flex: 1 1 280px;
  min-width: 250px;
  transition: transform 0.18s, box-shadow 0.18s;
}
.card:hover, .card:focus-within {
  transform: translateY(-4px) scale(1.01);
  box-shadow: 0 8px 28px rgba(55,65,81,0.14);
}

.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;
}
.text-section {
  margin-bottom: 20px;
}

.service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 25px;
  /* Ensure geometric blocks */
}
.service-list > div {
  background: #F3F4F6;
  border-radius: 18px;
  padding: 28px 24px 18px 22px;
  min-width: 220px;
  flex: 1 1 260px;
  box-shadow: 0 2px 10px rgba(55,65,81,0.07);
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
  border-left: 5px solid #FBBF24;
  transition: box-shadow 0.22s, transform 0.18s;
  position: relative;
}
.service-list > div:hover {
  box-shadow: 0 10px 32px rgba(55,65,81,0.16);
  transform: translateY(-5px);
}
.service-list h3 {
  font-size: 1.1rem;
  margin-bottom: 10px;
}
.service-list p {
  color: #374151;
  margin-bottom: 8px;
}
.service-list span {
  color: #374151;
  font-size: 0.98rem;
  font-weight: bold;
  background: #fff;
  border-radius: 10px;
  padding: 5px 10px;
  align-self: flex-end;
}

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

.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 10px rgba(55,65,81,0.08);
  margin-bottom: 20px;
  flex-wrap: wrap;
}
.testimonial-card blockquote {
  background: transparent;
  box-shadow: none;
  border-left: 5px solid #FBBF24;
  margin: 0;
  padding: 0 12px 0 12px;
}
.testimonial-card .testimonial-info {
  display: flex;
  flex-direction: column;
  gap: 5px;
  font-size: 1rem;
  line-height: 1.4;
  color: #222;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
}
.testimonial-card span:last-child {
  color: #FBBF24;
  font-size: 1.35em;
}

/* NAVIGATION & HEADER */
header {
  background: #fff;
  box-shadow: 0 2px 16px rgba(55,65,81,0.07);
  padding: 0;
  position: sticky;
  top: 0;
  z-index: 110;
}
nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
  padding: 16px 0;
}
.logo img {
  height: 40px;
  display: block;
}
nav ul {
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
  align-items: center;
  margin-left: 20px;
  margin-right: 20px;
}
nav ul li a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  letter-spacing: 0.02em;
  font-size: 1rem;
  text-transform: uppercase;
  opacity: 0.93;
  transition: color 0.18s, opacity 0.18s;
  border-bottom: 3px solid transparent;
  padding-bottom: 2px;
}
nav ul li a.active,
nav ul li a:focus,
nav ul li a:hover {
  color: #FBBF24;
  opacity: 1;
  border-bottom: 3px solid #FBBF24;
}
.cta {
  display: inline-block;
  font-family: 'Montserrat', Arial, sans-serif;
  background: #FBBF24;
  color: #374151;
  padding: 0.75em 1.9em;
  margin-left: 18px;
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: 0.02em;
  border-radius: 100px 4px 18px 4px;
  box-shadow: 0 4px 18px rgba(251,191,36,0.13);
  border: none;
  transition: background 0.2s, color 0.2s, box-shadow 0.18s, transform 0.14s;
  text-transform: uppercase;
}
.cta:hover, .cta:focus {
  background: #374151;
  color: #fff;
  box-shadow: 0 12px 24px rgba(55,65,81,0.13);
  transform: scale(1.03) translateY(-1.5px);
}

.mobile-menu-toggle {
  display: none;
  background: #FBBF24;
  color: #374151;
  font-size: 2.1rem;
  border-radius: 12px;
  width: 52px;
  height: 52px;
  align-items: center;
  justify-content: center;
  border: none;
  position: relative;
  z-index: 200;
  margin-left: 16px;
  transition: background 0.2s, color 0.2s;
}
.mobile-menu-toggle:hover,
.mobile-menu-toggle:focus {
  background: #374151;
  color: #FBBF24;
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  height: 100vh;
  background: #fff;
  z-index: 1200;
  box-shadow: 0 8px 44px rgba(55,65,81,0.14);
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.74,0.01,0.21,1);
  padding-top: 28px;
  flex-direction: column;
}
.mobile-menu.open {
  display: flex;
  transform: translateX(0);
  animation: mobileSlideIn 0.35s cubic-bezier(0.74,0.01,0.21,1);
}
@keyframes mobileSlideIn {
  from { transform: translateX(105%); }
  to { transform: translateX(0); }
}
.mobile-menu-close {
  background: #FBBF24;
  color: #374151;
  font-size: 2rem;
  width: 45px;
  height: 45px;
  border-radius: 12px;
  align-self: flex-end;
  margin: 0 18px 24px 0;
  transition: background 0.18s, color 0.18s;
  box-shadow: 0 2px 10px rgba(55,65,81,0.10);
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  background: #374151;
  color: #FBBF24;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 22px;
  width: 100%;
  align-items: center;
  margin-top: 20px;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.17rem;
  font-weight: 700;
  text-transform: uppercase;
  color: #374151;
  background: #F3F4F6;
  padding: 16px 0;
  width: 90%;
  text-align: center;
  border-radius: 13px;
  margin-bottom: 4px;
  transition: background 0.15s, color 0.15s;
  box-shadow: 0 2px 8px rgba(55,65,81,0.05);
  letter-spacing: 0.05em;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: #FBBF24;
  background: #374151;
}

@media (max-width: 1024px) {
  nav ul {
    gap: 17px;
    margin-left: 0;
    margin-right: 0;
  }
  nav {
    gap: 15px;
  }
}
@media (max-width: 880px) {
  nav ul { gap: 7px; }
}
@media (max-width: 768px) {
  nav ul,
  nav .cta {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: flex;
  }
  nav {
    gap: 0;
    padding: 9px 0;
  }
  .container {
    padding: 0 8px;
  }
}

/* MAIN SECTIONS & FLEXBOX ALIGNMENT */
@media (max-width: 820px) {
  .content-wrapper, .service-list, .content-grid {
    flex-direction: column;
    gap: 14px;
  }
}
@media (max-width: 540px) {
  .section {
    margin-bottom: 34px;
    padding: 26px 4px;
    border-radius: 13px;
  }
  .testimonial-card {
    border-radius: 10px;
    padding: 13px 6px;
    flex-direction: column;
    gap: 9px;
  }
  .service-list > div {
    padding: 16px 7px 11px 7px;
  }
  h1 {
    font-size: 1.42rem;
  }
  h2 {
    font-size: 1.15rem;
    padding-left: 7px;
    border-left-width: 5px;
  }
}

.text-image-section {
  flex-wrap: wrap;
  align-items: center;
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
  }
}

/* LISTS and UL/OL STYLE */
ul, ol {
  list-style: none;
}
ul li, ol li {
  font-size: 1rem;
  color: #374151;
  margin-bottom: 14px;
  position: relative;
  padding-left: 32px;
  font-family: 'Open Sans', Arial, sans-serif;
  line-height: 1.7;
}
ul li:before {
  content: '';
  display: inline-block;
  width: 16px;
  height: 16px;
  background: #FBBF24;
  border-radius: 32% 68% 48% 52%/69% 40% 60% 31%;
  margin-right: 12px;
  position: absolute;
  left: 0;
  top: 6px;
  box-shadow: 0 2px 6px rgba(251,191,36,0.18);
}

@media (max-width: 540px) {
  ul li {
    padding-left: 20px;
    margin-bottom: 9px;
  }
  ul li:before {
    width: 10px;
    height: 10px;
    top: 7px;
    left: 2px;
  }
}

.text-section h3 {
  margin-top: 22px;
  margin-bottom: 9px;
  font-size: 1.07rem;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

/* FOOTER STYLE */
footer {
  width: 100%;
  background: #374151;
  color: #fff;
  padding: 32px 0 16px 0;
  margin-top: 48px;
  font-size: 1rem;
  box-shadow: 0 -2px 24px rgba(55,65,81,0.11);
}
footer .content-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
  align-items: flex-start;
}
.footer-brand {
  display: flex;
  flex-direction: row;
  gap: 13px;
  align-items: center;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.12rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 14px;
  color: #FBBF24;
}
.footer-brand img {
  height: 35px;
  width: auto;
}
.footer-contact {
  font-size: 1rem;
  color: #F3F4F6;
  margin-bottom: 10px;
}
.footer-nav {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 8px;
}
.footer-nav a {
  color: #FBBF24;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  letter-spacing: 0.03em;
  font-weight: 600;
  text-transform: uppercase;
  opacity: 0.88;
  transition: opacity 0.19s, text-decoration 0.19s;
  border-bottom: 2px solid transparent;
  padding: 2px 0;
}
.footer-nav a:hover, .footer-nav a:focus {
  opacity: 1;
  border-bottom: 2px solid #FBBF24;
  text-decoration: none;
}
.footer-social {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 7px;
}
.footer-social img {
  width: 25px;
  height: 25px;
  filter: grayscale(100%) contrast(1.1) brightness(1.2);
  transition: filter 0.2s, transform 0.15s;
  border-radius: 6px;
}
.footer-social a:hover img,
.footer-social a:focus img {
  filter: grayscale(0%) brightness(1.0) drop-shadow(0 4px 8px #FBBF24);
  transform: scale(1.12);
}
.footer-social span {
  font-size: 1rem;
  letter-spacing: 0.03em;
  color: #FBBF24;
}

@media (max-width: 800px) {
  footer .content-wrapper {
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
  }
}

/* COOKIE CONSENT BANNER & MODAL */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  width: 100vw;
  background: #374151;
  color: #fff;
  padding: 18px 16px 14px 16px;
  font-size: 1rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  z-index: 9999;
  box-shadow: 0 -2px 22px rgba(55,65,81,0.12);
  gap: 16px;
  animation: cookieFadeIn 0.6s;
}
@keyframes cookieFadeIn {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0); }
}
.cookie-banner p {
  color: #fff;
  margin: 0;
  flex: 1 1 320px;
  font-size: 1rem;
}
.cookie-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.cookie-banner button {
  min-width: 120px;
  padding: 9px 18px;
  border-radius: 7px;
  background: #FBBF24;
  color: #374151;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  border: none;
  margin-left: 0;
  transition: background 0.17s, color 0.17s, box-shadow 0.13s;
  box-shadow: 0 2px 8px rgba(251,191,36,0.12);
  margin-bottom: 3px;
}
.cookie-banner button:hover, .cookie-banner button:focus {
  background: #374151;
  color: #fff;
}
.cookie-banner button.cookie-settings {
  background: #fff;
  color: #374151;
  box-shadow: none;
  border: 1px solid #FBBF24;
}
.cookie-banner button.cookie-settings:hover, .cookie-banner button.cookie-settings:focus {
  background: #FBBF24;
  color: #374151;
}

.cookie-modal-overlay {
  position: fixed;
  z-index: 12000;
  inset: 0;
  background: rgba(55,65,81,0.44);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: cookieOverlayFade .35s;
}
@keyframes cookieOverlayFade {
  from { opacity: 0; }
  to { opacity: 1; }
}
.cookie-modal {
  background: #fff;
  color: #374151;
  border-radius: 22px;
  max-width: 410px;
  width: 96%;
  padding: 32px 25px 22px 25px;
  box-shadow: 0 12px 48px rgba(55,65,81,0.20);
  display: flex;
  flex-direction: column;
  gap: 22px;
  position: relative;
  animation: cookieModalPop .34s;
}
@keyframes cookieModalPop {
  from { opacity: 0; transform: scale(0.91) translateY(24px); }
  to   { opacity: 1; transform: scale(1) translateY(0); }
}
.cookie-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cookie-modal-header h3 {
  font-size: 1.13rem;
  color: #374151;
  font-family: 'Montserrat', Arial, sans-serif;
}
.cookie-modal-close {
  background: #FBBF24;
  color: #374151;
  width: 34px;
  height: 34px;
  border-radius: 10px;
  font-size: 1.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.17s, color 0.17s;
  border: none;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  background: #374151;
  color: #FBBF24;
}
.cookie-category {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1rem;
  background: #F3F4F6;
  padding: 12px 17px;
  border-radius: 10px;
  margin-bottom: 8px;
  font-family: 'Open Sans', Arial, sans-serif;
}
.cookie-category input[type=checkbox] {
  width: 22px;
  height: 22px;
  accent-color: #FBBF24;
}
.cookie-modal .cookie-modal-footer {
  display: flex;
  justify-content: flex-end;
  gap: 16px;
}
.cookie-modal .cookie-modal-footer button {
  min-width: 110px;
  padding: 8px 15px;
  border-radius: 6px;
  background: #FBBF24;
  color: #374151;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  border: none;
  transition: background 0.15s, color 0.15s;
}
.cookie-modal .cookie-modal-footer button:hover, .cookie-modal .cookie-modal-footer button:focus {
  background: #374151;
  color: #fff;
}

@media (max-width: 540px) {
  .cookie-banner {
    flex-direction: column;
    gap: 9px;
    padding: 12px 5px 14px 5px;
    font-size: 0.92rem;
  }
  .cookie-modal {
    max-width: 95vw;
    border-radius: 15px;
    padding: 19px 6px 17px 7px;
    font-size: 0.99rem;
  }
  .cookie-modal-header h3 {
    font-size: 1rem;
  }
  .cookie-category {
    font-size: 0.98rem;
    padding: 7px 10px;
  }
}

/* ANIMATIONS */
.cta,
.card,
.service-list > div,
.testimonial-card,
.section,
button,
.mobile-menu,
.cookie-banner,
.cookie-modal {
  transition: box-shadow 0.18s, background 0.21s, color 0.16s, transform 0.18s;
}

/* MICROINTERACTIONS */
button:active {
  transform: scale(0.97);
}
nav ul li a:active, .cta:active, .cookie-modal .cookie-modal-footer button:active {
  transform: scale(0.96);
}

/* ACCESSIBILITY FOCUS */
a:focus, button:focus, .cta:focus, .mobile-nav a:focus, .cookie-modal-close:focus {
  outline: 2px solid #FBBF24;
  outline-offset: 1px;
}

/* GEOMETRIC/STRUCTURED DECORATIVE SHAPES */
.section::before {
  content: '';
  display: block;
  position: absolute;
  top: -16px;
  left: -24px;
  width: 54px;
  height: 54px;
  background: #FBBF24;
  opacity: 0.10;
  border-radius: 14px 2px 20px 2px;
  z-index: 0;
}
.section::after {
  content: '';
  display: block;
  position: absolute;
  bottom: -19px;
  right: -26px;
  width: 46px;
  height: 32px;
  background: #374151;
  opacity: 0.06;
  border-radius: 2px 16px 2px 18px;
  z-index: 0;
}
@media (max-width: 540px) {
  .section::before,
  .section::after {
    display: none;
  }
}

/* END CSS */
