/* RESET & BASE --------------------------------------------------------- */
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,
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;
}
ol, ul {
  list-style: none;
}
a {
  text-decoration: none;
  color: inherit;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
  border: 0;
}
button, input, select, textarea {
  font-family: inherit;
  font-size: 100%;
  border: none;
  outline: none;
}

:root {
  --brand-primary: #232A34;
  --brand-secondary: #A68C5B;
  --brand-accent: #F4F3F1;
  --brand-electric: #03D1E2;
  --brand-hot: #FF2270;
  --brand-yellow: #FFE24A;
  --brand-bg: #F4F3F1;
  --font-display: 'Playfair Display', serif;
  --font-body: 'Montserrat', Arial, sans-serif;
}

body {
  background: var(--brand-bg);
  color: var(--brand-primary);
  font-family: var(--font-body);
  font-size: 16px;
  min-height: 100vh;
  letter-spacing: 0.01em;
  -webkit-font-smoothing: antialiased;
  padding-bottom: 70px; /* room for cookie banner on mobile */
}

.container {
  width: 100%;
  max-width: 1220px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* TYPOGRAPHY ------------------------------------------------------------ */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--brand-primary);
  font-weight: 700;
  line-height: 1.15;
}
h1 {
  font-size: 2.2rem;
  letter-spacing: -0.01em;
}
h2 {
  font-size: 1.5rem;
}
h3 {
  font-size: 1.18rem;
  color: var(--brand-secondary);
}
h4 {
  font-size: 1rem;
}

@media (min-width: 600px) {
  h1 {
    font-size: 2.7rem;
  }
  h2 {
    font-size: 2rem;
  }
  h3 {
    font-size: 1.24rem;
  }
}
p, ul, li, span {
  font-size: 1rem;
  color: var(--brand-primary);
  font-family: var(--font-body);
}
strong {
  font-weight: 700;
}
a {
  transition: color 0.15s;
}
a.cta, button.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-size: 1.1rem;
  font-weight: 700;
  padding: 14px 32px;
  background: var(--brand-electric);
  color: #fff;
  border-radius: 32px;
  border: none;
  cursor: pointer;
  box-shadow: 0 1px 10px 0 rgba(3,209,226,0.12);
  transition: background 0.18s, color 0.18s, transform 0.15s, box-shadow 0.18s;
  letter-spacing: 0.04em;
  margin: 16px 0;
}
a.cta:hover, button.cta:hover, a.cta:focus {
  background: var(--brand-hot);
  color: #fff;
  box-shadow: 0 2px 18px 0 rgba(255,34,112,0.14);
  transform: translateY(-2px) scale(1.04);
}

@media (max-width: 500px) {
  a.cta, button.cta {
    padding: 10px 18px;
    font-size: 1rem;
  }
}

/* HEADER --------------------------------------------------------------- */
header {
  width: 100%;
  background: #fff;
  box-shadow: 0 4px 12px rgba(35,42,52,0.05);
  z-index: 1002;
  position: relative;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  min-height: 84px;
  gap: 0;
}
header img {
  height: 50px;
}
header nav {
  display: flex;
  flex-direction: row;
  gap: 20px;
  align-items: center;
}
header nav a {
  color: var(--brand-primary);
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.02em;
  transition: color 0.14s;
  border-radius: 4px;
  padding: 6px 10px;
  position: relative;
}
header nav a.cta {
  margin-left: 12px;
  background: var(--brand-hot);
  color: #fff;
  padding: 8px 20px;
  border-radius: 24px;
  box-shadow: 0 1px 6px 0 rgba(255,34,112,0.10);
  font-size: 1rem;
}
header nav a.cta:hover {
  background: var(--brand-yellow);
  color: var(--brand-primary);
}
header nav a:hover, header nav a:focus {
  color: var(--brand-electric);
  background: rgba(3,209,226, 0.09);
}

/* MOBILE NAV ----------------------------------------------------------- */
.mobile-menu-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--brand-primary);
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 10px 12px;
  margin-left: 10px;
  border-radius: 8px;
  z-index: 1003;
  transition: background 0.13s;
}
.mobile-menu-toggle:hover {
  background: var(--brand-hot);
  color: #fff;
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 100vw;
  max-width: 400px;
  height: 100vh;
  background: #fff;
  box-shadow: -2px 0 32px rgba(35,42,52,0.08);
  z-index: 1005;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.39s cubic-bezier(.76,.37,.35,1.11);
  pointer-events: none;
  opacity: 0;
}
.mobile-menu.active {
  transform: translateX(0);
  pointer-events: auto;
  opacity: 1;
}
.mobile-menu-close {
  align-self: flex-end;
  font-size: 2rem;
  background: none;
  color: var(--brand-primary);
  border: none;
  margin: 16px 22px 0 0;
  cursor: pointer;
  padding: 0 0 6px 0;
  transition: color 0.13s, background 0.13s;
  border-radius: 6px;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: var(--brand-electric);
  color: #fff;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 36px 34px;
}
.mobile-nav a {
  font-family: var(--font-body);
  font-size: 1.08rem;
  font-weight: 700;
  color: var(--brand-primary);
  padding: 14px 0 14px 8px;
  border-left: 4px solid transparent;
  border-radius: 2px;
  background: none;
  transition: color .15s, border-color .15s, background .18s;
}
.mobile-nav a:active, .mobile-nav a:hover {
  color: var(--brand-hot);
  background: var(--brand-accent);
  border-left: 4px solid var(--brand-electric);
}
.mobile-nav a.cta {
  background: var(--brand-hot);
  border-left: 4px solid var(--brand-electric);
  color: #fff;
  margin: 18px 0 0 0;
  border-radius: 22px;
  padding-left: 18px;
}

@media (min-width: 1024px) {
  .mobile-menu,
  .mobile-menu-toggle {
    display: none !important;
  }
}
@media (max-width: 1023px) {
  header nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: inline-flex;
  }
  .mobile-menu {
    display: flex;
  }
}

/* HERO & SECTION ------------------------------------------------------- */
section.hero, .hero {
  background: linear-gradient(100deg, var(--brand-yellow) 0 30%, #fff 60% 100%);
  position: relative;
  margin-bottom: 60px;
  padding: 60px 0 40px 0;
}
@media (max-width: 767px) {
  section.hero, .hero {
    padding: 38px 0 28px 0;
  }
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

/* CARD & FLEX LAYOUT PATTERNS ------------------------------------------ */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #fff;
  border-radius: 22px;
  box-shadow: 0 2px 16px rgba(35,42,52,0.07);
  padding: 28px 22px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  transition: box-shadow 0.16s, transform .15s;
}
.card:hover {
  box-shadow: 0 10px 32px rgba(3,209,226,0.16);
  transform: translateY(-3px) scale(1.017);
  z-index: 2;
}

.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: 18px;
  box-shadow: 0 4px 28px rgba(35,42,52,0.07);
  margin-bottom: 20px;
  margin-top: 0;
  position: relative;
  min-width: 0;
  transition: box-shadow 0.2s, transform 0.14s;
}
.testimonial-card p {
  color: var(--brand-primary);
  font-size: 1.06rem;
  line-height: 1.4;
  font-family: var(--font-display);
  letter-spacing: 0.00em;
}
.testimonial-card span {
  color: var(--brand-secondary);
  font-size: 0.98rem;
  margin-left: 16px;
  font-family: var(--font-body);
}
.testimonial-card:hover {
  box-shadow: 0 10px 28px rgba(255,34,112,0.11);
  transform: scale(1.021);
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #fff;
  padding: 24px 20px;
  border-radius: 16px;
  margin-bottom: 20px;
  box-shadow: 0 4px 18px rgba(166,140,91,0.10);
  transition: box-shadow 0.2s, transform .13s;
}
.feature-item:hover {
  box-shadow: 0 8px 28px rgba(3,209,226,0.09);
  transform: translateY(-2px) scale(1.015);
}

@media (min-width: 800px) {
  .feature-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    align-items: stretch;
  }
  .feature-grid .feature-item {
    flex: 1 1 29%;
    min-width: 260px;
    max-width: 380px;
  }
}

/* LAYOUT HELPERS ------------------------------------------------------- */
@media (max-width: 900px) {
  .container {
    max-width: 98vw;
    padding: 0 10px;
  }
}
@media (max-width: 800px) {
  .feature-grid {
    flex-direction: column;
    gap: 18px;
  }
  .feature-item {
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    align-items: center;
    gap: 22px;
  }
}

/* FEATURES & ICON LISTS ------------------------------------------------ */
.features-list,
.services-list,
.contact-info,
ul.faq-list,
.add-on-services ul {
  list-style: none;
  margin: 14px 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.features-list li, .services-list li, .contact-info li {
  display: flex;
  align-items: center;
  font-size: 1.05rem;
  gap: 15px;
  color: var(--brand-primary);
  background: none;
  font-family: var(--font-body);
  padding: 10px 2px 10px 2px;
  border-radius: 6px;
  transition: background .12s, color .12s;
}
.features-list li img,
.services-list li img, 
.contact-info li img {
  width: 28px;
  height: auto;
  margin-right: 7px;
}
.features-list li strong,
.services-list li strong {
  color: var(--brand-hot);
}

/* SPECIAL BOXES -------------------------------------------------------- */
.highlight {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--brand-electric);
  color: #fff;
  font-weight: 600;
  border-radius: 14px;
  padding: 16px 22px;
  font-size: 1.07rem;
  margin-top: 22px;
  margin-bottom: 16px;
  box-shadow: 0 2px 12px rgba(3,209,226,0.11);
}
.highlight img {
  width: 32px;
  filter: drop-shadow(0px 2px 6px rgba(255,255,255,0.21));
}
.service-highlights {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--brand-yellow);
  color: var(--brand-primary);
  border-radius: 13px;
  font-weight: 700;
  font-size: 1.08rem;
  padding: 14px 20px;
  margin-top: 24px;
  margin-bottom: 10px;
}

/* FAQ & OTHER ---------------------------------------------------------- */
.faq-list li {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 12px rgba(35,42,52,0.05);
  padding: 16px 18px;
  margin-bottom: 12px;
  font-size: 1.05rem;
  color: var(--brand-primary);
}
.faq-preview {
  background: var(--brand-accent);
  padding: 18px 24px;
  border-radius: 14px;
  margin-top: 32px;
  box-shadow: 0 2px 14px rgba(166,140,91,0.08);
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.faq-preview h3 {
  margin-bottom: 8px;
}
.faq-preview a {
  margin-top: 8px;
  color: var(--brand-hot);
  font-weight: 600;
  font-size: 1.02rem;
}
.contact-prompt {
  margin: 22px 0 10px 0;
  font-size: 1.03rem;
}
.contact-prompt a {
  color: var(--brand-electric);
  text-decoration: underline;
}

/* MAP & CTA-SECTION ---------------------------------------------------- */
.map-location {
  margin: 22px 0 10px 0;
  background: var(--brand-accent);
  border-radius: 13px;
  padding: 16px 22px;
}
.cta-section {
  margin: 28px 0 6px 0;
}

/* TABLES --------------------------------------------------------------- */
table {
  width: 100%;
  border-collapse: collapse;
  margin: 16px 0 22px 0;
  font-size: 1rem;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 14px rgba(35,42,52,0.07);
  overflow: hidden;
}
thead {
  background: var(--brand-secondary);
}
thead th {
  color: #fff;
  font-weight: 700;
  padding: 16px 10px;
}
tbody td {
  color: var(--brand-primary);
  padding: 14px 8px;
  border-top: 1px solid #ecebee;
  text-align: left;
}
tr:last-child td {
  border-bottom: none;
}

/* FOOTER --------------------------------------------------------------- */
footer {
  background: var(--brand-primary);
  color: #fff;
  padding: 48px 0 26px 0;
}
footer .container {
  flex-direction: column;
  align-items: center;
  gap: 15px;
}
footer nav {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
}
footer nav a {
  color: var(--brand-yellow);
  font-weight: 500;
  font-size: 1rem;
  transition: color 0.14s;
}
footer nav a:hover {
  color: var(--brand-electric);
}
footer p {
  color: #fff;
  font-size: 0.97rem;
  margin-bottom: 0;
  margin-top: 6px;
  text-align: center;
}

/* COOKIE CONSENT BANNER & MODAL ---------------------------------------- */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1008;
  background: #fff;
  color: var(--brand-primary);
  box-shadow: 0 -3px 24px rgba(3,209,226,0.12);
  border-top: 3px solid var(--brand-hot);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 24px 16px 18px 16px;
  min-height: 82px;
  transition: transform 0.34s cubic-bezier(.77,.16,.24,.98), opacity .18s;
  transform: translateY(110%);
  opacity: 0;
  pointer-events: none;
}
.cookie-banner.active {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}
.cookie-banner p {
  margin-bottom: 8px;
  font-size: 1.04rem;
  color: var(--brand-primary);
}
.cookie-banner .cookie-actions {
  display: flex;
  flex-direction: row;
  gap: 16px;
  margin-top: 6px;
}
.cookie-banner .cookie-btn {
  padding: 10px 20px;
  font-size: 1rem;
  font-weight: 600;
  border: none;
  border-radius: 20px;
  cursor: pointer;
  transition: background 0.13s, color .13s;
}
.cookie-banner .accept {
  background: var(--brand-electric);
  color: #fff;
}
.cookie-banner .accept:hover {
  background: var(--brand-hot);
}
.cookie-banner .reject {
  background: #ececec;
  color: var(--brand-primary);
}
.cookie-banner .reject:hover {
  background: #ec3955;
  color: #fff;
}
.cookie-banner .settings {
  background: var(--brand-accent);
  color: var(--brand-secondary);
  border: 2px solid var(--brand-secondary);
}
.cookie-banner .settings:hover {
  background: var(--brand-secondary);
  color: #fff;
}

/* COOKIE MODAL */
.cookie-modal-overlay {
  display: none;
  position: fixed;
  z-index: 1010;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(35,42,52,0.33);
  transition: opacity 0.23s;
}
.cookie-modal-overlay.active {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cookie-modal {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 4px 28px rgba(3,209,226,0.17);
  max-width: 95vw;
  padding: 40px 26px 28px 26px;
  width: 420px;
  display: flex;
  flex-direction: column;
  position: relative;
  gap: 18px;
  animation: cookieModalIn 0.38s cubic-bezier(.63,.02,.17,.97) both;
}
@keyframes cookieModalIn {
  from { opacity: 0; transform: scale(0.95) translateY(18px);}
  to { opacity: 1; transform: scale(1) translateY(0); }
}
.cookie-modal-close {
  position: absolute;
  top: 16px;
  right: 18px;
  font-size: 1.5rem;
  background: transparent;
  border: none;
  color: var(--brand-primary);
  cursor: pointer;
  padding: 2px 8px;
  border-radius: 8px;
  transition: background .11s, color .14s;
}
.cookie-modal-close:hover {
  background: var(--brand-electric);
  color: #fff;
}
.cookie-modal h3 {
  color: var(--brand-hot);
  font-size: 1.22rem;
  margin-bottom: 4px;
}
.cookie-modal .category-toggle {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 12px 0 2px 0;
}
.cookie-modal label {
  font-size: 1rem;
  color: var(--brand-primary);
  font-weight: 500;
  cursor: pointer;
  flex: 1 1;
}
.cookie-modal .toggle-switch {
  width: 42px;
  height: 22px;
  background: #e9e9e9;
  border-radius: 12px;
  position: relative;
  display: inline-flex;
  vertical-align: middle;
  margin-left: 7px;
  cursor: pointer;
  transition: background .19s;
}
.cookie-modal .toggle-switch input {
  opacity: 0;
  width: 0.01px;
  height: 0.01px;
  pointer-events: none;
}
.cookie-modal .toggle-slider {
  position: absolute;
  left: 2px; top: 2px;
  width: 18px;
  height: 18px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 1px 4px rgba(35,42,52,0.10);
  transition: left 0.18s, background .17s;
}
.cookie-modal .toggle-switch input:checked + .toggle-slider {
  left: 22px;
  background: var(--brand-electric);
}
.cookie-modal .toggle-switch input:checked + .toggle-slider:after {
  content: '';
  display: block;
}
.cookie-modal .cat-desc {
  font-size: 0.98rem;
  color: #555;
  margin-left: 1px;
  opacity: 0.94;
  margin-bottom: 9px;
}
.cookie-modal .category-toggle.disabled label,
.cookie-modal .category-toggle.disabled {
  color: #8b8b93;
  cursor: not-allowed;
  opacity: 0.85;
}
.cookie-modal .modal-btn-row {
  display: flex;
  flex-direction: row;
  gap: 12px;
  margin-top: 22px;
}
.cookie-modal .cookie-btn {
  padding: 10px 16px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 22px;
  border: none;
  cursor: pointer;
  background: var(--brand-electric);
  color: #fff;
  transition: background .14s, color .14s;
}
.cookie-modal .cookie-btn.reject {
  background: #ececec;
  color: var(--brand-primary);
}
.cookie-modal .cookie-btn.reject:hover {
  background: #ec3955;
  color: #fff;
}
.cookie-modal .cookie-btn.settings {
  background: var(--brand-secondary);
  color: #fff;
}
.cookie-modal .cookie-btn.settings:hover {
  background: var(--brand-hot);
}

/* FORM ELEMENTS -------------------------------------------------------- */
input, textarea, select {
  border: 1.6px solid #e5e5e9;
  border-radius: 8px;
  padding: 9px 12px;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--brand-primary);
  background: #fff;
  outline: none;
  transition: border-color 0.13s;
  margin-top: 3px;
}
input:focus, textarea:focus, select:focus {
  border-color: var(--brand-electric);
}

/* UTILITY -------------------------------------------------------------- */
@media (max-width: 730px) {
  .footer nav {
    flex-direction: column;
    gap: 10px;
  }
}

@media (max-width: 600px) {
  h1 {
    font-size: 1.58rem;
  }
  h2 {
    font-size: 1.15rem;
  }
  .section, section.hero, .hero {
    padding-left: 2px;
    padding-right: 2px;
  }
  .card,
  .testimonial-card,
  .feature-item {
    padding: 18px 8px;
  }
}

/* MICRO-INTERACTIONS --------------------------------------------------- */
.card, .feature-item, .testimonial-card, .highlight, .cookie-banner, .cookie-modal, nav a, a.cta, button.cta {
  will-change: transform, box-shadow;
}

@media (max-width: 499px) {
  footer .container {
    padding-left: 5px;
    padding-right: 5px;
  }
}

/* ELEVATE VISUAL ENERGY ------------------------------------------------ */
section.hero, .hero {
  border-bottom: 7px solid var(--brand-hot);
  background: linear-gradient(93deg, var(--brand-yellow) 5%, var(--brand-accent) 95%);
  box-shadow: 0 10px 44px -18px rgba(255,34,112,0.09);
}
/* Energetic accent elements */
.highlight,
.card:hover,
.feature-item:hover,
.testimonial-card:hover,
header nav a.cta {
  box-shadow: 0 4px 36px 0 rgba(3,209,226,0.18), 0 2.5px 7px 0 rgba(255,34,112,0.07);
}
::-webkit-scrollbar {
  background: #e1e1e5;
  height: 8px;
  width: 12px;
  border-radius: 100vw;
}
::-webkit-scrollbar-thumb {
  background: var(--brand-hot);
  border-radius: 100vw;
}

/* FOCUS STATES --------------------------------------------------------- */
a:focus, .cta:focus, button:focus, .mobile-menu-toggle:focus, .mobile-menu-close:focus {
  outline: 2.5px solid var(--brand-electric);
  outline-offset: 2px;
}

/* ACCESSIBILITY -------------------------------------------------------- */
@media (hover:none) and (pointer:coarse) {
  a:active, button:active {
    filter: brightness(0.88);
  }
}

/* PRINT --------------------------------------------------------------- */
@media print {
  header, footer, .cookie-banner, .mobile-menu, .mobile-menu-toggle {
    display: none!important;
  }
  body {
    background: #fff;
    color: #111;
  }
}
