/* -------------------------------------------------
   CSS RESET & NORMALIZE (Mobile-First, Wide Support)
---------------------------------------------------*/
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.5;
  background: #F2F2F2;
  color: #14424A;
  -webkit-font-smoothing: antialiased;
  font-family: 'Nunito', Arial, Helvetica, sans-serif;
  font-size: 16px;
}
img, picture, video, canvas, svg {
  display: inline-block;
  vertical-align: middle;
  max-width: 100%;
  height: auto;
}
a {
  color: inherit;
  text-decoration: none;
  background: none;
}
a:focus {
  outline: 2px solid #FCBF49;
  outline-offset: 2px;
}
ul,ol {
  list-style: none;
}
button {
  cursor: pointer;
  outline: none;
  font-family: inherit;
  border: none;
}
input, select, textarea {
  font-family: inherit;
  font-size: inherit;
}

/* -------------------
   VARIABLE PALETTE  
--------------------*/
:root {
  --color-primary: #14424A;
  --color-secondary: #F2F2F2;
  --color-accent: #FCBF49;
  --color-energetic-pink: #FF3180;
  --color-energetic-blue: #2188FF;
  --color-bg-light: #ffffff;
  --color-bg-dark: #102630;
  --radius-md: 16px;
  --radius-lg: 32px;
  --shadow-card: 0 2px 20px 0 rgba(20,66,74,0.10),0 6px 48px 0 rgba(252,191,73,0.07);
  --shadow-lg: 0 8px 36px 0 rgba(255,49,128,0.10),0 3px 12px 0 rgba(33,136,255,0.07);
}

/* -----------------------------------
   TYPOGRAPHY: Vibrant & Bold, Scalable
------------------------------------*/
h1 {
  font-family: 'Merriweather', serif;
  font-size: 2.5rem;
  font-weight: 900;
  letter-spacing: -1.2px;
  color: var(--color-primary);
  margin-bottom: 20px;
  line-height: 1.1;
}
h2 {
  font-family: 'Merriweather', serif;
  font-size: 2rem;
  font-weight: 800;
  color: var(--color-energetic-pink);
  margin-bottom: 16px;
  letter-spacing: -0.8px;
}
h3 {
  font-family: 'Nunito', Arial, sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--color-bg-dark);
  margin-bottom: 12px;
  letter-spacing: -0.4px;
}
h4,
h5,
h6 {
  font-family: 'Nunito', Arial, sans-serif;
  font-weight: 700;
  color: var(--color-primary);
}
p,li,span {
  font-family: 'Nunito', Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.7;
}
.subtitle {
  font-size: 1.18rem;
  font-weight: 600;
  color: var(--color-energetic-blue);
  margin-bottom: 22px;
  max-width: 680px;
}
.signature {
  font-style: italic;
  font-weight: 700;
  color: var(--color-accent);
  font-size: 1.1rem;
}
strong {
  font-weight: 800;
  color: var(--color-energetic-pink);
}

/* ------------------
   GLOBAL CONTAINER 
-------------------*/
.container {
  width: 100%;
  max-width: 1220px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  border-radius: var(--radius-lg);
  background: var(--color-bg-light);
  box-shadow: var(--shadow-card);
  position: relative;
}

/* ----------------------------------------------
   HEADER, NAVIGATION, AND MOBILE MENU COMPONENTS
-----------------------------------------------*/
header {
  background: var(--color-primary);
  color: var(--color-secondary);
  padding: 0;
  position: sticky;
  top: 0;
  z-index: 99;
  box-shadow: 0 2px 12px 0 rgba(20,66,74,.08);
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  gap: 40px;
  position: relative;
}
header img {
  height: 54px;
  width: auto;
  margin-right: 16px;
}
nav {
  display: flex;
  flex-direction: row;
  gap: 20px;
  align-items: center;
  font-size: 1.08rem;
}
nav a {
  color: var(--color-secondary);
  position: relative;
  transition: color 0.15s;
  font-weight: 700;
  padding: 6px 0;
  border-bottom: 2px solid transparent;
}
nav a:hover, nav a:focus {
  color: var(--color-accent);
  border-bottom: 2px solid var(--color-accent);
}
.btn-primary {
  background: var(--color-energetic-pink);
  color: #fff;
  font-family: 'Nunito', Arial, sans-serif;
  font-size: 1.08rem;
  padding: 13px 30px;
  border-radius: 24px;
  font-weight: 900;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 18px 0 rgba(255,49,128,0.15);
  transition: background 0.15s, box-shadow 0.2s, transform 0.11s;
  position: relative;
  line-height: 1.14;
  outline: none;
}
.btn-primary:hover, .btn-primary:focus {
  background: var(--color-accent);
  color: var(--color-bg-dark);
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 6px 26px 0 rgba(252,191,73,0.12);
}

.btn-secondary {
  background: var(--color-energetic-blue);
  color: #fff;
  font-family: 'Nunito', Arial, sans-serif;
  font-size: 1.02rem;
  padding: 10px 22px;
  border-radius: 24px;
  font-weight: 800;
  letter-spacing: 0.2px;
  box-shadow: 0 2px 12px 0 rgba(33,136,255,0.11);
  outline: none;
  transition: background 0.12s, transform 0.10s, color 0.10s;
  margin-top: 12px;
}
.btn-secondary:hover, .btn-secondary:focus {
  background: var(--color-energetic-pink);
  color: #fff;
  transform: translateY(-1px) scale(1.025);
}


/* MOBILE MENU BUTTONS */
.mobile-menu-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-energetic-blue);
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  font-size: 2rem;
  position: absolute;
  top: 16px;
  right: 10px;
  z-index: 120;
  box-shadow: 0 2px 14px 0 rgba(33,136,255,0.08);
  transition: background 0.13s, box-shadow 0.14s, color 0.09s;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: var(--color-energetic-pink);
  color: #fff;
}
@media (min-width: 1000px) {
  .mobile-menu-toggle {
    display: none;
  }
}

/* MOBILE NAVIGATION OVERLAY */
.mobile-menu {
  position: fixed;
  top: 0; left: 0; width: 100vw; height: 100vh;
  background: var(--color-primary);
  display: flex;
  flex-direction: column;
  z-index: 9999;
  transform: translateX(-105vw);
  transition: transform 0.45s cubic-bezier(.77,0,.18,1);
  box-shadow: 0 12px 56px 0 rgba(20,66,74,0.33);
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  margin: 24px 22px 0 0;
  background: var(--color-energetic-pink);
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 42px; height: 42px;
  font-size: 1.55rem;
  box-shadow: 0 3px 15px 0 rgba(255,49,128,0.09);
  transition: background 0.15s, color 0.11s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: var(--color-accent);
  color: var(--color-bg-dark);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 28px;
  padding: 42px 38px;
  font-size: 1.3rem;
  font-family: 'Nunito', Arial, sans-serif;
  font-weight: 800;
}
.mobile-nav a {
  color: #fff;
  padding: 8px 0;
  border-bottom: 2.5px solid transparent;
  width: 100%;
  display: inline-block;
  border-radius: 8px;
  transition: color 0.13s, border-bottom 0.14s, background 0.13s;
}
.mobile-nav a:hover, .mobile-nav a:active, .mobile-nav a:focus {
  color: var(--color-accent);
  background: rgba(252,191,73,0.09);
  border-bottom: 2.5px solid var(--color-accent);
}
@media (min-width: 1000px) {
  .mobile-menu {
    display: none;
  }
}

/* Hide main navigation and show burger on mobile  */
@media (max-width: 999px) {
  nav {
    display: none;
  }
  header .btn-primary {
    display: none;
  }
}
@media (min-width: 1000px) {
  .mobile-menu {
    display: none !important;
  }
}

/* -----------------------------------------------------
   FLEXBOX UTILITY LAYOUTS (per project requirements)
------------------------------------------------------*/
/* Cards and Layout Flex Utility */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: stretch;
  margin-bottom: 24px;
}
.card {
  position: relative;
  background: var(--color-bg-light);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  padding: 28px 20px;
  min-width: 260px;
  flex: 1 1 250px;
  margin-bottom: 20px;
  transition: box-shadow 0.18s, transform 0.16s;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.card:hover, .card:focus-within {
  box-shadow: 0 8px 36px 0 rgba(33,136,255,0.11), 0 3px 12px 0 rgba(255,49,128,0.07);
  transform: translateY(-4px) scale(1.02);
}
.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: 24px;
}
.testimonial-card {
  background: #fff;
  color: #102630;
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px 26px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  font-size: 1.10rem;
  min-width: 270px;
  max-width: 480px;
  margin-bottom: 20px;
  transition: box-shadow 0.18s, transform 0.14s;
  border-left: 5px solid var(--color-energetic-pink);
}
.testimonial-card:hover, .testimonial-card:focus {
  box-shadow: 0 11px 40px 0 rgba(252,191,73,0.09),0 4px 18px 0 rgba(33,136,255,0.09);
  transform: translateY(-2px);
}
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin-bottom: 10px;
  justify-content: flex-start;
}
.feature-grid > div {
  background: #fffdfa;
  box-shadow: var(--shadow-card);
  border-radius: var(--radius-md);
  flex: 1 1 180px;
  min-width: 170px;
  max-width: 340px;
  padding: 24px 18px 22px 18px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  transition: box-shadow 0.18s, transform 0.13s;
  position: relative;
  margin-bottom: 20px;
}
.feature-grid > div:hover, .feature-grid > div:focus {
  box-shadow: 0 11px 42px 0 rgba(255,49,128,0.13);
  transform: translateY(-3px) scale(1.015);
}
.feature-grid img {
  width: 34px;
  height: 34px;
  margin-bottom: 8px;
}
.category-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  justify-content: flex-start;
}
.category-cards > div {
  background: var(--color-bg-light);
  box-shadow: var(--shadow-card);
  border-radius: var(--radius-md);
  min-width: 200px;
  max-width: 360px;
  flex: 1 1 210px;
  padding: 26px 18px 20px 18px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 13px;
  position: relative;
  margin-bottom: 20px;
  border-left: 3px solid var(--color-energetic-blue);
  transition: box-shadow 0.16s, transform 0.10s;
}
.category-cards > div:hover {
  box-shadow: 0 7px 26px 0 rgba(33,136,255,0.12), 0 2px 9px 0 rgba(255,49,128,0.08);
  transform: translateY(-2px);
}

.text-section {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.founder-message {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 26px;
  background: #fffdfb;
  box-shadow: var(--shadow-card);
  border-radius: var(--radius-md);
  padding: 24px 18px 22px 18px;
  margin-bottom: 8px;
  position: relative;
}
.founder-message img {
  width: 54px; height: 54px;
  border-radius: 50%;
  background: var(--color-accent);
  padding: 5px;
}
.map-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 140px;
  background: #ebf6f9;
  border-radius: var(--radius-lg);
  box-shadow: 0 2px 24px 0 rgba(20,66,74,0.07);
}
.map-placeholder img {
  width: 54px;
  opacity: 0.7;
}
.trust-factors,
.price {
  background: var(--color-accent);
  color: #102630;
  border-radius: 9px;
  font-weight: 800;
  padding: 2.5px 12px;
  font-size: 1rem;
  display: inline-block;
  margin-top: 9px;
}
.footer-menu {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: flex-start;
  margin-bottom: 18px;
}
.brand-info {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  margin-bottom: 18px;
  flex-wrap: wrap;
}
.brand-info img {
  width: 42px;
  height: 42px;
  background: var(--color-accent);
  border-radius: 50%;
  padding: 4px;
}
.social-links {
  display: flex;
  gap: 20px;
  align-items: center;
  margin-bottom: 16px;
}
.social-links a img {
  width: 30px;
  height: 30px;
  filter: grayscale(0%);
  transition: filter 0.13s, transform 0.13s;
}
.social-links a:hover img {
  filter: brightness(1.1) drop-shadow(0 0 6px var(--color-accent));
  transform: scale(1.11);
}
footer {
  background: var(--color-primary);
  color: #fff;
  padding: 36px 0 16px 0;
  font-size: 1rem;
}
footer .container {
  gap: 10px;
}
footer a {
  color: var(--color-accent);
  font-weight: 700;
  font-size: 1.01rem;
}
.footer-menu a {
  border-bottom: 2px solid transparent;
}
.footer-menu a:hover, .footer-menu a:focus {
  border-bottom: 2px solid #fff;
}
.copyright {
  font-size: 0.93rem;
  opacity: 0.7;
}

/* --------------
   RESPONSIVENESS
---------------*/
@media (max-width: 1140px) {
  .container {
    max-width: 98vw;
    padding-left: 10px;
    padding-right: 10px;
  }
}
@media (max-width: 900px) {
  .section {
    padding: 32px 8px;
    margin-bottom: 42px;
  }
  .testimonial-list, .category-cards, .feature-grid , .card-container, .content-grid{
    gap: 13px !important;
  }
  h1 {
    font-size: 2rem;
  }
}
@media (max-width: 768px) {
  .content-grid, .feature-grid, .category-cards, .testimonial-list, .card-container, .footer-menu {
    flex-direction: column !important;
    gap: 18px !important;
  }
  .brand-info, .social-links {
    flex-direction: row;
    gap: 14px;
  }
  .text-image-section, .founder-message {
    flex-direction: column !important;
    gap: 16px !important;
    align-items: flex-start;
  }
  .map-placeholder {
    min-height: 80px;
    height: auto;
    padding:16px 0;
  }
}
@media (max-width: 500px) {
  .section {
    padding: 22px 0;
    margin-bottom: 30px;
  }
  h1 {
    font-size: 1.25rem;
  }
  h2 {
    font-size: 1.09rem;
  }
  .btn-primary, .btn-secondary {
    font-size: 1rem;
    padding: 10px 16px;
  }
}

/* ---------------------------
   UL/LI & LISTS 
----------------------------*/
ul,ol {
  padding-left: 18px;
  margin-bottom: 10px;
}
ul li, ol li {
  position: relative;
  line-height: 1.8;
  margin-bottom: 6px;
  font-size: 1.07rem;
  color: var(--color-bg-dark);
  padding-left: 19px;
}
ul li::before {
  content: "";
  display: inline-block;
  width: 11px; height: 11px;
  border-radius: 50%;
  background: linear-gradient(90deg, var(--color-energetic-pink) 60%, var(--color-accent));
  position: absolute;
  left: 0; top: 6px;
}

/* ----------------------
   TABLES (minimal usage)
-----------------------*/
table {
  width: 100%;
  border-collapse: collapse;
}
th, td {
  padding: 10px;
  text-align: left;
}
th {
  background: var(--color-accent);
  color: var(--color-primary);
}
td {
  background: #fff;
}

/* --------------------
   ANIMATIONS / EFFECTS
---------------------*/
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(38px); }
  to {opacity:1; transform: none}
}
.section {
  animation: fadeInUp .9s cubic-bezier(.46,.03,.52,.96) 1;
}
.card, .feature-grid > div, .category-cards > div, .testimonial-card {
  animation: fadeInUp .8s cubic-bezier(.46,.03,.52,.96) 1;
}
.btn-primary, .btn-secondary {
  animation: fadeInUp .5s cubic-bezier(.46,.03,.52,.96) 1;
}

/* --------------------------------
   COOKIE CONSENT BANNER STYLING   
---------------------------------*/
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  width: 100vw;
  background: var(--color-primary);
  color: #fff;
  box-shadow: 0 -2px 18px 0 rgba(20,66,74,0.16);
  padding: 24px 18px 18px 18px;
  z-index: 12000;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  font-size: 1rem;
  animation: fadeInUp 0.7s;
}
.cookie-banner .cookie-buttons {
  display: flex;
  flex-direction: row;
  gap: 18px;
  margin-top: 8px;
  flex-wrap: wrap;
}
.cookie-banner .btn-cookie {
  padding: 13px 24px;
  font-weight: 900;
  border-radius: 8px;
  font-size: 1.04rem;
  background: var(--color-energetic-pink);
  color: #fff;
  transition: background 0.12s, color 0.11s;
  border: none;
}
.cookie-banner .btn-cookie.settings {
  background: var(--color-accent);
  color: var(--color-primary);
  font-weight: 700;
}
.cookie-banner .btn-cookie.reject {
  background: var(--color-energetic-blue);
  color: #fff;
}
.cookie-banner .btn-cookie:hover, .cookie-banner .btn-cookie:focus {
  background: var(--color-accent);
  color: var(--color-primary);
}

/* Cookie Modal Popup */
.cookie-modal-backdrop {
  display: none;
  position: fixed;
  z-index: 13000;
  left: 0; right: 0; top: 0; bottom: 0;
  background: rgba(20,66,74,0.66);
  justify-content: center;
  align-items: center;
}
.cookie-modal-backdrop.open {
  display: flex;
  animation: fadeInUp 0.37s;
}
.cookie-modal {
  background: #fff;
  color: var(--color-primary);
  border-radius: var(--radius-lg);
  box-shadow: 0 2px 27px 0 rgba(20,66,74,.19);
  min-width: 320px;
  max-width: 94vw;
  padding: 36px 32px 32px 32px;
  display: flex;
  flex-direction: column;
  gap: 22px;
  position: relative;
  animation: fadeInUp 0.45s;
}
.cookie-modal h2 {
  color: var(--color-energetic-pink);
  margin-bottom: 7px;
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.cookie-category {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 19px;
  font-size: 1.1rem;
}
.cookie-category label {
  flex: 1;
  font-weight: 600;
  color: var(--color-primary);
}
.cookie-category input[type="checkbox"] {
  transform: scale(1.25);
  accent-color: var(--color-energetic-blue);
  margin-right: 1px;
}
.cookie-category input[type="checkbox"]:disabled + label {
  color: #bbb;
}
.cookie-modal .modal-actions {
  display: flex;
  flex-direction: row;
  gap: 14px;
  margin-top: 9px;
  justify-content: flex-end;
}
.cookie-modal .btn-cookie {
  border-radius: 6px;
  padding: 9px 22px;
  border: none;
}
.cookie-modal .btn-cookie.apply {
  background: var(--color-energetic-pink);
  color: #fff;
}
.cookie-modal .btn-cookie.cancel {
  background: var(--color-secondary);
  color: var(--color-energetic-pink);
}
.cookie-modal-close {
  position: absolute;
  top: 12px;
  right: 16px;
  background: transparent;
  color: var(--color-energetic-blue);
  font-size: 1.9rem;
  border: none;
  cursor: pointer;
  transition: color 0.12s;
}
.cookie-modal-close:hover {
  color: var(--color-energetic-pink);
}

/* -----------------------------------------
   FORM ELEMENTS (for contact and modals etc)
------------------------------------------*/
input, textarea, select {
  font-family: 'Nunito', Arial, sans-serif;
  font-size: 1rem;
  padding: 12px 14px;
  border-radius: 8px;
  border: 1.5px solid var(--color-accent);
  margin-bottom: 14px;
  width: 100%;
  background: #fff;
  transition: border-color 0.17s;
}
input:focus, textarea:focus, select:focus {
  border-color: var(--color-energetic-pink);
  box-shadow: 0 0 0 2px rgba(252,191,73,.18);
}
label {
  font-weight: 700;
  margin-bottom: 5px;
  color: var(--color-primary);
}

/* -------------
   MISC STYLES
--------------*/
hr {
  border: none;
  border-bottom: 2px solid var(--color-accent);
  margin: 24px 0;
  opacity: 0.5;
}
blockquote {
  border-left: 5px solid var(--color-energetic-blue);
  background: #e4f1fc;
  color: var(--color-primary);
  padding: 14px 17px 12px 19px;
  font-size: 1.16rem;
  border-radius: 7px;
  margin: 20px 0;
}
.text-center {
  text-align: center;
}

/* -----------------------------
   ACCESSIBILITY FOCUS OUTLINES
------------------------------*/
:focus-visible {
  outline: 2px solid var(--color-energetic-pink);
  outline-offset: 1.5px;
}
a:focus {
  outline-color: var(--color-energetic-pink);
}

/* -------------
   OVERRIDES FOR CONSISTENCY
--------------*/
@media (max-width:700px) {
  .footer-menu, .brand-info, .social-links {
    flex-direction: column !important;
    gap: 9px !important;
    align-items: flex-start;
  }
}

/* -----------------------
   LAST: PRINT STYLES     
------------------------*/
@media print {
  header, footer, .cookie-banner, .mobile-menu { display: none !important; }
  .container, .section { background: #fff !important; box-shadow: none !important; }
}

/* END OF STYLE.CS -- ZAMPA FELICE, VIBRANT ENERGETIC */
