/* ---------------------------------------------------
   RESET & BASE SETUP
--------------------------------------------------- */
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;
}

html {
  scroll-behavior: smooth;
  box-sizing: border-box;
}

body {
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  background: #F5F2EF;
  color: #253156;
  line-height: 1.6;
  min-height: 100vh;
}

*, *:before, *:after { box-sizing: inherit; }

img {
  display: block;
  max-width: 100%;
  height: auto;
}
a {
  color: #253156;
  text-decoration: none;
  transition: color 0.2s cubic-bezier(.55,1.45,.85,1);
}
a:hover, a:focus {
  color: #B9A06E;
  outline: none;
}

ul, ol {
  list-style: none;
  margin: 0 0 24px 0;
  padding: 0;
}

/* ---------------------------------------------------
   BRANDING FONTS & VIBRANT ENERGETIC COLORS
--------------------------------------------------- */
h1, h2, h3, h4 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  letter-spacing: 0.01em;
}
h1 { font-size: 2.75rem; line-height: 1.15; margin-bottom: 24px; color: #2B2B61; }
h2 { font-size: 2rem; line-height: 1.2; margin-bottom: 20px; color: #253156; }
h3 { font-size: 1.375rem; line-height: 1.25; margin-bottom: 16px; color: #B91D73; }
h4 { font-size: 1.125rem; margin-bottom: 12px; }

p, li, span, div, label {
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  font-size: 1rem;
}

.subheadline {
  color: #4C2AA9;
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 14px;
}

.brand-promise, .confirmation-message {
  font-style: italic;
  font-size: 1.125rem;
  margin: 18px 0 16px 0;
  color: #B9A06E;
}

/* Add extra punch to key sections */
section h1, section h2 {
  text-shadow: 0 2px 10px rgba(185,16,115,0.08);
}

/* ---------------------------------------------------
   SPACING CLASSES & FLEXBOX PATTERNS (MANDATORY)
--------------------------------------------------- */
.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
  box-sizing: border-box;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 8px 32px rgba(76,42,169,.07);
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: 18px;
  margin-bottom: 20px;
  position: relative;
  box-shadow: 0 4px 24px rgba(251,0,118,.10);
  padding: 32px 24px;
  flex: 1 1 260px;
  transition: transform 0.18s cubic-bezier(.65,1.55,.55,1), box-shadow 0.12s;
}
.card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 8px 24px rgba(43,43,97,.16),0 0 0 2px #B91D73;
}
.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;
  background: #F5F2EF;
  box-shadow: 0 4px 18px rgba(43,43,97,0.08);
  border-radius: 18px;
  padding: 20px;
  margin-bottom: 20px;
  min-width: 260px;
  color: #252835;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #fff;
}

/* ---------------------------------------------------
   HEADER & NAVIGATION
--------------------------------------------------- */
header {
  background: #253156;
  padding: 0;
  box-shadow: 0 3px 16px rgba(185,16,115,0.04);
  position: sticky;
  top: 0;
  z-index: 100;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
  padding-top: 7px;
  padding-bottom: 7px;
}
.logo img {
  height: 48px;
  width: auto;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 24px;
}
.main-nav a {
  font-family: 'Open Sans', Arial, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  color: #fff;
  position: relative;
  padding: 8px 6px;
  border-radius: 6px;
  transition: background 0.11s, color 0.11s;
}
.main-nav a:not(.btn-primary):hover, .main-nav a:not(.btn-primary):focus {
  color: #B91D73;
  background: #fff;
}
.btn-primary {
  background: #B91D73;
  color: #fff;
  font-weight: 700;
  padding: 12px 28px;
  border: none;
  border-radius: 50px;
  font-size: 1.13rem;
  box-shadow: 0 1px 2px rgba(76,42,169,0.07);
  cursor: pointer;
  transition: background 0.19s, color 0.19s, transform 0.13s;
  margin-left: 10px;
}
.btn-primary:hover,.btn-primary:focus {
  background: #FF3BB0;
  color: #fff;
  transform: translateY(-2px) scale(1.04);
}
.btn-link {
  color: #B91D73;
  font-weight: 700;
  background: transparent;
  padding: 0;
  border: 0;
  font-size: 1rem;
  position: relative;
  transition: color 0.13s;
}
.btn-link:hover,.btn-link:focus {
  color: #253156;
  text-decoration: underline;
}

/* Hamburger button */
.mobile-menu-toggle {
  display: none;
  background: #B91D73;
  color: #fff;
  border: none;
  font-size: 2rem;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 130;
  transition: background 0.15s;
}
.mobile-menu-toggle:active, .mobile-menu-toggle:focus {
  background: #4C2AA9;
}
/* ---------------------------------------------------
   MOBILE NAVIGATION OVERLAY
--------------------------------------------------- */
.mobile-menu {
  display: none;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(37,49,86, 0.96);
  z-index: 2400;
  overflow-y: auto;
  transform: translateX(-100%);
  transition: transform 0.35s cubic-bezier(.68,.26,.33,1);
  box-shadow: 0 16px 48px rgba(76,42,169,0.13);
}
.mobile-menu.open {
  display: flex;
  transform: translateX(0);
}
.mobile-menu-close {
  background: none;
  border: none;
  color: #fff;
  font-size: 2.4rem;
  align-self: flex-end;
  margin: 26px 30px 10px 0;
  cursor: pointer;
  z-index: 2500;
  transition: color 0.13s;
}
.mobile-menu-close:hover,.mobile-menu-close:focus {
  color: #FF3BB0;
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 32px;
  width: 90vw;
  max-width: 350px;
  margin: 0 auto;
}
.mobile-nav a {
  color: #fff;
  font-size: 1.25rem;
  font-weight: 700;
  padding: 12px 0;
  border-radius: 5px;
  margin-left: 18px;
  margin-right: 18px;
  transition: background 0.16s, color 0.16s;
}
.mobile-nav a:hover,.mobile-nav a:focus {
  background: #B9A06E;
  color: #253156;
  text-decoration: none;
}

/* ---------------------------------------------------
   MAIN CONTENT & FLEX LAYOUTS (for .content-wrapper, cards, features)
--------------------------------------------------- */
main {
  padding-top: 30px;
  margin-bottom: 90px; /* Space for cookie banner */
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  background: none;
  margin-bottom: 32px;
}
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: flex-start;
  width: 100%;
}
.feature {
  background: #fff;
  border-radius: 17px;
  box-shadow: 0 4px 14px rgba(76,42,169,.08);
  flex: 1 1 230px;
  padding: 26px 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 20px;
  position: relative;
  transition: box-shadow 0.14s, transform 0.13s;
}
.feature img {
  height: 50px;
  margin-bottom: 16px;
}
.feature h3 {
  margin: 6px 0 12px 0;
  color: #2B2B61;
}
.feature:hover {
  box-shadow: 0 8px 30px rgba(185,16,115,0.13);
  transform: scale(1.03);
}

/* Testimonial slider basics */
.testimonial-slider {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.testimonial-card {
  flex: 1 1 260px;
  background: #fff;
  box-shadow: 0 4px 24px rgba(76,42,169,0.05);
  border-radius: 16px;
  padding: 30px 22px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-width: 240px;
  color: #232230;
  border-left: 5px solid #B91D73;
  position: relative;
  transition: transform 0.18s, box-shadow 0.14s;
}
.testimonial-card:hover {
  box-shadow: 0 8px 30px #B91D7317;
  transform: scale(1.015);
  border-left-color: #4C2AA9;
}
.customer-name {
  font-weight: bold;
  color: #B91D73;
  margin-top: 14px;
  font-size: 1.06rem;
}
.stars {
  color: #FEC100;
  font-size: 1.4rem;
  margin-top: 5px;
}

/* Other Flex Content */
.team-bios {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-bottom: 26px;
}
.team-bios > div {
  flex: 1 1 220px;
  background: #fff;
  border-radius: 17px;
  box-shadow: 0 4px 16px #B91D7314;
  padding: 26px 20px 18px 20px;
  min-width: 210px;
  margin-bottom: 20px;
}
.next-steps ul {
  margin-top: 12px;
  margin-bottom: 0;
  padding-left: 24px;
}
.next-steps li {
  list-style: disc inside;
  margin-bottom: 8px;
}

.address-map img {
  width: 36px;
  height: auto;
  margin-bottom: 12px;
}
.contact-details {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin-bottom: 24px;
}
.contact-details > div {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1rem;
}

/* ---------------------------------------------------
   FOOTER
--------------------------------------------------- */
footer {
  background: #253156;
  color: #fff;
  padding: 38px 0 30px 0;
}
footer .container {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: flex-start;
  justify-content: space-between;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-nav a {
  color: #B9A06E;
  font-size: 1rem;
  margin-right: 18px;
  font-weight: 600;
  letter-spacing: 0.03em;
  margin-bottom: 3px;
  transition: color 0.16s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: #FF3BB0;
}
.brand-mini img {
  height: 32px;
  width: auto;
}
.footer-contact {
  font-size: .98rem;
  display: flex;
  flex-direction: column;
  gap: 7px;
  min-width: 210px;
}
.footer-contact img {
  height: 15px;
  width: auto;
  vertical-align: middle;
  margin-right: 3px;
}

/* ---------------------------------------------------
   COOKIES CONSENT BANNER & MODAL
--------------------------------------------------- */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  background: #253156;
  color: #fff;
  padding: 26px 20px 20px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  z-index: 4000;
  font-size: 1rem;
  box-shadow: 0 -2px 18px rgba(76,42,169,0.11);
  transform: translateY(110%);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.38s cubic-bezier(.59,1.7,.44,1), opacity 0.35s;
}
.cookie-banner.visible {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}
.cookie-banner .cookie-btn {
  margin: 0 7px;
  background: #B91D73;
  color: #fff;
  font-weight: 700;
  border: 0;
  border-radius: 25px;
  padding: 9px 22px;
  cursor: pointer;
  font-size: 1rem;
  transition: background 0.15s, color 0.14s;
}
.cookie-banner .cookie-btn--light {
  background: #fff;
  color: #B91D73;
  border: 2px solid #B91D73;
}
.cookie-banner .cookie-btn:hover, .cookie-banner .cookie-btn:focus {
  background: #4C2AA9;
  color: #fff;
}

/* Cookie Modal */
.cookie-modal-overlay {
  display: none;
  position: fixed;
  left: 0; right: 0; top: 0; bottom: 0;
  background: rgba(43,43,97, 0.78);
  z-index: 4050;
  align-items: center;
  justify-content: center;
}
.cookie-modal-overlay.visible {
  display: flex;
  animation: fadeInModalBg .2s cubic-bezier(.63,1.7,.44,1);
}
@keyframes fadeInModalBg {
  from { opacity: 0; }
  to { opacity: 1; }
}
.cookie-modal {
  background: #fff;
  border-radius: 22px;
  padding: 36px 32px;
  color: #253156;
  width: 97vw;
  max-width: 400px;
  box-shadow: 0 12px 60px #B91D7326;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 22px;
  animation: modalPopin 0.34s cubic-bezier(.53,1.6,.51,1);
}
@keyframes modalPopin {
  from { transform: scale(0.9) translateY(15px); opacity: 0; }
  to   { transform: scale(1) translateY(0); opacity: 1; }
}
.cookie-modal h2 {
  color: #B91D73;
  margin-bottom: 10px;
  font-size: 1.13rem;
  font-family: 'Playfair Display', serif;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 7px;
}
.cookie-modal input[type=checkbox]:not(:disabled) {
  accent-color: #B91D73;
  width: 18px;
  height: 18px;
}
.cookie-modal .cookie-required {
  color: #777;
  font-size: .97rem;
}
.cookie-modal .modal-actions {
  display: flex;
  flex-direction: row;
  gap: 10px;
  justify-content: flex-end;
  margin-top: 20px;
}
.cookie-modal .modal-actions button {
  background: #B91D73;
  color: #fff;
  padding: 9px 23px;
  border-radius: 24px;
  border: 0;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.14s;
}
.cookie-modal .modal-actions button:hover,.cookie-modal .modal-actions button:focus {
  background: #4C2AA9;
}
.cookie-modal .modal-close {
  background: transparent;
  color: #B91D73;
  border: none;
  position: absolute;
  top: 12px;
  right: 16px;
  font-size: 1.8rem;
  cursor: pointer;
}

/* ---------------------------------------------------
   UTILITIES, EFFECTS, ETC.
--------------------------------------------------- */
.section:last-child {
  margin-bottom: 0;
}
.gap-8 { gap: 8px !important; }
.gap-16 { gap: 16px !important; }
.gap-24 { gap: 24px !important; }
.gap-32 { gap: 32px !important; }
.text-center { text-align: center; }
.text-right { text-align: right; }
.text-accent { color: #B91D73!important; }
.bg-accent { background: #B91D73!important; color: #fff!important; }

/* ---------------------------------------------------
   RESPONSIVE DESIGN (MOBILE FIRST)
--------------------------------------------------- */
@media (max-width: 1024px) {
  .container {
    max-width: 93vw;
    padding-left: 10px;
    padding-right: 10px;
  }
  .team-bios, .feature-grid, .content-grid, .card-container {
    gap: 18px;
  }
  header .container {
    min-height: 62px;
  }
}
@media (max-width: 900px) {
  .main-nav {
    gap: 12px;
  }
}
@media (max-width: 768px) {
  h1 { font-size: 2.1rem; }
  h2 { font-size: 1.4rem; }
  .section {
    margin-bottom: 36px;
    padding: 22px 7px;
  }
  .content-wrapper, .team-bios, .feature-grid, .content-grid, .card-container, .testimonial-slider {
    flex-direction: column;
    gap: 16px;
  }
  .feature, .card, .team-bios > div, .testimonial-card {
    min-width: 0;
    width: 100%;
  }
  header .container {
    flex-direction: row;
    padding-top: 5px;
    padding-bottom: 5px;
  }
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
    margin-left: auto;
    margin-right: 2px;
  }
}
@media (min-width:769px) {
  .mobile-menu {
    display: none!important;
  }
  .mobile-menu-toggle {
    display: none!important;
  }
}
@media (max-width: 520px) {
  h1 { font-size: 1.42rem; }
  h2 { font-size: 1.12rem; }
  .btn-primary, .btn-link {
    font-size: .98rem;
    padding: 10px 16px;
  }
  .container {
    padding-left: 5px;
    padding-right: 5px;
  }
  .cookie-banner { flex-direction: column; gap: 8px; font-size: .95rem; }
}

/* ---------------------------------------------------
   VIBRANT EXTRAS
--------------------------------------------------- */
/* Electric colored underline for h2 */
h2 { border-bottom: 3px solid #B91D73; display: inline-block; padding-bottom: 2px; margin-bottom: 17px; }
/* Brand accent button underline for active */
.main-nav a.active, .mobile-nav a.active {
  border-bottom: 3px solid #B9A06E;
  color: #FFD700;
}

/* Floating accent for section transitions */
.section {
  box-shadow: 0 4px 44px #B91D7326, 0 1.5px 0 #B9A06E44;
}

/* Glow on card hover */
.card:hover {
  box-shadow: 0 10px 38px #B91D731b, 0 8px 28px #4C2AA91c;
}

/* Micro-interactions for buttons */
.btn-primary:active {
  background: #4C2AA9;
  box-shadow: 0 0px 0 #B9A06E;
  transform: scale(0.98);
}

/* Electric focus for inputs & buttons */
input:focus,textarea:focus,button:focus {
  outline: 2px solid #B91D73;
  outline-offset: 1px;
}

/* ---------------------------------------------------
   CUSTOM CLASSES FROM HTML STRUCTURE
--------------------------------------------------- */
/* These map directly to common class names in the HTML above */
.sign-pairings-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}
.calendar-tool {
  display: flex;
  flex-direction: column;
  gap: 17px;
  background: #fff;
  border-radius: 14px;
  padding: 23px 15px;
  box-shadow: 0 2px 12px #B91D7312;
}
.tool-info {
  background: #FFFCF8;
  color: #253156;
  border-left: 4px solid #B9A06E;
  border-radius: 10px;
  padding: 18px 14px;
  margin-bottom: 14px;
}
.text-section {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* ---------------------------------------------------
   END OF STYLE.CSS
--------------------------------------------------- */
