/* =========================
   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 {
  box-sizing: border-box;
  font-size: 16px;
  -webkit-text-size-adjust: none;
  scroll-behavior: smooth;
}
*, *:before, *:after {
  box-sizing: inherit;
}
body {
  line-height: 1.5;
  background: #fff;
  color: #111;
  font-family: 'Roboto', Arial, sans-serif;
  min-height: 100vh;
  letter-spacing: 0.01em;
}
img, picture, video, canvas, svg {
  display: inline-block;
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}
a {
  color: #273047;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #D4AF37;
  outline: none;
}
ul, ol {
  list-style: none;
}
button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
  background: none;
  border: none;
  color: inherit;
  outline: none;
}
input[type="submit"], button, .cta-primary {
  cursor: pointer;
}

/*==========================
      TYPOGRAPHY SCALE
===========================*/
h1, .hero h1   { font-family: 'Montserrat', Arial, sans-serif; font-size: 2.5rem; font-weight: 700; color: #111; letter-spacing: -0.01em; margin-bottom: 16px; }
h2          { font-family: 'Montserrat', Arial, sans-serif; font-size: 1.75rem; font-weight: 600; color: #1A1A1A; letter-spacing: -0.01em; margin-bottom: 20px; }
h3          { font-family: 'Montserrat', Arial, sans-serif; font-size: 1.125rem; font-weight: 500; color: #273047; margin-bottom: 12px; }
h4          { font-family: 'Montserrat', Arial, sans-serif; font-size: 1rem;   font-weight: 500; color: #333; margin-bottom: 8px; }
p, li, label, span, strong, input, select, textarea {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 400;
  color: #222;
}
section p { margin-bottom: 12px; }
strong   { font-weight: 600; color: #111; }

/*=============================
      LAYOUT: FLEX SPACING
==============================*/
.container {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 20px;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 20px rgba(16,24,40,0.05), 0 1.5px 4px rgba(39,48,71,0.07);
  padding: 24px 22px;
  transition: box-shadow 0.22s, transform 0.22s;
  border: 1.5px solid #e4e6eb;
}
.card:hover {
  box-shadow: 0 4px 36px 0 rgba(39,48,71,0.14);
  transform: translateY(-2px) scale(1.01);
  border-color: #c1c7ce;
}
.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;
  border-radius: 12px;
  box-shadow: 0 2px 20px rgba(50,50,50,0.02);
  margin-bottom: 20px;
  padding: 20px 24px;
  border-left: 4px solid #273047;
  max-width: 400px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.feature {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(39,48,71,0.03);
  padding: 28px 20px;
  flex: 1 1 220px;
  min-width: 220px;
  max-width: 280px;
  text-align: left;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  border: 1.5px solid #ececf0;
  transition: box-shadow 0.18s, border 0.22s;
}
.feature img {
  width: 42px; height: 42px; margin-bottom: 8px; filter: grayscale(1) contrast(1.2); }
.feature:hover {
  box-shadow: 0 3px 16px 0 rgba(39,48,71,0.09);
  border-color: #d4af37;
}

/*================================
    HERO + PRIMARY BUTTON STYLE
=================================*/
.hero {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 320px;
  background: #fafbfc;
  border-bottom: 1.5px solid #ececf0;
  margin-bottom: 30px;
}
.hero .container {
  padding-top: 30px;
  padding-bottom: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero .content-wrapper {
  gap: 20px;
  align-items: flex-start;
}
.cta-primary, a.cta-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 32px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.13rem;
  border-radius: 24px;
  background: #111;
  color: #fff;
  box-shadow: 0 2.5px 10px rgba(39,48,71,0.07);
  border: 2px solid #111;
  transition: background 0.2s, color 0.2s, border 0.2s, box-shadow 0.18s, transform 0.14s;
}
.cta-primary:hover, .cta-primary:focus {
  background: #D4AF37;
  color: #111;
  border-color: #D4AF37;
  transform: translateY(-2px) scale(1.045);
  box-shadow: 0 5px 16px 0 rgba(39,48,71,0.13);
}

/*=============================
       HEADER + NAVIGATION
=============================*/
header {
  width: 100%;
  background: #fff;
  border-bottom: 1px solid #ececf0;
  box-shadow: 0 1px 9px 0 rgba(16,24,40,0.03);
  z-index: 90;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
  gap: 24px;
}
header img {
  height: 40px; max-width: 160px; }
header nav {
  display: flex;
  align-items: center;
  gap: 28px;
}
header nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  color: #273047;
  font-size: 1rem;
  letter-spacing: 0.01em;
  position: relative;
  padding-bottom: 2px;
}
header nav a:after {
  content: "";
  display: block;
  width: 0%;
  height: 2px;
  border-radius: 2px;
  margin: 2px 0 0 0;
  background: #273047;
  transition: width 0.23s cubic-bezier(.4,0,.2,1);
}
header nav a:hover:after, header nav a.active:after {
  width: 80%;
}
header .cta-primary {
  margin-left: 24px;
}

/*==============================
     FOOTER & SOCIAL LINKS
===============================*/
footer {
  background: #111;
  color: #fff;
  padding: 0 0 0 0;
  box-shadow: 0 -2px 20px 0 rgba(30,30,30,0.06);
}
footer .container {
  padding: 32px 20px 24px 20px;
}
footer .content-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
  align-items: flex-start;
}
.footer-logo img {
  width: 50px; height: 50px;
  margin-bottom: 10px;
  filter: grayscale(1);
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-nav a {
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  opacity: 0.95;
  transition: color .2s, opacity .18s;
}
.footer-nav a:hover { color: #D4AF37; opacity: 1; }
.footer-info {
  display: flex;
  flex-direction: column;
  gap: 5px;
  font-size: 0.94rem;
  color: #e2e2e2;
}
.footer-info a { color: #D4AF37; text-decoration: underline; }
.footer-social {
  display: flex;
  gap: 18px;
  margin-top: 10px;
}
.footer-social a img {
  width: 28px; height: 28px; margin: 0; filter: grayscale(1) brightness(1.7); transition: filter .17s; }
.footer-social a:hover img {
  filter: grayscale(0) brightness(1) drop-shadow(0 1px 2px #d4af37bb);
}
.brand-info {
  background: #222;
  text-align: center;
  padding: 14px;
  color: #afafaf;
  font-size: 0.95rem;
  letter-spacing: 0.005em;
  margin-top: 0;
}

/*========================
   REVIEW & SERVICE LISTS
=========================*/
.review-cards, .ranking-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 16px;
}
.review-card, .ranking-card {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 16px rgba(39,48,71,0.06);
  padding: 22px 18px 18px 18px;
  flex: 1 1 280px;
  min-width: 220px; max-width: 340px;
  border-left: 4px solid #273047;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 20px;
  transition: box-shadow 0.18s, transform 0.18s, border-color 0.18s;
}
.review-card:hover, .ranking-card:hover {
  box-shadow: 0 7px 28px 0 rgba(39,48,71,0.14);
  transform: translateY(-3px) scale(1.0105);
  border-left-color: #D4AF37;
}
.review-meta {
  color: #5A5A5A;
  font-size: 0.97rem;
  margin-top: 8px;
}
ul.service-list {
  display: flex;
  flex-direction: column;
  gap: 22px;
}
ul.service-list li {
  background: #f6f6f8;
  padding: 24px 20px;
  border-radius: 10px;
  box-shadow: 0 1.5px 6px rgba(39,48,71,0.035);
  display: flex;
  flex-direction: column;
  gap: 5px;
  border-left: 4px solid #D4AF37;
  margin-bottom: 20px;
}
ul.service-list li strong {
  color: #111;
  font-size: 1.05em;
}
.service-detail {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 1.5px 12px rgba(39,48,71,0.04);
  padding: 26px 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  border-left: 4px solid #273047;
}
.service-detail strong {
  color: #111;
  font-size: 1.09em;
  margin-top: 10px;
}

/*===============================
     TESTIMONIALS/READABILITY
=================================*/
.testimonials {
  background: #f2f2f4;
  border-top: 1.5px solid #ececf0;
  padding: 38px 0 46px 0;
  margin-bottom: 0;
}
.testimonials .container {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.testimonial-slider {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: flex-start;
}
.testimonial-card {
  color: #161616;
  background: #fff;
  border-radius: 10px;
  border-left: 4px solid #D4AF37;
  box-shadow: 0 2.5px 12px rgba(39,48,71,0.045);
  gap: 20px;
  padding: 20px 26px 20px 22px;
  min-width: 280px;
  max-width: 400px;
  transition: box-shadow 0.16s, transform 0.13s;
}
.testimonial-card:hover {
  box-shadow: 0 7px 28px 0 rgba(39,48,71,0.13);
  transform: translateY(-2px) scale(1.015);
}
.testimonial-name {
  font-weight: 700;
  font-size: 1rem;
  color: #273047;
  margin-top: 8px;
  letter-spacing: 0.01em;
}

/*===============================
     FORMS & FILTERS
================================*/
.review-filters form, .ranking-filters {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 16px;
}
.review-filters label, .ranking-filters label {
  font-size: 1rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  color: #273047;
  display: flex;
  align-items: center;
  gap: 8px;
}
select {
  border-radius: 5px;
  border: 1px solid #c6c6c9;
  background: #f7f7fa;
  padding: 6px 10px;
  margin-left: 4px;
  width: auto;
  font-size: 0.97em;
}
select:focus {
  border-color: #273047;
}

/* CONTACT & PREFERENCE LIST */
.contact-fields, .contact-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 1rem;
}
.contact-fields p, .contact-list li {
  display: flex;
  align-items: center;
  gap: 8px;
}
.contact-fields img, .contact-list img {
  width: 22px; vertical-align: middle;
  filter: grayscale(1) contrast(1.3); opacity: 0.7;
}

/*==============================
     RESPONSIVE DESIGN
===============================*/
@media (max-width: 1180px) {
  .container { max-width: 1000px; }
}
@media (max-width: 990px) {
  .container { max-width: 96vw; }
  header .container { flex-direction: column; align-items: flex-start; gap: 16px; }
  footer .content-wrapper { flex-direction: column; gap: 20px; align-items: flex-start; }
}
@media (max-width: 768px) {
  html { font-size: 15px; }
  h1, .hero h1 { font-size: 2rem; }
  h2 { font-size: 1.33rem; }
  .hero { min-height: 180px; }
  .hero .container {
    padding-top: 20px; padding-bottom: 20px;
  }
  header .container,
  .content-wrapper,
  .footer-nav,
  .content-grid,
  .feature-grid,
  .review-cards, .ranking-cards,
  .testimonial-slider {
    flex-direction: column;
    align-items: flex-start;
  }
  .section {
    padding: 25px 8px;
    margin-bottom: 35px;
  }
  ul.service-list li, .service-detail, .card, .review-card, .ranking-card, .feature {
    padding: 18px 10px;
  }
  header nav { gap: 10px; }
  .footer-social { margin-top: 0; }
}
@media (max-width: 650px) {
  html { font-size: 14px; }
}
@media (max-width: 480px) {
  html { font-size: 13px; }
  .hero .container { padding-left: 0; padding-right: 0; }
  .footer-logo img { width: 35px; height: 35px; }
}

/*===============================
   MOBILE NAV / BURGER MENU
===============================*/
.mobile-menu-toggle {
  position: fixed;
  top: 18px;
  right: 22px;
  z-index: 200;
  background: #fff;
  color: #273047;
  border-radius: 50%;
  width: 46px;
  height: 46px;
  display: none;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  box-shadow: 0 2px 12px rgba(16,24,40,0.09);
  border: 2px solid #273047;
  transition: background 0.20s, color 0.18s;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: #D4AF37;
  color: #111;
}
.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  background: rgba(17,17,22,0.97);
  z-index: 205;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  transform: translateX(-100vw);
  transition: transform 0.44s cubic-bezier(.7,0,.2,1), opacity 0.27s;
  opacity: 0;
  pointer-events: none;
}
.mobile-menu.open {
  transform: translateX(0);
  opacity: 1;
  pointer-events: auto;
}
.mobile-menu-close {
  color: #fff;
  background: none;
  border: none;
  font-size: 2rem;
  padding: 0 0 0 2px;
  margin: 25px 0 0 85vw;
  cursor: pointer;
  transition: color 0.2s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: #D4AF37;
}
.mobile-nav {
  margin-top: 44px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 26px;
}
.mobile-nav a {
  color: #fff;
  font-size: 1.22rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  padding: 10px 0;
  border-bottom: 1px solid rgba(212,175,55,0.07);
  width: 74vw;
}
.mobile-nav a:hover, .mobile-nav a:focus { color: #D4AF37; background: none; }

@media (max-width: 1040px) {
  header nav, header .cta-primary {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
}
@media (min-width: 1041px) {
  .mobile-menu-toggle, .mobile-menu { display: none !important; }
  header nav, header .cta-primary { display: flex !important; }
}

/* Fix: prevent overlap */
.mobile-menu, .mobile-menu-toggle {
  pointer-events: auto;
}

/* ============================
   COOKIE CONSENT BANNER
===============================*/
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0;
  width: 100vw;
  background: #222;
  color: #fff;
  padding: 22px 20px 18px 20px;
  box-shadow: 0 -2px 24px rgba(22,22,22,0.09);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 28px;
  z-index: 4000;
  transition: transform 0.37s, opacity 0.26s;
}
.cookie-banner.hide {
  transform: translateY(120%);
  opacity: 0;
  pointer-events: none;
}
.cookie-banner-content {
  max-width: 820px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 25px;
  font-size: 1rem;
  color: #f6f6f6;
}

.cookie-banner-content span {
    color: #f6f6f6;
}
.cookie-banner-buttons {
  display: flex;
  gap: 16px;
}
.cookie-btn {
  padding: 8px 22px;
  border-radius: 20px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  background: #fff;
  color: #273047;
  border: 1.5px solid #D4AF37;
  transition: background 0.16s, color 0.16s, border 0.13s;
}
.cookie-btn.cookie-accept {
  background: #D4AF37;
  color: #111;
  border-color: #D4AF37;
}
.cookie-btn.cookie-accept:hover, .cookie-btn.cookie-accept:focus {
  background: #fff;
  color: #D4AF37;
  border-color: #D4AF37;
}
.cookie-btn.cookie-reject {
  background: #fff;
  color: #273047;
  border-color: #273047;
}
.cookie-btn.cookie-reject:hover, .cookie-btn.cookie-reject:focus {
  background: #D4AF37;
  color: #fff;
  border-color: #D4AF37;
}
.cookie-btn.cookie-settings {
  background: transparent;
  color: #fff;
  border: 1.5px solid #fff;
}
.cookie-btn.cookie-settings:hover, .cookie-btn.cookie-settings:focus {
  background: #fff;
  color: #111;
  border-color: #D4AF37;
}
@media (max-width: 700px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    padding: 15px 8px 12px 8px;
  }
  .cookie-banner-buttons {
    gap: 10px;
  }
}

.cookie-modal-overlay {
  display: none;
  position: fixed;
  z-index: 4010;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(20,20,24,0.72);
  align-items: center;
  justify-content: center;
  transition: opacity 0.23s;
}
.cookie-modal-overlay.open {
  display: flex;
  opacity: 1;
}
.cookie-modal {
  background: #fff;
  color: #222;
  border-radius: 15px;
  max-width: 370px;
  width: 90vw;
  padding: 32px 28px 24px 28px;
  box-shadow: 0 6px 40px rgba(27,27,27,0.22);
  animation: cookie-modal-pop .37s cubic-bezier(.7,0,.2,1);
  display: flex;
  flex-direction: column;
  gap: 22px;
  position: relative;
}
@keyframes cookie-modal-pop {
  0% { opacity:0; transform:scale(0.92); } 
  80% { opacity:1; transform: scale(1.02); }
  100% { opacity: 1; transform: scale(1); }
}
.cookie-modal-header {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.22rem;
  font-weight: 700;
  color:#273047;
  margin-bottom: 10px;
}
.cookie-modal-close {
  position: absolute;
  right: 18px;
  top: 12px;
  background: none;
  border: none;
  color: #111;
  font-size: 1.35rem;
  cursor: pointer;
  transition: color 0.18s;
  z-index: 10;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  color: #D4AF37;
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 8px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 12px;
}
.cookie-category label {
  font-size: 1rem;
  color: #273047;
  font-weight: 500;
  cursor: pointer;
}
.cookie-category input[type="checkbox"] {
  accent-color: #273047;
  width: 18px; height: 18px;
  border-radius: 3px;
}
.cookie-category .category-essential {
  font-weight: 600; color: #111;
}

/*============================
   MICRO-INTERACTIONS / MISC
=============================*/
.card, .feature, .service-detail, .review-card, .ranking-card, .testimonial-card {
  transition: box-shadow 0.18s, transform 0.13s, border-color 0.13s;
}
button, .cta-primary, .cookie-btn {
  transition: background 0.20s, color 0.20s, border 0.18s, box-shadow 0.18s, transform 0.16s;
}

/* Monochrome_sophisticated: subtle accents */
body, .content-wrapper, .footer-info, .brand-info { 
  color: #161616;
}
.footer-info span{
  color: #c6c6c9 !important;
}
.hero, .testimonials, .feature, .service-detail, .review-card, .ranking-card, ul.service-list li, .card {
  background: #fafbfc;
}
h1, h2, h3, h4, .footer-logo, .testimonial-card, .service-detail, .footer-info, .footer-nav a, .review-meta, ul.service-list li strong {
  font-family: 'Montserrat', Arial, sans-serif;
}

/* Accessibility / focus ring */
a:focus, button:focus, .cta-primary:focus, .mobile-menu-toggle:focus, .cookie-btn:focus {
  outline: 2px solid #D4AF37;
  outline-offset: 2px;
}

/* Hide mobile nav visually on desktop */
@media (min-width: 1041px) {
  .mobile-menu, .mobile-menu-toggle { display: none !important; }
}

/* =============== END =============== */
