/* RESET & NORMALIZATION */
html {
  box-sizing: border-box;
  font-size: 16px;
  scroll-behavior: smooth;
}
*, *:before, *:after {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
  outline: none;
}
body {
  background: #F8F9FA;
  color: #222B36;
  font-family: 'Roboto', Arial, sans-serif;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.7;
}
img {
  max-width: 100%;
  display: block;
}
ul, ol {
  margin: 0 0 1.5em 1.4em;
}
li {
  margin-bottom: 0.4em;
}
a {
  color: #222B36;
  text-decoration: none;
  transition: color .18s;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
}
a:hover, a:focus {
  color: #FFCF6C;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #222B36;
  margin-bottom: 0.6em;
}
h1 {
  font-size: 2.25rem;
  line-height: 1.15;
}
h2 {
  font-size: 1.5rem;
  line-height: 1.2;
}
h3 {
  font-size: 1.2rem;
}
h4 {
  font-size: 1rem;
}
.subheadline {
  font-family: 'Roboto', Arial, sans-serif;
  font-weight: 400;
  font-size: 1.12rem;
  color: #555e6a;
  line-height: 1.6;
  margin-bottom: 1.2em;
}
blockquote {
  border-left: 4px solid #FFCF6C;
  padding-left: 1em;
  margin-bottom: 1em;
  color: #222B36;
  font-size: 1.05rem;
  font-style: italic;
  letter-spacing: 0.01em;
}
strong {
  font-weight: bold;
}
.container {
  width: 100%;
  max-width: 1130px;
  margin: 0 auto;
  padding-left: 18px;
  padding-right: 18px;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
}
.text-section {
  max-width: 700px;
  margin: 0 auto;
}

/* SECTIONS & SPACING - MANDATORY LAYOUTS */
section {
  margin-bottom: 60px;
  padding: 40px 0 40px 0;
  width: 100%;
  background: none;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #fff;
  border-radius: 18px;
  padding: 28px 22px;
  box-shadow: 0 3px 14px 0 rgba(34, 43, 54, 0.10);
  border: 1.5px solid #f0f1f3;
}
.card:last-child {
  margin-bottom: 0;
}
.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;
  margin-bottom: 28px;
  background: #f5f6f8;
  border-left: 6px solid #FFCF6C;
  border-radius: 14px;
  box-shadow: 0 2px 10px 0 rgba(34, 43, 54, 0.04);
  font-size: 1.07rem;
  color: #222B36;
}
.testimonial-card blockquote {
  border: none;
  padding-left: 0;
  margin-bottom: 0;
  color: #222B36;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #fff;
  border-radius: 14px;
  padding: 24px;
  box-shadow: 0 3px 12px 0 rgba(34,43,54,0.07);
  margin-bottom: 20px;
}

/* BUTTONS & CTA */
.btn-primary, a.btn-primary {
  background: #222B36;
  color: #fff;
  padding: 12px 32px;
  border-radius: 10px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: .05em;
  border: none;
  cursor: pointer;
  box-shadow: 0 2px 9px 0 rgba(34,43,54,0.08);
  transition: background .18s, color .18s, box-shadow .25s, transform .20s;
  display: inline-block;
  margin-top: 1em;
  text-align: center;
}
.btn-primary:hover, .btn-primary:focus {
  background: #FFCF6C;
  color: #222B36;
  box-shadow: 0 5px 24px 0 rgba(34,43,54,0.13);
  transform: scale(1.035);
}
.btn-secondary, a.btn-secondary {
  background: #fff;
  border: 2px solid #222B36;
  color: #222B36;
  padding: 11px 30px;
  border-radius: 10px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  margin-top: 1em;
  letter-spacing: .04em;
  transition: color .18s, background .18s, border .18s, box-shadow .21s;
  display: inline-block;
  cursor: pointer;
  text-align: center;
}
.btn-secondary:hover, .btn-secondary:focus {
  background: #FFCF6C;
  color: #222B36;
  border-color: #FFCF6C;
  box-shadow: 0 3px 16px 0 rgba(34,43,54,0.12);
}

/* HEADER & NAVIGATION */
header {
  background: #fff;
  border-bottom: 2.5px solid #eceef0;
  padding: 0;
  position: sticky;
  top: 0;
  z-index: 30;
  width: 100%;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 16px 18px 16px 18px;
}
header a img {
  max-height: 42px;
  min-width: 120px;
}
header nav {
  display: flex;
  align-items: center;
  gap: 32px;
}
header nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: .04em;
  padding: 7px 0;
  border-radius: 6px;
  transition: color .15s, background .18s;
  position: relative;
}
header nav a:not(.btn-primary):after {
  content: '';
  display: block;
  width: 0%;
  height: 2px;
  background: #FFCF6C;
  border-radius: 2px;
  transition: width .23s;
  position: absolute;
  bottom: -2px;
  left: 0;
}
header nav a:hover:not(.btn-primary):after, header nav a:focus:not(.btn-primary):after {
  width: 80%;
}
header nav a.btn-primary {
  margin-left: 16px;
}
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 2rem;
  color: #222B36;
  cursor: pointer;
  margin-left: 20px;
  z-index: 41;
}

/* MOBILE MENU STYLES */
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right:0; bottom: 0;
  width: 100vw;
  height: 100vh;
  background: #222B36;
  z-index: 1002;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  transform: translateX(100%);
  opacity: 0;
  transition: transform .36s cubic-bezier(.67,0,.33,1), opacity .26s;
  pointer-events: none;
}
.mobile-menu.active {
  transform: translateX(0);
  opacity: 1;
  pointer-events: auto;
}
.mobile-menu-close {
  background: none;
  border: none;
  font-size: 2.3rem;
  color: #fff;
  position: absolute;
  top: 26px;
  right: 26px;
  cursor: pointer;
  z-index: 1100;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  margin-top: 85px;
  width: 100%;
}
.mobile-nav a {
  color: #fff;
  font-size: 1.18rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  padding: 12px 0;
  letter-spacing: 0.04em;
  width: 85%;
  text-align: left;
  border-radius: 8px;
  transition: background .18s, color .18s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #FFCF6C;
  color: #222B36;
}

/* Hide main nav, show mobile toggle - MOBILE */
@media (max-width: 960px) {
  header nav {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: block;
  }
}
@media (min-width: 961px) {
  .mobile-menu {
    display: none !important;
  }
}

/* FOOTER */
footer {
  background: #222B36;
  color: #fff;
  margin-top: 60px;
  padding: 48px 0 18px 0;
}
footer .container {
  display: flex;
  width: 100%;
  padding: 0 18px;
}
footer .content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 32px;
}
footer nav {
  display: flex;
  flex-direction: column;
  gap: 7px;
}
footer nav a {
  color: #fff;
  font-size: 1rem;
  font-family: 'Montserrat', Arial, sans-serif;
  text-decoration: none;
  margin-bottom: 3px;
  opacity: 0.93;
  transition: color .15s, opacity .18s;
}
footer nav a:hover, footer nav a:focus {
  color: #FFCF6C;
  opacity: 1;
}
footer .contact-info {
  color: #B6B8B9;
  font-size: 1rem;
  margin-bottom: 7px;
  line-height: 1.6;
  font-family: 'Roboto', Arial, sans-serif;
}
footer .contact-info a {
  color: #FFCF6C;
  font-weight: 500;
}
footer .social-links {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 18px;
  margin-top: 16px;
}
footer .social-links a img {
  width: 32px;
  height: 32px;
  transition: filter .16s, transform .17s;
  filter: grayscale(.35);
}
footer .social-links a:hover img {
  filter: brightness(1.22) grayscale(0);
  transform: scale(1.12) rotate(-7deg);
}

/* FORMATTING/COMPONENTS */
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  justify-content: flex-start;
  list-style: none;
}
.feature-grid li {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 3px 11px 0 rgba(34,43,54,0.06);
  flex: 1 1 230px;
  min-width: 180px;
  max-width: 260px;
  padding: 24px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  border: 1px solid #f1f2f6;
  text-align: center;
  transition: box-shadow .17s, transform .17s;
}
.feature-grid li:hover {
  box-shadow: 0 7px 24px 0 rgba(34,43,54,0.13);
  transform: translateY(-4px) scale(1.025);
}
.feature-grid img {
  width: 48px;
  height: 48px;
}
.service-cards, .service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 18px;
}
.service-card, .service-item {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 3px 12px 0 rgba(34,43,54,0.11);
  padding: 32px 22px;
  flex: 1 1 230px;
  min-width: 210px;
  max-width: 300px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  border: 1px solid #eceef0;
  align-items: flex-start;
  position: relative;
  transition: box-shadow .19s, transform .15s;
}
.service-card:hover, .service-item:hover {
  box-shadow: 0 12px 28px 0 rgba(34,43,54,0.14);
  transform: translateY(-5px) scale(1.025);
}
.service-price {
  background: #FFCF6C;
  color: #222B36;
  padding: 4px 13px;
  border-radius: 7px 7px 15px 15px/12px 12px 22px 22px;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: .03em;
  margin-top: 5px;
  align-self: flex-start;
}
.blog-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 12px;
}
.blog-summary, .featured-article {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 14px 0 rgba(34, 43, 54, 0.07);
  padding: 32px 22px 28px 22px;
  min-width: 220px;
  flex: 1 1 240px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  border: 1.5px solid #eceef0;
  transition: box-shadow .18s, background .18s, transform .14s;
}
.featured-article {
  border-left: 6px solid #FFCF6C;
  background: #FAFAF8;
  box-shadow: 0 7px 24px 0 rgba(255,207,108,0.11);
}
.blog-summary:hover, .featured-article:hover {
  box-shadow: 0 10px 30px 0 rgba(34,43,54,0.16);
  background: #f9f9f7;
  transform: scale(1.018);
}
.categories {
  font-size: 1rem;
  color: #818485;
  font-family: 'Roboto', Arial, sans-serif;
  margin-top: 6px;
}

.value-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
  justify-content: flex-start;
  align-items: center;
  margin: 12px 0 28px 0;
}
.value-icons img {
  height: 54px;
  width: 54px;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 2px 7px 0 rgba(34,43,54,0.03);
  padding: 4px;
}
.value-descriptions {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 16px;
}
.brand-commitments ul {
  margin-left: 1.2em;
}

.brand-address, .brand-email, .contact-hours {
  margin-bottom: 14px;
  font-size: 1rem;
  color: #474C56;
}
.map-placeholder {
  margin-top: 14px;
  width: 100%;
  max-width: 430px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 16px 0 rgba(34, 43, 54, 0.07);
}

/* COOKIE CONSENT BANNER */
.cookie-banner {
  position: fixed;
  left: 0; right: 0;
  bottom: 0;
  background: #222B36;
  color: #fff;
  padding: 24px 18px 14px 18px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  z-index: 3000;
  box-shadow: 0 -2px 18px 0 rgba(34,43,54,0.13);
  animation: fadeInBanner .45s;
}
@keyframes fadeInBanner {
  from { opacity: 0; transform: translateY(66px); }
  to { opacity: 1; transform: none; }
}
.cookie-banner p {
  color: #fff;
  font-size: .99rem;
  margin-bottom: 6px;
  max-width: 560px;
}
.cookie-banner-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}
.cookie-banner .btn-primary, .cookie-banner .btn-secondary {
  font-size: 1rem;
  padding: 9px 22px;
  margin: 0;
  border-radius: 8px;
}
.cookie-banner .btn-secondary {
  background: #fff;
  color: #222B36;
  border: 2px solid #FFCF6C;
}
.cookie-banner .btn-secondary:hover, .cookie-banner .btn-secondary:focus {
  background: #FFCF6C;
  color: #222B36;
}

/* COOKIE MODAL */
.cookie-modal {
  display: none;
  position: fixed;
  left: 0; top: 0;
  width: 100vw; height: 100vh;
  background: rgba(34, 43, 54, 0.60);
  align-items: center;
  justify-content: center;
  z-index: 3500;
}
.cookie-modal.active {
  display: flex;
}
.cookie-modal-content {
  background: #fff;
  color: #222B36;
  border-radius: 16px;
  padding: 32px 24px 24px 24px;
  min-width: 340px;
  max-width: 94vw;
  box-shadow: 0 10px 34px 0 rgba(34,43,54,0.21);
  position: relative;
  animation: modalIn .38s cubic-bezier(.68,0,.32,1);
}
@keyframes modalIn {
  from { opacity: 0; transform: translateY(80px) scale(.92); }
  to { opacity: 1; transform: none; }
}
.cookie-modal-close {
  position: absolute;
  right: 22px; top: 16px;
  background: none;
  border: none;
  font-size: 1.8rem;
  color: #222B36;
  cursor: pointer;
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin: 20px 0 22px 0;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 16px;
}
.cookie-category label {
  font-size: 1rem;
}
.cookie-category input[type="checkbox"] {
  width: 22px;
  height: 22px;
}
.cookie-category .cookie-essential {
  font-style: italic;
  color: #666;
}

/* UTILITY CLASSES */
.mt-2 { margin-top: 12px !important; }
.mt-3 { margin-top: 24px !important; }
.mb-2 { margin-bottom: 12px !important; }
.mb-3 { margin-bottom: 24px !important; }
.text-center { text-align: center !important; }

/* GEOMETRIC / STRUCTURED STYLE EFFECTS */
section, .card, .testimonial-card, .service-card, .blog-summary, .featured-article, .feature-grid li, .feature-item { box-shadow: 0 2px 18px 0 rgba(34,43,54,0.06);}
section, .card, .testimonial-card, .service-card, .blog-summary, .featured-article, .feature-grid li, .feature-item {
  border-radius: 14px;
}

/* VISUAL HIERARCHY SPACING */
.content-wrapper > *:not(:first-child) { margin-top: 24px; }
.text-section > *:not(:first-child) { margin-top: 16px; }

/* RESPONSIVE DESIGN */
@media (max-width: 1200px) {
  .container { max-width: 970px; }
}
@media (max-width: 1000px) {
  .container { max-width: 860px; }
  .feature-grid li, .service-card, .service-item, .blog-summary, .featured-article {
    min-width: 170px; max-width: 340px;
  }
}
@media (max-width: 768px) {
  h1 { font-size: 1.49rem; }
  h2 { font-size: 1.1rem; }
  .subheadline { font-size: 0.98rem; }
  .container { padding-left: 8px; padding-right: 8px; }
  .content-wrapper { padding: 0; }
  .feature-grid, .service-cards, .service-list, .blog-list {
    flex-direction: column;
    gap: 13px;
    align-items: stretch;
  }
  .feature-grid li, .service-card, .service-item, .blog-summary, .featured-article {
    width: 100%; min-width: 0; max-width: 100%;
  }
  footer .content-wrapper {
    flex-direction: column;
    gap: 18px;
  }
  .value-icons {
    gap: 18px 12px;
  }
}
@media (max-width: 480px) {
  .cookie-modal-content {
    min-width: 90vw; padding: 20px 6vw 22px 6vw;
  }
  .map-placeholder { max-width: 95vw; }
  .service-price { font-size: 0.97rem; }
}
@media (max-width: 650px) {
  .text-image-section {
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 20px;
  }
}
@media (max-width: 420px) {
  .btn-primary, .btn-secondary, .cookie-banner .btn-primary, .cookie-banner .btn-secondary {
    padding: 10px 11vw;
    font-size: .89rem;
  }
  .service-card, .service-item, .feature-grid li, .blog-summary, .featured-article {
    padding: 16px 8px;
  }
}

/* Z-INDEX FOR MODALS & MENUS */
.mobile-menu { z-index: 2000; }
.cookie-modal { z-index: 3500; }

/* Custom Scrollbar for Style */
body::-webkit-scrollbar {
  width: 8px;
  background: #eceef0;
}
body::-webkit-scrollbar-thumb {
  background: #B6B8B9;
  border-radius: 16px;
}

/* ANIMATIONS & MICRO-INTERACTIONS */
.btn-primary, .btn-secondary, .cookie-banner .btn-primary, .cookie-banner .btn-secondary {
  transition: background .18s, color .18s, border .18s, box-shadow .18s, transform .15s;
}
.card:hover, .testimonial-card:hover, .feature-grid li:hover, .service-card:hover, .blog-summary:hover {
  box-shadow: 0 10px 32px 0 rgba(34,43,54,0.15);
  transform: scale(1.022);
}

/* FORMATTING: TABLES, FORMS, ETC. if any in future */
table {border-collapse: collapse; width: 100%; margin-bottom: 24px;}
th, td {border: 1px solid #eceef0; padding: 11px 12px; font-size: 1rem;}
th {background: #F5F7FA; font-weight: 700;}
input, textarea, select {
  font-family: 'Roboto', Arial, sans-serif;
  padding: 10px;
  border: 1.5px solid #B6B8B9;
  border-radius: 7px;
  font-size: 1rem;
  margin-bottom: 14px;
}
input:focus, textarea:focus, select:focus {
  border-color: #FFCF6C;
  outline: 2px solid #FFCF6C;
}

/* --- END --- */
