/* 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;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-behavior: smooth;
  background-color: #181d22;
}
*, *:before, *:after {
  box-sizing: inherit;
}
body {
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  background: #181d22;
  color: #f4f5f7;
  font-size: 16px;
  line-height: 1.65;
  min-height: 100vh;
}

img {
  max-width: 100%;
  display: block;
  height: auto;
}


/* TYPOGRAPHY */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Roboto', Arial, Helvetica, sans-serif;
  font-weight: 700;
  color: #f4f5f7;
  margin-bottom: 16px;
  letter-spacing: 0.01em;
}
h1 {
  font-size: 2.5rem;
  line-height: 1.15;
  margin-bottom: 24px;
}
h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}
h3 {
  font-size: 1.375rem;
  margin-bottom: 14px;
}

p, li {
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  color: #d0d4db;
  font-size: 1rem;
}
strong, b {
  color: #efc41a;
  font-weight: 700;
}
a {
  color: #efc41a;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #fff4b8;
  text-decoration: underline;
}

.subheadline {
  font-family: 'Montserrat', 'Roboto', Arial, Helvetica, sans-serif;
  font-weight: 500;
  color: #d0d4db;
  font-size: 1.2rem;
  margin-bottom: 32px;
}

/* CONTAINER & WRAPPER */
.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 20px;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  width: 100%;
  background: none;
}

/* FLEX LAYOUTS */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #22262c;
  border-radius: 12px;
  box-shadow: 0 2px 12px 0 #121417;
  margin-bottom: 20px;
  position: relative;
  overflow: hidden;
  padding: 28px 24px;
  min-width: 230px;
}
.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;
  padding: 20px;
  background: #f4f5f7;
  color: #181d22;
  border-radius: 10px;
  box-shadow: 0 4px 18px 0 #181d2240;
  min-width: 260px;
  flex: 1 1 300px;
  margin-bottom: 20px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  padding: 22px 18px;
  background: #23282f;
  border-radius: 9px;
  box-shadow: 0 1px 6px 0 #181d2299;
  border: 1.5px solid #25406b40;
  min-width: 210px;
  flex: 1 1 220px;
  transition: box-shadow 0.2s, transform 0.18s;
}
.feature-item img {
  width: 38px;
  height: 38px;
  filter: grayscale(50%) brightness(1.18) contrast(1.2);
}
.feature-item h3 {
  color: #efc41a;
}
.feature-item:hover {
  box-shadow: 0 6px 36px 0 #25406bcc;
  transform: translateY(-3px) scale(1.02);
}

/* HERO SECTION */
.hero {
  width: 100%;
  background: #23282f linear-gradient(124deg, #23282f 75%, #25406b 100%);
  padding: 64px 0 54px 0;
  margin-bottom: 60px;
}
.hero .container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.hero h1 {
  color: #efc41a;
  text-shadow: 0 2px 8px #181d2250;
  margin-bottom: 18px;
}
.hero .cta.primary {
  margin-top: 22px;
}

/* NAVIGATION */
header {
  background: #1a1c20;
  box-shadow: 0 3px 12px 0 #12141740;
  position: relative;
  z-index: 111;
}
.main-nav {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 18px;
  padding: 18px 0 16px 0;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.06rem;
}
.main-nav a {
  color: #d0d4db;
  font-weight: 600;
  padding: 9px 15px;
  border-radius: 6px;
  transition: background 0.22s, color 0.14s;
  position: relative;
}
.main-nav a.cta.primary {
  background: #efc41a;
  color: #181d22;
  font-weight: bold;
  box-shadow: 0 2px 10px 0 #efc41a33;
  border: none;
  margin-left: 14px;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  font-size: 1.09rem;
}
.main-nav a.cta.primary:hover {
  background: #ffe479;
  color: #23282f;
}
.main-nav a.cta.secondary {
  background: #23282f;
  color: #efc41a;
  border: 1px solid #efc41a;
}
.main-nav a:hover:not(.cta), .main-nav a:focus:not(.cta) {
  background: #1f2431;
  color: #efc41a;
}

.main-nav img {
  margin-right: 8px;
  width: 56px;
  height: 38px;
}

/* MOBILE MENU */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 2.2rem;
  color: #efc41a;
  cursor: pointer;
  position: absolute;
  top: 16px;
  right: 26px;
  z-index: 120;
  border-radius: 7px;
  width: 48px;
  height: 48px;
  transition: background 0.16s;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: #363a43;
}
.mobile-menu {
  display: none;
  flex-direction: column;
  position: fixed;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background: #23282fcc;
  z-index: 2500;
  padding: 0;
  transition: transform 0.34s cubic-bezier(0.37,1.18,0.56,1), opacity 0.22s;
  opacity: 0;
  transform: translateX(-100vw);
}
.mobile-menu.open {
  display: flex;
  opacity: 1;
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  margin: 18px 24px 0 0;
  background: none;
  border: none;
  color: #efc41a;
  font-size: 2rem;
  cursor: pointer;
  border-radius: 7px;
  width: 45px;
  height: 45px;
  transition: background 0.13s;
}
.mobile-menu-close:focus, .mobile-menu-close:hover {
  background: #363a43;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
  width: 100%;
  padding: 24px 38px;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: #f4f5f7;
  background: none;
  font-size: 1.25rem;
  font-weight: 700;
  border-radius: 7px;
  padding: 15px 12px;
  transition: background 0.20s, color 0.13s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #25406b;
  color: #efc41a;
}


/* CARDS AND GRIDS */
.feature-grid, .service-list-preview, .service-grid, .testimonial-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.service-list-preview {
  margin-bottom: 32px;
}
.service-item {
  background: #20252b;
  border-radius: 10px;
  box-shadow: 0 4px 14px 0 #191c2185;
  padding: 28px 22px;
  flex: 1 1 260px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  border: 1.5px solid #25406b44;
  transition: box-shadow 0.19s, transform 0.16s;
  margin-bottom: 20px;
}
.service-item img {
  width: 43px;
  height: 43px;
  filter: grayscale(55%) brightness(1.2) contrast(1.16);
}
.service-item h3, .service-item h2 {
  color: #efc41a;
  margin-bottom: 8px;
}
.service-item .price {
  margin-top: 14px;
  font-size: 1.1rem;
  color: #efc41a;
  font-weight: bold;
}
.service-item:hover {
  box-shadow: 0 8px 36px 0 #efc41a33;
  transform: translateY(-5px) scale(1.025);
}

.testimonial-list {
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.trust-signal {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #d0d4db;
  margin-top: 24px;
  font-size: 1rem;
  font-family: 'Montserrat', Arial, sans-serif;
}
.trust-signal img {
  width: 32px;
}

.quality-guarantee {
  display: flex;
  align-items: center;
  margin-top: 24px;
  gap: 12px;
  color: #efc41a;
  font-size: 1rem;
  font-weight: 600;
}
.quality-guarantee img {
  width: 26px;
  margin-right: 4px;
}

/* CTA BANNERS */
.cta-banner, .cta-message {
  display: flex;
  flex-direction: column;
  gap: 18px;
  background: #23282f;
  border-radius: 12px;
  box-shadow: 0 3px 22px 0 #23282f70;
  padding: 34px 28px;
  align-items: flex-start;
}
.cta-banner h2, .cta-message h2 {
  color: #efc41a;
}

.cta.primary, .cta.secondary {
  display: inline-block;
  border-radius: 7px;
  text-align: center;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  padding: 12px 32px;
  transition: background 0.13s, color 0.13s, box-shadow 0.17s, transform 0.18s;
  cursor: pointer;
  margin-top: 10px;
  box-shadow: 0 2px 10px 0 #23282f33;
  border: none;
  outline: none;
  text-transform: uppercase;
  letter-spacing: 0.024em;
}
.cta.primary {
  background: #efc41a;
  color: #22262c;
  border: 1.5px solid #efc41a;
}
.cta.primary:hover, .cta.primary:focus {
  background: #ffe479;
  color: #23282f;
  box-shadow: 0 3px 18px 0 #efc41a70;
  transform: translateY(-2px) scale(1.03);
}
.cta.secondary {
  background: transparent;
  color: #efc41a;
  border: 1.5px solid #efc41a;
}
.cta.secondary:hover, .cta.secondary:focus {
  background: #25406b;
  color: #fff6dc;
}

/* TABLE STYLING */
.price-table {
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0 32px 0;
  background: #23282f;
  border-radius: 9px;
  overflow: hidden;
  box-shadow: 0 2px 10px #12141726;
}
.price-table th, .price-table td {
  padding: 18px 16px;
  text-align: left;
  font-size: 1rem;
}
.price-table th {
  background: #25406b;
  color: #efc41a;
  font-family: 'Montserrat', Arial, sans-serif;
}
.price-table tr:nth-child(even) td {
  background: #20252b;
}
.price-table tr:nth-child(odd) td {
  background: #23282f;
}
.price-table td {
  color: #d0d4db;
}

/* ACCORDION FOR FAQ */
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.faq-item {
  background: #23282f;
  padding: 24px;
  border-radius: 8px;
  box-shadow: 0 2px 10px 0 #181d2290;
  border: 1.5px solid #25406b40;
  margin-bottom: 20px;
}
.faq-item h2 {
  color: #efc41a;
  font-size: 1.25rem;
  margin-bottom: 10px;
  cursor: pointer;
  position: relative;
}
.faq-answer {
  color: #d0d4db;
  font-size: 1rem;
  margin-bottom: 6px;
  padding-left: 8px;
}

/* LEGAL & TEXT AREA STYLES */
.legal {
  background: #20252b;
  border-radius: 10px;
  box-shadow: 0 2px 12px 0 #12141740;
  margin-bottom: 60px;
  padding: 40px 24px;
}
.text-section {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.text-section ul {
  padding-left: 22px;
  margin-bottom: 12px;
}
.text-section li {
  list-style: disc;
  margin-bottom: 5px;
}
.brand-story, .certifications, .team-brief {
  background: #23282f;
  border-radius: 8px;
  padding: 16px 18px;
  margin-bottom: 12px;
  box-shadow: 0 1px 8px 0 #181d2230;
}
.certifications ul, .team-brief ul {
  margin-bottom: 0;
}
.certifications img {
  width: 24px;
  margin-right: 8px;
  vertical-align: middle;
}

.note-on-transparency, .service-note {
  background: #25406b;
  color: #fffbe2;
  padding: 16px 20px;
  border-radius: 7px;
  margin: 32px 0 10px 0;
  font-size: 1.04rem;
  font-family: 'Montserrat', Arial, sans-serif;
}

/* CONTACT PAGE BLOCKS*/
.contact-section .contact-details, .contact-section .address-block {
  background: #23282f;
  border-radius: 9px;
  box-shadow: 0 1px 8px 0 #181d2239;
  padding: 20px 18px;
  margin-bottom: 18px;
}
.map-embed {
  background: #181d22;
  border: 2px dashed #333b4a;
  color: #b9bdc6;
  border-radius: 6px;
  min-height: 70px;
  padding: 14px 18px;
  text-align: center;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.call-to-action {
  margin-top: 22px;
}

/* FOOTER */
footer {
  background: #1a1c20;
  color: #d0d4db;
  padding: 42px 0 22px 0;
  position: relative;
  width: 100%;
  border-top: 2px solid #23282f;
}
footer .container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 32px;
}
footer .content-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  align-items: flex-start;
  justify-content: space-between;
}
.footer-contact {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  margin-bottom: 0;
  color: #bfc4cb;
  min-width: 240px;
}
.footer-menu {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-menu a {
  color: #d0d4db;
  background: none;
  font-size: 1rem;
  font-family: 'Montserrat', Arial, sans-serif;
  padding: 4px 5px;
  border-radius: 4px;
  transition: background 0.17s, color 0.13s;
}
.footer-menu a:hover, .footer-menu a:focus {
  background: #23282f;
  color: #efc41a;
}

.copyright {
  color: #878c97;
  font-size: 0.96rem;
  margin-top: 9px;
  font-family: 'Roboto', Arial, sans-serif;
}

/* THANK YOU & CONFIRMATION */
.confirmation .thank-you-message, .confirmation .next-steps {
  background: #23282f;
  border-radius: 8px;
  padding: 22px 16px;
  margin-bottom: 16px;
  color: #d0d4db;
}
.confirmation .cta.primary {
  margin-top: 24px;
}

/* UTILITIES */
ul {
  padding-left: 25px;
}
address {
  font-style: normal;
  color: #bfc4cb;
}

/* MICRO-INTERACTIONS & SHADOWS */
.card, .feature-item, .service-item, .testimonial-card, .faq-item {
  transition: box-shadow 0.18s, transform 0.15s;
}
.card:hover, .feature-item:hover, .service-item:hover, .testimonial-card:hover, .faq-item:hover {
  box-shadow: 0 6px 24px 0 #efc41a38;
  transform: translateY(-2px) scale(1.02);
}

/* STAR RATING */
.star-rating {
  color: #efc41a;
  font-size: 1.25rem;
  letter-spacing: 1px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  margin-bottom: 5px;
}
.testimonial-meta {
  color: #25406b;
  font-size: 0.99rem;
  font-family: 'Montserrat', Arial, sans-serif;
}

/* CONTACT PROMPT */
.contact-prompt {
  margin-top: 19px;
  background: #22262c;
  padding: 18px 14px;
  border-radius: 7px;
  color: #efc41a;
  font-size: 1.09rem;
}
.contact-prompt span {
  color: #efc41a;
  font-family: 'Montserrat', Arial, sans-serif;
}
.contact-prompt a {
  color: #25406b;
  font-weight: 700;
}


/* =============== COOKIE BANNER & MODAL =============== */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background: #23282f;
  color: #f4f5f7;
  padding: 24px 18px;
  box-shadow: 0 -2px 18px 0 #181d2272;
  z-index: 9998;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 32px;
  transition: transform 0.32s cubic-bezier(.87, -0.13, .19, 1.32), opacity 0.32s;
  opacity: 1;
  transform: translateY(0);
}
.cookie-banner.hidden {
  opacity: 0;
  pointer-events: none;
  transform: translateY(120px);
}
.cookie-banner .cookie-banner-content {
  flex: 1;
}
.cookie-banner-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
}
.cookie-banner button {
  background: #efc41a;
  color: #23282f;
  font-family: 'Montserrat', Arial, sans-serif;
  border: none;
  border-radius: 6px;
  padding: 10px 28px;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.13s, color 0.13s, transform 0.13s;
  box-shadow: 0 1px 8px #efc41a30;
}
.cookie-banner button.secondary {
  background: transparent;
  color: #efc41a;
  border: 1.5px solid #efc41a;
}
.cookie-banner button:hover, .cookie-banner button:focus {
  background: #ffe479;
  color: #23282f;
  transform: translateY(-1px) scale(1.02);
}
.cookie-banner button.secondary:hover {
  background: #25406b;
  color: #efc41a;
}

/* COOKIE MODAL */
.cookie-modal {
  display: none;
  position: fixed;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background: #1d232b98;
  z-index: 11500;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.32s;
}
.cookie-modal.open {
  display: flex;
  opacity: 1;
}
.cookie-modal .modal-content {
  background: #20252b;
  padding: 38px 24px 28px 24px;
  border-radius: 12px;
  box-shadow: 0 8px 64px 0 #25406b90;
  color: #f4f5f7;
  min-width: 320px;
  max-width: 95vw;
  width: 360px;
  font-family: 'Roboto', Arial, sans-serif;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 26px;
}
.cookie-modal .modal-content h2 {
  color: #efc41a;
  font-size: 1.24rem;
  font-family: 'Montserrat', Arial, sans-serif;
}
.cookie-modal-close {
  position: absolute;
  top: 11px;
  right: 11px;
  border: none;
  background: none;
  color: #efc41a;
  font-size: 1.44rem;
  border-radius: 4px;
  cursor: pointer;
  width: 38px;
  height: 38px;
  transition: background 0.13s;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  background: #363a43;
}

.cookie-modal .cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.cookie-category {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  background: #23282f;
  border-radius: 5px;
  padding: 8px 12px;
  color: #d0d4db;
}
.cookie-category .category-label {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.03rem;
}
.cookie-category .toggle-switch {
  position: relative;
  display: inline-block;
  width: 44px;
  height: 22px;
}
.cookie-category .toggle-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}
.cookie-category .toggle-slider {
  position: absolute;
  cursor: pointer;
  top: 0; left: 0; right: 0; bottom: 0;
  background: #b9bdc6;
  border-radius: 22px;
  transition: background 0.15s;
}
.cookie-category .toggle-switch input:checked + .toggle-slider {
  background: #efc41a;
}
.cookie-category .toggle-slider:before {
  content: '';
  position: absolute;
  height: 16px;
  width: 16px;
  left: 3px;
  bottom: 3px;
  background: #23282f;
  border-radius: 50%;
  transition: transform 0.15s;
}
.cookie-category .toggle-switch input:checked + .toggle-slider:before {
  transform: translateX(22px);
  background: #22262c;
}
.cookie-category .essential {
  color: #efc41a;
  font-weight: 700;
  margin-left: 14px;
  font-size: 0.98rem;
}

.cookie-modal .modal-actions {
  display: flex;
  flex-direction: row;
  gap: 14px;
  align-items: center;
  justify-content: flex-end;
}
.cookie-modal .modal-actions button {
  min-width: 120px;
}

/* =============== RESPONSIVE BREAKPOINTS =============== */
@media (max-width: 1200px) {
  .container { max-width: 1024px; }
}
@media (max-width: 1024px) {
  .container { max-width: 92vw; }
}
@media (max-width: 900px) {
  .container { max-width: 96vw; }
  .feature-grid, .service-grid, .testimonial-list {
    gap: 18px;
  }
  .main-nav {
    gap: 12px;
  }
}
@media (max-width: 820px) {
  .container { max-width: 98vw; padding: 0 8px; }
  .content-wrapper {
    gap: 20px;
  }
}
@media (max-width: 768px) {
  h1 { font-size: 2.05rem; }
  h2 { font-size: 1.35rem; }
  .hero {
    padding: 40px 0 35px 0;
  }
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
  .content-wrapper, .feature-grid, .service-list-preview, .testimonial-list, .service-grid {
    flex-direction: column;
    gap: 18px;
  }
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }
  footer .content-wrapper {
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
  }
  .cta-banner, .cta-message {
    padding: 18px 12px;
  }
  .hero .container {
    align-items: flex-start;
    padding: 0 8px;
  }
  .cookie-banner {
    flex-direction: column;
    gap: 16px;
    padding: 22px 8px;
  }
}
@media (max-width: 500px) {
  h1 { font-size: 1.39rem; }
  .hero {
    padding: 28px 0 22px 0;
  }
  .container {
    padding: 0 4px;
  }
  .testimonial-card, .card, .feature-item, .service-item, .faq-item {
    padding: 15px 8px;
  }
  .cta-banner, .cta-message {
    padding: 12px 8px;
    border-radius: 7px;
  }
  .cookie-modal .modal-content {
    padding: 20px 5px 10px 5px;
    width: 95vw;
    min-width: unset;
  }
}

/* =============== END OF CSS =============== */
