/* 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-size: 100%;
  font: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}
article, aside, details, figcaption, figure, 
footer, header, hgroup, main, menu, nav, section {
  display: block;
}
body {
  line-height: 1.65;
  background: #fff;
  color: #233659;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  min-height: 100vh;
}
*, *:before, *:after {
  box-sizing: inherit;
}
a {
  color: #B48416;
  text-decoration: none;
  transition: color .2s;
}
a:hover, a:focus {
  color: #233659;
  text-decoration: underline;
}
img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}
ul, ol {
  margin-left: 1.25em;
}
strong, b {
  font-weight: 700;
}

/* BRAND FONTS ------------------------------------------------------------ */
@import url('https://fonts.googleapis.com/css?family=Montserrat:700,900&display=swap');
@import url('https://fonts.googleapis.com/css?family=Roboto:400,500,700&display=swap');
h1, h2, h3, .btn-primary, .btn-secondary, .hero h1 {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 900;
  letter-spacing: 0.03em;
}
h1 {
  font-size: 2.5rem;
  margin-bottom: 24px;
  color: #233659;
}
h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: #B48416;
}
h3 {
  font-size: 1.2rem;
  margin-bottom: 12px;
  color: #233659;
}
p, li, ul, ol, .text-section {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  color: #233659;
  line-height: 1.7;
}
.text-section h1, .text-section h2, .text-section h3 {
  margin-bottom: 12px;
}
ul li, ol li {
  margin-bottom: 8px;
}

/* CONTAINERS & SECTION SPACING -------------------------------------------- */
.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 20px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.text-section {
  margin-bottom: 32px;
}
.card-container, .feature-grid, .blog-list, .service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 32px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 18px rgba(36,54,89,0.09), 0 1.5px 5px rgba(180,132,22,0.10);
  overflow: hidden;
  transition: box-shadow .25s, transform .15s;
  min-width: 270px;
}
.card:hover {
  box-shadow: 0 8px 26px rgba(36,54,89,0.13), 0 3px 14px rgba(180,132,22,0.20);
  transform: translateY(-3px) scale(1.02);
}
.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;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #EDEDED;
  border-radius: 20px;
  box-shadow: 0 3px 18px rgba(36,54,89,0.07);
  margin-bottom: 24px;
  flex-direction: row;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 9px rgba(36,54,89,0.07);
  padding: 20px 18px;
  min-width: 260px;
  transition: box-shadow .17s, transform .17s;
}
.feature-item img {
  max-width: 48px;
  margin-bottom: 14px;
  filter: drop-shadow(0 2px 5px rgba(180,132,22,0.08));
}
.feature-item:hover {
  box-shadow: 0 8px 20px rgba(36,54,89,0.13);
  transform: translateY(-2px) scale(1.025);
}

/* HERO SECTION ------------------------------------------------------------- */
.hero {
  background: #233659 url('../assets/hero-bg.svg') no-repeat right bottom;
  background-size: cover;
  color: #fff;
  position: relative;
  padding: 60px 0 40px 0;
}
.hero .container {
  display: flex;
  flex-direction: column;
}
.hero h1 {
  color: #fff;
  font-size: 2.7rem;
  line-height: 1.1;
}
.hero p {
  color: #EDEDED;
  font-size: 1.18rem;
  margin-bottom: 27px;
}
.hero .btn-primary {
  margin-top: 20px;
}

/* BUTTONS ------------------------------------------------------------------- */
.btn-primary {
  background-color: #B48416;
  color: #fff !important;
  border: none;
  border-radius: 32px;
  padding: 14px 32px;
  font-size: 1.05rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(180,132,22,0.12);
  transition: background .2s, transform 0.12s;
  display: inline-block;
  margin-right: 12px;
}
.btn-primary:hover, .btn-primary:focus {
  background-color: #9A6A00;
  transform: translateY(-2px) scale(1.04);
}
.btn-secondary {
  background: #233659;
  color: #fff !important;
  border: none;
  border-radius: 20px;
  padding: 10px 22px;
  font-size: 1rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 2px 9px rgba(36,54,89,0.10);
  transition: background .2s, color .2s, transform .12s;
}
.btn-secondary:hover, .btn-secondary:focus {
  background: #B48416;
  color: #233659 !important;
  transform: translateY(-1px) scale(1.02);
}

/* NAVIGATION ---------------------------------------------------------------- */
header {
  background: #fff;
  border-bottom: 3px solid #EDEDED;
  padding: 0;
  position: sticky;
  top: 0;
  z-index: 100;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 70px;
}
.main-nav {
  display: flex;
  gap: 20px;
  align-items: center;
  margin-left: 30px;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #233659;
  font-size: 1.1rem;
  font-weight: 600;
  padding: 8px 12px;
  border-radius: 10px;
  transition: background .16s, color .16s;
}
.main-nav a:hover, .main-nav a:focus {
  background: #B48416;
  color: #fff;
}
header .btn-primary {
  margin: 0 0 0 18px;
  font-size: 1.01rem;
  padding: 10px 28px;
}

/* MOBILE NAVIGATION ---------------------------------------------------------- */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 2.3rem;
  color: #233659;
  cursor: pointer;
  z-index: 110;
}
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(35,54,89,0.97);
  transform: translateX(-100%);
  transition: transform .31s cubic-bezier(.6, .01, .46, 1.08);
  z-index: 1200;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
}
.mobile-menu.active {
  transform: translateX(0);
}
.mobile-menu-close {
  background: none;
  border: none;
  color: #fff;
  font-size: 2.2rem;
  position: absolute;
  top: 18px;
  right: 22px;
  cursor: pointer;
  z-index: 1001;
  transition: color .19s;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  color: #B48416;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 80px;
  width: 100%;
  padding-left: 38px;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #fff;
  font-size: 1.39rem;
  font-weight: 700;
  padding: 16px 10px;
  border-radius: 12px;
  transition: background .16s, color .16s;
}
.mobile-nav a:hover,
.mobile-nav a:focus {
  background: #B48416;
  color: #233659;
}

/* MAIN CONTENT --------------------------------------------------------------- */
main {
  min-height: 600px;
  padding-top: 0;
}

.features, .services {
  padding: 40px 0;
}

/* SERVICES/DEMO CARDS -------------------------------------------------------- */
.service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.service-item {
  background: #fff;
  border-radius: 19px;
  box-shadow: 0 2px 10px rgba(35,54,89,0.07);
  padding: 28px 22px;
  min-width: 250px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
  border-left: 5px solid #B48416;
  transition: box-shadow .19s, transform .15s, border-color .22s;
}
.service-item:hover {
  box-shadow: 0 10px 30px rgba(36,54,89,0.15);
  transform: translateY(-3px) scale(1.03);
  border-left: 5px solid #233659;
}
.service-item .service-price {
  font-size: 1.15rem;
  font-family: 'Montserrat', Arial, sans-serif;
  color: #B48416;
  margin-bottom: 8px;
  font-weight: 700;
}
.service-item .service-dates {
  font-size: 0.99rem;
  color: #233659;
  margin-bottom: 7px;
}
.service-item .btn-secondary {
  margin-top: 7px;
}

/* BLOG CARDS ----------------------------------------------------------------- */
.blog-list {
  gap: 24px;
}
.blog-post {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 10px rgba(35,54,89,0.07);
  padding: 22px 20px 26px 20px;
  min-width: 230px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 20px;
  transition: box-shadow .17s, transform .12s;
  border-bottom: 3px solid #B48416;
}
.blog-post:hover {
  box-shadow: 0 6px 19px rgba(36,54,89,0.14);
  transform: translateY(-2px) scale(1.012);
}

/* CATEGORIES FILTER --------------------------------------------------------- */
.categories-filter {
  margin-top: 18px;
  font-size: 1rem;
  font-weight: 500;
  color: #B48416;
  display: flex;
  align-items: center;
  gap: 7px;
}
.categories-filter span {
  background: #233659;
  color: #fff;
  padding: 2px 10px;
  border-radius: 8px;
  letter-spacing: 0.03em;
}

/* TESTIMONIALS ------------------------------------------------------------- */
.testimonials {
  margin-top: 30px;
  margin-bottom: 64px;
}
.testimonials h2 {
  color: #233659;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  background: #EDEDED;
  border-radius: 20px;
  padding: 24px 28px 18px 24px;
  margin-bottom: 20px;
  box-shadow: 0 3px 18px rgba(36,54,89,0.07);
  font-family: 'Roboto', Arial, sans-serif;
  color: #233659;
  min-width: 240px;
  max-width: 670px;
  transition: box-shadow .15s, transform .11s;
}
.testimonial-card:hover {
  box-shadow: 0 7px 24px rgba(36,54,89,0.13);
  transform: translateY(-3px) scale(1.014);
}
.testimonial-card p {
  color: #1A2340;
  font-style: italic;
  font-size: 1.14rem;
  margin-bottom: 14px;
  line-height: 1.7;
}
.testimonial-card strong {
  color: #B48416;
  font-size: 1.05rem;
}

/* CTA SECTION -------------------------------------------------------------- */
.cta .text-section {
  text-align: center;
}
.cta .btn-primary {
  margin-top: 24px;
}

/* FAQ ACCORDION ------------------------------------------------------------ */
.faq-accordion {
  margin: 32px 0 0 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.faq-accordion h3 {
  color: #B48416;
  margin-bottom: 10px;
}
.faq-accordion strong {
  color: #233659;
  font-weight: 700;
}
.faq-accordion > div {
  background: #fff;
  border-radius: 11px;
  box-shadow: 0 1px 6px rgba(35,54,89,0.05);
  padding: 16px 16px 11px 16px;
  color: #1a2340;
}

/* CONTACT INFO ------------------------------------------------------------- */
.contact-info .content-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: flex-start;
  margin-bottom: 38px;
}
.address-block, .email-box, .hours-box {
  background: #fff;
  border-radius: 10px;
  padding: 21px 19px;
  box-shadow: 0 2.5px 9px rgba(36,54,89,0.08);
  min-width: 200px;
  font-size: 1.07rem;
  color: #233659;
  margin-bottom: 0;
}
.email-box a {
  color: #B48416;
}

/* STEPPER (ol) ------------------------------------------------------------- */
.process-stepper {
  list-style: decimal inside;
  margin: 15px 0 20px 12px;
  font-size: 1.05rem;
  color: #233659;
}
.process-stepper li {
  margin-bottom: 10px;
  padding-left: 3px;
}

/* THANK YOU SPECIAL --------------------------------------------------------- */
.thank-you .text-section {
  text-align: center;
  margin: 60px auto;
  max-width: 520px;
}

/* FOOTER ------------------------------------------------------------------- */
footer {
  background: #233659;
  color: #fff;
  padding: 54px 0 0 0;
}
footer .container {
  padding-bottom: 16px;
}
footer .content-wrapper {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 14px;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-nav a {
  color: #B48416;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  text-decoration: none;
  margin-bottom: 2px;
  transition: color .19s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: #fff;
}
.contact-details {
  margin-top: 0;
  font-size: 1.05rem;
  line-height: 1.7;
  color: #fff;
}
footer .social-links {
  gap: 15px;
  display: flex;
  align-items: center;
  margin-top: 8px;
}
footer .social-links img {
  width: 32px;
  height: 32px;
  margin-right: 3px;
  transition: filter .18s, transform .15s;
  filter: grayscale(0.2) brightness(1.19);
  cursor: pointer;
}
footer .social-links img:hover {
  filter: grayscale(0) brightness(1) drop-shadow(0 1px 5px #B48416);
  transform: scale(1.08) rotate(-10deg);
}
.footer-smallprint {
  font-size: 0.95rem;
  color: #EDEDED;
  padding: 14px 0 20px 0;
  text-align: center;
  background: transparent;
}

/* COOKIE CONSENT BANNER ---------------------------------------------------- */
.cookie-banner {
  position: fixed;
  left: 0; right: 0;
  bottom: 0;
  background: #233659;
  color: #fff;
  padding: 22px 20px 16px 20px;
  box-shadow: 0 -2px 22px rgba(35,54,89,0.23);
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 1300;
  gap: 20px;
  font-size: 1.07rem;
  animation: cookie-in .37s cubic-bezier(.41,.9,.2,1);
}
@keyframes cookie-in {
  from { transform: translateY(100%); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.cookie-banner p {
  color: #fff;
  margin: 0;
  flex: 1 1 70%;
}
.cookie-banner .cookie-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.cookie-banner button {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  border: none;
  border-radius: 18px;
  padding: 9px 22px;
  margin: 0;
  cursor: pointer;
  transition: background .18s, color .18s;
}
.cookie-banner .accept {
  background: #B48416;
  color: #fff;
}
.cookie-banner .accept:hover, .cookie-banner .accept:focus {
  background: #9A6A00;
}
.cookie-banner .reject {
  background: #fff;
  color: #233659;
}
.cookie-banner .reject:hover, .cookie-banner .reject:focus {
  background: #B48416;
  color: #fff;
}
.cookie-banner .settings {
  background: transparent;
  color: #B48416;
  border: 2px solid #B48416;
}
.cookie-banner .settings:hover, .cookie-banner .settings:focus {
  background: #fff;
  color: #233659;
}

/* COOKIE MODAL ------------------------------------------------------------- */
.cookie-modal {
  position: fixed;
  left: 50%;
  top: 55%;
  transform: translate(-50%, -50%) scale(1);
  min-width: 325px;
  max-width: 97vw;
  background: #fff;
  color: #233659;
  border-radius: 23px;
  box-shadow: 0 18px 58px rgba(35,54,89,0.22);
  z-index: 1400;
  padding: 32px 32px 28px 32px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  animation: modalfadein .27s cubic-bezier(.42,1.13,.31,1);
}
@keyframes modalfadein {
  from {opacity: 0; transform: translate(-50%,30%) scale(.92);}
  to {opacity: 1; transform: translate(-50%,-50%) scale(1);}
}
.cookie-modal h2 {
  color: #B48416;
  font-size: 1.4rem;
}
.cookie-modal label {
  font-size: 1.05rem;
  margin-bottom: 6px;
}
.cookie-modal .cookie-category {
  display: flex;
  flex-direction: row;
  align-items: center;
  margin-bottom: 10px;
  gap: 10px;
}
.cookie-modal input[type="checkbox"] {
  accent-color: #B48416;
  width: 20px;
  height: 20px;
}
.cookie-modal .essential {
  color: #ccc;
  font-style: italic;
}
.cookie-modal .cookie-modal-btns {
  display: flex;
  gap: 15px;
  justify-content: flex-end;
}
.cookie-modal button, .cookie-modal .close {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  border: none;
  border-radius: 18px;
  padding: 10px 22px;
  cursor: pointer;
  background: #233659;
  color: #fff;
  transition: background .14s, color .14s;
}
.cookie-modal button.accept {
  background: #B48416;
  color: #fff;
}
.cookie-modal button.accept:hover, .cookie-modal button.accept:focus {
  background: #9A6A00;
}
.cookie-modal .close {
  background: #fff;
  color: #B48416;
  border: 2px solid #B48416;
  padding: 10px 22px;
}
.cookie-modal .close:hover, .cookie-modal .close:focus {
  background: #B48416;
  color: #fff;
}

/* MEDIA QUERIES (RESPONSIVE) ------------------------------------------------ */
@media (max-width: 1060px) {
  .container {
    max-width: 97vw;
  }
}
@media (max-width: 900px) {
  .features .container, .services .container, .testimonials .container, .cta .container, main .container {
    padding-left: 12px;
    padding-right: 12px;
  }
  .card-container, .feature-grid, .blog-list, .service-list {
    gap: 16px;
  }
  footer .content-wrapper {
    gap: 22px;
  }
}
@media (max-width: 768px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.3rem; }
  header .container {
    flex-direction: row;
  }
  .main-nav, header .btn-primary {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: block;
    margin-left: auto;
  }
  .feature-grid, .service-list, .blog-list, .card-container, .content-grid {
    flex-direction: column;
    gap: 18px;
  }
  .testimonial-card, .feature-item, .service-item, .blog-post {
    min-width: unset;
    max-width: 100%;
  }
  .testimonials .testimonial-card {
    max-width: unset;
  }
  .testimonials, .features, .cta, .services, .section {
    padding: 30px 8px;
    margin-bottom: 36px;
  }
  .content-wrapper {
    flex-direction: column;
    gap: 14px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 20px;
  }
  .footer-nav {
    flex-direction: column;
    gap: 7px;
  }
  .footer-smallprint {
    padding: 8px 0 10px 0;
    font-size: 0.89rem;
  }
  .cookie-banner {
    flex-direction: column;
    gap: 14px;
    font-size: 1rem;
    padding: 18px 9px 12px 11px;
  }
  .cookie-banner .cookie-btns {
    gap: 10px;
  }
  .cookie-modal {
    padding: 16px 8px 13px 8px;
    min-width: 90vw;
  }
  .thank-you .text-section {
    margin: 30px auto;
  }
  .content-wrapper, .container {
    padding-left: 5px;
    padding-right: 5px;
  }
}
@media (max-width: 480px) {
  .cookie-modal {
    max-width: 95vw;
    min-width: unset;
  }
  .feature-item, .service-item {
    padding: 15px 8px;
  }
}

/* UTILITY CLASSES & ARTISTIC TOUCHES ---------------------------------------- */
@media (min-width: 700px) {
  .thank-you .text-section {
    box-shadow: 0 6px 28px rgba(180,132,22,0.18), 0 2px 7px rgba(35,54,89,.10);
    border-radius: 26px;
    background: #fffbe9;
    padding: 48px 44px;
  }
}
/* Decorative waves (artistic effect for section separators) */
.section:not(.hero):not(.cta):not(.testimonials):not(.features) {
  position: relative;
}
.section:not(.hero):not(.cta):not(.testimonials):not(.features):before {
  content: '';
  position: absolute;
  top: 0; left: 0; width: 100%; height: 8px;
  background: #B48416;
  border-radius: 0 0 12px 12px;
  opacity: 0.1;
}

/* END ----------------------------------------------------------------------- */
