/* == CSS 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;
}
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1.6;
  font-family: 'Open Sans', Arial, sans-serif;
  color: #1B263B;
  background: #fff;
}
*, *:before, *:after {
  box-sizing: inherit;
}
a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}
ul, ol {
  list-style: none;
}
img {
  max-width: 100%;
  display: block;
  height: auto;
}

/* == CSS VARIABLES == */
:root {
  --color-primary: #13376B;
  --color-secondary: #D8A13B;
  --color-accent: #F4F4F4;
  --color-electric: #02C8FA;
  --color-pink: #F52270;
  --color-green: #27D976;
  --color-purple: #702DF2;
  --color-dark: #171A29;
  --color-light: #FFFFFF;
  --color-footer-bg: #111C31;
  --color-testimonial-bg: #F4F4F4;
  --color-shadow: rgba(19,55,107,0.10);
  --font-display: 'Montserrat', Arial, sans-serif;
  --font-body: 'Open Sans', Arial, sans-serif;
}

html { font-size: 16px; }

/* == LAYOUT CONTAINERS & SPACING == */
.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 16px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: transparent;
  border-radius: 24px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.card-container, .features-cards, .card-grid, .content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: var(--color-light);
  box-shadow: 0 4px 14px var(--color-shadow);
  border-radius: 18px;
  overflow: hidden;
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
}
.features-cards {
  gap: 24px;
}
.feature-card {
  flex: 1 1 280px;
  min-width: 240px;
  background: var(--color-electric);
  color: var(--color-dark);
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(2,200,250,0.13);
  padding: 28px 24px 24px 24px;
  margin-bottom: 20px;
  transition: transform .13s, box-shadow .22s;
}
.feature-card:hover {
  transform: translateY(-6px) scale(1.04) rotate(-1deg);
  box-shadow: 0 8px 24px rgba(2,200,250,0.24), 0 2px 12px rgba(245,34,112,.13);
  z-index: 1;
}

.text-section {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .text-image-section,
  .content-wrapper,
  .card-container,
  .features-cards,
  .card-grid,
  .content-grid {
    flex-direction: column;
    gap: 20px;
  }
}

/* == HEADER & NAVIGATION == */
header {
  width: 100%;
  background: var(--color-light);
  box-shadow: 0 3px 16px var(--color-shadow);
  position: sticky;
  top: 0;
  z-index: 99;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 18px 16px;
  gap: 16px;
}
.logo img {
  height: 46px;
  width: auto;
  display: block;
}
.main-nav {
  display: flex;
  gap: 20px;
  align-items: center;
}
.main-nav a {
  font-family: var(--font-display);
  font-weight: bold;
  font-size: 1rem;
  letter-spacing: 0.025em;
  padding: 10px 8px;
  color: var(--color-primary);
  border-radius: 6px;
  transition: background .19s, color .15s;
}
.main-nav a:hover,
.main-nav a:focus {
  background: var(--color-secondary);
  color: var(--color-light);
}
.main-nav .btn-primary {
  background: var(--color-pink);
  color: #fff;
  padding: 10px 28px;
  margin-left: 10px;
  border-radius: 25px;
  font-weight: 700;
  font-size: 1.1rem;
  box-shadow: 0 2px 12px rgba(245,34,112,0.13);
  transition: background 0.22s, color 0.22s, transform 0.10s;
}
.main-nav .btn-primary:hover {
  background: var(--color-secondary);
  color: #fff;
  transform: scale(1.07) rotate(-2deg);
}
.mobile-menu-toggle {
  display: none;
  font-size: 2rem;
  background: var(--color-electric);
  color: #fff;
  border: none;
  border-radius: 16px;
  padding: 6px 16px;
  cursor: pointer;
  transition: background 0.17s;
}
.mobile-menu-toggle:hover {
  background: var(--color-pink);
  color: #fff;
}

/* == MOBILE NAVIGATION == */
.mobile-menu {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: var(--color-dark);
  color: #fff;
  z-index: 120;
  pointer-events: none;
  opacity: 0;
  transform: translateX(100%);
  transition: opacity .19s, transform 0.38s cubic-bezier(.77, .21, .27, .97);
}
.mobile-menu.open {
  pointer-events: auto;
  opacity: 1;
  transform: translateX(0);
}
.mobile-menu-close {
  background: none;
  color: #fff;
  font-size: 2rem;
  align-self: flex-end;
  margin: 16px 24px 0 0;
  border: none;
  cursor: pointer;
  transition: color 0.16s;
}
.mobile-menu-close:hover {
  color: var(--color-electric);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  margin: 48px 0 0 40px;
}
.mobile-nav a {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: #fff;
  padding: 11px 0 11px 0;
  width: 100%;
  border-radius: 0 22px 22px 0;
  transition: background 0.16s, color 0.13s, padding-left 0.12s;
}
.mobile-nav a:hover,
.mobile-nav a:focus {
  background: var(--color-electric);
  color: var(--color-dark);
  padding-left: 14px;
}

@media (max-width: 1020px) {
  .main-nav {
    gap: 14px;
  }
}
@media (max-width: 900px) {
  .main-nav {
    gap: 10px;
  }
}
@media (max-width: 860px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle { display: block; }
}

/* == TYPOGRAPHY == */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 900;
  color: var(--color-primary);
  line-height: 1.12;
}
h1 {
  font-size: 2.75rem;
  letter-spacing: -1px;
  margin-bottom: 14px;
}
h2 {
  font-size: 2.1rem;
  margin-bottom: 4px;
}
h3 {
  font-size: 1.35rem;
  color: var(--color-pink);
}
h4, h5, h6 {
  font-size: 1.05rem;
}
@media (max-width: 600px) {
  h1 { font-size: 2.0rem; }
  h2 { font-size: 1.5rem; }
  h3 { font-size: 1.1rem; }
}

p, ul li, ol li, span, blockquote {
  font-family: var(--font-body);
  font-size: 1.07rem;
  color: var(--color-dark);
  margin-bottom: 0.85em;
}

b,strong {
  color: var(--color-secondary);
}

ul li, ol li {
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}

blockquote {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--color-primary);
  font-style: italic;
  font-weight: 600;
  border-left: 6px solid var(--color-pink);
  padding-left: 16px;
  margin-bottom: 12px;
}

/* == BUTTONS & CTAS == */
.btn-primary, .btn-secondary {
  font-family: var(--font-display);
  font-weight: 800;
  border-radius: 30px;
  padding: 13px 40px;
  margin-top: 18px;
  font-size: 1.18rem;
  letter-spacing: 0.02em;
  border: none;
  display: inline-block;
  cursor: pointer;
  box-shadow: 0 4px 16px 0 rgba(19,55,107,0.08);
  transition: background 0.2s, color 0.16s, transform 0.16s;
}
.btn-primary {
  background: var(--color-secondary);
  color: var(--color-dark);
}
.btn-primary:hover, .btn-primary:focus {
  background: var(--color-pink);
  color: #fff;
  transform: translateY(-2px) scale(1.035);
}
.btn-secondary {
  background: var(--color-pink);
  color: #fff;
}
.btn-secondary:hover, .btn-secondary:focus {
  background: var(--color-electric);
  color: var(--color-dark);
  transform: translateY(-2px) scale(1.035);
}

/* == HERO SECTIONS == */
.section:first-of-type {
  background: linear-gradient(110deg, #F4F4F4 45%, #D8A13B 100%);
  box-shadow: 0 10px 36px rgba(245,34,112,0.03);
  border-radius: 0 0 40px 40px;
  margin-bottom: 50px;
}
.section:first-of-type h1 {
  color: var(--color-pink);
  font-size: 2.4rem;
}
@media (max-width: 680px) {
  .section:first-of-type {
    border-radius: 0 0 24px 24px;
    padding-top: 48px;
  }
}

/* == FEATURES, CARDS, AND SECTIONS == */
.features-cards {
  gap: 24px;
  margin-bottom: 22px;
}
.feature-card {
  background: var(--color-accent);
  border-left: 8px solid var(--color-electric);
  border-radius: 14px;
  color: var(--color-dark);
  box-shadow: 0 3px 13px 0 rgba(19,55,107,0.071);
  transition: border-color 0.18s, box-shadow 0.21s, transform .13s;
  min-width: 260px;
}
.feature-card h3 { color: var(--color-purple); }
.feature-card:hover { border-color: var(--color-pink); }

.card {
  padding: 22px 24px;
}
.card-content > * { margin-bottom: 10px; }

/* == TESTIMONIALS == */
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: var(--color-testimonial-bg);
  border-radius: 20px;
  margin-bottom: 20px;
  box-shadow: 0 2px 14px 0 rgba(19,55,107,0.10);
  border-left: 6px solid var(--color-secondary);
  font-family: var(--font-body);
  color: #191B25;
}
.testimonial-card blockquote {
  font-size: 1.1rem;
  color: var(--color-dark);
  margin-bottom: 0;
}
.testimonial-card span {
  font-size: 1.05rem;
  color: var(--color-pink);
  font-weight: bold;
  font-family: var(--font-display);
  margin-left: 10px;
}

/* == PARTICIPANT STORIES and QUOTES == */
.participant-story {
  background: var(--color-accent);
  border-left: 5px solid var(--color-pink);
  border-radius: 14px;
  box-shadow: 0 2px 8px var(--color-shadow);
  padding: 18px 24px;
  margin-bottom: 18px;
}
.quotes {
  background: var(--color-accent);
  border-radius: 14px;
  margin-bottom: 20px;
  padding: 15px 28px;
  color: var(--color-dark);
  box-shadow: 0 1px 6px rgba(19,55,107,0.06);
}
.quotes p {
  font-family: var(--font-display);
  font-size: 1.11rem;
  color: var(--color-purple);
  font-style: italic;
  margin-bottom: 10px;
}

/* == FOOTER == */
footer {
  background: var(--color-footer-bg);
  color: #fff;
  padding: 32px 0 12px 0;
  border-radius: 38px 38px 0 0;
  box-shadow: 0 -4px 24px rgba(19,55,107,0.09);
  margin-top: 36px;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin-bottom: 14px;
  justify-content: center;
}
.footer-nav a {
  color: #fff;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.025rem;
  opacity: 0.92;
  transition: color .18s, opacity .17s, text-shadow .11s;
}
.footer-nav a:hover, .footer-nav a:focus { color: var(--color-electric); opacity: 1; text-shadow:0 2px 8px #02C8FA22; }
.contact-footer {
  display: flex;
  gap: 14px;
  font-size: 1rem;
  justify-content: center;
  align-items: center;
  margin-bottom: 16px;
  flex-wrap: wrap;
  color: #fff;
  opacity: 0.87;
}


.contact-footer span{
	color: #fff
}
.footer-copy {
  text-align: center;
  font-size: 0.93rem;
  color: #fff;
  opacity: 0.64;
}

/* == ICON STYLE == */
ul li img, .text-section img {
  width: 30px;
  margin-right: 8px;
  vertical-align: middle;
}
.map-embed img {
  width: 130px;
  border-radius: 11px;
  box-shadow: 0 2px 8px rgba(2,200,250,0.20);
}

/* == MISC == */
::-webkit-input-placeholder { color: #8bb2e2; }
:-moz-placeholder { color: #8bb2e2; }
::-moz-placeholder { color: #8bb2e2; }
:-ms-input-placeholder { color: #8bb2e2; }

/* == COOKIE BANNER == */
.cookie-banner {
  width: 100vw;
  position: fixed;
  bottom: 0; left: 0;
  background: var(--color-dark);
  color: #fff;
  z-index: 3500;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 18px 22px;
  box-shadow: 0 -2px 18px var(--color-shadow);
  gap: 30px;
  animation: rise-up 0.54s cubic-bezier(.9, .18, .64, .97);
}
@keyframes rise-up {
  from { transform: translateY(100%); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.cookie-banner p {
  color: #fff;
  margin: 0;
  font-size: 1.04rem;
  flex: 2 2 auto;
}
.cookie-banner-actions {
  display: flex;
  gap: 18px;
  flex-direction: row;
}
.cookie-banner-actions button {
  border: none;
  border-radius: 28px;
  padding: 9px 24px;
  font-size: 1rem;
  font-family: var(--font-display);
  font-weight: 700;
  cursor: pointer;
  margin-left: 0;
  transition: background .18s, color .13s, transform .13s;
}
.cookie-accept {
  background: var(--color-green);
  color: #fff;
}
.cookie-accept:hover { background: var(--color-secondary); color: var(--color-dark); transform: scale(1.05); }
.cookie-reject {
  background: var(--color-pink);
  color: #fff;
}
.cookie-reject:hover { background: var(--color-secondary); color: var(--color-dark); transform: scale(1.05);}
.cookie-settings {
  background: var(--color-electric);
  color: var(--color-dark);
}
.cookie-settings:hover { background: var(--color-secondary); color: #111; transform: scale(1.05);}

@media (max-width: 740px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    padding: 14px 10px;
  }
}

/* == COOKIE PREFERENCES MODAL == */
.cookie-modal-overlay {
  position: fixed;
  top:0; left:0; width:100vw; height:100vh;
  background: rgba(30,30,35,0.58);
  z-index: 3550;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeInModal 0.31s cubic-bezier(.52, .11, .24, .99);
}
@keyframes fadeInModal {
  from { opacity: 0; }
  to { opacity: 1; }
}
.cookie-modal {
  background: #fff;
  border-radius: 20px;
  padding: 36px 28px 24px 28px;
  max-width: 390px;
  min-width: 270px;
  width: 95vw;
  box-shadow: 0 8px 40px #13376b20;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.cookie-modal h2 {
  color: var(--color-pink);
  font-size: 1.7rem;
  margin-bottom: 9px;
  font-family: var(--font-display);
}
.cookie-modal .modal-close {
  position: absolute;
  top: 13px;
  right: 15px;
  background: none;
  border: none;
  font-size: 1.7rem;
  color: var(--color-pink);
  cursor: pointer;
  z-index: 2;
  transition: color .19s;
}
.cookie-modal .modal-close:hover {
  color: var(--color-electric);
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 13px;
  font-family: var(--font-body);
  font-size: 1.1rem;
  margin-bottom: 10px;
}
.cookie-category label { font-weight: 600; }
.cookie-category input[type=checkbox] {
  accent-color: var(--color-electric);
}
.cookie-category.essential label {
  color: var(--color-green);
  opacity: 0.79;
  font-weight: bold;
}
.cookie-category.essential input {
  display: none;
}
.cookie-modal-btns {
  display: flex;
  gap: 14px;
  justify-content: flex-end;
}
.cookie-modal-btns button {
  border: none;
  border-radius: 22px;
  padding: 9px 22px;
  font-family: var(--font-display);
  font-weight: bold;
  font-size: 1rem;
  background: var(--color-secondary);
  color: #111;
  cursor: pointer;
  transition: background .15s;
}
.cookie-modal-btns button:hover {
  background: var(--color-pink);
  color: #fff;
}

/* == RESPONSIVE == */
@media (max-width: 900px) {
  .footer-nav, .contact-footer {
    flex-direction: column;
    gap: 10px;
    align-items: center;
  }
  .feature-card, .card {
    min-width: 90%;
  }
}
@media (max-width: 650px) {
  .container {
    padding: 0 2vw;
  }
  .section {
    padding: 20px 3vw;
    margin-bottom: 38px;
  }
}

/* == SCROLLBAR == */
body {
  scrollbar-color: var(--color-secondary) var(--color-accent);
  scrollbar-width: thin;
}
::-webkit-scrollbar {
  width: 10px; background: var(--color-accent);
}
::-webkit-scrollbar-thumb {
  background: var(--color-pink);
  border-radius: 5px;
}

/* == ANIMATIONS & MICRO-INTERACTIONS == */
.btn-primary, .btn-secondary, .main-nav a, .mobile-nav a, .feature-card {
  transition: background .20s, color .13s, box-shadow .22s, transform .14s;
}
.testimonial-card, .feature-card, .card, .participant-story {
  transition: box-shadow 0.19s, transform .13s;
}
.testimonial-card:hover {
  box-shadow: 0 10px 28px 0 rgba(216,161,59,0.22);
  border-color: var(--color-pink);
  transform: scale(1.03);
  z-index: 1;
}

/* == INPUTS (for contact, future-proofing) == */
input, textarea, select {
  font-family: var(--font-body);
  border-radius: 8px;
  border: 1.5px solid var(--color-electric);
  padding: 10px 14px;
  font-size: 1.05rem;
  margin-bottom: 14px;
  background: #fafbfc;
  outline-color: var(--color-pink);
  transition: border-color .14s;
}
input:focus, textarea:focus, select:focus {
  border-color: var(--color-pink);
}

/* == FORM BUTTON OVERRIDE == */
form button, input[type=submit] {
  font-family: var(--font-display);
  font-weight: 900;
  background: var(--color-electric);
  color: #fff;
  border: none;
  border-radius: 16px;
  padding: 12px 34px;
  cursor: pointer;
  margin-top: 10px;
}
form button:hover, input[type=submit]:hover {
  background: var(--color-pink);
  color: #fff;
}

/* == PRINT SUPPORT == */
@media print {
  header, .mobile-menu, .cookie-banner, .cookie-modal-overlay, footer { display: none !important; }
  body, main { color:#222; background:#fff; }
}
