/* 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: 'Montserrat', Arial, sans-serif;
  background: #FFFFFF;
  color: #392E3D;
  min-height: 100vh;
  font-size: 16px;
  letter-spacing: 0.01em;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
ul, ol {
  list-style: none;
}
a {
  color: #89377A;
  text-decoration: none;
  transition: color 0.2s;
  font-weight: 600;
  outline: none;
}
a:focus, a:hover {
  color: #B263A8;
  text-decoration: underline;
}
strong, b {
  font-weight: bold;
}
h1, h2, h3, h4 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  line-height: 1.15;
  color: #89377A;
}
h1 {
  font-size: 2.4rem;
  margin-bottom: 24px;
  letter-spacing: 0.02em;
}
h2 {
  font-size: 2rem;
  margin-bottom: 18px;
}
h3 {
  font-size: 1.4rem;
  margin-bottom: 12px;
}
h4 {
  font-size: 1.1rem;
}
.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding-left: 16px;
  padding-right: 16px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

/* HEADER & LOGO */
header {
  background: #fff;
  box-shadow: 0 2px 14px 0 rgba(137,55,122,0.06);
  position: sticky;
  top: 0;
  z-index: 80;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 18px;
  padding-bottom: 18px;
  gap: 20px;
}
.logo img {
  height: 50px;
  width: auto;
  display: block;
}

/* NAVIGATION */
.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-left: 28px;
}
.main-nav a {
  font-size: 1rem;
  color: #392E3D;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  letter-spacing: 0.035em;
  text-transform: uppercase;
  transition: color 0.2s;
  position: relative;
  padding: 4px 0;
}
.main-nav a::after {
  content: '';
  display: block;
  height: 3px;
  width: 0%;
  background: #89377A;
  border-radius: 6px;
  transition: width 0.2s;
  position: absolute;
  left: 0; bottom: 0;
}
.main-nav a:hover::after, .main-nav a:focus::after {
  width: 100%;
}
.main-nav a.active {
  color: #89377A;
}

/* PRIMARY BUTTON */
.btn-primary {
  background-color: #89377A;
  color: #fff;
  border-radius: 28px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  padding: 12px 32px;
  border: none;
  outline: none;
  letter-spacing: 0.04em;
  transition: background 0.2s, box-shadow 0.2s, color 0.2s;
  box-shadow: 0 3px 18px 0 rgba(80,30,70,.09);
  cursor: pointer;
  display: inline-block;
  margin-left: 25px;
}
.btn-primary:hover, .btn-primary:focus {
  background: #B263A8;
  color: #fff;
  box-shadow: 0 6px 22px 0 rgba(137,55,122,0.12);
  text-decoration: none;
}

/* HAMBURGER MENU MOBILE */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 2.2rem;
  color: #89377A;
  cursor: pointer;
  z-index: 120;
  margin-left: auto;
  padding: 4px 10px 4px 16px;
  transition: color 0.2s;
  outline: none;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  color: #B263A8;
}
.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: #fff;
  z-index: 200;
  transform: translateX(-100%);
  transition: transform 0.33s cubic-bezier(.7,.32,.3,1.25);
  display: flex;
  flex-direction: column;
  padding: 0;
  box-shadow: 0 10px 32px 0 rgba(137,55,122,0.14);
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  background: none;
  border: none;
  font-size: 2rem;
  color: #89377A;
  margin: 32px 32px 8px 0;
  cursor: pointer;
  transition: color 0.2s;
  outline: none;
}
.mobile-menu-close:focus, .mobile-menu-close:hover {
  color: #B263A8;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  margin: 20px 0 0 40px;
}
.mobile-nav a {
  font-size: 1.25rem;
  color: #392E3D;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 13px 0;
  border-radius: 6px;
  transition: background 0.22s, color 0.15s;
}
.mobile-nav a:focus, .mobile-nav a:hover {
  background: #F8E8F3;
  color: #89377A;
}

@media (max-width: 992px) {
  .main-nav {
    gap: 16px;
    margin-left: 12px;
  }
  .btn-primary {
    margin-left: 12px;
  }
}
@media (max-width: 900px) {
  header .container {
    gap: 10px;
  }
  .main-nav {
    gap: 10px;
    margin-left: 0;
  }
  .btn-primary {
    margin-left: 0;
    padding: 10px 20px;
    font-size: 0.98rem;
  }
}
@media (max-width: 768px) {
  .main-nav {
    display: none;
  }
  .btn-primary {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
  header .container {
    padding-top: 12px;
    padding-bottom: 12px;
    gap: 0;
  }
}
@media (max-width: 500px) {
  .logo img { height: 40px; }
  .mobile-menu-close {
    margin: 20px 20px 4px 0;
    font-size: 1.6rem;
  }
  .mobile-nav {
     margin-left: 18px;
     gap: 13px;
  }
}

/* HERO STYLES */
.hero-section {
  background: linear-gradient(115deg, #F8E8F3 40%, #fff 100%);
  min-height: 380px;
  display: flex;
  align-items: center;
  padding: 64px 0 36px 0;
}
.hero-section .container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.hero-section .content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 28px;
  max-width: 640px;
}
.hero-section h1 {
  font-size: 2.5rem;
}
.hero-subheadline {
  font-size: 1.23rem;
  color: #392E3D;
  opacity: 0.88;
  margin-bottom: 0;
  letter-spacing: 0.01em;
}

/* FEATURES SECTION */
.features-section {
  background: #fff;
}
.features-section > .container {
  padding-bottom: 0;
}
.features-section .content-wrapper {
  flex-direction: column;
  gap: 25px;
}
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: flex-start;
  margin-top: 22px;
}
.feature-grid li {
  flex: 1 1 210px;
  min-width: 180px;
  max-width: 250px;
  background: #F8E8F3;
  padding: 24px 18px 20px 18px;
  margin-bottom: 20px;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  box-shadow: 0 3px 16px 0 rgba(137,55,122,0.07);
  transition: box-shadow 0.2s, transform 0.2s;
}
.feature-grid li:hover {
  box-shadow: 0 8px 32px 0 rgba(137,55,122,0.13);
  transform: translateY(-3px) scale(1.025);
}
.feature-grid img {
  height: 48px;
  width: 48px;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 2px 8px 0 rgba(137,55,122,0.08);
}
.features-section h2 {
  color: #89377A;
  text-align: left;
}

/* GENERAL FLEX PATTERNS */
.content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.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 0 rgba(137,55,122,0.08);
  transition: box-shadow 0.18s, transform 0.16s;
  padding: 30px 24px;
}
.card:hover {
  box-shadow: 0 7px 24px 0 rgba(137,55,122,0.15);
  transform: translateY(-2px) 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) {
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 22px;
  }
  .card-container, .feature-grid, .content-grid {
    flex-direction: column;
    gap: 18px;
  }
}

/* SERVICE LISTS & PRICING */
.service-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin: 24px 0 24px 0;
}
.service-list li {
  background: #fff;
  border-left: 6px solid #89377A;
  border-radius: 14px;
  padding: 14px 22px 14px 22px;
  margin-bottom: 12px;
  box-shadow: 0 3px 13px 0 rgba(137,55,122,0.05);
  font-size: 1.1rem;
  font-family: 'Montserrat', Arial, sans-serif;
}
.service-list strong {
  color: #89377A;
  font-weight: 700;
}
.services-section .service-list li {
  background: #F8E8F3;
  border: none;
  border-left: 6px solid #89377A;
  margin-bottom: 16px;
  font-size: 1.06rem;
}
.services-section .service-list h2 {
  display: flex;
  align-items: center;
  font-size: 1.3rem;
  margin-bottom: 4px;
  gap: 12px;
}
.services-section .service-list h2 span {
  margin-left: 10px;
  background: #89377A;
  color: #fff;
  border-radius: 12px;
  font-size: 1rem;
  padding: 3px 12px;
  font-weight: 600;
}
.services-section .text-section {
  margin-bottom: 8px;
}

/* PRICING TABLE */
.pricing-section {
  background: #F8E8F3;
}
.pricing-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  margin: 30px 0 22px 0;
  font-size: 1.08rem;
  color: #392E3D;
  border-radius: 13px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 3px 16px 0 rgba(137,55,122,0.07);
}
.pricing-table th {
  background: #89377A;
  color: #fff;
  font-weight: 700;
  font-size: 1.03rem;
  padding: 16px 8px;
  text-align: left;
}
.pricing-table td {
  padding: 13px 8px;
  border-bottom: 1px solid #eee;
}
.pricing-table tr:last-child td {
  border-bottom: none;
}
.service-inclusions {
  margin-top: 12px;
  font-size: 0.97rem;
  color: #5C3B50;
}
.special-offers-highlight {
  background: #fff;
  margin-top: 42px;
  margin-bottom: 16px;
  padding: 22px 24px 18px 24px;
  border-radius: 18px;
  box-shadow: 0 2px 8px 0 rgba(137,55,122,0.08);
}
.special-offers-highlight h2 {
  color: #B263A8;
  margin-bottom: 14px;
  font-size: 1.4rem;
}
.special-offers-highlight li strong {
  color: #89377A;
}

/* TESTIMONIALS */
.testimonials-section {
  background: #F8E8F3;
}
.testimonials-section .container {
  padding-bottom: 0;
}
.testimonials {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 18px;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  background: #fff;
  border-radius: 20px;
  padding: 28px 36px 26px 36px;
  min-width: 270px;
  max-width: 340px;
  box-shadow: 0 4px 22px 0 rgba(137,55,122,0.10);
  font-size: 1.15rem;
  color: #392E3D;
  font-family: 'Montserrat', Arial, sans-serif;
  position: relative;
  margin-bottom: 20px;
  transition: box-shadow 0.18s, transform 0.18s;
}
.testimonial-card:hover {
  box-shadow: 0 10px 26px 0 rgba(137,55,122,0.16);
  transform: scale(1.035) translateY(-2px);
}
.testimonial-card p {
  font-size: 1.03rem;
  color: #392E3D;
  margin-bottom: 0;
  font-style: italic;
  line-height: 1.6;
}
.testimonial-author {
  color: #89377A;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.03em;
}
.star-rating {
  color: #FFD600;
  font-size: 1.2rem;
  margin-bottom: 0;
}
@media (max-width: 1080px) {
 .testimonials { flex-direction: column; gap: 16px; }
 .testimonial-card { max-width: 100%; }
}

/* FOOTER */
footer {
  background: #fff;
  border-top: 2px solid #F8E8F3;
  padding-top: 32px;
  padding-bottom: 24px;
  margin-top: 80px;
}
footer .container {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
  align-items: flex-start;
}
.footer-branding img {
  height: 48px;
  width: auto;
  margin-bottom: 16px;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-nav a {
  font-size: 1rem;
  color: #89377A;
  font-weight: 700;
  letter-spacing: 0.015em;
  text-transform: uppercase;
  padding: 2px 0;
  transition: color 0.2s;
}
.footer-nav a:hover {
  color: #B263A8;
}
.footer-info {
  color: #392E3D;
  font-size: 1rem;
}
.footer-copy {
  flex-basis: 100%;
  text-align: right;
  color: #89377A;
  margin-top: 24px;
  font-size: 0.92rem;
  font-weight: bold;
}
@media (max-width: 1100px) {
  footer .container { flex-direction: column; gap: 16px; align-items: flex-start; }
  .footer-copy { text-align: left; }
}
@media (max-width: 600px) {
  footer { padding-top: 18px; padding-bottom: 12px; }
  .footer-branding img { height: 36px; }
  .footer-info, .footer-nav a { font-size: 0.98rem; }
  .footer-copy { margin-top: 10px; font-size: 0.89rem; }
}

/* TEXT STYLES & CONTENT */
.text-section {
  margin: 10px 0 14px 0;
  font-size: 1.08rem;
  color: #392E3D;
  line-height: 1.7;
  font-family: 'Montserrat', Arial, sans-serif;
}
.text-section ul {
  padding-left: 22px;
  margin-bottom: 12px;
  margin-top: 8px;
  list-style: disc inside;
  color: #89377A;
}
.text-section h2 {
  font-size: 1.26rem;
  margin-top: 18px;
  color: #89377A;
  font-weight: 700;
}
.text-section a {
  color: #89377A;
  font-style: italic;
  text-decoration: underline;
  font-weight: 700;
}

/* COOKIE CONSENT BANNER */
.cookie-consent-banner {
  position: fixed;
  bottom: 0; left: 0;
  width: 100vw;
  background: #fff;
  box-shadow: 0 -4px 24px 0 rgba(137,55,122,0.13);
  color: #392E3D;
  padding: 26px 16px 30px 16px;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  animation: banner-fade-in 0.5s;
  font-size: 1.05rem;
}
@keyframes banner-fade-in {
  from { opacity: 0; transform: translateY(60px); }
  to   { opacity: 1; transform: translateY(0); }
}
.cookie-consent-banner .banner-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
}
.cookie-consent-banner button {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  padding: 8px 24px;
  font-size: 1rem;
  border: none;
  border-radius: 18px;
  margin-left: 0;
  transition: background 0.2s, color 0.2s, box-shadow 0.16s;
  cursor: pointer;
  letter-spacing: 0.02em;
  outline: none;
}
.cookie-accept {
  background: #89377A;
  color: #fff;
}
.cookie-accept:hover, .cookie-accept:focus {
  background: #B263A8;
}
.cookie-reject {
  background: #fff;
  color: #89377A;
  border: 2px solid #89377A;
}
.cookie-reject:hover, .cookie-reject:focus {
  background: #F8E8F3;
  color: #B263A8;
}
.cookie-settings {
  background: #F8E8F3;
  color: #89377A;
  border: 2px solid #B263A8;
}
.cookie-settings:hover, .cookie-settings:focus {
  background: #B263A8;
  color: #fff;
}

/* COOKIE MODAL */
.cookie-modal-overlay {
  position: fixed;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  background: rgba(137,55,122,0.23);
  z-index: 10000;
  display: none;
  align-items: center;
  justify-content: center;
  animation: modal-fade-in 0.3s;
}
.cookie-modal-overlay.open {
  display: flex;
}
@keyframes modal-fade-in {
  from { opacity: 0; }
  to   { opacity: 1; }
}
.cookie-modal {
  background: #fff;
  border-radius: 24px;
  padding: 34px 24px 26px 24px;
  max-width: 400px;
  width: 95vw;
  box-shadow: 0 4px 26px 0 rgba(137,55,122,0.19);
  display: flex;
  flex-direction: column;
  align-items: stretch;
  animation: modal-pop-in 0.25s;
}
@keyframes modal-pop-in {
  from { transform: scale(0.91); opacity: 0; }
  to   { transform: scale(1); opacity: 1; }
}
.cookie-modal h2 {
  color: #89377A;
  margin-bottom: 18px;
  font-size: 1.32rem;
}
.cookie-modal label {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  font-size: 1.07rem;
  font-weight: 600;
}
.cookie-modal input[type=checkbox] {
  accent-color: #89377A;
  width: 18px;
  height: 18px;
}
.cookie-modal .modal-actions {
  display: flex;
  gap: 12px;
  justify-content: flex-end;
  margin-top: 18px;
}
.cookie-modal .modal-close {
  background: none;
  border: none;
  color: #89377A;
  font-size: 1.3rem;
  cursor: pointer;
  position: absolute;
  right: 24px;
  top: 20px;
}
.cookie-modal .category-desc {
  font-size: 0.93rem;
  color: #5C3B50;
  margin-bottom: 12px;
  margin-left: 30px;
}
/* Custom checkbox styles for better contrast */
.cookie-modal input[type=checkbox] {
  border-radius: 4px;
  border: 2px solid #B263A8;
  outline: none;
  margin-right: 6px;
}

/* THANK YOU / MISC SECTIONS */
.thank-you-section {
  background: #F8E8F3;
  min-height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 64px 0;
}
.thank-you-section .content-wrapper {
  align-items: center;
  justify-content: center;
  gap: 28px;
}
.thank-you-section h1 {
  color: #89377A;
  text-align: center;
  font-size: 2.1rem;
}

/* RESPONSIVE LAYOUTS */
@media (max-width: 768px) {
  .container {
    max-width: 94vw;
    padding-left: 6px;
    padding-right: 6px;
  }
  section, .section {
    padding: 28px 4px;
    margin-bottom: 38px;
  }
  .hero-section .content-wrapper {
    gap: 18px;
  }
  .feature-grid li, .special-offers-highlight, .card, .testimonial-card {
    padding: 18px 10px 16px 14px;
    border-radius: 12px;
  }
  .hero-section {
    padding: 36px 0 18px 0;
    min-height: 250px;
  }
  .footer-nav { gap: 7px; }
}
@media (max-width: 600px) {
  h1 { font-size: 1.3rem; }
  h2 { font-size: 1.12rem; }
  .hero-section h1 { font-size: 1.21rem; }
  .thank-you-section { padding: 34px 0; }
  .card, .testimonial-card {
    padding: 12px 8px;
    border-radius: 8px;
  }
  .cookie-modal { padding: 18px 6px 10px 6px; }
}

/* SCROLLBAR STYLES (modern_bold) */
::-webkit-scrollbar {
  width: 10px;
  background: #F8E8F3;
  border-radius: 8px;
}
::-webkit-scrollbar-thumb {
  background: #89377A;
  border-radius: 8px;
}

/* UTILITY CLASSES */
.mt-1 { margin-top: 8px; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mb-1 { margin-bottom: 8px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }
.text-center { text-align: center; }

/* ACCENT LINES & DECORATIVE GEOMETRIES */
h1, h2, h3 {
  position: relative;
}
h1::before, h2::before, h3::before {
  content: '';
  display: block;
  position: absolute;
  left: -28px;
  top: 50%;
  transform: translateY(-50%);
  width: 10px;
  height: 42%;
  background: #89377A;
  border-radius: 8px;
}
@media (max-width: 600px) {
  h1::before, h2::before, h3::before { display: none; }
}

/* MODERN_BOLD GEOMETRIC SHAPES */
.feature-grid li::after {
  content: '';
  display: block;
  width: 35px;
  height: 5px;
  background: #B263A8;
  border-radius: 8px;
  margin-top: 15px;
}
.feature-grid li:last-child::after { display: none; }

/* FOCUS STATES FOR ACCESSIBILITY */
*:focus {
  outline: 2px solid #89377A;
  outline-offset: 2px;
  background: #F8E8F3;
}

/* SELECTION COLOR */
::selection {
  background: #B263A8;
  color: #fff;
}

/* OVERRIDE FOR NO OVERLAPS and CARD GAPS */
.card, .testimonial-card, .feature-grid li {
  margin-bottom: 20px;
}

/* Z-INDEX ENSURANCE FOR MENU AND BANNERS */
.mobile-menu, .mobile-menu-toggle, .cookie-consent-banner, .cookie-modal-overlay { z-index: 2000; }

/* Hide cookie/modal on accept, show with .open*/
.cookie-consent-banner.hide { display: none !important; }
.cookie-modal-overlay.hide { display: none !important; }

/* GEOMETRIC BUTTON SHADOW (modern_bold effect) */
.btn-primary {
  box-shadow: 0 3px 18px 0 rgba(80,30,70,.19), 0 1px 4px 0 #B263A8;
}

/* PRINT STYLES */
@media print {
  .mobile-menu,
  .mobile-menu-toggle,
  .cookie-consent-banner,
  .cookie-modal-overlay { display: none !important; }
}
