/* ===================== RESET & 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-size: 100%;
  font: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}
html { box-sizing: border-box; scroll-behavior: smooth; }
*, *:before, *:after { box-sizing: inherit; }
body { line-height: 1.5; }
ul, ol { list-style: none; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; display: block; }
button, input, select, textarea { font-family: inherit; font-size: 100%; border: none; background: none; }
button { cursor: pointer; }

/* ===================== BRAND VARIABLES & FONT IMPORT ===================== */
@import url('https://fonts.googleapis.com/css?family=Montserrat:700,800,900&display=swap');
@import url('https://fonts.googleapis.com/css?family=Open+Sans:400,600,700&display=swap');
:root {
  --primary: #324250;
  --secondary: #E7B758;
  --accent: #F6F3EB;
  --electric-blue: #00CFFD;
  --hot-pink: #EA2977;
  --lime: #B6ED35;
  --sun-orange: #FF842E;
  --dark: #1A232A;
  --white: #FFFFFF;
  --shadow: 0 2px 10px 0 rgba(32, 44, 60, 0.09), 0 1.5px 5px 0 rgba(50,66,80,0.08);
  --radius: 18px;
  --font-display: 'Montserrat', Arial, sans-serif;
  --font-body: 'Open Sans', Arial, sans-serif;
}

body {
  background: var(--accent);
  color: var(--dark);
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 400;
  min-height: 100vh;
}

/* ===================== LAYOUT CONTAINERS ===================== */
.container {
  width: 100%;
  margin: 0 auto;
  padding: 0 18px;
  max-width: 1200px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 30px;
  align-items: flex-start;
}

.section, section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: none;
  border-radius: var(--radius);
}
/* Overwrite default .testimonials spacing for padding */
section.testimonials {
  background: var(--white);
  box-shadow: var(--shadow);
  padding-top: 24px;
  padding-bottom: 32px;
  border-radius: var(--radius);
  margin-bottom: 60px;
}

/* ===================== TYPOGRAPHY ===================== */
h1, .hero h1 {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 2.6rem;
  color: var(--primary);
  letter-spacing: -1px;
  margin-bottom: 0.5em;
  text-shadow: 0 2px 12px rgba(50,66,80,0.07);
}
@media (min-width: 600px) {
  h1, .hero h1 { font-size: 3.2rem; }
}
h2 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 2rem;
  color: var(--secondary);
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}
h3, h4, h5, h6 {
  font-family: var(--font-display);
  color: var(--primary);
}
.hero p, .tagline, h2 + p, h2 + .tagline, .section > p, .hero .cta-button {
  font-family: var(--font-body);
  font-size: 1.18rem;
  color: var(--hot-pink);
  font-weight: bold;
  line-height: 1.6;
}
.tagline {
  color: var(--electric-blue);
  font-size: 1.05em;
  font-style: italic;
  margin-top: -12px;
  margin-bottom: 22px;
}
p, ul, ol {
  margin-bottom: 12px;
  color: var(--primary);
}
a {
  color: var(--hot-pink);
  transition: color 0.2s;
}
a:hover, a:focus {
  color: var(--electric-blue);
}

strong {
  font-weight: 700;
  color: var(--hot-pink);
}
em {
  font-style: italic;
  color: var(--secondary);
}

/* ===================== HEADER & NAVIGATION ===================== */
header {
  background: var(--white);
  box-shadow: var(--shadow);
  padding: 0;
}
header .container {
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  min-height: 80px;
  gap: 28px;
}
header img {
  height: 48px;
  margin-right: 20px;
}
header nav {
  display: flex;
  flex-direction: row;
  gap: 20px;
  align-items: center;
}
header nav a {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--primary);
  padding: 8px 14px;
  border-radius: 32px;
  transition: background 0.15s, color 0.15s;
  font-size: 16px;
}
header nav a:hover, header nav a:focus {
  background: var(--secondary);
  color: var(--white);
}
.cta-button {
  background: var(--electric-blue);
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 900;
  letter-spacing: 1px;
  border-radius: 32px;
  padding: 14px 34px;
  font-size: 1.1rem;
  margin-left: 10px;
  box-shadow: 0 4px 16px 0 rgba(0,207,253,0.10);
  transition: background 0.18s, transform 0.18s, box-shadow 0.18s;
  border: none;
  outline: none;
  text-transform: uppercase;
}
.cta-button:hover, .cta-button:focus {
  background: var(--hot-pink);
  color: var(--white);
  transform: scale(1.05) translateY(-2px);
  box-shadow: 0 7px 22px 0 rgba(234,41,119,0.13);
}

.mobile-menu-toggle {
  display: none;
  background: var(--hot-pink);
  color: var(--white);
  font-size: 2rem;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  transition: background 0.18s;
  margin-left: 14px;
  z-index: 350;
  border: none;
}
.mobile-menu-toggle:hover,
.mobile-menu-toggle:focus {
  background: var(--electric-blue);
}

/* Hamburger menu SHOW on mobile */
@media (max-width: 992px) {
  header nav {
    display: none;
  }
  .cta-button {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
  }
}

/* MOBILE MENU OVERLAY */
.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(32,44,80,0.96);
  z-index: 9999;
  transform: translateX(102vw);
  transition: transform 0.32s cubic-bezier(.82,-0.01,0,1.01);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-end;
  padding: 0;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  margin: 32px 26px 0 0;
  background: var(--hot-pink);
  color: var(--white);
  border-radius: 50%;
  font-size: 2rem;
  width: 44px;
  height: 44px;
  border: none;
  z-index: 10010;
  box-shadow: 0 2px 14px rgba(234,41,119,0.12);
  transition: background 0.2s;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  background: var(--electric-blue);
}
.mobile-nav {
  margin-top: 38px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-end;
  width: 100%;
  padding: 0 36px 0 0;
}
.mobile-nav a {
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: bold;
  padding: 8px 28px;
  border-radius: 40px;
  background: none;
  transition: background 0.18s, color 0.12s;
  margin-bottom: 4px;
}
.mobile-nav a:active, .mobile-nav a:focus, .mobile-nav a:hover {
  background: var(--hot-pink);
  color: var(--white);
}


/* ===================== HERO SECTION =====================*/
.hero {
  background: linear-gradient(90deg, var(--hot-pink) 48%, var(--electric-blue) 100%);
  color: var(--white);
  border-radius: var(--radius);
  padding: 48px 20px 54px 20px;
  margin-bottom: 60px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 18px 64px 0 rgba(50,66,80,0.10);
}
.hero .container {
  flex-direction: row;
  align-items: center;
}
.hero .content-wrapper {
  gap: 22px;
  align-items: flex-start;
  z-index: 2;
  color: var(--white);
}
.hero h1, .hero p {
  color: var(--white);
  text-shadow: 0 4px 18px rgba(32,44,80,0.20);
}
.hero .cta-button {
  background: var(--lime);
  color: var(--hot-pink);
  box-shadow: 0 4px 22px 0 rgba(182,237,53,0.16);
  transition: background 0.17s, color 0.17s;
  margin-top: 14px;
}
.hero .cta-button:hover, .hero .cta-button:focus {
  background: var(--white);
  color: var(--electric-blue);
  box-shadow: 0 8px 22px 0 rgba(0,207,253,0.16);
}

/* ===================== FEATURES GRIDS ===================== */
.feature-grid, .feature-list, .feature-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 18px;
  justify-content: flex-start;
}
.feature-grid li, .feature-list li, .feature-icons li {
  background: var(--white);
  box-shadow: 0 2px 12px rgba(50,66,80,0.06);
  padding: 20px 18px;
  border-radius: var(--radius);
  font-family: var(--font-display);
  color: var(--primary);
  font-weight: 700;
  text-align: center;
  min-width: 124px;
  flex: 1 1 220px;
  min-height: 110px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: box-shadow 0.15s, transform 0.14s, background 0.22s;
  gap: 0.4em;
}
.feature-grid li:hover, .feature-list li:hover, .feature-icons li:hover {
  box-shadow: 0 8px 32px 0 rgba(234,41,119,0.11);
  background: var(--electric-blue);
  color: var(--white);
  transform: translateY(-2px) scale(1.02);
}
.feature-grid img, .feature-icons img {
  height: 38px;
  margin-bottom: 6px;
}
.feature-grid li span, .feature-icons li span {
  font-family: var(--font-body);
  color: var(--hot-pink);
  font-weight: 500;
  font-size: 1.01em;
}
.feature-list li {
  font-size: 1.08rem;
  background: var(--accent);
  box-shadow: none;
  align-items: flex-start;
  text-align: left;
  min-width: 180px;
  padding: 16px 14px 16px 28px;
  position: relative;
  border-left: 6px solid var(--secondary);
}
.feature-list li strong {
  color: var(--primary);
}
.feature-icons li {
  min-width: 110px;
  padding: 16px 10px 12px 18px;
  align-items: center;
}

/* Services highlights */
.service-list, .service-highlight-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 18px;
  justify-content: flex-start;
}
.service-list li, .service-highlight-grid > div {
  flex: 1 1 220px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: 0 1px 6px rgba(50,66,80,0.07);
  padding: 20px 18px 18px 24px;
  font-size: 1.05rem;
  color: var(--primary);
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-family: var(--font-body);
  transition: box-shadow 0.15s, transform 0.14s, background 0.13s;
  margin-bottom: 20px;
}
.service-list li strong, .service-highlight-grid strong {
  font-weight: 800;
  color: var(--hot-pink);
  font-family: var(--font-display);
}
.service-list li span {
  font-weight: 700;
  color: var(--secondary);
  font-size: 1.09em;
}
.service-list li:hover, .service-highlight-grid > div:hover {
  box-shadow: 0 8px 28px 0 rgba(50,66,80,0.15);
  background: var(--secondary);
  color: var(--white);
  transform: translateY(-2px) scale(1.016);
}

/* ===================== TESTIMONIALS ===================== */
.testimonials .container {
  align-items: center;
}
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 28px 28px 24px 28px;
  background: var(--accent);
  border-radius: var(--radius);
  box-shadow: 0 2px 8px rgba(50,66,80,0.06);
  margin-bottom: 20px;
  min-width: 258px;
  max-width: 650px;
  color: var(--dark);
  flex-wrap: wrap;
}
.testimonial-card p {
  color: var(--dark);
  font-size: 1.13rem;
  font-weight: 500;
  font-family: var(--font-body);
  flex: 4 1 75%;
  margin-bottom: 0;
}
.testimonial-card span {
  font-size: 1em;
  color: var(--hot-pink);
  font-family: var(--font-display);
  font-weight: 700;
  white-space: nowrap;
  flex: 2 1 18%;
}
.testimonial-card strong {
  color: var(--primary);
}
@media (max-width: 600px) {
  .testimonial-card { flex-direction: column; align-items: flex-start; gap: 18px; padding: 20px 14px 18px 14px; }
}
/* Contrast for testimonial backgrounds */
.testimonials, .testimonial-card { background: var(--white) !important; }
.testimonial-card p, .testimonial-card span, .testimonial-card strong { color: var(--primary) !important; }

/* ===================== OTHER CONTENT SECTIONS ===================== */
.text-section, .text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
  flex-direction: row;
}
@media (max-width: 768px) {
  .text-image-section, .text-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
}
.expert-bio-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 3px;
}
.expert-bio-list li {
  background: var(--accent);
  border-radius: 12px;
  padding: 12px 22px 12px 18px;
  box-shadow: 0 1px 6px rgba(50,66,80,0.07);
  font-size: 1em;
}
ul, ol {
  margin-left: 0;
  margin-bottom: 8px;
  padding-left: 0;
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 24px 20px;
  margin-bottom: 20px;
  position: relative;
  min-width: 220px;
  display: flex;
  flex-direction: column;
  gap: 13px;
  transition: box-shadow 0.15s, transform 0.15s;
}
.card:hover { box-shadow: 0 6px 22px rgba(0,207,253,0.10); transform: translateY(-2px) scale(1.017); }

.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* ===================== FOOTER ===================== */
footer {
  background: var(--primary);
  color: var(--accent);
  padding: 34px 0 0 0;
}
footer .container {
  align-items: center;
}
footer .content-wrapper {
  align-items: center;
  gap: 12px;
}
footer img {
  height: 42px;
  margin-bottom: 6px;
}
footer nav {
  display: flex;
  gap: 0;
  align-items: center;
  font-family: var(--font-display);
  font-size: 1.09em;
  margin-bottom: 4px;
}
footer nav a {
  color: var(--accent);
  padding: 0 10px;
  border-radius: 14px;
  transition: background 0.1s, color 0.1s;
}
footer nav a:hover, footer nav a:focus {
  background: var(--secondary);
  color: var(--primary);
}
footer p {
  font-size: 0.99em;
  color: var(--accent);
  margin-bottom: 12px;
  font-family: var(--font-body);
}


/* ===================== COOKIE CONSENT BANNER ===================== */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 10060;
  background: var(--primary);
  color: var(--accent);
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px 17px 24px;
  box-shadow: 0 -1px 20px rgba(32,44,80,0.15);
  font-family: var(--font-body);
  font-size: 1em;
  min-height: 62px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s;
}
.cookie-banner.active {
  opacity: 1;
  pointer-events: auto;
  animation: slideUpIn 0.4s cubic-bezier(.68,.12,.29,.89);
}
@keyframes slideUpIn {
  from { transform: translateY(80px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.cookie-banner-content {
  display: flex;
  flex-direction: column;
  gap: 9px;
  max-width: 470px;
}
.cookie-banner-buttons {
  display: flex;
  flex-direction: row;
  gap: 16px;
  align-items: center;
}
.cookie-banner .cookie-btn {
  font-family: var(--font-display);
  font-weight: 700;
  border-radius: 28px;
  border: none;
  padding: 10px 22px;
  font-size: 1em;
  transition: background 0.17s, color 0.17s;
  outline: none;
}
.cookie-banner .accept-all {
  background: var(--lime);
  color: var(--primary);
}
.cookie-banner .accept-all:hover, .cookie-banner .accept-all:focus {
  background: var(--electric-blue);
  color: var(--white);
}
.cookie-banner .reject-all {
  background: var(--hot-pink);
  color: var(--white);
}
.cookie-banner .reject-all:hover, .cookie-banner .reject-all:focus {
  background: var(--secondary);
  color: var(--primary);
}
.cookie-banner .settings {
  background: var(--white);
  color: var(--hot-pink);
  border: 2px solid var(--hot-pink);
}
.cookie-banner .settings:hover, .cookie-banner .settings:focus {
  background: var(--accent);
  color: var(--primary);
  border-color: var(--primary);
}

/* COOKIE MODAL */
.cookie-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(32,44,80,0.84);
  z-index: 10100;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.22s;
}
.cookie-modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
  animation: modalPopIn 0.3s cubic-bezier(.6,.04,.46,.99);
}
@keyframes modalPopIn {
  from { transform: scale(0.93) translateY(40px); opacity: 0; }
  to { transform: scale(1) translateY(0); opacity: 1; }
}
.cookie-modal {
  background: var(--accent);
  color: var(--primary);
  padding: 38px 30px 28px 30px;
  border-radius: 22px;
  min-width: 320px;
  max-width: 98vw;
  width: 410px;
  box-shadow: 0 10px 42px rgba(50,66,80,0.23);
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: relative;
}
.cookie-modal-close {
  position: absolute;
  top: 20px;
  right: 18px;
  background: var(--hot-pink);
  color: var(--white);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 1.35rem;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.13s;
}
.cookie-modal-close:hover, .cookie-modal-close:focus { background: var(--electric-blue); }
.cookie-modal h3 {
  margin-bottom: 10px;
  color: var(--hot-pink);
  font-family: var(--font-display);
  font-size: 1.32rem;
  font-weight: 800;
}
.cookie-category {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid var(--secondary);
}
.cookie-category:last-child { border-bottom: none; }
.cookie-category span {
  font-size: 1.08em;
  font-weight: 700;
}
.cookie-category input[type="checkbox"] {
  accent-color: var(--hot-pink);
  width: 22px;
  height: 22px;
}
.cookie-modal-buttons {
  display: flex;
  gap: 16px;
}
.cookie-modal-buttons .cookie-btn {
  font-family: var(--font-display);
  border-radius: 24px;
  border: none;
  padding: 9px 22px;
  font-weight: bold;
  font-size: 1.04em;
  background: var(--lime);
  color: var(--primary);
  transition: background 0.14s, color 0.14s;
}
.cookie-modal-buttons .cookie-btn:hover,
.cookie-modal-buttons .cookie-btn:focus {
  background: var(--hot-pink);
  color: var(--white);
}

/* ===================== RESPONSIVE MEDIA QUERIES ===================== */
@media (max-width: 992px) {
  .container { max-width: 100%; padding: 0 12px; }
}
@media (max-width: 786px) {
  header .container { flex-direction: row; gap: 7px; }
  .section, section { padding: 32px 8px; }
  .content-wrapper { gap: 20px; }
  .service-list, .feature-grid, .feature-list, .feature-icons, .service-highlight-grid { gap: 16px; }
}
@media (max-width: 650px) {
  .hero {
    padding: 28px 6px;
    border-radius: 0 0 var(--radius) var(--radius);
  }
  h1, .hero h1 { font-size: 2.0rem; }
  h2 { font-size: 1.3rem; }
  .footer .container { padding: 0 7px; }
  .testimonial-card, .feature-grid li, .service-list li {
    padding: 12px 8px;
    min-width: 0;
  }
  .service-highlight-grid > div { min-width: 0; }
}
@media (max-width: 500px) {
  header .container, .container, .footer .container {padding: 0 2vw;}
  .hero h1 {font-size: 1.4rem;}
  .cta-button, .cookie-banner .cookie-btn, .cookie-modal-buttons .cookie-btn {font-size: 0.97em; padding: 10px 13px;}
}

/* ===================== UTILITY CLASSES (TO SUPPORT LAYOUT) ===================== */
.flex-row { display: flex; flex-direction: row; }
.flex-column { display: flex; flex-direction: column; }
.align-center { align-items: center; }
.flex-wrap { flex-wrap: wrap; }
.gap-20 { gap: 20px; }

/* ===================== ANIMATION (MICRO-INTERACTIONS) ===================== */
.cta-button, .service-list li, .feature-grid li, .feature-list li, .service-highlight-grid > div, .testimonial-card, .mobile-menu-toggle,
.mobile-menu-close, .cookie-banner .cookie-btn {
  transition: box-shadow 0.15s, background 0.16s, color 0.13s, transform 0.16s;
}
.cta-button:active, .service-list li:active, .feature-grid li:active, .mobile-menu-toggle:active {
  transform: scale(0.98) translateY(1px);
  box-shadow: none;
}

/* ===================== FORM ELEMENTS ===================== */
input, textarea, select {
  border-radius: 10px;
  border: 1.5px solid var(--secondary);
  padding: 9px 12px; 
  color: var(--primary);
  font-family: var(--font-body);
  font-size: 1em;
  background: var(--accent);
  margin-bottom: 18px;
  transition: border 0.13s;
}
input:focus, textarea:focus, select:focus { border-color: var(--hot-pink); outline: none; }

/* ===================== CARD ALIGNMENT HELPERS ===================== */
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* ===================== ACCESSIBILITY ===================== */
:focus {
  outline: 2.5px solid var(--lime);
  outline-offset: 1px;
}

/* ===================== CUSTOM SCROLLBAR FOR SITE ===================== */
::-webkit-scrollbar        { width: 11px; background: var(--accent); }
::-webkit-scrollbar-thumb  { background: var(--secondary); border-radius: 8px; }
::-webkit-scrollbar-thumb:hover { background: var(--hot-pink); }

/* ===================== HELPER: HIDE visually (for potential JS) ===================== */
.visually-hidden {
  position: absolute !important; width: 1px !important; height: 1px !important;
  margin: -1px; padding: 0; overflow: hidden; clip: rect(0 0 0 0); border: 0;
}
