/* ============================================================
       Spark Construct Luxe Auto — Elegant Classic CSS
  ============================================================ */

/* ------------------------------------------------------------
   CSS RESET & BASE TYPOGRAPHY
------------------------------------------------------------ */
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: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}
html {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
  background: #F7F6F2;
  scroll-behavior: smooth;
}
body {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #232E3C;
  background: #F7F6F2;
  font-size: 16px;
  line-height: 1.7;
  min-height: 100vh;
  margin: 0;
}
main {
  width: 100%;
  margin: 0 auto;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: #232E3C;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #C9A85F;
  text-decoration: underline;
}
ul, ol {
  padding-left: 1.2em;
  margin-bottom: 1.2em;
}
li {
  margin-bottom: 0.75em;
}

/* Typography scale */
h1, .hero h1 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 2.7rem;
  font-weight: 700;
  letter-spacing: -1px;
  color: #232E3C;
  margin-bottom: 16px;
}
@media (min-width: 480px) {
  h1, .hero h1 { font-size: 3.3rem; }
}
h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 2.1rem;
  font-weight: 600;
  color: #232E3C;
  margin-bottom: 18px;
  margin-top: 8px;
}
h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.3rem;
  font-weight: 600;
  color: #232E3C;
  margin-bottom: 12px;
}
.subheadline {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  color: #232E3C;
  opacity: 0.93;
  margin-bottom: 18px;
}
strong {
  font-weight: bold;
  color: #232E3C;
}
blockquote {
  border-left: 4px solid #C9A85F;
  padding-left: 16px;
  font-style: italic;
  color: #232E3C;
  background: #f5f3ec;
  margin-bottom: 12px;
}

/* ------------------------------------------------------------
   CONTAINERS & SECTIONS
------------------------------------------------------------ */
.container {
  max-width: 1100px;
  padding: 0 20px;
  margin: 0 auto;
  width: 100%;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: none;
}
@media (min-width: 992px) {
  .section { padding: 60px 0; }
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-start;
  margin-bottom: 20px;
}

/* ------------------------------------------------------------
   FLEXBOX LAYOUTS & PROPORTIONS
------------------------------------------------------------ */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 8px 0 rgba(35, 46, 60, 0.08);
  padding: 28px 22px;
  margin-bottom: 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.18s;
}
.card:hover {
  box-shadow: 0 5px 18px 0 rgba(35,46,60,0.20);
}
.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;
    align-items: flex-start;
  }
  .content-wrapper, .content-grid {
    flex-direction: column;
    gap: 20px;
  }
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(35,46,60,0.07);
  padding: 20px;
  margin-bottom: 20px;
  min-width: 240px;
  transition: box-shadow 0.2s, transform 0.2s;
}
.testimonial-card:hover {
  box-shadow: 0 8px 32px rgba(35,46,60,0.18);
  transform: translateY(-4px) scale(1.025);
}

.testimonial-user {
  font-size: 1rem;
  font-weight: 600;
  color: #A28C54;
  font-family: 'Playfair Display', Georgia, serif;
  margin-top: 6px;
  opacity: 0.95;
}

@media (min-width: 768px) {
  .testimonials .content-wrapper {
    flex-direction: row;
    gap: 24px;
  }
}

/* ------------------------------------------------------------
   NAVIGATION & HEADER
------------------------------------------------------------ */
header {
  background: #fff;
  box-shadow: 0 4px 16px rgba(35,46,60,0.05);
  z-index: 20;
  position: sticky;
  top: 0;
}
.main-nav {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 18px;
  width: 100%;
  padding: 18px 0;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  color: #232E3C;
  font-weight: 500;
  padding: 8px 12px;
  border-radius: 5px;
  transition: background 0.17s, color 0.17s;
}
.main-nav a:hover, .main-nav a:focus {
  color: #C9A85F;
  background: #f5eccd;
}
.main-nav a.btn-primary {
  margin-left: auto;
}
.main-nav img {
  height: 43px;
  width: auto;
  margin-right: 16px;
}
@media (max-width: 1024px) {
  .main-nav a.btn-primary {
    margin-left: 0;
  }
}
@media (max-width: 900px) {
  .main-nav {
    gap: 8px;
    font-size: 15px;
  }
}
@media (max-width: 768px) {
  .main-nav {
    display: none !important;
  }
}

/* ------------------------------------------------------------
   BUTTONS & CTAs
------------------------------------------------------------ */
.btn-primary {
  background: #232E3C;
  color: #fff !important;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1.07rem;
  padding: 12px 30px;
  border-radius: 22px;
  border: none;
  box-shadow: 0 2px 12px 0 rgba(35,46,60,0.08);
  cursor: pointer;
  display: inline-block;
  transition: background 0.18s, color 0.16s, box-shadow 0.2s, transform 0.18s;
  letter-spacing: 0.2px;
  margin-top: 12px;
}
.btn-primary:hover,
.btn-primary:focus {
  background: #C9A85F;
  color: #232E3C !important;
  box-shadow: 0 4px 20px rgba(201,168,95,0.09);
  transform: scale(1.045);
  text-decoration: none !important;
}
.btn-secondary {
  background: #C9A85F;
  color: #232E3C;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1.07rem;
  padding: 10px 24px;
  border-radius: 22px;
  border: none;
  cursor: pointer;
  transition: background 0.17s, color 0.18s, box-shadow 0.17s, transform 0.16s;
  letter-spacing: 0.3px;
}
.btn-secondary:hover,
.btn-secondary:focus {
  background: #232E3C;
  color: #fff;
  box-shadow: 0 4px 16px rgba(35,46,60,0.09);
  transform: scale(1.03);
}

/* ------------------------------------------------------------
   HERO BANNER
------------------------------------------------------------ */
.hero {
  background: #fff;
  min-height: 260px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 40px;
  border-bottom: 2px solid #F4EADC;
}
.hero .container {
  display: flex;
  align-items: center;
  min-height: 220px;
}
.hero .content-wrapper {
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 0;
}
@media (min-width: 768px) {
  .hero .container {
    min-height: 320px;
  }
}

/* ------------------------------------------------------------
   SECTIONS & FEATURE BOXES
------------------------------------------------------------ */
.features {
  background: #FAF9F6;
  border-radius: 18px;
  margin-bottom: 60px;
}
.features .container {
  padding-top: 36px;
  padding-bottom: 36px;
}
.features ul {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 2px;
}
.features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  background: none;
  color: #232E3C;
  font-size: 1rem;
  padding: 8px 0;
  line-height: 1.6;
}
.features li img {
  min-width: 28px;
  width: 28px;
  height: 28px;
  margin-right: 4px;
  border-radius: 7px;
  box-shadow: 0 1.5px 9px 0 rgba(201,168,95,0.10);
  background: #fff;
}
@media (min-width: 768px) {
  .features ul {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 24px;
  }
  .features li {
    min-width: 220px;
    max-width: 312px;
    flex: 1 1 220px;
  }
}

.pricing-table {
  border-collapse: collapse;
  width: 100%;
  margin-bottom: 22px;
  font-size: 1rem;
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 10px 0 rgba(35, 46, 60, 0.07);
}
.pricing-table th, .pricing-table td {
  border: 1px solid #E6E0D2;
  padding: 14px 10px;
  text-align: left;
}
.pricing-table th {
  background: #F4EADC;
  color: #232E3C;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.05rem;
  font-weight: 600;
}
.pricing-table td {
  background: #fff;
  color: #232E3C;
}

/* ------------------------------------------------------------
   CTA SECTION
------------------------------------------------------------ */
.cta {
  background: #FAF9F6;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 60px;
}
.cta .container {
  display: flex;
  justify-content: center;
}
.cta .content-wrapper {
  align-items: center;
  flex-direction: row;
  gap: 18px;
}
@media (max-width: 680px) {
  .cta .content-wrapper { flex-direction: column; gap: 18px; }
}

/* ------------------------------------------------------------
   ABOUT / TEXT SECTIONS
------------------------------------------------------------ */
.about {
  background: #fff;
  border-radius: 18px;
  margin-bottom: 60px;
}
.about .container {
  padding-top: 36px;
  padding-bottom: 36px;
}
.text-section {
  font-size: 1.05rem;
  color: #232E3C;
  margin-bottom: 12px;
  font-family: 'Montserrat', Arial, sans-serif;
}
.team-highlight {
  background: #FAF9F6;
  border-radius: 10px;
  padding: 16px 18px;
  margin-top: 12px;
  margin-bottom: 0;
  box-shadow: 0 2px 10px rgba(35,46,60,0.04);
}

/* ------------------------------------------------------------
   MAP SNIPPET
------------------------------------------------------------ */
.map-snippet {
  background: #F4EADC;
  padding: 16px;
  border-radius: 15px;
  box-shadow: 0 2px 12px 0 rgba(35, 46, 60, 0.07);
  display: flex;
  align-items: center;
  justify-content: center;
}
.map-snippet img {
  width: 40px;
  height: 40px;
}

/* ------------------------------------------------------------
   CONTACT-INFO LISTS
------------------------------------------------------------ */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 8px;
  margin-top: 1.4em;
}
.contact-info li {
  display: flex;
  align-items: center;
  font-size: 1rem;
  color: #232E3C;
}
.contact-info img {
  width: 22px;
  height: 22px;
  margin-right: 8px;
  opacity: 1;
}

/* ------------------------------------------------------------
   TRUST BADGES
------------------------------------------------------------ */
.trust-badges {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 10px;
}
.trust-badges li {
  display: flex;
  align-items: center;
  font-size: 0.97rem;
  color: #8C815F;
}
.trust-badges img {
  width: 26px;
  height: 26px;
  margin-right: 6px;
}

/* ------------------------------------------------------------
   FAQ ACCORDION / CARDS
------------------------------------------------------------ */
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.faq-accordion > div {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 8px 0 rgba(35, 46, 60, 0.06);
  padding: 18px 16px;
  margin-bottom: 0;
}
.faq-accordion h3 {
  font-size: 1.08rem;
  margin-bottom: 6px;
}
.faq-accordion p {
  font-size: 1rem;
}

/* ------------------------------------------------------------
   FOOTER
------------------------------------------------------------ */
footer {
  background: #232E3C;
  color: #fff;
  padding: 36px 0 24px 0;
  text-align: center;
  box-shadow: 0 -5px 32px rgba(35, 46, 60, 0.10);
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin-bottom: 14px;
}
.footer-nav a {
  color: #C9A85F;
  font-size: 1rem;
  font-family: 'Montserrat', Arial, sans-serif;
  opacity: 0.93;
  transition: color 0.17s, opacity 0.15s;
}
.footer-nav a:hover {
  color: #fff;
  opacity: 1;
}
.footer-contact {
  font-size: 0.98rem;
  color: #eee7d0;
  margin-top: 12px;
}
.footer-logo img {
  width: 46px;
  margin: 8px auto;
}

/* ------------------------------------------------------------
   MOBILE MENU (BURGER NAV)
------------------------------------------------------------ */
.mobile-menu-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #232E3C;
  color: #fff;
  border: 0;
  border-radius: 7px;
  font-size: 2rem;
  width: 48px;
  height: 48px;
  margin: 10px 18px 10px auto;
  cursor: pointer;
  z-index: 99;
  box-shadow: 0 2px 14px 0 rgba(35,46,60,0.06);
  transition: background 0.2s, color 0.2s;
}
.mobile-menu-toggle:hover,
.mobile-menu-toggle:focus {
  background: #C9A85F;
  color: #232E3C;
}
@media (min-width: 769px) {
  .mobile-menu-toggle { display: none !important; }
}

.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(35,46,60,0.98);
  color: #fff;
  z-index: 1111;
  transform: translateX(-100%);
  transition: transform 0.4s cubic-bezier(.77,.2,.05,1.0);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  opacity: 1;
  pointer-events: none;
}
.mobile-menu.open {
  transform: translateX(0%);
  pointer-events: all;
  box-shadow: 0 0 72px 0 rgba(35,46,60,0.16);
}
.mobile-menu-close {
  background: transparent;
  color: #fff;
  font-size: 2.2rem;
  border: 0;
  align-self: flex-end;
  margin: 20px 28px 0 0;
  cursor: pointer;
  transition: color 0.15s;
  z-index: 1112;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  color: #C9A85F;
}
.mobile-nav {
  margin: 44px 0 0 0;
  width: 100vw;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  padding-left: 36px;
  padding-top: 20px;
}
.mobile-nav a {
  color: #fff;
  font-size: 1.16rem;
  font-family: 'Montserrat', Arial, sans-serif;
  margin-bottom: 8px;
  background: none;
  padding: 12px 8px;
  border-radius: 6px;
  box-shadow: none;
  transition: color 0.16s, background 0.16s;
}
.mobile-nav a:active,
.mobile-nav a:focus,
.mobile-nav a:hover {
  color: #C9A85F;
  background: #232E3C;
}

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

/* ------------------------------------------------------------
   Cookie Consent Banner & Modal
------------------------------------------------------------ */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;
  background: #232E3C;
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 2222;
  padding: 18px 12px 22px 12px;
  box-shadow: 0 -7px 36px 0 rgba(35,46,60,0.14);
  animation: fadeInBanner 0.7s cubic-bezier(.23,.25,.41,1.13) 1;
}
@keyframes fadeInBanner {
  0% { transform: translateY(100%); opacity:0; }
  80%{ transform: translateY(-5%); opacity:1; }
  100%{ transform: translateY(0); opacity:1; }
}
.cookie-banner p {
  font-size: 1.01rem;
  margin-bottom: 10px;
  color: #fff;
  text-align: center;
}
.cookie-buttons {
  display: flex;
  flex-direction: row;
  gap: 16px;
  margin-top: 6px;
}
.cookie-buttons button {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  border-radius: 21px;
  padding: 8px 22px;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  min-width: 120px;
  transition: background 0.16s, color 0.15s, box-shadow 0.17s;
}
.cookie-buttons .cookie-accept {
  background: #C9A85F;
  color: #232E3C;
}
.cookie-buttons .cookie-accept:hover,
.cookie-buttons .cookie-accept:focus {
  background: #fff;
  color: #232E3C;
}
.cookie-buttons .cookie-reject {
  background: #fff;
  color: #232E3C;
}
.cookie-buttons .cookie-reject:hover,
.cookie-buttons .cookie-reject:focus {
  background: #C9A85F;
  color: #fff;
}
.cookie-buttons .cookie-settings {
  background: transparent;
  color: #C9A85F;
  border: 2px solid #C9A85F;
}
.cookie-buttons .cookie-settings:hover,
.cookie-buttons .cookie-settings:focus {
  background: #C9A85F;
  color: #232E3C;
}

/* Cookie Settings Modal */
.cookie-modal {
  position: fixed;
  left:50%;
  top:50%;
  transform: translate(-50%,-50%) scale(0.96);
  width: 92vw;
  max-width: 430px;
  background: #F7F6F2;
  border-radius: 18px;
  box-shadow: 0 10px 44px 0 rgba(35, 46, 60, 0.22);
  z-index: 3333;
  padding: 26px 22px 20px 22px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.23s, transform 0.19s;
}
.cookie-modal.open {
  opacity: 1;
  pointer-events: all;
  transform: translate(-50%,-50%) scale(1);
}
.cookie-modal h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.20rem;
  margin-bottom: 10px;
  color: #232E3C;
}
.cookie-modal label {
  display: flex;
  align-items: center;
  margin-bottom: 11px;
}
.cookie-category {
  font-size: 1rem;
  color: #232E3C;
  margin-left: 8px;
}
.cookie-modal .cookie-modal-buttons {
  display: flex;
  flex-direction: row;
  gap: 14px;
  margin-top: 16px;
  justify-content: flex-end;
}
.cookie-modal .cookie-modal-buttons button {
  border-radius: 21px;
  font-size: 1rem;
  font-family: 'Montserrat', Arial, sans-serif;
  border: none;
  padding: 8px 22px;
  font-weight: 500;
  transition: background 0.14s, color 0.13s;
}
.cookie-modal .cookie-accept {
  background: #C9A85F;
  color: #232E3C;
}
.cookie-modal .cookie-accept:hover {
  background: #232E3C;
  color: #fff;
}
.cookie-modal .cookie-reject {
  background: #fff;
  color: #232E3C;
  border: 1.5px solid #C9A85F;
}
.cookie-modal .cookie-reject:hover {
  background: #C9A85F;
  color: #fff;
}
.cookie-modal .cookie-modal-close {
  position: absolute;
  right: 24px; top: 16px;
  background: transparent;
  color: #C9A85F;
  font-size: 1.9rem;
  border: none;
  cursor: pointer;
  opacity: 0.87;
}
.cookie-modal .cookie-modal-close:hover,
.cookie-modal .cookie-modal-close:focus {
  color: #232E3C;
  opacity: 1;
}
.cookie-modal .cookie-legend {
  font-size: 0.96rem;
  color: #666042;
  margin-bottom: 10px;
}

/* Switches for cookie preferences */
.cookie-switch {
  width: 39px;
  height: 21px;
  background: #C9A85F;
  position: relative;
  border-radius: 12px;
  margin-left: 12px;
  transition: background 0.15s;
  appearance: none;
  outline: none;
  cursor: pointer;
}
.cookie-switch[disabled] {
  background: #e7ddb9;
  cursor: not-allowed;
}
.cookie-switch:checked {
  background: #232E3C;
}
.cookie-switch:after {
  content: '';
  width: 18px;
  height: 18px;
  background: #fff;
  border-radius: 50%;
  position: absolute;
  left: 1.7px;
  top: 1.5px;
  transition: left 0.18s;
}
.cookie-switch:checked:after {
  left: 18px;
}

/* ------------------------------------------------------------
   RESPONSIVE & MOBILE STYLES
------------------------------------------------------------ */
@media (max-width: 768px) {
  html { font-size: 15px; }
  .hero h1, h1 { font-size: 2.1rem; }
  h2 { font-size: 1.43rem; }
  .container { padding: 0 10px; }

  .section { padding: 28px 8px; margin-bottom: 34px; }
  .footer-nav { gap: 11px; font-size: 0.95rem; }
  .footer-logo img { width: 36px; }
  .footer-contact { font-size: 0.9rem; }
  .main-nav { display: none !important; }
  .features, .about, .cta { border-radius: 10px; }
  .card { padding: 18px 12px; }
}
@media (max-width: 500px) {
  html { font-size: 14px; }
  .content-wrapper, .content-grid, .features ul, .trust-badges, .contact-info {
    gap: 12px;
    flex-direction: column;
  }
}

/* ------------------------------------------------------------
   MICRO-INTERACTIONS & TRANSITIONS
------------------------------------------------------------ */
.btn-primary, .btn-secondary, .main-nav a, .footer-nav a, .cookie-buttons button, .cookie-modal .cookie-modal-buttons button {
  transition: background 0.14s, color 0.13s, box-shadow 0.15s, transform 0.13s;
}
.card, .testimonial-card, .faq-accordion > div {
  transition: box-shadow 0.18s, transform 0.17s;
}
.card:hover, .testimonial-card:hover, .faq-accordion > div:hover {
  box-shadow: 0 10px 30px 0 rgba(35, 46, 60, 0.13);
  transform: translateY(-3px) scale(1.015);
}

/* ------------------------------------------------------------
   UTILITY CLASSES
------------------------------------------------------------ */
.d-none { display: none !important; }
.mt-2 { margin-top: 20px; }
.mb-2 { margin-bottom: 20px; }
.w-100 { width: 100%; }

/* ------------------------------------------------------------
   PRINT & SELECTION
------------------------------------------------------------ */
@media print {
  header, footer, .mobile-menu, .cookie-banner, .cookie-modal { display: none !important; }
  main { background: #fff !important; }
}
::selection {
  background: #C9A85F;
  color: #232E3C;
}

/* ------------------------------------------------------------
   END OF STYLE SHEET
------------------------------------------------------------ */