/* ====================================================
   CSS RESET & BASE 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: inherit;
  font-size: 100%;
  vertical-align: baseline;
  box-sizing: border-box;
}
html {
  box-sizing: border-box;
  scroll-behavior: smooth;
}
*, *:before, *:after {
  box-sizing: inherit;
}
body {
  font-family: 'Lato', Arial, Helvetica, sans-serif;
  background: #FAFAFA;
  color: #121A2B;
  font-size: 16px;
  line-height: 1.6;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img {
  max-width: 100%;
  border: 0;
  display: block;
}
a {
  color: #C2B78F;
  text-decoration: none;
  transition: color 0.18s;
}
a:hover, a:focus {
  color: #121A2B;
  text-decoration: underline;
}
ul, ol {
  margin-left: 1.2em;
  margin-bottom: 16px;
}
li {
  margin-bottom: 8px;
}
main {
  flex: 1 1 0px;
}
button, input, select, textarea {
  font-family: inherit;
  font-size: 100%;
}
/* ================================
   BRAND & ARTISTIC VARIABLES
   ================================ */
:root {
  --primary: #121A2B;
  --secondary: #C2B78F;
  --accent: #FFFFFF;
  --vibrant1: #BF8D3A;
  --vibrant2: #6AD6C7;
  --vibrant3: #E65373;
  --bg-faded: #F3F3ED;
  --box-radius: 18px;
  --shadow: 0 4px 16px rgba(18,26,43,0.10);
  --transition: 0.24s cubic-bezier(.77,0,.18,1);
}
/* Artistic, display font for main headings (Montserrat) */
h1, h2, h3, .btn-primary, .btn-secondary, .main-nav a, .footer-nav a, .mobile-nav a {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  letter-spacing: 1px;
}
/* ================================
   LAYOUT CONTAINERS
   ================================ */
.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 26px;
  margin-bottom: 24px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: var(--bg-faded);
  border-radius: var(--box-radius);
  box-shadow: var(--shadow);
  transition: box-shadow var(--transition), transform var(--transition);
  padding: 28px 24px;
  min-width: 240px; 
  flex: 1 1 280px;
}
.card:hover {
  box-shadow: 0 8px 26px 2px rgba(230,83,115,0.06), 0 4px 16px rgba(18,26,43,0.13);
  transform: translateY(-6px) scale(1.012);
}
.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: #fff;
  border-radius: 20px;
  box-shadow: 0 2px 12px rgba(18,26,43,0.07);
  margin-bottom: 24px;
  transition: box-shadow var(--transition), background var(--transition);
}
.testimonial-card blockquote {
  font-size: 20px;
  font-style: italic;
  color: #121A2B;
  margin-right: 16px;
  flex: 2;
}
.testimonial-card strong {
  color: var(--secondary);
}
.testimonial-card footer, .testimonial-card div {
  flex: 1;
  color: #232626;
  font-size: 15px;
  font-family: 'Lato', Arial, Helvetica, sans-serif;
  opacity: .9;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 22px;
}
.features-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 24px;
}
.features-grid > div {
  background: var(--vibrant2);
  border-radius: 15px;
  box-shadow: 0 2px 10px rgba(18,26,43,0.06);
  flex: 1 1 260px;
  min-width: 200px;
  padding: 28px 20px 22px 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 14px;
  transition: box-shadow var(--transition), background var(--transition);
  position: relative;
  margin-bottom: 0;
}
.features-grid > div:hover {
  background: var(--vibrant3);
  box-shadow: 0 6px 22px 1px rgba(230,83,115,0.12);
}
.features-grid img {
  width: 36px;
  height: 36px;
}
.features-grid h3 {
  color: var(--primary);
  font-size: 20px;
  font-weight: 600;
  margin-top: 2px;
}
.features-grid p {
  color: #3A3A3D;
  font-size: 16px;
  margin-bottom: 0;
}
/* ================================
   HEADINGS & TYPOGRAPHY
   ================================ */
h1 {
  font-size: 2.5rem;
  font-weight: bold;
  line-height: 1.14;
  color: var(--vibrant3);
  text-shadow: 0 2px 6px rgba(106,214,199,0.13);
  margin-bottom: 18px;
}
h2 {
  font-size: 2rem;
  color: var(--primary);
  font-weight: 700;
  margin-bottom: 18px;
  letter-spacing: 1px;
  line-height: 1.15;
}
h3 {
  font-size: 1.3rem;
  color: var(--vibrant1);
  font-weight: 600;
  margin-bottom: 8px;
  letter-spacing: .6px;
}
p, ul, ol {
  font-size: 1rem;
  margin-bottom: 12px;
  color: #24273A;
}
blockquote {
  background: var(--vibrant2);
  padding: 22px 28px;
  border-radius: 16px;
  color: var(--primary);
  font-weight: 500;
  margin-bottom: 12px;
  border-left: 6px solid var(--vibrant3);
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
}
strong {
  color: var(--vibrant1);
}
/* ================================
   BUTTONS
   ================================ */
.btn-primary,
.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 48px;
  padding: 0 32px;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  font-size: 18px;
  border-radius: 28px;
  transition: background var(--transition), color var(--transition), box-shadow var(--transition);
  cursor: pointer;
  border: none;
  box-shadow: 0 1px 8px rgba(18,26,43,0.06);
  outline: none;
  margin-top: 10px;
  margin-bottom: 10px;
  letter-spacing: 1px;
}
.btn-primary {
  background: var(--vibrant3);
  color: #fff;
}
.btn-primary:hover, .btn-primary:focus {
  background: var(--primary);
  color: var(--vibrant2);
  box-shadow: 0 4px 18px 2px rgba(106,214,199,0.07);
}
.btn-secondary {
  background: var(--vibrant1);
  color: #fff;
}
.btn-secondary:hover, .btn-secondary:focus {
  background: var(--secondary);
  color: var(--primary);
}
/* ================================
   HEADER & NAVIGATION
   ================================ */
header {
  background: var(--primary);
  padding: 0;
  box-shadow: 0 2px 14px -8px rgba(18,26,43,0.10);
  position: relative;
  z-index: 100;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 12px 20px;
}
.main-nav {
  display: flex;
  gap: 24px;
  align-items: center;
}
.main-nav a {
  color: var(--secondary);
  font-weight: 600;
  font-size: 16px;
  padding: 8px 6px;
  border-radius: 10px;
  transition: color var(--transition), background var(--transition);
}
.main-nav a:hover, .main-nav a:focus {
  background: var(--vibrant2);
  color: var(--primary);
}
.mobile-menu-toggle {
  display: none;
  background: var(--vibrant3);
  color: #fff;
  border: none;
  font-size: 2.2rem;
  border-radius: 12px;
  width: 48px; height: 48px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background var(--transition);
  margin-left: 10px;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: var(--vibrant1);
}
/* ================================
   MOBILE MENU OVERLAY
   ================================ */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(18,26,43, 0.96);
  z-index: 1099;
  display: flex;
  flex-direction: column;
  transform: translateX(-100vw);
  transition: transform var(--transition);
  visibility: hidden;
  pointer-events: none;
}
.mobile-menu.open {
  transform: translateX(0);
  visibility: visible;
  pointer-events: auto;
}
.mobile-menu-close {
  background: none;
  border: none;
  color: #fff;
  font-size: 2.2rem;
  align-self: flex-end;
  margin: 24px 28px 0 0;
  cursor: pointer;
  transition: color var(--transition);
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  color: var(--vibrant2);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 22px;
  margin: 40px 0 0 40px;
}
.mobile-nav a {
  color: #fff;
  font-size: 1.25rem;
  font-weight: 700;
  padding: 12px 0;
  border-radius: 10px;
  transition: color var(--transition), background var(--transition);
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--vibrant3);
  color: #fff;
}
/* ================================
   FOOTER
   ================================ */
footer {
  background: var(--primary);
  color: #fff;
  padding: 0 0 6px 0;
}
footer .container {
  flex-direction: column;
  align-items: center;
  padding: 38px 20px 18px 20px;
  gap: 32px;
}
.footer-nav,
.social-links {
  display: flex;
  flex-direction: row;
  gap: 22px;
  align-items: center;
  margin: 9px 0;
}
.footer-nav a {
  color: var(--secondary);
  font-size: 15px;
  padding: 8px;
  border-radius: 8px;
  transition: background var(--transition), color var(--transition);
}
.footer-nav a:hover, .footer-nav a:focus {
  background: var(--vibrant1);
  color: #fff;
}
.contact-info {
  text-align: center;
  color: #C2B78F;
  font-size: 15px;
  margin-bottom: 10px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.legal-disclaimer {
  color: #D9D5C2;
  font-size: 13px;
  opacity: 0.9;
  margin-top: 8px;
}
.social-links a {
  transition: transform 0.13s;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  width: 40px;
  height: 40px;
}
.social-links a:hover, .social-links a:focus {
  background: var(--vibrant2);
  transform: scale(1.11) rotate(-8deg);
}
/* ================================
   SPECIFIC & ARTISTIC ELEMENTS
   ================================ */
.quick-specs,
.service-benefits {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}
.quick-specs span, .service-benefits span {
  display: flex;
  align-items: center;
  gap: 7px;
  background: var(--vibrant2);
  color: var(--primary);
  border-radius: 16px;
  padding: 8px 18px;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 15px;
  font-weight: 500;
  margin-bottom: 6px;
}
.contact-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.contact-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 17px;
}
.mini-faq {
  background: var(--vibrant2);
  border-radius: 16px;
  padding: 20px 25px;
  margin-top: 16px;
  margin-bottom: 0;
  font-size: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.mini-faq li strong {
  color: var(--vibrant3);
}
/* ================================
   FLEX UTILITIES FOR SPACING
   ================================ */
.flex-row {
  display: flex;
  flex-direction: row;
  gap: 20px;
}
.flex-col {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
/* ================================
   COOKIE CONSENT BANNER & MODAL
   ================================ */
.cookie-consent-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;
  z-index: 2000;
  background: var(--vibrant2);
  color: var(--primary);
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 24px;
  padding: 22px 14px;
  box-shadow: 0 -2px 20px 2px rgba(18,26,43,0.13);
  transition: transform 0.33s cubic-bezier(.77,0,.18,1);
  transform: translateY(120%);
  opacity: 0;
  pointer-events: none;
}
.cookie-consent-banner.active {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}
.cookie-consent-banner .cookie-text {
  font-size: 16px;
  font-family: 'Lato', Arial, sans-serif;
  max-width: 540px;
}
.cookie-actions {
  display: flex;
  flex-direction: row;
  gap: 12px;
  align-items: center;
}
.cookie-consent-banner button {
  border: none;
  border-radius: 24px;
  padding: 10px 22px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  background: var(--vibrant3);
  color: #fff;
  transition: background var(--transition), color var(--transition);
}
.cookie-consent-banner .cookie-reject {
  background: var(--vibrant1);
  color: #fff;
}
.cookie-consent-banner .cookie-settings {
  background: var(--primary);
  color: var(--vibrant2);
}
.cookie-consent-banner button:hover,
.cookie-consent-banner button:focus {
  background: var(--primary);
  color: var(--vibrant2);
}
/* Cookie Modal */
.cookie-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(18,26,43,0.7);
  z-index: 2100;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: opacity .23s cubic-bezier(.77,0,.18,1);
  opacity: 0.01;
  pointer-events: none;
}
.cookie-modal-overlay.open {
  opacity: 1;
  pointer-events: auto;
}
.cookie-modal {
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 8px 40px 3px rgba(18,26,43,0.19);
  padding: 38px 28px 28px 28px;
  max-width: 96vw;
  width: 430px;
  color: var(--primary);
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.cookie-modal h3 {
  font-size: 22px;
  color: var(--vibrant3);
  font-family: 'Montserrat', Arial, sans-serif;
  margin-bottom: 9px;
}
.cookie-modal-section {
  margin-bottom: 14px;
  font-size: 15px;
}
.cookie-toggle {
  margin-left: 14px;
  accent-color: var(--vibrant2);
  width: 20px;
  height: 20px;
}
.cookie-modal-actions {
  display: flex;
  flex-direction: row;
  gap: 16px;
  margin-top: 11px;
  align-items: center;
  justify-content: flex-end;
}
.cookie-modal-close {
  position: absolute;
  top: 10px;
  right: 22px;
  background: none;
  border: none;
  color: var(--vibrant3);
  font-size: 1.6rem;
  cursor: pointer;
}
/* ================================
   TESTIMONIAL SLIDER (Basic Flex)
   ================================ */
.testimonial-slider {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 20px;
  justify-content: flex-start;
}
/* ================================
   RESPONSIVE DESIGN
   ================================ */
@media (max-width: 1100px) {
  .container { max-width: 950px; }
  .features-grid > div { min-width: 180px; }
}
@media (max-width: 900px) {
  .container { max-width: 98vw; }
  .features-grid {
    flex-direction: column;
    gap: 20px;
  }
  .features-grid > div {
    width: 100%;
    min-width: 0;
    flex: 1 1 80vw;
  }
}
@media (max-width: 768px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.6rem; }
  h3 { font-size: 1.1rem; }

  .main-nav {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: flex;
  }
  header .container {
    flex-direction: row;
    gap: 12px;
    padding: 8px 12px 8px 14px;
  }
  .footer-nav,
  .social-links {
    flex-direction: column;
    gap: 8px;
  }
  .content-wrapper, .card-container, .content-grid, .features-grid, .testimonial-slider {
    flex-direction: column !important;
    gap: 20px;
  }
  .features-grid > div {
    min-width: 0;
    width: 100%;
    padding: 22px 13px 13px 13px;
  }
  .testimonials {
    flex-direction: column;
    gap: 18px;
  }
  .section {
    margin-bottom: 40px;
    padding: 24px 6px;
  }
  .quick-specs, .service-benefits {
    flex-direction: column;
    gap: 8px;
  }
  .testimonial-card {
    flex-direction: column;
    gap: 14px;
    padding: 14px 7px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
  }
  .card {
    padding: 18px 12px;
  }
}
@media (max-width: 530px) {
  .container { padding: 0 5px; }
  .content-wrapper { gap: 17px; }
  .cookie-consent-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    padding: 16px 8px;
    font-size: 14px;
  }
  .cookie-consent-banner .cookie-text {
    font-size: 13px;
    max-width: 100vw;
  }
}
/* ================================
   GENERAL SPACING & HIERARCHY
   ================================ */
section {
  margin-bottom: 60px;
  padding: 40px 0;
  width: 100%;
  background: none;
  position: relative;
}
main section:last-child { margin-bottom: 0; }
section h2 { margin-bottom: 21px; }
section ul {
  margin: 8px 0 8px 14px;
}
section ul li {
  margin-bottom: 9px;
}
/* ================================
   SHADOWS, EFFECTS, DECORATIVE
   ================================ */
.card, .features-grid > div, .testimonial-card {
  box-shadow: var(--shadow);
}
.card::before, .features-grid > div::before {
  content: '';
  position: absolute;
  top: -12px; left: -12px;
  width: 36px; height: 36px;
  border-radius: 17px 4px 44px 16px/21px 23px 12px 12px;
  background: var(--vibrant1);
  opacity: 0.08;
  z-index: 0;
  pointer-events: none;
  transition: background var(--transition);
}
.features-grid > div:hover::before, .card:hover::before {
  background: var(--vibrant3);
  opacity: .14;
}
/* ================================
   UTILITY CLASSES
   ================================ */
.text-center { text-align: center; }
.hide { display: none !important; }
.gap-10 { gap: 10px !important; }
.mt-30 { margin-top: 30px !important; }
.mb-24 { margin-bottom: 24px !important; }
.pb-0 { padding-bottom: 0 !important; }
.pt-0 { padding-top: 0 !important; }
.w100 { width: 100%; }
/* ================================
   END OF STYLE.CSS
   ================================ */
