/* -------------------------
   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;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1.4;
  background: #F3F2F0;
  color: #222;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  font-size: 16px;
}
ul, ol {
  list-style: none;
}
a {
  color: inherit;
  text-decoration: none;
  transition: color 0.15s;
}
img {
  max-width: 100%;
  display: block;
  border: 0;
}
button, input, select, textarea {
  font-family: inherit;
  font-size: 1rem;
  background: none;
  border: none;
  outline: none;
  color: inherit;
  box-shadow: none;
  appearance: none;
}
button {
  cursor: pointer;
}

/* -------------------------
   BRAND VARIABLES & UTILS
------------------------- */
:root {
  --color-primary: #224E39;
  --color-secondary: #F9E552;
  --color-accent: #F3F2F0;
  --color-electric-blue: #11C8F2;
  --color-hot-pink: #FF3D8E;
  --color-lime: #BBFF10;
  --color-deep-green: #224E39;
  --color-light: #FDFBF9;
  --color-dark: #161616;

  --font-display: 'Montserrat', Arial, Helvetica, sans-serif;
  --font-body: 'Open Sans', Arial, Helvetica, sans-serif;
}

/* Font-face loading */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@800;700;600;400&family=Open+Sans:wght@400;600;700&display=swap');

/* Helper classes */
.text-center { text-align: center; }
.bold { font-weight: 700; }
.uppercase { text-transform: uppercase; }

/* Typography scale */
h1 {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--color-primary);
  margin-bottom: 16px;
  letter-spacing: -1px;
  line-height: 1.15;
  text-shadow: 0 2px 8px rgba(17,200,242,.08);
}
@media (min-width:600px) {
  h1 { font-size: 3rem; }
}
h2 {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-hot-pink);
  margin-bottom: 14px;
  line-height: 1.2;
  letter-spacing: -.5px;
}
h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 10px;
  line-height:1.25;
}
h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 600;
}
p,li {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--color-dark);
}
strong {
  font-weight: bold;
  color: var(--color-primary);
}

/* -------------------------
   CONTAINER & LAYOUT
------------------------- */
.container {
  width: 100%;
  max-width: 1220px;
  margin: 0 auto;
  padding: 0 18px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--color-accent);
  border-radius: 26px;
  box-shadow: 0 8px 32px rgba(34,78,57,0.07), 0 2px 8px rgba(255,61,142, 0.03);
  transition: box-shadow .25s;
}
.section:last-child {
  margin-bottom: 0;
}

/* -------------------------
   HEADER & NAVIGATION
------------------------- */
header {
  background: #fff;
  box-shadow: 0 2px 16px rgba(34,78,57,0.08);
  position: sticky;
  top: 0;
  z-index: 50;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 18px 18px;
}
header img[alt="Vibrant Climb"] {
  height: 54px;
  width: auto;
  margin-right: 18px;
}
header nav {
  display: flex;
  gap: 22px;
}
header nav a {
  font-family: var(--font-display);
  color: var(--color-primary);
  font-weight: 600;
  font-size: 1.08rem;
  padding: 6px 0 6px 0;
  border-bottom: 3px solid transparent;
  transition: color .16s, border .19s;
  position: relative;
}
header nav a:hover,
header nav a:focus {
  color: var(--color-hot-pink);
  border-bottom: 3px solid var(--color-secondary);
}

.cta-btn {
  font-family: var(--font-display);
  display: inline-block;
  font-size: 1.1rem;
  font-weight: 800;
  background: var(--color-hot-pink);
  color: #fff;
  border-radius: 32px;
  box-shadow: 0 3px 16px rgba(249,229,82, 0.14);
  padding: 12px 40px;
  letter-spacing: 1px;
  margin-left: 16px;
  transition: background .21s, transform .17s, box-shadow .19s;
  border: 0;
  text-align: center;
  position: relative;
}
.cta-btn:hover, .cta-btn:focus {
  background: var(--color-electric-blue);
  color: #222;
  transform: translateY(-2px) scale(1.04) rotate(-2deg);
  box-shadow: 0 5px 40px rgba(17,200,242, .15);
}


/* -------------
   HERO SECTION
------------- */
.hero {
  padding: 0;
  background: linear-gradient(90deg, #F9E552 0% 60%, #fff 100%);
  border-radius: 0 0 40px 40px;
  margin-bottom: 44px;
  box-shadow: 0 2px 24px rgba(249,229,82, 0.11);
}
.hero .container {
  align-items: center;
  justify-content: center;
  min-height: 260px;
}
.hero .content-wrapper {
  align-items: center;
  gap: 22px;
}
.hero h1 {
  color: var(--color-deep-green);
  font-size: 2.5rem;
  line-height: 1.13;
}
.hero p,#hero-subheadline {
  color: var(--color-hot-pink);
  font-size: 1.24rem;
  font-family: var(--font-body);
  font-weight: 600;
  margin: 0 0 12px 0;
  text-align: center;
  max-width: 620px;
}
.hero .cta-btn {
  margin-left: 0;
  margin-top: 6px;
}

/* --------------------------
   FEATURE & CARD COMPONENTS
-------------------------- */
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: flex-start;
  margin-bottom: 0;
}
.feature {
  background: #fff;
  border-radius: 22px;
  padding: 28px 22px 22px 22px;
  box-shadow: 0 2px 14px rgba(17,200,242,.12);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-width: 250px;
  flex: 1 1 220px;
  gap: 12px;
  transition: box-shadow .22s, transform .22s;
  margin-bottom: 20px;
}
.feature img {
  height: 48px; width: 48px;
  margin-bottom: 8px;
}
.feature:hover {
  box-shadow: 0 8px 36px #FF3D8E22, 0 4px 12px #F9E55244;
  transform: translateY(-4px) scale(1.03) rotate(-1.5deg);
}
.feature h3 {
  color: var(--color-electric-blue);
  font-size: 1.25rem;
  margin-bottom: 4px;
  font-family: var(--font-display);
}
.feature p {
  color: var(--color-dark);
}

/* CARD LAYOUTS */
.card-container { 
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 3px 18px rgba(34,78,57,.07);
  overflow: hidden;
  transition: box-shadow .2s, transform .2s;
  display: flex;
  flex-direction: column;
}
.card:hover {
  box-shadow: 0 10px 46px #BBFF1088, 0 2px 8px #FF3D8E22;
  transform: translateY(-3px) scale(1.02) rotate(-0.5deg);
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 22px 22px;
  gap: 12px;
}


/* FLEX LAYOUT CLASSES */
.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-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 20px;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  background: #fff;
  padding: 28px 26px 22px 26px;
  border-radius: 20px;
  box-shadow: 0 4px 32px #11C8F220, 0 2px 8px #224E3915;
  min-width: 260px;
  flex: 1 1 260px;
  font-size: 1rem;
  margin-bottom: 20px;
  transition: box-shadow .18s, transform .18s;
  border: 2px solid var(--color-electric-blue);
}
.testimonial-card:hover {
  box-shadow: 0 8px 46px #F9E55288, 0 2px 8px #FF3D8E22;
  transform: rotate(0.7deg) scale(1.015);
}
.testimonial-card p {
  color: #222;
  font-size: 1.08rem;
  font-family: var(--font-body);
  margin-bottom: 10px;
}
.testimonial-meta {
  color: var(--color-primary);
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
}

/* Specific price highlight */
.price {
  color: var(--color-hot-pink);
  font-weight: 700;
  margin-left: 7px;
  font-size: 1.06em;
}

/* SERVICE & TEXT SECTIONS */
.service-list, .service-list ul {
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.service-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--color-primary);
  background: #fff;
  border-radius: 10px;
  padding: 10px 16px;
  font-family: var(--font-body);
  font-size: 1rem;
  box-shadow: 0 1px 7px #224E3910;
}

.text-section {
  display: flex;
  flex-direction: column;
  gap: 14px;
  color: #1d1d1d;
}
.text-section ul {
  margin-left: 24px;
  gap: 8px;
}
.text-section ul li {
  padding-left: 0;
  list-style-type: disc;
  background: none;
  color: #444;
  font-size: 1rem;
}

.contact-summary, .team-profiles {
  display: flex;
  flex-direction: column;
  gap: 14px;
  font-size: 1.05rem;
}
.contact-summary ul, .team-profiles ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.contact-summary li img {
  height: 18px;
  width: 18px;
  margin-right: 7px;
  vertical-align: middle;
}

.social-links {
  display: flex;
  gap: 16px;
  align-items: center;
  margin-top: 15px;
}
.social-links a img {
  width: 30px;
  height: 30px;
  filter: drop-shadow(0 1px 8px #224E3930);
  transition: filter .2s;
}
.social-links a:hover img {
  filter: saturate(2) drop-shadow(0 2px 16px #FF3D8E40);
}


/* ---------------
   FOOTER
--------------- */
footer {
  background: #224E39;
  color: #fff;
  padding: 38px 0 24px 0;
  border-radius: 32px 32px 0 0;
  box-shadow: 0 -2px 24px #224E3937;
  margin-top: 40px;
}
footer .container {
  align-items: flex-start;
  gap: 12px;
}
footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-bottom: 8px;
  font-size: 1.07rem;
}
footer nav a {
  color: #F9E552;
  font-family: var(--font-display);
  font-weight: 600;
  transition: color .15s;
  text-underline-offset: 3px;
}
footer nav a:hover {
  color: #FF3D8E;
}
footer p {
  color: #fff;
  font-size: .98rem;
}


/* ----------------------
   MOBILE NAVIGATION
---------------------- */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 21px;
  right: 22px;
  z-index: 120;
  width: 48px;
  height: 48px;
  background: var(--color-hot-pink);
  color: #fff;
  border-radius: 50%;
  border: 0;
  font-size: 2.1rem;
  transition: background 0.2s, box-shadow 0.2s, transform .18s;
  box-shadow: 0 3px 16px #FF3D8E38;
  align-items: center;
  justify-content: center;
}
.mobile-menu-toggle:active {
  background: var(--color-electric-blue);
  transform: scale(.92) rotate(-6deg);
}

.mobile-menu {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  background: #fff;
  box-shadow: 0 16px 60px #224E3938;
  z-index: 200;
  translate: none;
  transition: transform .38s cubic-bezier(.5,.2,.1,1.12);
  transform: translateX(-105vw);
  opacity: 0;
  pointer-events: none;
}
.mobile-menu.active {
  transform: translateX(0);
  opacity: 1;
  pointer-events: all;
}
.mobile-menu-close {
  position: absolute;
  top: 18px;
  right: 24px;
  border: 0;
  background: var(--color-electric-blue);
  color: #fff;
  border-radius: 50%;
  width: 44px; height: 44px;
  font-size: 2rem;
  transition: background .15s, transform .18s;
  z-index: 220;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: var(--color-hot-pink);
  transform: rotate(8deg) scale(1.09);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 26px;
  align-items: flex-start;
  padding-top: 85px;
  padding-left: 36px;
}
.mobile-nav a {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-primary);
  padding: 6px 0;
  display: block;
  width: 85vw;
  border-bottom: 2px solid transparent;
  transition: color .16s, border .19s, background .15s;
  border-radius: 6px;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: var(--color-hot-pink);
  border-bottom: 2px solid var(--color-secondary);
  background: #F9E55222;
}

@media (max-width: 990px) {
  .container {
    max-width: 96vw;
  }
}
@media (max-width: 900px) {
  header .container {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 5px;
  }
  header nav {
    gap: 10px;
  }
}
@media (max-width: 768px) {
  header .container {
    flex-direction: row;
    gap: 0;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
    padding: 10px 3vw;
  }
  header nav {
    display: none !important;
  }
  .cta-btn {
    margin-left: 0;
    font-size: 1.05rem;
    padding: 10px 28px;
  }
  .mobile-menu-toggle {
    display: flex;
  }
  .hero .content-wrapper {
    padding-bottom: 0;
  }
  .feature-grid {
    flex-direction: column;
    gap: 18px;
  }
  .testimonial-list {
    flex-direction: column;
    gap: 16px;
  }
  .service-list, .service-list ul {
    gap: 10px;
  }
  .section {
    margin-bottom: 40px;
    padding: 30px 8px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
  }
  .social-links {
    margin-bottom: 13px;
  }
}

@media (max-width: 520px) {
  h1 { font-size: 1.68rem; }
  h2 { font-size: 1.22rem; }
  .section { padding: 20px 4px; margin-bottom: 22px; }
  .feature,.testimonial-card { min-width: unset; }
  .container { padding: 0 2vw; }
}

/* Hide mobile menu toggle button on desktop */
@media (min-width: 769px) {
  .mobile-menu-toggle {
    display: none !important;
  }
  .mobile-menu {
    display: none !important;
  }
}


/* ---------------
   COOKIE BANNER
--------------- */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0;
  width: 100vw;
  background: var(--color-dark);
  color: #fff;
  z-index: 5000;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  gap: 24px;
  padding: 18px 8vw 22px 8vw;
  box-shadow: 0 -2px 22px #11C8F240;
  opacity: 1;
  transform: translateY(0);
  transition: opacity .3s, transform .3s;
  font-family: var(--font-body);
  font-size: 1rem;
}
.cookie-banner.hide {
  opacity: 0;
  transform: translateY(200px);
  pointer-events: none;
}
.cookie-banner__msg {
  flex: 1 1 200px;
  max-width: 600px;
}
.cookie-banner__actions {
  display: flex;
  gap: 14px;
}
.cookie-btn {
  font-size: 1rem;
  font-family: var(--font-display);
  border: 0;
  border-radius: 22px;
  background: var(--color-hot-pink);
  color: #fff;
  font-weight: 700;
  padding: 10px 30px;
  cursor: pointer;
  transition: background .14s, color .15s, transform .14s;
  box-shadow: 0 1px 7px #FF3D8E44;
  margin-right: 0;
}
.cookie-btn.secondary {
  background: var(--color-secondary);
  color: #224E39;
  font-weight: 700;
}
.cookie-btn.settings {
  background: var(--color-electric-blue);
  color: #222;
}
.cookie-btn:hover, .cookie-btn:focus { 
  background: #fff;
  color: var(--color-hot-pink);
  transform: scale(1.06) rotate(-1deg);
  box-shadow: 0 3px 16px #11C8F240;
}

@media (max-width:650px) {
  .cookie-banner {
    flex-direction: column;
    gap: 14px;
    padding: 12px 2vw 18px 2vw;
    font-size: 0.98rem;
  }
  .cookie-banner__actions {
    flex-direction: row;
    justify-content: flex-start;
    gap: 12px;
  }
}

/* COOKIE MODAL POPUP */
.cookie-modal {
  position: fixed;
  z-index: 6000;
  left: 0; top: 0;
  width: 100vw; height: 100vh;
  background: rgba(22,22,22,0.62);
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: all;
  opacity: 1;
  transform: none;
  transition: opacity .21s;
}
.cookie-modal.hide {
  opacity: 0;
  pointer-events: none;
}
.cookie-modal__window {
  background: #fff;
  color: #161616;
  padding: 38px 28px 32px 28px;
  box-shadow: 0 6px 44px #224E3940, 0 2px 8px #FF3D8E30;
  border-radius: 20px;
  min-width: 300px;
  max-width: 94vw;
  display: flex;
  flex-direction: column;
  gap: 18px;
  animation: popin .38s cubic-bezier(.7,1.8,.5,1) both;
}
@keyframes popin {
  0% { opacity: 0; transform: scale(.7) translateY(100px); }
  100% { opacity:1; transform: scale(1) translateY(0); }
}
.cookie-modal__head {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.24rem;
  margin-bottom: 8px;
  color: var(--color-primary);
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.09rem;
}
.cookie-category input[type="checkbox"] {
  accent-color: var(--color-hot-pink);
  width: 21px; height: 21px;
}
.cookie-category .category-label {
  font-weight: 600;
  font-family: var(--font-display);
  color: var(--color-primary);
}
.cookie-category .desc {
  font-size: .99em;
  color: #444;
  margin-left: 32px;
}
.cookie-modal__actions {
  display: flex;
  flex-direction: row;
  gap: 16px;
  margin-top: 12px;
  justify-content: flex-end;
}
.cookie-modal-close {
  background: none;
  color: var(--color-hot-pink);
  position: absolute;
  top: 22px; right: 22px;
  font-size: 1.7rem;
  border: 0;
  cursor: pointer;
}
.cookie-modal-close:hover {
  color: var(--color-electric-blue);
}
@media (max-width:480px) {
  .cookie-modal__window {
    padding: 18px 7px 19px 10px;
    font-size: 1rem;
  }
}

/* ------------------
   FORM & CONFIRMATION
------------------ */
.confirmation-message {
  font-family: var(--font-body);
  font-size: 1.2rem;
  background: #BBFF10;
  color: #224E39;
  padding: 16px 24px;
  border-radius: 16px;
  margin: 18px 0 9px 0;
  box-shadow: 0 1px 8px #11C8F230;
  text-align: center;
}

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

/* -----------
   MICRO-INTERACTIONS / TRANSITIONS
----------- */
a, .cta-btn, .cookie-btn, .mobile-menu-toggle, .mobile-menu-close,
.feature, .card, .testimonial-card, .service-list li {
  transition-property: background, color, border, box-shadow, transform, opacity;
  transition-duration: .15s, .14s, .14s, .23s, .18s, .32s;
  transition-timing-function: cubic-bezier(.81,-0.01,.13,1.04);
}


/* -----------
   SCROLLBAR MODERN
----------- */
::-webkit-scrollbar {
  width: 10px;
  background: #F9E55233;
}
::-webkit-scrollbar-thumb {
  background: #FF3D8E55;
  border-radius: 5px;
}

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

/*
----------------------------------------
All spacing/gap/margin as per rules:
- Content cards/sections: min 20px margin between
- All flexbox layouts use gap not grid/columns
- Avoid absolute except decoration
----------------------------------------
*/
