/* =========================
   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 {
  scroll-behavior: smooth;
}
body {
  line-height: 1.5;
  background: #F8FAFC;
  color: #243248;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  min-height: 100vh;
  position: relative;
}
article, aside, details, figcaption, figure, footer, header, hgroup, main, menu, nav, section {
  display: block;
}
ul, ol {
  padding-left: 1.5em;
  margin-bottom: 1em;
}
li {
  margin-bottom: 0.2em;
}
a {
  background: transparent;
  color: #243248;
  text-decoration: none;
  transition: color 0.2s;
}
a:focus, a:hover {
  color: #F2A900;
  outline: none;
}
img {
  border: 0;
  max-width: 100%;
  height: auto;
}
button {
  font-family: inherit;
  border: none;
  outline: none;
  background: none;
  cursor: pointer;
}

/* =========================
   FONT IMPORT
   ========================= */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@600;700&family=Roboto:wght@400;500&display=swap');

/* =========================
   LUXURY PREMIUM COLOR PALETTE
   ========================= */
:root {
  --primary: #243248;
  --secondary: #C1CAD6;
  --accent: #F2A900;
  --offwhite: #F8FAFC;
  --card-bg: #fff;
  --text-dark: #243248;
  --text-light: #F8FAFC;
  --border: #e5e7eb;
  --shadow: 0 2px 16px rgba(36,50,72, 0.10), 0 1.5px 6px rgba(242,169,0, 0.03);
  --gold: #F2A900;
}

/* =========================
   TYPOGRAPHY
   ========================= */
h1, h2, h3, h4, .primary-cta {
  font-family: 'Montserrat', serif;
  font-weight: 700;
  letter-spacing: 0.01em;
  color: var(--primary);
}
h1 {
  font-size: 2.25rem;
  margin-bottom: 20px;
  line-height: 1.15;
}
h2 {
  font-size: 1.5rem;
  margin-bottom: 16px;
  line-height: 1.2;
}
h3 {
  font-size: 1.125rem;
  margin-bottom: 12px;
}
h4 {
  font-size: 1rem;
  margin-bottom: 10px;
}
p, li, ul, ol {
  font-family: 'Roboto', Arial, sans-serif;
  color: var(--primary);
  font-weight: 400;
  font-size: 1rem;
}
.subheadline {
  color: var(--primary);
  font-weight: 500;
  font-size: 1.125rem;
  margin-bottom: 36px;
}
.price {
  color: var(--gold);
  font-family: 'Montserrat', serif;
  font-weight: 600;
  font-size: 1.125rem;
  margin-top: 12px;
}

/* Typographic scale (fallbacks handled with media queries below) */
@media (min-width: 900px) {
  h1 { font-size: 2.75rem; }
  h2 { font-size: 2rem; }
  .subheadline { font-size: 1.25rem; }
  p, li { font-size: 1.125rem; }
}

strong {
  font-weight: 600;
}

/* =========================
   LAYOUT CONTAINERS
   ========================= */
.container {
  width: 100%;
  max-width: 1150px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: transparent;
}

.card-container, .features-grid, .service-list, .mini-case-studies {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}

.card, .service-block, .case-study {
  margin-bottom: 20px;
  position: relative;
  background: var(--card-bg);
  border-radius: 20px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}

.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
}

.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
  width: 100%;
}
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}

@media (max-width: 768px) {
  .content-grid, .text-image-section {
    flex-direction: column;
    gap: 20px;
  }
  .section {
    padding: 28px 8px;
    margin-bottom: 32px;
  }
  .card, .service-block, .case-study {
    padding: 20px 12px;
  }
}

/* =========================
   HEADER & NAVIGATION
   ========================= */
header {
  background: var(--offwhite);
  border-bottom: 1px solid var(--border);
  position: relative;
  z-index: 10;
  width: 100%;
}
header .container {
  flex-direction: row;
  align-items: center;
  padding-top: 12px;
  padding-bottom: 12px;
}
header .content-wrapper {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
header img {
  height: 48px;
  width: auto;
  margin-right: 24px;
}
.main-nav {
  display: flex;
  flex-direction: row;
  gap: 20px;
  align-items: center;
  flex-wrap: wrap;
}
.main-nav a {
  color: var(--primary);
  font-family: 'Montserrat', serif;
  font-size: 1rem;
  padding: 8px 0;
  font-weight: 500;
  border-bottom: 2px solid transparent;
  transition: border-color 0.18s, color 0.18s;
}
.main-nav a:hover,
.main-nav a:focus {
  color: var(--gold);
  border-bottom: 2px solid var(--gold);
}
.primary-cta {
  background: var(--primary);
  color: var(--text-light);
  font-family: 'Montserrat', serif;
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: .02em;
  border-radius: 100px;
  padding: 12px 32px;
  margin-left: 28px;
  border: none;
  box-shadow: 0 1.5px 8px rgba(36,50,72,0.13);
  transition: background 0.15s, color 0.15s, box-shadow 0.2s;
  position: relative;
}
.primary-cta:after {
  content: '';
  display: block;
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 8px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold) 20%, transparent 100%);
  border-radius: 1px;
  opacity: 0.5;
  pointer-events: none;
}
.primary-cta:hover,
.primary-cta:focus {
  background: var(--gold);
  color: var(--primary);
  box-shadow: 0 3px 18px rgba(36,50,72,0.18);
}

/* =============================
   MOBILE MENU NAVIGATION
   ============================= */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 22px;
  right: 22px;
  z-index: 202;
  background: var(--card-bg);
  color: var(--primary);
  border-radius: 50%;
  width: 48px;
  height: 48px;
  font-size: 1.75rem;
  font-weight: 600;
  box-shadow: 0 1px 7px rgba(36,50,72,0.08);
  border: 1.5px solid var(--border);
  transition: background 0.17s, color 0.17s;
}
.mobile-menu-toggle:focus,
.mobile-menu-toggle:hover {
  background: var(--primary);
  color: var(--gold);
}
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(36,50,72,0.97);
  backdrop-filter: blur(4px);
  z-index: 201;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  padding: 0;
  transform: translateX(100%);
  transition: transform 0.34s cubic-bezier(.68,-0.55,.27,1.55);
  width: 100vw;
  height: 100vh;
  overflow: auto;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: none;
  color: var(--gold);
  font-size: 2.3rem;
  font-weight: 700;
  margin: 16px 18px 12px 0;
  border-radius: 50%;
  transition: background .2s, color .19s;
  width: 40px;
  height: 40px;
  align-self: flex-end;
}
.mobile-menu-close:focus,
.mobile-menu-close:hover {
  background: var(--gold);
  color: var(--primary);
}
.mobile-nav {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 32px 30px 30px 36px;
  align-items: flex-start;
}
.mobile-nav a {
  font-family: 'Montserrat', serif;
  font-size: 1.25rem;
  color: var(--text-light);
  padding: 12px 0;
  border-bottom: 2px solid transparent;
  width: 100%;
  transition: color 0.16s, border-color 0.20s;
}
.mobile-nav a:focus,
.mobile-nav a:hover {
  color: var(--gold);
  border-bottom: 2px solid var(--gold);
}
@media (max-width: 980px) {
  .main-nav, .primary-cta {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
  }
}

@media (min-width: 981px) {
  .mobile-menu, .mobile-menu-toggle {
    display: none !important;
  }
}

/* ========================
   SECTIONS & FLEX PATTERNS
   ======================== */
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: var(--card-bg);
  border-radius: 18px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  padding: 28px 18px;
  flex: 1 1 220px;
  min-width: 220px;
  max-width: 310px;
  margin-bottom: 20px;
  transition: box-shadow 0.18s, border-color 0.18s, transform 0.14s;
  position: relative;
}
.feature-item img {
  width: 46px;
  height: 46px;
}
.feature-item h3 {
  font-size: 1.175rem;
  color: var(--primary);
  margin-bottom: 8px;
}
.feature-item p.price {
  font-family: 'Montserrat', serif;
  color: var(--gold);
  font-size: 1.02rem;
}
.feature-item:hover {
  box-shadow: 0 6.5px 32px rgba(242,169,0,.11), 0 1px 6px rgba(36,50,72,.1);
  border-color: var(--gold);
  transform: translateY(-4px) scale(1.015);
}

.service-list {
  justify-content: flex-start;
}
.service-block {
  flex: 1 1 260px;
  min-width: 240px;
  max-width: 370px;
  background: var(--card-bg);
  border-radius: 20px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  padding: 36px 24px 28px 24px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  transition: box-shadow 0.18s, border-color 0.18s, transform 0.14s;
  position: relative;
}
.service-block img {
  width: 46px;
  height: 46px;
  margin-bottom: 4px;
  filter: saturate(1.12);
}
.service-block h2 {
  font-size: 1.275rem;
  color: var(--primary);
  margin-bottom: 6px;
}
.service-block ul {
  margin: 10px 0 0 0;
}
.service-block .price {
  margin-top: 5px;
}
.service-block:hover {
  box-shadow: 0 8px 36px rgba(36,50,72,0.09), 0 2.5px 8px rgba(242,169,0,0.11);
  border-color: var(--gold);
  transform: translateY(-5px) scale(1.018);
}
@media (max-width: 900px) {
  .features-grid, .service-list {
    flex-direction: column;
    gap: 18px;
    align-items: stretch;
  }
  .feature-item, .service-block {
    max-width: 100%;
    min-width: 0;
  }
}

/* ========================
   TESTIMONIALS & CASES
   ======================== */
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px 30px;
  margin-bottom: 24px;
  background: #f4f6fa;
  border-radius: 18px;
  box-shadow: 0 2px 18px rgba(36,50,72, 0.07);
  border: 1.5px solid #e5e7eb;
  font-size: 1.12rem;
  color: var(--primary);
  max-width: 780px;
}
.testimonial-card p {
  font-size: 1.11rem;
  font-weight: 500;
  color: var(--primary);
}
.testimonial-card span {
  font-size: 0.98rem;
  color: #5a6271;
  font-style: italic;
  margin-left: 8px;
}
.star-rating {
  display: flex;
  align-items: center;
  margin-bottom: 24px;
  gap: 6px;
}
.star-rating img {
  width: 30px;
}
.avg-rating {
  font-family: 'Montserrat', serif;
  font-weight: 600;
  color: var(--primary);
  margin-left: 12px;
}
.mini-case-studies {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 12px;
}
.case-study {
  background: var(--card-bg);
  border-radius: 14px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  padding: 22px 16px;
  flex: 1 1 220px;
  min-width: 220px;
  max-width: 340px;
  margin-bottom: 20px;
  font-size: 1.05rem;
}
.case-study h3 {
  font-family: 'Montserrat', serif;
  color: var(--primary);
  font-size: 1.1rem;
  margin-bottom: 7px;
}
@media (max-width: 900px) {
  .mini-case-studies {
    flex-direction: column;
    gap: 15px;
  }
  .case-study {
    max-width: 100%;
    min-width: 0;
  }
}

/* FAQ ACCORDION */
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.faq-item {
  background: var(--card-bg);
  border-radius: 12px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  padding: 18px 20px 14px 18px;
  transition: box-shadow 0.14s, border-color 0.13s;
}
.faq-item h3 {
  font-size: 1.09rem;
  margin-bottom: 6px;
  font-family: 'Montserrat', serif;
  color: var(--primary);
}
.faq-item p {
  color: #42506a;
  font-size: 1rem;
}
.faq-item:hover {
  box-shadow: 0 6px 28px rgba(36,50,72,0.07), 0 2.5px 8px rgba(242,169,0,0.08);
  border-color: var(--gold);
}

/* ============================
   CONTACT DETAILS & MAP PLACEHOLDER
   ============================ */
.contact-details {
  background: #f4f5fa;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 18px 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  max-width: 520px;
  color: var(--primary);
  font-size: 1.08rem;
  margin-bottom: 14px;
}
.map-embed-placeholder {
  background: repeating-linear-gradient(135deg, #C1CAD6 0px, #f8fafc 30px);
  min-height: 160px;
  border-radius: 12px;
  box-shadow: 0 2px 14px rgba(36,50,72,0.07);
  border: 1px solid #e5e7eb;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 12px;
  color: #b0b8c7;
  font-style: italic;
}

/* =========================
   FOOTER
   ========================= */
footer {
  background: var(--primary);
  color: var(--text-light);
  padding: 42px 0 16px 0;
  border-top: 4px solid var(--gold);
  width: 100%;
}
footer .container {
  padding: 0 20px;
  gap: 14px;
}
footer .content-wrapper {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
}
.footer-nav, .footer-legal-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.footer-nav a,
.footer-legal-nav a {
  color: var(--text-light);
  font-family: 'Montserrat', serif;
  font-size: 1rem;
  letter-spacing: 0.01em;
  transition: color 0.18s;
}
.footer-nav a:hover,
.footer-legal-nav a:hover {
  color: var(--gold);
}
.footer-contact {
  display: flex;
  flex-direction: row;
  gap: 8px;
  color: var(--secondary);
  font-size: 1rem;
}
.footer-social {
  display: flex;
  gap: 10px;
}
@media (max-width: 900px) {
  footer .content-wrapper {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  .footer-contact {
    margin-top: 8px;
  }
}

/* ============================
   COOKIES CONSENT BANNER
   ============================ */
.cookie-consent-banner {
  position: fixed;
  left: 0; bottom: 0; right: 0;
  background: #fff5dd;
  border-top: 2px solid var(--gold);
  box-shadow: 0 -2px 24px rgba(36,50,72,0.09);
  color: var(--primary);
  z-index: 3005;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  padding: 22px 16px;
  font-size: 1.04rem;
}
.cookie-consent-banner .cookie-banner-actions {
  display: flex;
  flex-direction: row;
  gap: 16px;
  margin-top: 8px;
}
.cookie-banner-btn {
  border-radius: 100px;
  font-family: 'Montserrat', serif;
  font-weight: 600;
  border: none;
  padding: 10px 24px;
  font-size: 1rem;
  transition: background 0.17s, color 0.16s, box-shadow 0.14s;
  margin: 0 4px;
  min-width: 110px;
  min-height: 32px;
}
.cookie-accept {
  background: var(--gold);
  color: var(--primary);
  box-shadow: 0 1.5px 8px rgba(242,169,0,.07);
}
.cookie-accept:hover,.cookie-accept:focus {
  background: var(--primary);
  color: var(--text-light);
}
.cookie-reject {
  background: #fff;
  border: 1px solid var(--primary);
  color: var(--primary);
}
.cookie-reject:hover,.cookie-reject:focus {
  background: var(--primary);
  color: var(--text-light);
  border-color: var(--gold);
}
.cookie-settings {
  background: var(--secondary);
  color: var(--primary);
  border: 1px solid var(--secondary);
}
.cookie-settings:hover,.cookie-settings:focus {
  background: var(--primary);
  color: var(--text-light);
  border-color: var(--gold);
}

.cookie-modal-overlay {
  position: fixed;
  z-index: 3010;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(36,50,72,0.74);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.2s ease;
  opacity: 0;
  pointer-events: none;
}
.cookie-modal-overlay.open {
  opacity: 1;
  pointer-events: all;
}
.cookie-modal-content {
  background: #fff;
  border-radius: 22px;
  box-shadow: 0 8px 48px rgba(36,50,72,.15);
  border: 1.5px solid var(--gold);
  color: var(--primary);
  padding: 40px 30px 26px 30px;
  max-width: 420px;
  min-width: 300px;
  display: flex;
  flex-direction: column;
  gap: 22px;
  animation: fadeinzoom 0.32s cubic-bezier(.68,-0.55,.27,1.55);
  position: relative;
}
.cookie-modal-content h3 {
  font-size: 1.32rem;
}
.cookie-modal-category {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 14px;
  margin-bottom: 11px;
}
.cookie-modal-category label {
  flex: 1;
  font-size: 1rem;
  color: var(--primary);
  font-family: 'Montserrat', serif;
}
.cookie-switch {
  width: 42px;
  height: 24px;
  position: relative;
  display: inline-flex;
  align-items: center;
}
.cookie-switch input {
  opacity: 0;
  width: 0;
  height: 0;
  position: absolute;
}
.cookie-slider {
  position: absolute;
  cursor: pointer;
  top: 0; left: 0; right: 0; bottom: 0;
  background: #ddd3b7;
  transition: background .23s;
  border-radius: 22px;
}
.cookie-switch input:checked + .cookie-slider {
  background: var(--gold);
}
.cookie-slider:before {
  content: "";
  position: absolute;
  left: 4px; top: 4px;
  width: 16px; height: 16px;
  border-radius: 50%;
  background: #fff;
  transition: transform .19s, background .14s;
}
.cookie-switch input:checked + .cookie-slider:before {
  transform: translateX(18px);
  background: var(--primary);
}
.cookie-modal-actions {
  display: flex;
  gap: 14px;
  margin-top: 8px;
}
.cookie-modal-close {
  background: none;
  position: absolute;
  top: 15px;
  right: 18px;
  font-size: 1.7rem;
  color: var(--gold);
  border: none;
  border-radius: 50%;
  width: 34px; height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.13s, color 0.13s;
}
.cookie-modal-close:hover,.cookie-modal-close:focus {
  background: var(--gold);
  color: var(--primary);
}
@keyframes fadeinzoom {
  0% {transform: scale(0.84) translateY(38px);opacity:0;}
  100% {transform: scale(1) translateY(0);opacity:1;}
}
@media (max-width: 480px) {
  .cookie-modal-content {
    padding: 18px 7vw 16px 7vw;
    min-width: 0;
    max-width: 95vw;
  }
}

/* =========================
   ANIMATIONS & INTERACTIONS
   ========================= */
.card, .case-study, .feature-item, .service-block, .testimonial-card {
  transition: box-shadow 0.18s, border-color 0.18s, transform 0.12s;
}
.card:hover, .case-study:hover {
  box-shadow: 0 5px 20px rgba(242,169,0,0.08), 0 1.5px 6px rgba(36,50,72,0.12);
  border-color: var(--gold);
  transform: translateY(-4px) scale(1.014);
  z-index: 2;
}

@media (max-width: 570px) {
  .container {padding: 0 6px;}
  .section {padding: 18px 0;}
}

/* =========================
   ADDITIONAL UTILITIES
   ========================= */
.hide {display: none !important;}
.flex {display: flex !important;}
.gap-8 {gap: 8px !important;}
.gap-12 {gap: 12px !important;}
.gap-16 {gap: 16px !important;}
.gap-24 {gap: 24px !important;}
.align-center {align-items:center !important;}
.justify-center {justify-content:center !important;}

::-webkit-input-placeholder { color: #b4bcd0; }
::-moz-placeholder { color: #b4bcd0; }
:-ms-input-placeholder { color: #b4bcd0; }
::placeholder { color: #b4bcd0; }

/* =========================
   PRINT STYLES
   ========================= */
@media print {
  .mobile-menu, .mobile-menu-toggle, .cookie-consent-banner, .cookie-modal-overlay {display: none !important;}
  header, footer {background: #fff; color: #111;}
}
