/* 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 {
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  scroll-behavior: smooth;
}
body {
  background: #fff;
  color: #131313;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  min-height: 100vh;
  letter-spacing: 0.01em;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: #183340;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #C3A036;
  outline: none;
}
ul, ol {
  margin-left: 20px;
  margin-bottom: 16px;
}
strong {
  font-weight: 600;
}

/* TYPOGRAPHY */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 700;
  color: #131313;
  letter-spacing: 0.02em;
}
h1 { font-size: 2.5rem; line-height: 1.2; margin-bottom: 24px; }
h2 { font-size: 2rem; line-height: 1.25; margin-bottom: 20px; }
h3 { font-size: 1.4rem; line-height: 1.3; margin-bottom: 16px; }
h4 { font-size: 1.1rem; margin-bottom: 12px; }
p, li {
  font-size: 1rem;
  line-height: 1.7;
  color: #222;
  margin-bottom: 12px;
}
small {
  font-size: 0.875rem;
  color: #666;
}
section h1, section h2, section h3 {
  color: #1a1a1a;
  margin-top: 0;
}

/* GENERAL LAYOUT */
.container {
  max-width: 1150px;
  margin: 0 auto;
  padding: 10px 20px;
  width: 100%;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-start;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 6px 32px rgba(25,34,44,0.06);
}

@media (max-width: 768px) {
  .section {
    padding: 28px 10px;
    margin-bottom: 36px;
  }
  .container {
    padding: 0 8px;
  }
}

/* FLEX LAYOUTS for CARDS, GRIDS, FEATURES, etc. */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 24px;
}
.card {
  background: #f6f6f6;
  margin-bottom: 20px;
  border-radius: 14px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.07);
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 280px;
  padding: 24px;
  transition: box-shadow 0.2s;
}
.card:hover {
  box-shadow: 0 4px 30px rgba(24,51,64,0.13);
}
.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;
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
  }
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #fafafa;
  border-left: 5px solid #C3A036;
  border-radius: 10px;
  box-shadow: 0 2px 24px rgba(24,51,64,0.07);
  margin-bottom: 24px;
  color: #0d0d0d;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 24px;
}

/* CTA Buttons */
.cta, .cta.primary {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 600;
  font-size: 1.1rem;
  border-radius: 30px;
  padding: 12px 32px;
  box-shadow: 0 2px 10px rgba(24,51,64,0.07);
  border: none;
  cursor: pointer;
  text-align: center;
  min-width: 150px;
  display: inline-block;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s, border 0.2s;
}
.cta {
  background: #f6f6f6;
  color: #183340;
  border: 1px solid #d1d1d1;
}
.cta.primary {
  background: #183340;
  color: #fff;
  border: 1px solid #183340;
}
.cta:hover, .cta:focus {
  background: #C3A036;
  color: #131313;
  border-color: #C3A036;
  box-shadow: 0 4px 32px rgba(195,160,54,0.13);
}
.cta.primary:hover, .cta.primary:focus {
  background: #C3A036;
  color: #131313;
  border-color: #C3A036;
  box-shadow: 0 4px 32px rgba(195,160,54,0.12);
}

/* HEADER / NAVIGATION */
header {
  background: #181818;
  width: 100%;
  z-index: 1000;
  box-shadow: 0 1px 12px rgba(24,51,64,0.05);
  position: relative;
}
.main-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 26px;
  padding: 18px 0 18px 0;
}
.main-nav a {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-size: 1.02rem;
  color: #eaeaea;
  font-weight: 500;
  letter-spacing: 0.01em;
  padding: 6px 10px;
  border-radius: 18px;
  transition: background 0.17s, color 0.18s;
}
.main-nav a.cta.primary {
  margin-left: 16px;
  color: #fff;
  background: #C3A036;
  padding: 8px 26px;
  border-radius: 23px;
  box-shadow: 0 2px 12px rgba(195,160,54, 0.09);
}
.main-nav a:hover, .main-nav a:focus {
  background: #222;
  color: #C3A036;
}
.main-nav a.cta.primary:hover, .main-nav a.cta.primary:focus {
  background: #183340;
  color: #fff;
}
.main-nav img {
  height: 36px;
  width: auto;
  margin-right: 20px;
  border-radius: 4px;
  background: none;
}

/* MOBILE BURGER NAV */
.mobile-menu-toggle {
  display: none;
  font-size: 2.1rem;
  color: #fff;
  background: none;
  border: none;
  padding: 8px;
  cursor: pointer;
  z-index: 1200;
  position: absolute;
  top: 18px;
  right: 18px;
  transition: color 0.2s;
}
.mobile-menu-toggle:focus {
  color: #C3A036;
}
.mobile-menu {
  display: none;
}
@media (max-width: 1050px) {
  .main-nav {
    gap: 18px;
    padding: 12px 0;
  }
  .main-nav img {
    height: 32px;
    margin-right: 10px;
  }
}
@media (max-width: 950px) {
  .main-nav {
    gap: 12px;
    font-size: 0.95rem;
  }
}
@media (max-width: 850px) {
  .main-nav {
    font-size: 0.91rem;
    gap: 5px;
  }
}
@media (max-width: 768px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
  .mobile-menu {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    background: #181818;
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    width: 100vw;
    padding: 38px 28px 28px 28px;
    z-index: 1500;
    transform: translateX(100%);
    transition: transform 0.33s cubic-bezier(.71,.09,.87,.54);
    box-shadow: 0 4px 44px rgba(24,51,64,0.18);
  }
  .mobile-menu.open {
    transform: translateX(0);
  }
  .mobile-menu-close {
    font-size: 2.1rem;
    background: none;
    border: none;
    color: #fff;
    align-self: flex-end;
    margin-bottom: 18px;
    cursor: pointer;
    transition: color 0.2s;
    z-index: 1600;
  }
  .mobile-menu-close:focus, .mobile-menu-close:hover {
    color: #C3A036;
  }
  .mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 22px;
    width: 100%;
  }
  .mobile-nav a {
    color: #fff;
    font-size: 1.19rem;
    font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
    font-weight: 600;
    padding: 15px 0 9px 4px;
    border-radius: 12px;
    transition: background 0.2s, color 0.2s;
  }
  .mobile-nav a:hover, .mobile-nav a:focus {
    color: #C3A036;
    background: #232323;
  }
}

/* SECTION, CARD, SPACING */
.section {
  background: #fff;
  margin-bottom: 60px;
  padding: 40px 20px;
  border-radius: 14px;
  box-shadow: 0 2px 40px rgba(24,51,64,0.045);
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #f5f5f5;
  margin-bottom: 20px;
  position: relative;
  border-radius: 12px;
  box-shadow: 0 1px 18px rgba(24,51,64,0.07);
  padding: 22px;
  min-width: 220px;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.2s;
}
.card:hover {
  box-shadow: 0 6px 36px rgba(24,51,64,0.15);
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.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;
}
@media (max-width: 768px) {
  .section { padding: 22px 6px 22px 6px; }
  .content-wrapper { gap: 13px; }
  .container { padding: 0 5px; }
  .testimonials { padding: 0 6px; }
}
/* Cards & Features inside flex */
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* Elevation & Shadows for depth */
.card, .testimonial-card, .cta-banner {
  box-shadow: 0 2px 18px rgba(24,51,64,0.08);
}

/* TESTIMONIAL CARDS */
.testimonial-card {
  background: #fff;
  border-left: 5px solid #C3A036;
  color: #131313 !important;
  margin: 20px 0;
  padding: 22px 18px;
  border-radius: 12px;
  box-shadow: 0 2px 26px rgba(24,51,64,0.08);
  display: flex;
  align-items: center;
  gap: 20px;
  font-style: italic;
}
.testimonial-card strong {
  font-weight: 600;
  color: #183340;
  font-style: normal;
}

.cta-banner {
  width: 100%;
  background: #f8f8f8;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  padding: 18px 22px;
  border-radius: 11px;
  box-shadow: 0 2px 14px rgba(200, 200, 200, 0.10);
  font-size: 1.11rem;
}
.contact-info-snippet {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #313131;
  font-size: 1.03rem;
  letter-spacing: 0.01em;
  flex-wrap: wrap;
}
.contact-info-snippet img {
  height: 19px;
  margin: 0 6px 0 0;
  filter: grayscale(1) contrast(1.2);
}

/* ICONS */
.text-section img {
  height: 22px;
  width: 22px;
  margin: 0 10px 0 0;
  vertical-align: middle;
  filter: grayscale(1) contrast(1.13);
}

/* FOOTER */
footer {
  background: #181818;
  color: #e9e9e9;
  padding: 38px 0 20px 0;
  border-top: 4px solid #C3A036;
  margin-top: 65px;
  font-size: 0.97rem;
}
footer .container {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
}
footer nav {
  display: flex;
  gap: 7px;
  flex-wrap: wrap;
  justify-content: center;
}
footer nav a {
  color: #e9e9e9;
  text-decoration: underline dotted #C3A036 1.5px;
  font-weight: 400;
  padding: 2px 6px;
  border-radius: 8px;
  transition: color 0.18s, background 0.18s;
}
footer nav a:hover, footer nav a:focus {
  background: #232323;
  color: #C3A036;
}
footer .contact-details {
  color: #bdbdbd;
  text-align: center;
  line-height: 1.6;
}
@media (max-width: 768px) {
  footer .container {
    padding: 0 8px;
  }
  .contact-details {
    font-size: 0.93rem;
  }
}

/* COOKIES CONSENT BANNER */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background: #232323;
  color: #eee;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 18px 18px 18px 18px;
  z-index: 4000;
  gap: 18px;
  box-shadow: 0 -6px 40px rgba(24,51,64,0.18);
  transition: transform 0.3s cubic-bezier(.61,.29,.38,.84), opacity 0.3s;
}
.cookie-banner.hide {
  transform: translateY(100%);
  opacity: 0;
  pointer-events: none;
}
.cookie-banner .cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 10px;
}
.cookie-banner button {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  border-radius: 25px;
  border: none;
  padding: 8px 28px;
  min-width: 124px;
  font-weight: 600;
  cursor: pointer;
  margin-right: 6px;
  transition: background 0.17s, color 0.17s, box-shadow 0.2s;
}
.cookie-banner .accept {
  background: #C3A036;
  color: #181818;
  border: 1.5px solid #C3A036;
}
.cookie-banner .accept:hover,
.cookie-banner .accept:focus {
  background: #fff;
  color: #131313;
  border-color: #C3A036;
}
.cookie-banner .reject {
  background: #181818;
  color: #fff;
  border: 1.5px solid #C3A036;
}
.cookie-banner .reject:hover,
.cookie-banner .reject:focus {
  background: #fff;
  color: #131313;
  border-color: #C3A036;
}
.cookie-banner .settings {
  background: #e1e1e1;
  color: #232323;
  border: 1.5px solid #C3A036;
}
.cookie-banner .settings:hover,
.cookie-banner .settings:focus {
  background: #C3A036;
  color: #131313;
}

/* COOKIES MODAL */
.cookie-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(24,51,64,0.54);
  z-index: 4100;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 1;
  transition: opacity .25s cubic-bezier(.45,.38,.66,.74);
}
.cookie-modal {
  background: #fff;
  color: #131313;
  border-radius: 18px;
  box-shadow: 0 8px 52px rgba(24,51,64,0.21);
  max-width: 390px;
  width: 94vw;
  padding: 34px 30px 26px 30px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  animation: modal-in 0.34s cubic-bezier(.26,.75,.49,1.18);
}
.cookie-modal h3 {
  font-size: 1.35rem;
  color: #183340;
  margin-bottom: 6px;
}
.cookie-modal .close {
  background: none;
  border: none;
  position: absolute;
  top: 22px;
  right: 36px;
  font-size: 1.6rem;
  color: #232323;
  cursor: pointer;
  transition: color 0.16s;
}
.cookie-modal .close:hover, .cookie-modal .close:focus {
  color: #C3A036;
}
.cookie-modal .cookie-options {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.cookie-modal label {
  display: flex;
  align-items: center;
  font-size: 1.09rem;
  gap: 12px;
}
.cookie-modal input[type="checkbox"] {
  accent-color: #C3A036;
  width: 20px;
  height: 20px;
}
.cookie-modal .essential {
  font-weight: 500;
  color: #222;
}
.cookie-modal .modal-actions {
  display: flex;
  gap: 16px;
  margin-top: 22px;
}
.cookie-modal button {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  border-radius: 24px;
  font-size: 1rem;
  padding: 9px 30px;
  border: 1.5px solid #C3A036;
  background: #C3A036;
  color: #181818;
  cursor: pointer;
  transition: background 0.14s, color 0.16s;
}
.cookie-modal button.reject {
  background: #fff;
  color: #232323;
}
.cookie-modal button:hover, .cookie-modal button:focus {
  background: #183340;
  color: #fff;
  border-color: #183340;
}

@keyframes modal-in {
  0% { opacity: 0; transform: scale(0.89) translateY(12px); }
  100% { opacity: 1; transform: scale(1) translateY(0); }
}

/* TABLES */
table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 30px;
}
th, td {
  padding: 12px 10px;
  border-bottom: 1.5px solid #f2f2f2;
  text-align: left;
  font-size: 1rem;
}
th {
  background: #ececec;
  color: #131313;
  font-weight: 700;
}

/* FORMS */
input, textarea, select, button {
  font-family: inherit;
  font-size: inherit;
  outline: none;
  border-radius: 7px;
  border: 1.3px solid #c8c8c8;
  padding: 10px 12px;
  background: #fcfcfc;
  color: #183340;
  box-shadow: none;
  margin-bottom: 18px;
  transition: border 0.2s, background 0.2s;
}
input:focus, textarea:focus, select:focus {
  border-color: #C3A036;
  background: #fffef8;
}
button {
  cursor: pointer;
  border-radius: 24px;
}

/* UTILITY CLASSES */
.text-center { text-align: center; }
.mt-2 { margin-top: 12px; }
.mb-2 { margin-bottom: 12px; }
.hide { display: none !important; }
.show { display: block !important; }

/* MONOCHROME DRAMATIC */
h1, h2, h3, h4, h5 {
  color: #131313;
}
section, .section {
  border: 1.5px solid #eee;
  background: #FFF;
}

/* ACCENTUATION: Gold & Navy elements */
::selection {
  background: #C3A036;
  color: #131313;
}
::-moz-selection {
  background: #C3A036;
  color: #131313;
}

/* RESPONSIVE: FLEX ONLY (NEVER GRID) */
@media (max-width: 1050px) {
  h1 { font-size: 2.1rem; }
  h2 { font-size: 1.63rem; }
}
@media (max-width: 850px) {
  h1 {
    font-size: 1.67rem;
    margin-bottom: 16px;
  }
  h2 {
    font-size: 1.18rem;
    margin-bottom: 12px;
  }
}
@media (max-width: 550px) {
  h1 { font-size: 1.18rem; margin-bottom: 12px; }
  h2 { font-size: 1.03rem; margin-bottom: 9px; }
  p, ul, ol, li { font-size: 0.93rem; }
  .cta, .cta.primary { font-size: 0.98rem; padding: 10px 14px; min-width: 100px; }
  .card, .testimonial-card { padding: 10px; }
  .section { margin-bottom: 28px; padding: 12px 5px; border-radius: 7px; }
}

/* MICRO-INTERACTIONS */
.cta, .cta.primary, button, .mobile-menu-toggle, .mobile-menu-close, .cookie-banner button, .cookie-modal button {
  transition: background 0.19s, color 0.19s, box-shadow 0.18s, border 0.19s, transform 0.09s;
}
.cta:active, .cta.primary:active, button:active {
  transform: scale(0.97);
}

/* ELEGANT SCROLLBAR */
body::-webkit-scrollbar {
  width: 8px;
}
body::-webkit-scrollbar-thumb {
  background: #888;
  border-radius: 8px;
}
body::-webkit-scrollbar-track {
  background: #f5f5f5;
}

/* Hide scrollbars in overlay/menu on mobile */
.mobile-menu::-webkit-scrollbar { display: none; }

/* MISC */
::-webkit-input-placeholder { color: #726d6d; }
::-moz-placeholder { color: #726d6d; }
:-ms-input-placeholder { color: #726d6d; }
::placeholder { color: #726d6d; }

/* END */
