/* CSS RESET & BASE STYLES */
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;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1.5;
  font-family: 'Roboto', Arial, sans-serif;
  background: #F8F8F6;
  color: #284C60;
  min-height: 100vh;
}
img, picture, video, canvas, svg {
  display: inline-block;
  max-width: 100%;
  height: auto;
}
a {
  color: #e67f27;
  text-decoration: none;
  transition: color .2s;
}
a:hover, a:focus {
  color: #284C60;
  text-decoration: underline;
}
ul, ol {
  list-style: none;
  margin: 0;
  padding: 0;
}
button {
  font-family: inherit;
  outline: none;
  border: none;
  cursor: pointer;
  background: none;
}
.table, table {
  border-collapse: collapse;
  width: 100%;
}
th, td {
  text-align: left;
  padding: 12px 16px;
}
th {
  background: #284C60;
  color: #FFF;
  letter-spacing: 0.5px;
  font-weight: 700;
}
td {
  background: #FFF;
  color: #284C60;
}
/* BRAND COLORS */
:root {
  --color-primary: #284C60;
  --color-secondary: #ffffff;
  --color-bg: #F8F8F6;
  --color-accent: #e67f27;
  --color-accent-soft: #F2A05E;
}

/* TYPOGRAPHY -------------------------------------------------- */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  color: #284C60;
  font-weight: bold;
  letter-spacing: .8px;
}
h1 {
  font-size: 2.6rem;
  margin-bottom: 20px;
  line-height: 1.2;
}
h2 {
  font-size: 2rem;
  margin-bottom: 16px;
}
h3 {
  font-size: 1.4rem;
  margin-bottom: 12px;
}
h4 {
  font-size: 1.1rem;
  margin-bottom: 8px;
  font-weight: 600;
}
p, li, .footer-contact, td, th {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  color: #284C60;
  margin-bottom: 0.75em;
  line-height: 1.6;
}
.smallprint {
  font-size: .90rem;
  color: #466077;
  margin-top: 8px;
}
strong {
  font-weight: 700;
}

/* ---- LAYOUT CONTAINERS & SECTIONS ---- */
.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 16px;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.text-section {
  background: #FFF;
  border-radius: 18px;
  padding: 34px 20px;
  box-shadow: 0 3px 16px 0 rgba(44, 72, 90, 0.13);
}
@media (min-width: 769px) {
  .content-wrapper {
    gap: 40px;
    align-items: flex-start;
  }
  .text-section {
    padding: 50px 48px;
  }
}

/* NAVIGATION -------------------------------------------------- */
header {
  width: 100%;
  background: var(--color-secondary);
  border-bottom: 3px solid var(--color-accent);
  box-shadow: 0 3px 12px rgba(40,76,96,0.07);
  position: relative;
  z-index: 99;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 0 18px 0;
}
header nav {
  display: flex;
  gap: 18px;
}
header nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  color: var(--color-primary);
  font-weight: 600;
  letter-spacing: 0.5px;
  position: relative;
  padding: 4px 8px;
}
header nav a:hover, header nav a:focus {
  color: var(--color-accent);
  text-decoration: none;
}
.cta-button {
  display: inline-block;
  background: var(--color-accent);
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  border-radius: 32px;
  padding: 12px 34px;
  margin-left: 8px;
  box-shadow: 0 4px 14px rgba(230,127,39,0.11);
  border: 2px solid transparent;
  transition: background 0.2s, color 0.2s, border-color .2s, transform .15s;
  letter-spacing: 1px;
}
.cta-button:hover, .cta-button:focus {
  background: #fff;
  color: var(--color-accent);
  border-color: var(--color-accent);
  transform: translateY(-2px) scale(1.03) rotate(-1.5deg);
  text-decoration: none;
}

/* ---- MOBILE HEADER ---- */
.mobile-menu-toggle {
  display: none;
  background: var(--color-accent);
  color: #fff;
  font-size: 2.2rem;
  padding: 6px 18px;
  border-radius: 18px;
  border: 2px solid #fff;
  margin-right: 8px;
  transition: background 0.2s, color .2s;
  z-index: 101;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: #fff;
  color: var(--color-accent);
  border: 2px solid var(--color-accent);
}
@media (max-width: 1024px) {
  header nav, .cta-button {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}

/* ---- MOBILE MENU OVERLAY ---- */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(40,76,96,0.97);
  color: #fff;
  z-index: 1999;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 30px 22px 22px 22px;
  transform: translateX(-100vw);
  transition: transform .33s cubic-bezier(.98,-0.01,.25,1.08);
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  font-size: 2rem;
  align-self: flex-end;
  background: #fff;
  color: var(--color-accent);
  border-radius: 12px;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(40,76,96,0.18);
  margin-bottom: 40px;
  transition: background .2s, color .2s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: var(--color-accent);
  color: #fff;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 18px;
  width: 100%;
  margin-top: 10px;
}
.mobile-nav a {
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.4rem;
  letter-spacing: 1px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.09);
  transition: color .16s, background .18s;
}
.mobile-nav a:active, .mobile-nav a:focus, .mobile-nav a:hover {
  color: var(--color-accent);
  background: rgba(255,255,255,0.03);
  text-decoration: none;
}
@media (max-width: 768px) {
  .mobile-menu {
    padding: 20px 10px 12px 10px;
  }
}

/* MAIN LANDING ######### */
section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
@media (max-width: 480px) {
  section {
    padding: 30px 4px;
    margin-bottom: 36px;
  }
}

.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.feature-grid li {
  background: #FFF9F4;
  border-left: 7px solid var(--color-accent);
  border-radius: 15px;
  box-shadow: 0 2px 8px 1px rgba(230,127,39,0.09);
  flex: 1 1 260px;
  min-width: 240px;
  padding: 26px 18px 18px 22px;
  transition: box-shadow .22s, transform .18s;
  margin-bottom: 20px;
  position: relative;
}
.feature-grid li:hover {
  box-shadow: 0 6px 22px 0 rgba(40,76,96,0.13);
  transform: translateY(-6px) skewX(-2deg) scale(1.03);
}
.feature-grid img {
  width: 36px;
  height: 36px;
  margin-bottom: 14px;
}

.service-preview-list, .service-list, .guarantees {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.service-preview-list li, .service-list li, .guarantees li {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 7px 0 rgba(40,76,96,0.11);
  padding: 26px 22px 18px 22px;
  flex: 1 1 240px;
  min-width: 210px;
  margin-bottom: 20px;
  transition: box-shadow .16s;
  position: relative;
}
.service-preview-list li:hover, .service-list li:hover, .guarantees li:hover {
  box-shadow: 0 8px 18px 2px rgba(230,127,39,0.07);
  transform: scale(1.02) skewX(-1.5deg) translateY(-3px);
}
.guarantees img {
  width: 28px;
  margin-right: 12px;
  vertical-align: middle;
}
/* Cards and Content Layouts */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(40,76,96,0.09);
  margin-bottom: 20px;
  padding: 32px 20px 22px 22px;
  transition: box-shadow .19s, transform .14s;
  position: relative;
}
.card:hover {
  box-shadow: 0 7px 32px 1px rgba(40,76,96,0.16);
  transform: translateY(-4px) scale(1.03);
}
.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) {
  .feature-grid, .service-preview-list, .service-list, .guarantees, .card-container, .content-grid, .testimonial-slider {
    flex-direction: column;
    gap: 20px;
    align-items: stretch;
  }
  .text-image-section {
    flex-direction: column;
    gap: 16px;
    align-items: center;
  }
}

.cta-section {
  background: linear-gradient(89deg, #fffbe6 60%, #ffe5b5 100%);
  border-radius: 16px;
  box-shadow: 0 5px 18px 2px rgba(40,76,96,0.06);
  text-align: center;
  padding: 46px 12px 46px 12px;
  margin: 0 auto;
  align-items: center;
  flex-direction: column;
}

/* TABLE PRICING */
.pricing-table {
  margin-top: 4px;
  margin-bottom: 28px;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 3px 14px 0 rgba(44, 72, 90, 0.12);
}
.pricing-table thead tr {
  background: var(--color-primary);
}
.pricing-table th {
  font-family: 'Montserrat', Arial, sans-serif;
  background: var(--color-primary);
  color: #fff;
  font-weight: bold;
  font-size: 1.1rem;
  padding: 14px 10px;
}
.pricing-table td {
  background: #fff;
  color: var(--color-primary);
  font-size: 1rem;
  padding: 13px 10px;
  border-bottom: 1px solid #F8F8F6;
}
.pricing-table tr:last-child td {
  border-bottom: none;
}

/* ----- TESTIMONIALS ----- */
.testimonial-slider {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: flex-start;
  margin-top: 24px;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #ffffff;
  border-radius: 17px;
  box-shadow: 0 3px 18px 1px rgba(40,76,96,0.11);
  min-width: 260px;
  max-width: 385px;
  margin-bottom: 20px;
  transition: box-shadow .18s, transform .15s;
  position: relative;
}
.testimonial-card p {
  color: #284C60;
  font-size: 1.1rem;
  font-family: 'Montserrat', Arial, sans-serif;
  margin-bottom: 6px;
}
.testimonial-card span {
  color: #a17331;
  font-size: .96rem;
  font-family: 'Roboto', Arial, sans-serif;
  margin-bottom: 2px;
}
.rating-icons {
  display: flex;
  align-items: center;
  gap: 5px;
}
.testimonial-card:hover {
  box-shadow: 0 10px 32px 2px rgba(230,127,39,0.10);
  transform: scale(1.025) rotate(-1.4deg);
}

@media (max-width: 768px) {
  .testimonial-card {
    min-width: unset;
    max-width: 100%;
    align-items: stretch;
  }
}

/* USP LIST / FEATURE-ITEM STYLING */
.usp-list, .feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}
.usp-list li, .feature-item li {
  background: #fcf5ec;
  border-left: 5px solid var(--color-accent);
  border-radius: 8px;
  padding: 10px 16px;
  color: #284C60;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  box-shadow: 0 2px 7px 0 rgba(230,127,39,0.06);
  margin-bottom: 0;
}

/* ---- FOOTER ---- */
footer {
  background: var(--color-primary);
  color: #fff;
  padding: 36px 0 24px 0;
  font-size: 1rem;
  margin-top: 60px;
}
footer .container {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 32px;
  align-items: flex-start;
  justify-content: space-between;
}
footer nav {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
footer nav a {
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.01rem;
  margin-bottom: 4px;
  transition: color .17s;
}
footer nav a:hover, footer nav a:focus {
  color: var(--color-accent);
  text-decoration: none;
}
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}
.footer-contact div {
color: white;}
.footer-contact img {
  width: 19px;
  margin-right: 9px;
  vertical-align: text-bottom;
}
.footer-logo {
  align-self: flex-end;
  margin-top: 12px;
}
@media (max-width: 1024px) {
  footer .container {
    flex-direction: column;
    gap: 28px;
    align-items: flex-start;
  }
}

/* ---- FORM, BUTTONS, INTERACTIONS ---- */
input, select, textarea {
  font-family: inherit;
  font-size: 1rem;
  padding: 11px 16px;
  border-radius: 7px;
  border: 1px solid #D3E3EB;
  background: #fff;
  transition: border-color .18s;
}
input:focus, textarea:focus, select:focus {
  border-color: var(--color-accent);
  outline: none;
}
button, .button {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.06rem;
  border-radius: 28px;
  background: var(--color-accent);
  color: #fff;
  padding: 10px 26px;
  box-shadow: 0 2px 8px rgba(230,127,39,0.06);
  border: none;
  font-weight: 600;
  cursor: pointer;
  transition: background .19s, color .13s, transform .14s;
}
button:hover, .button:hover, button:focus, .button:focus {
  background: #fff;
  color: var(--color-accent);
  border: 2px solid var(--color-accent);
  transform: scale(1.04) translateY(-2px);
}

/* ---- COOKIE CONSENT BANNER ---- */
.cookie-banner {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100vw;
  background: var(--color-primary);
  color: #fff;
  box-shadow: 0 -3px 24px rgba(40,76,96,0.14);
  z-index: 5000;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 32px;
  padding: 22px 16px 22px 24px;
  font-size: 1rem;
  transition: transform .33s cubic-bezier(.96,-0.01,.22,1.03);
}
.cookie-banner[hidden] {
  display: none;
}
.cookie-banner .cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-left: 24px;
}
.cookie-banner button {
  font-size: 1rem;
  border-radius: 18px;
  background: var(--color-accent);
  color: #fff;
  border: none;
  padding: 8px 20px;
  font-weight: 500;
  margin-left: 5px;
}
.cookie-banner button:hover, .cookie-banner button:focus {
  background: #fff;
  color: var(--color-accent);
  border: 2px solid var(--color-accent);
}
@media (max-width: 800px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    padding: 18px 8px 18px 10px;
  }
  .cookie-banner .cookie-actions {
    margin-left: 0;
  }
}

/* ---- COOKIE MODAL ---- */
.cookie-modal {
  position: fixed;
  left: 0; right: 0; top: 0; bottom: 0;
  width: 100vw; height: 100vh;
  background: rgba(40,76,96,0.67);
  z-index: 5100;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity .22s;
}
.cookie-modal.open {
  opacity: 1;
  pointer-events: all;
}
.cookie-modal-content {
  background: #fff;
  color: #284C60;
  border-radius: 22px;
  box-shadow: 0 7px 38px 2px rgba(44,76,112,0.12);
  padding: 36px 32px;
  min-width: 320px;
  max-width: 95vw;
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: relative;
}
.cookie-modal-content h2 {
  font-size: 1.3rem;
  color: var(--color-accent);
  font-weight: bold;
  margin-bottom: 10px;
  margin-top: 0;
}
.cookie-modal-content ul {
  padding-left: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.cookie-modal-content li {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 1rem;
}
.cookie-category-toggle {
  width: 44px; height: 24px;
  background: #F2A05E;
  border-radius: 14px;
  position: relative;
  margin-left: 8px;
  transition: background .16s;
}
.cookie-category-toggle input[type="checkbox"] {
  opacity: 0;
  position: absolute;
  left: 0; right: 0; top: 0; bottom: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
  z-index: 2;
}
.cookie-category-toggle .toggle-slider {
  position: absolute;
  left: 3px;
  top: 3px;
  width: 18px;
  height: 18px;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 1px 4px #e67f273a;
  transition: left .15s;
}
.cookie-category-toggle input:checked + .toggle-slider {
  left: 23px;
  background: #e67f27;
}
.cookie-modal-content .modal-close {
  position: absolute;
  right: 20px;
  top: 18px;
  font-size: 1.5rem;
  color: #e67f27;
  background: #fff;
  border-radius: 10px;
  border: 2px solid #fff;
  cursor: pointer;
  width: 38px; height: 38px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: background .18s, border-color .13s;
}
.cookie-modal-content .modal-close:hover {
  background: #e67f27;
  color: #fff;
  border-color: #e67f27;
}
.cookie-modal-content .button-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
@media (max-width: 500px) {
  .cookie-modal-content {
    padding: 20px 6px;
    min-width: unset;
    border-radius: 13px;
  }
}

/* MICRO-ANIMATIONS & CREATIVE TOUCHES ---- */
h1,h2,h3,h4 {
  animation: creative-fadein .8s cubic-bezier(.65,-0.01,.56,1.01) both;
}
@keyframes creative-fadein {
  0% {opacity: 0; transform: translateY(22px) scale(.93) skewX(-6deg)}
  100% {opacity: 1; transform: none;}
}
.cta-button, .button, .card, .testimonial-card, .feature-grid li, .service-preview-list li, .service-list li, .guarantees li {
  transition: box-shadow .22s, transform .17s;
}

/* ARTISTIC DECORATIVE ELEMENTS */
.card::before, .feature-grid li::before, .testimonial-card::before {
  content: '';
  display: block;
  position: absolute;
  left: -18px; top: -18px;
  width: 46px; height: 46px;
  border-radius: 50%;
  background: rgba(230, 127, 39, 0.14);
  z-index: 1;
  pointer-events: none;
  opacity: 0.7;
  transition: opacity .13s;
}
.card:hover::before, .feature-grid li:hover::before, .testimonial-card:hover::before {
  opacity: 1;
}
.card:after, .feature-grid li:after, .testimonial-card:after {
  content: '';
  display: block;
  position: absolute;
  right: -21px; bottom: -20px;
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(40, 76, 96, 0.08);
  z-index: 1;
  pointer-events: none;
}

/* SCROLLBAR STYLES */
body::-webkit-scrollbar {
  width: 13px;
  background: #fcf5ec;
}
body::-webkit-scrollbar-thumb {
  background: var(--color-accent);
  border-radius: 8px;
  border: 2px solid #f7f6f2;
}

/* RESPONSIVE: MOBILE FIRST -------------------------------------------------- */
@media (max-width: 600px) {
  html {
    font-size: 15px;
  }
  h1 {
    font-size: 2.0rem;
  }
  h2 {
    font-size: 1.45rem;
  }
  .container {
    padding: 0 4px;
  }
}

/* MISC. UTILITIES --------------------------------------------------------- */
.location-map {
  background: #f9f3ed;
  padding: 18px 14px;
  border-radius: 9px;
  box-shadow: 0 1px 5px 0 rgba(230,127,39,.05);
  margin-top: 9px;
}

/* FIX: Prevent content overlapping or bleeding into footer */
body {
  padding-bottom: 80px;
}

/* END CREATIVE ARTISTIC CSS */
