/* CSS RESET & NORMALIZATION */
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, menu, nav, section {
  display: block;
}
body {
  line-height: 1.5;
  background: #FFFAF5;
  color: #253139;
  min-height: 100vh;
  font-family: 'Roboto', Arial, sans-serif;
}
img, picture, video, canvas, svg {
  display: inline-block;
  max-width: 100%;
  height: auto;
}
a {
  text-decoration: none;
  color: inherit;
  transition: color 0.2s ease;
}
ul, ol {
  list-style: none;
}
button, input, select, textarea {
  font-family: inherit;
  font-size: 100%;
  background: none;
  border: none;
  outline: none;
}

/*----- BRAND COLORS (SOFT PASTEL PALETTE) -----*/
:root {
  --brand-primary: #7C071A;
  --brand-secondary: #253139;
  --brand-accent: #FFDFA1;
  --brand-bg: #FFFAF5;
  --pastel-rose: #FFE7EB;
  --pastel-blue: #DEF2FD;
  --pastel-mint: #E2FCEF;
  --pastel-yellow: #FFF5CE;
  --pastel-lilac: #F1E7FF;
  --pastel-gray: #F8F8FA;
  --shadow-soft: 0 6px 32px rgba(58,42,113,0.08);
  --shadow-card: 0 2px 12px rgba(124,7,26,0.06);
  --shadow-hover: 0 8px 28px rgba(124,7,26,0.13);
  --text-main: #253139;
  --text-dark: #211722;
  --text-muted: #796C80;
  --white: #fff;
  --focus-outline: #7C071A33;
}

/*----- FONTS -----*/
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@700;800&family=Roboto:wght@400;500;700&display=swap');
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--brand-primary);
}
h1 {
  font-size: 2.4rem;
  line-height: 1.1;
  margin-bottom: 24px;
}
h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}
h3 {
  font-size: 1.35rem;
  margin-bottom: 12px;
}
h4, h5, h6 {
  font-size: 1rem;
}
p, li, td, th, span, a {
  font-family: 'Roboto', Arial, sans-serif;
  color: var(--text-main);
  font-size: 1rem;
  font-weight: 400;
}
p {
  margin-bottom: 20px;
}
.text-section p:last-child,
.text-section ul:last-child {
  margin-bottom: 0;
}
strong {
  font-weight: 600;
  color: var(--brand-primary);
}
em {
  color: var(--brand-secondary);
  font-style: italic;
}

/*----- CONTAINER, SECTIONS AND LAYOUT -----*/
.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: var(--pastel-lilac);
  border-radius: 18px;
  box-shadow: var(--shadow-card);
  padding: 32px 24px;
  transition: box-shadow 0.3s, transform 0.2s;
}
.card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-6px);
}
.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: 24px 30px 24px 30px;
  margin-bottom: 20px;
  background: var(--pastel-blue);
  border-radius: 22px;
  box-shadow: var(--shadow-soft);
  min-width: 260px;
  max-width: 480px;
  transition: box-shadow 0.3s, background 0.2s;
}
.testimonial-card:hover {
  box-shadow: var(--shadow-hover);
  background: var(--pastel-mint);
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}
.footer-content {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  padding: 40px 0 30px 0;
  font-size: 0.95rem;
}

/*----- FLEX ONLY: Feature Grids, Cards, Layouts -----*/
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
  margin-bottom: 18px;
}
.feature-grid li {
  background: var(--pastel-yellow);
  border-radius: 16px;
  box-shadow: var(--shadow-card);
  padding: 22px 16px 20px 16px;
  flex: 1 1 220px;
  max-width: 250px;
  min-width: 220px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.service-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
  margin-bottom: 20px;
}
.service-card {
  background: var(--pastel-rose);
  border-radius: 18px;
  box-shadow: var(--shadow-card);
  padding: 30px 24px 26px 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-width: 226px;
  max-width: 310px;
  flex: 1 1 226px;
  align-items: flex-start;
  margin-bottom: 20px;
  transition: box-shadow 0.3s, background 0.2s;
}
.service-card:hover {
  background: var(--pastel-yellow);
  box-shadow: var(--shadow-hover);
}

/*----- TABLES -----*/
.pricing-table {
  width: 100%;
  border-radius: 12px;
  background: var(--pastel-lilac);
  box-shadow: var(--shadow-card);
  overflow: hidden;
  margin-bottom: 30px;
  border-collapse: separate;
  border-spacing: 0;
}
.pricing-table th, .pricing-table td {
  padding: 20px 12px;
  text-align: left;
  font-size: 1rem;
  color: var(--text-main);
}
.pricing-table thead tr {
  background: var(--pastel-mint);
}
.pricing-table tbody tr {
  border-bottom: 1px solid #e8e4f0;
  background: var(--pastel-gray);
  transition: background 0.2s;
}
.pricing-table tbody tr:hover {
  background: var(--pastel-yellow);
}

/*----- ACCORDION - FAQ -----*/
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 30px;
}
.faq-accordion h3 {
  color: var(--brand-primary);
  font-size: 1.15rem;
  cursor: pointer;
  transition: color 0.2s;
}
.faq-accordion h3:hover {
  color: var(--brand-secondary);
}
.faq-accordion p {
  background: var(--pastel-lilac);
  margin-top: 6px;
  padding: 12px 18px;
  border-radius: 10px;
  color: var(--brand-secondary);
}

/*----- BUTTONS & CALLS-TO-ACTION -----*/
.cta-btn {
  display: inline-block;
  background: var(--brand-primary);
  color: var(--white);
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  border-radius: 40px;
  box-shadow: 0 3px 16px rgba(124,7,26,0.09);
  padding: 13px 38px;
  margin-top: 10px;
  margin-bottom: 10px;
  letter-spacing: 0.1em;
  transition: background 0.25s, color 0.25s, box-shadow 0.25s, transform 0.15s;
  border: 0;
  cursor: pointer;
  outline: none;
  text-align: center;
}
.cta-btn:hover,
.cta-btn:focus {
  background: var(--brand-accent);
  color: var(--brand-primary);
  box-shadow: var(--shadow-hover);
  transform: translateY(-3px) scale(1.03);
}
.cta-btn:active {
  background: #f9c26d;
}
nav .cta-btn {
  margin-left: 24px;
  margin-bottom: 0;
}
a {
  transition: color 0.2s, box-shadow 0.2s;
}
a:focus {
  outline: 2px solid var(--focus-outline);
}

/*----- MAIN NAVIGATION -----*/
header {
  background: var(--pastel-rose);
  box-shadow: 0 3px 12px rgba(124,7,26,0.03);
}
header nav {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 23px 0 19px 0;
  justify-content: flex-start;
  flex-wrap: wrap;
}
header nav > a img {
  height: 42px;
  margin-right: 26px;
}
header nav ul {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 22px;
}
header nav ul li a {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 600;
  color: var(--brand-primary);
  font-size: 1.04rem;
  border-radius: 18px;
  padding: 8px 16px;
  transition: background 0.2s, color 0.2s;
}
header nav ul li a:hover, header nav ul li a:focus {
  background: var(--brand-accent);
  color: var(--brand-secondary);
}

/*----- MOBILE MENU -----*/
.mobile-menu-toggle {
  display: none;
  background: var(--brand-primary);
  color: var(--white);
  font-size: 2rem;
  border-radius: 50%;
  padding: 7px 16px 7px 16px;
  border: none;
  cursor: pointer;
  margin-left: auto;
  z-index: 101;
  transition: background 0.2s, color 0.2s;
}
.mobile-menu-toggle:focus {
  outline: 2px solid var(--brand-accent);
}
.mobile-menu {
  position: fixed;
  top: 0;
  right: -400px;
  width: 100vw;
  max-width: 360px;
  height: 100vh;
  background: var(--white);
  box-shadow: -2px 0 30px 7px rgba(124,7,26,0.20);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  padding: 40px 30px 24px 28px;
  transition: transform 0.34s cubic-bezier(0.77, 0, 0.175, 1);
  transform: translateX(100%);
}
.mobile-menu.menu-open {
  transform: translateX(0);
  right: 0;
}
.mobile-menu-close {
  align-self: flex-end;
  font-size: 1.7rem;
  background: none;
  cursor: pointer;
  color: var(--brand-primary);
  margin-bottom: 10px;
  padding: 6px 12px;
  border-radius: 18px;
  border: none;
  transition: background 0.2s, color 0.2s;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  background: var(--pastel-yellow);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 8px;
}
.mobile-nav a {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.18rem;
  color: var(--brand-secondary);
  padding: 16px 8px;
  border-radius: 12px;
  transition: background 0.21s, color 0.21s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--brand-accent);
  color: var(--brand-primary);
}

/*----- TESTIMONIALS -----*/
.testimonial-slider {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.testimonial-card {
  background: var(--pastel-blue);
  color: var(--text-dark);
  font-size: 1.13rem;
  font-weight: 400;
  line-height: 1.7;
  border-radius: 22px;
  box-shadow: var(--shadow-soft);
  padding: 24px 30px 24px 30px;
  margin-bottom: 20px;
  min-width: 260px;
  max-width: 480px;
  transition: box-shadow 0.25s, background 0.2s;
}
.testimonial-client {
  display: block;
  font-size: 0.97rem;
  font-weight: 500;
  opacity: 0.82;
  margin-top: 12px;
  color: var(--brand-primary);
  font-style: italic;
  letter-spacing: 0.01em;
}
.testimonial-stars {
  font-size: 1.22rem;
  color: #FDB347;
  letter-spacing: 1.5px;
  margin-top: 5px;
  display: block;
}

/*----- FOOTER -----*/
footer {
  background: var(--pastel-mint);
  border-top: 2px solid #e8e4f0;
}
.footer-content {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: flex-start;
  justify-content: space-between;
  padding: 40px 0 30px 0;
}
.footer-content nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-content nav a {
  color: var(--brand-secondary);
  font-size: 0.97rem;
  font-weight: 500;
  padding: 4px 0;
  transition: color 0.2s;
}
.footer-content nav a:hover { color: var(--brand-primary); }
.footer-content img {
  height: 54px;
  margin: 0 16px 0 12px;
}
.footer-content div {
  min-width: 180px;
}
.footer-content small {
  color: var(--text-muted);
  font-size: 0.90rem;
  display: block;
  margin-top: 12px;
  margin-left: 4px;
}

/*----- COOKIE BANNER -----*/
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  width: 100vw;
  background: var(--pastel-rose);
  border-top: 3px solid var(--brand-primary);
  box-shadow: 0 -7px 14px -6px rgba(124,7,26,0.08);
  z-index: 10010;
  padding: 20px 14px 20px 14px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  animation: slide-up-bottom 0.6s cubic-bezier(0.66,0,0.28,1);
}
@keyframes slide-up-bottom {
  0% { transform: translateY(100%); opacity: 0; }
  60% { opacity: 1; }
  100% { transform: translateY(0); opacity: 1; }
}
.cookie-banner p {
  flex: 2 1 200px;
  color: var(--brand-secondary);
  font-size: 1rem;
  margin-bottom: 0;
}
.cookie-btn, .cookie-settings-btn {
  background: var(--brand-primary);
  color: var(--white);
  border-radius: 30px;
  padding: 9px 22px;
  font-size: 1rem;
  font-weight: 600;
  margin-left: 8px;
  margin-bottom: 4px;
  outline: none;
  border: none;
  transition: background 0.21s, color 0.2s, box-shadow 0.2s;
  cursor: pointer;
  box-shadow: 0 2px 10px rgba(124,7,26,0.10);
}
.cookie-btn.reject {
  background: var(--brand-secondary);
}
.cookie-btn:hover, .cookie-settings-btn:hover {
  background: var(--brand-accent);
  color: var(--brand-primary);
}
.cookie-settings-btn {
  background: var(--brand-accent);
  color: var(--brand-primary);
  border: 1px solid var(--brand-primary);
  font-weight: 600;
}

/*----- COOKIE MODAL -----*/
.cookie-modal-overlay {
  position: fixed;
  z-index: 10050;
  left: 0; top: 0; right: 0; bottom: 0;
  background: rgba(124,7,26,0.11);
  display: flex;
  justify-content: center;
  align-items: center;
  animation: fade-in 0.3s;
}
@keyframes fade-in{
  from { opacity: 0; }
  to   { opacity: 1; }
}
.cookie-modal {
  background: var(--pastel-yellow);
  min-width: 82vw;
  max-width: 400px;
  border-radius: 22px;
  box-shadow: var(--shadow-hover);
  padding: 40px 30px 28px 30px;
  display: flex;
  flex-direction: column;
  gap: 22px;
  position: relative;
  animation: pop-in 0.48s cubic-bezier(0.57,0.17,0.25,1.17);
}
@keyframes pop-in {
  0% { transform: scale(0.88); opacity: 0; }
  80% { opacity: 1; }
  100% { transform: scale(1); opacity: 1; }
}
.cookie-modal h2 {
  font-size: 1.4rem;
  color: var(--brand-primary);
}
.cookie-modal label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1rem;
  color: var(--brand-secondary);
  margin-bottom: 13px;
}
.cookie-modal input[type="checkbox"] {
  accent-color: var(--brand-primary);
  width: 18px; height: 18px;
  margin-right: 2px;
}
.cookie-modal .cookie-modal-actions {
  display: flex;
  gap: 15px;
  margin-top: 11px;
}
.cookie-modal .close-modal {
  position: absolute;
  top: 18px; right: 20px;
  background: none;
  font-size: 1.65rem;
  color: var(--brand-primary);
  border: none;
  cursor: pointer;
  padding: 4px 10px;
  border-radius: 16px;
  transition: background 0.15s;
}
.cookie-modal .close-modal:hover {
  background: var(--pastel-mint);
}

/*----- MAP EMBED (NO REAL MAP) -----*/
.map-embed {
  background: var(--pastel-gray);
  border-radius: 13px;
  padding: 18px 12px;
  font-size: 0.99rem;
  color: var(--text-muted);
  box-shadow: 0 2px 10px rgba(58,42,113,0.06);
  margin-bottom: 14px;
}

/*----- TESTIMONIAL SUBMISSION ----*/
.testimonial-submission-form {
  background: var(--pastel-lilac);
  padding: 20px 18px;
  border-radius: 14px;
  box-shadow: var(--shadow-card);
  margin-top: 12px;
  display: flex; flex-direction: column; gap: 12px;
}

/*----- RESPONSIVE DESIGN (MOBILE FIRST) -----*/
@media (max-width: 1024px) {
  .container {
    max-width: 98vw;
  }
  .footer-content {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }
  .service-cards, .feature-grid, .testimonial-slider {
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 16px;
  }
}
@media (max-width: 768px) {
  html {
    font-size: 16px;
  }
  header nav ul {
    display: none;
  }
  nav .cta-btn {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
  .container {
    max-width: 100vw;
    padding: 0 9px;
  }
  .section {
    padding: 26px 6px;
    margin-bottom: 40px;
  }
  h1 {
    font-size: 2rem;
    margin-bottom: 18px;
  }
  h2 {
    font-size: 1.33rem;
    margin-bottom: 14px;
  }
  .content-wrapper, .footer-content {
    gap: 14px;
    padding: 0;
  }
  .feature-grid, .service-cards, .testimonial-slider {
    flex-direction: column;
    gap: 16px;
  }
  .feature-grid li, .service-card, .testimonial-card {
    min-width: 98vw;
    max-width: 98vw;
    margin-left: -3vw;
    margin-right: -3vw;
    border-radius: 15px;
    padding: 18px 10px;
  }
  .testimonial-card {
    padding: 18px 10px 18px 14px;
  }
  .footer-content nav a {
    font-size: 0.97rem;
  }
}
@media (max-width: 480px) {
  html {
    font-size: 15px;
  }
  .pricing-table th, .pricing-table td {
    padding: 12px 4px;
    font-size: 0.94rem;
  }
}

/*----- SPACING & GAPS (OVERRIDE) -----*/
section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container {
  gap: 24px;
}
.card {
  margin-bottom: 20px;
}
.content-grid {
  gap: 20px;
}
.text-image-section {
  gap: 30px;
}
.testimonial-card {
  gap: 20px;
  padding: 20px;
}
.feature-item {
  gap: 15px;
}

/*----- MICRO-INTERACTIONS -----*/
.cta-btn, .service-card, .card, .feature-grid li, .testimonial-card {
  transition: box-shadow 0.3s, transform 0.21s, background 0.21s;
}
.cta-btn:focus {
  outline: 2px solid var(--focus-outline);
}

/*----- OTHER UTILITY CLASSES -----*/
.text-muted {
  color: var(--text-muted);
}
.mt-3 { margin-top: 1rem; }
.mb-3 { margin-bottom: 1rem; }
.mt-4 { margin-top: 1.5rem; }
.mb-4 { margin-bottom: 1.5rem; }

/*----- SCROLLBARS (SOFT) -----*/
body {
  scrollbar-width: thin;
  scrollbar-color: var(--brand-accent) var(--pastel-lilac);
}
body::-webkit-scrollbar {
  width: 10px;
  background: var(--pastel-lilac);
}
body::-webkit-scrollbar-thumb {
  background: var(--brand-accent);
  border-radius: 6px;
}

/*----- LINK COLORS IN CONTEXT -----*/
p a, li a, .footer-content a {
  color: var(--brand-secondary);
  text-decoration: underline dotted var(--brand-accent) 1.5px;
  transition: color 0.2s;
}
p a:hover, li a:hover {
  color: var(--brand-primary);
  text-decoration: underline solid var(--brand-primary) 2px;
}

/*----- FOCUS VISUALS FOR ACCESSIBILITY -----*/
a:focus, button:focus, .cta-btn:focus {
  outline: 2px dotted var(--brand-primary);
  outline-offset: 2px;
}

/*----- Z-INDEX LAYERS -----*/
header, .mobile-menu, .cookie-banner, .cookie-modal-overlay {
  z-index: 5000;
}
.mobile-menu {
  z-index: 9999;
}

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