/* === Picco Gelato Creative Artistic Style.css === */
/* CSS RESET & BASELINE NORMALIZATION */
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: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}
html {
  box-sizing: border-box;
  font-size: 100%;
  scroll-behavior: smooth;
}
*, *:before, *:after {
  box-sizing: inherit;
}
body {
  background: #F4EBD0;
  color: #213E54;
  font-family: 'Nunito', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
}
img {
  max-width: 100%;
  height: auto;
}
a {
  color: #235ea8;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #F06543;
}
ul, ol {
  margin-left: 1.5em;
  margin-bottom: 1em;
}
b, strong {
  font-weight: bold;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  color: #213E54;
  margin-bottom: 18px;
  letter-spacing: 0.03em;
}
h1 { font-size: 2.7rem; line-height: 1.12; margin-bottom: 24px; }
h2 { font-size: 2rem; margin-bottom: 20px; }
h3 { font-size: 1.25rem; margin-bottom: 14px; color: #F06543; }
h4, h5, h6 { font-size: 1.1rem; }
p, blockquote, li {
  font-size: 1rem;
  color: #213E54;
  margin-bottom: 12px;
}
blockquote {
  font-style: italic;
  border-left: 6px solid #F06543;
  padding-left: 18px;
  color: #213E54;
  background: #fff9ee;
  border-radius: 14px 4px 16px 4px;
  margin-bottom: 6px;
}
blockquote:last-child {margin-bottom:0;}
.section h2 {
  margin-top: 0;
}

/* === COLOR PALETTE (VIBRANT & ARTISTIC) === */
:root {
  --color-primary: #213E54; /* blue navy */
  --color-secondary: #A6B7C6; /* desaturated blue grey */
  --color-accent: #F4EBD0; /* cream/yellow base */
  --color-vibrant: #F06543; /* artistic orange accent */
  --color-success: #4AB19D;
  --color-warning: #FDB600;
  --color-shadow: rgba(33,62,84,0.06);
  --color-white: #fff;
  --color-black: #111;
  --font-display: 'Montserrat', Arial, sans-serif;
  --font-body: 'Nunito', Arial, sans-serif;
}

/* === LAYOUT CONTAINERS === */
.container {
  width: 100%;
  max-width: 1150px;
  margin: 0 auto;
  padding: 0 20px;
}
.content-wrapper {
  width: 100%;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: rgba(255,255,255,0.89);
  border-radius: 36px 12px 48px 24px;
  box-shadow: 0 8px 32px var(--color-shadow);
  position: relative;
}
@media (max-width: 768px) {
  .section {
    margin-bottom: 36px;
    padding: 28px 10px;
    border-radius: 18px 6px 18px 10px;
  }
  .container {
    padding: 0 8px;
  }
}

/* === FLEXBOX SUPPORTIVE UTILS === */
.card-container, .card-grid, .feature-grid, .benefits-grid, .content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}
.card, .benefit-card {
  margin-bottom: 20px;
  position: relative;
  flex: 1 1 320px;
  background: #fffbe8;
  border-radius: 24px 8px 32px 12px;
  box-shadow: 0 2px 10px var(--color-shadow);
  padding: 24px 18px 22px 22px;
  transition: box-shadow 0.2s, transform 0.2s;
}
.card:hover, .benefit-card:hover {
  box-shadow: 0 8px 35px rgba(240,101,67,0.14);
  transform: translateY(-6px) scale(1.02) rotate(-1.5deg);
}

.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;
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  flex: 1 1 230px;
  background: #F4EBD0;
  border-radius: 18px 8px 14px 20px;
  box-shadow: 0 4px 12px var(--color-shadow);
  padding: 18px 12px 16px 16px;
  text-align: left;
  margin-bottom: 20px;
  transition: box-shadow 0.2s, transform 0.16s;
}
.feature-item:hover {
  box-shadow: 0 7px 24px rgba(246,101,67,0.12);
  transform: scale(1.03) rotate(1.5deg);
}

.feature-grid, .benefits-grid {
  gap: 24px;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
}
.feature-grid li, .trend-list li, .service-list li, .tip-cards li {
  list-style: none;
  margin-bottom: 20px;
  padding: 22px 16px;
  background: #fff;
  border-radius: 24px 8px 18px 8px;
  box-shadow: 0 3px 16px var(--color-shadow);
  min-width: 240px;
  flex: 1 1 220px;
  transition: box-shadow 0.16s, transform 0.14s;
  font-family: var(--font-body);
  color: #213E54;
}
.feature-grid li:hover, .benefits-grid li:hover, .trend-list li:hover,
.service-list li:hover, .tip-cards li:hover {
  box-shadow: 0 8px 32px rgba(33,62,84,0.10);
  transform: scale(1.04) rotate(-1deg);
}
.feature-grid img, .benefits-grid img {
  max-width: 46px;
  margin-bottom: 7px;
}

.benefit-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.benefit-grid > div {
  flex: 1 1 220px;
  background: #fffbe8;
  border-radius: 16px 8px 22px 12px;
  box-shadow: 0 2px 12px var(--color-shadow);
  padding: 20px 14px 16px 16px;
  margin-bottom: 20px;
  transition: box-shadow 0.15s, transform 0.12s;
}
.benefit-grid > div:hover {
  box-shadow: 0 8px 35px rgba(240,101,67,0.12);
  transform: scale(1.03) rotate(1.5deg);
}

.services-list, .service-list, .trend-list, .tip-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 22px;
}
.services-list li, .service-list li {
  background: #fffbe8;
  border-radius: 20px 7px 17px 10px;
  box-shadow: 0 2px 8px var(--color-shadow);
  padding: 20px 16px 16px 18px;
  flex: 1 1 260px;
}
.quick-info {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin: 18px 0 20px 0;
  align-items: center;
}
.quick-info ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
  list-style: none;
}
.quick-info li img {
  margin-right: 8px;
}
.map-snippet {
  display: flex;
  align-items: center;
  background: #F06543;
  color: #fff;
  border-radius: 15px 6px;
  margin: 20px 0 0 0;
  padding: 18px 16px;
  font-weight: bold;
  gap: 14px;
  font-size: 1rem;
}
.map-snippet img {
  filter: brightness(0) invert(1); /* white icon */
  margin-right: 8px;
}

.pricing-table {
  width: 100%;
  border-collapse: collapse;
  border-radius: 24px;
  box-shadow: 0 2px 15px var(--color-shadow);
  margin: 36px 0 24px 0;
  background: #fff;
  overflow: hidden;
}
.pricing-table th, .pricing-table td {
  padding: 14px 16px;
  text-align: left;
  border-bottom: 1px solid #F4EBD0;
}
.pricing-table th {
  background: #F06543;
  color: #fff;
  font-family: var(--font-display);
  font-weight: bold;
  letter-spacing: 0.06em;
}
.pricing-table tr:last-child td {
  border-bottom: none;
}
@media (max-width: 700px) {
  .card-container, .card-grid, .feature-grid, .service-list, .trend-list, .benefits-grid, .benefit-grid, .services-list {
    flex-direction: column;
    gap: 14px;
  }
  .card, .feature-grid li, .benefits-grid li, .service-list li, .trend-list li {
    min-width: unset;
    width: 100%;
  }
  .pricing-table th, .pricing-table td {
    font-size: 0.97em;
    padding: 10px 7px;
  }
}

/* === TESTIMONIALS SPECIAL STYLE === */
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #fffbe8;
  border-radius: 26px 10px 20px 8px;
  box-shadow: 0 4px 18px var(--color-shadow);
  margin-bottom: 20px;
  transition: box-shadow 0.14s, transform 0.12s;
  flex-wrap: wrap;
  color: #213E54;
}
.testimonial-card blockquote {
  background: none;
  border: none;
  padding: 0 12px 0 0;
  font-size: 1.17em;
  color: #213E54;
}
.testimonial-card .author {
  font-family: var(--font-display);
  font-size: 1em;
  color: #F06543;
  font-weight: 600;
  margin-left: 4px;
  letter-spacing: 0.02em;
}
@media (max-width: 500px) {
  .testimonial-card {
    flex-direction: column;
    padding: 14px;
  }
  .testimonial-card blockquote { padding-right: 0;}
}

/* === HEADER/nav === */
header {
  background: #fffbe8;
  position: relative;
  box-shadow: 0 2px 14px var(--color-shadow);
  z-index: 100;
}
.main-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px 0 12px 0;
}
.main-nav > a img {
  height: 42px;
  margin-right: 10px;
}
.main-nav ul {
  display: flex;
  gap: 22px;
  list-style: none;
  align-items: center;
}
.main-nav ul li {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.08em;
}
.main-nav ul li a {
  color: #213E54;
  padding: 8px 10px;
  border-radius: 8px 2px;
  transition: background 0.15s, color 0.15s;
  position: relative;
}
.main-nav ul li a:after {
  content: '';
  display: block;
  width: 0%;
  height: 3px;
  background: #F06543;
  border-radius: 2px;
  transition: width 0.23s;
  position: absolute;
  bottom: -4px;
  left: 0;
}
.main-nav ul li a:hover:after, .main-nav ul li a:focus:after {
  width: 80%;
}
.main-nav ul li a.active, .main-nav ul li a:active {
  color: #F06543;
  background: #F4EBD0;
}

.cta-btn {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 0.03em;
  padding: 11px 26px;
  font-size: 1.08em;
  border: none;
  background: #F06543;
  color: #fff;
  border-radius: 16px 4px 18px 8px;
  box-shadow: 0 2px 8px var(--color-shadow);
  cursor: pointer;
  transition: background 0.18s, transform 0.15s, box-shadow 0.13s;
}
.cta-btn:hover, .cta-btn:focus {
  background: #213E54;
  box-shadow: 0 6px 24px rgba(33,62,84,0.14);
  transform: translateY(-2px) scale(1.04);
  color: #fff;
}

/* == BURGER MENU (MOBILE) == */
.mobile-menu-toggle {
  display: none;
  background: #F06543;
  color: #fff;
  border: none;
  font-size: 2em;
  border-radius: 10px 4px;
  padding: 7px 16px 7px 14px;
  cursor: pointer;
  box-shadow: 0 2px 8px var(--color-shadow);
  position: absolute;
  top: 16px;
  right: 18px;
  z-index: 120;
  transition: background 0.13s;
}
.mobile-menu-toggle:hover {
  background: #213E54;
}
@media (max-width: 900px) {
  .main-nav ul {
    display: none;
  }
  .cta-btn {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}
.mobile-menu {
  display: flex;
  flex-direction: column;
  background: #fffbe8;
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 990;
  transform: translateX(-100%);
  transition: transform 0.4s cubic-bezier(.55, .03, .33, 1);
  box-shadow: 0 8px 44px rgba(33,62,84,0.22);
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  background: #F06543;
  color: #fff;
  border: none;
  font-size: 2em;
  margin: 20px 32px 0 0;
  padding: 4px 14px;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.13s;
  z-index: 1001;
}
.mobile-menu-close:hover { background: #213E54; }
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: flex-start;
  padding: 46px 34px 0 36px;
  width: 100%;
}
.mobile-nav a {
  display: block;
  font-family: var(--font-display);
  font-size: 1.16em;
  padding: 12px 0;
  color: #213E54;
  border-radius: 8px;
  width: 100%;
  font-weight: 600;
  transition: background 0.17s, color 0.16s, transform 0.15s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #F06543;
  color: #fff;
  transform: translateX(3px) scale(1.03);
}
@media (min-width: 901px) {
  .mobile-menu, .mobile-menu-toggle {
    display: none !important;
  }
}

/* === SECTION & CONTENT SPACING === */
main {
  margin-top: 0;
  margin-bottom: 60px;
}
.section, main > section {
  margin-bottom: 60px;
}
@media (max-width: 600px) {
  main > section {
    margin-bottom: 34px;
  }
}

/* === FOOTER STYLING === */
footer {
  background: #213E54;
  color: #fff;
  padding: 44px 0 18px 0;
  font-size: 1em;
}
footer .container {
  display: flex;
  flex-direction: column;
  gap: 22px;
  align-items: center;
  justify-content: center;
}
.footer-nav {
  display: flex;
  gap: 12px;
  font-family: var(--font-display);
  font-size: 1.05em;
  letter-spacing: 0.01em;
}
.footer-nav a {
  color: #fff;
  padding: 4px 7px;
  border-radius: 4px;
  transition: background 0.14s;
}
.footer-nav a:hover, .footer-nav a:focus {
  background: #F4EBD0;
  color: #213E54;
}
footer p {
  opacity: 0.76;
}

/* === PAGE-SPECIFIC ELEMENTS === */
/* Buttons & Actions */
button, .button {
  font-family: var(--font-display);
  font-size: 1.06em;
  background: #F06543;
  color: #fff;
  border: none;
  border-radius: 12px 4px 16px 8px;
  cursor: pointer;
  padding: 12px 22px;
  box-shadow: 0 2px 7px var(--color-shadow);
  transition: background 0.13s, box-shadow 0.13s, transform 0.1s;
}
button:hover, button:focus, .button:hover, .button:focus {
  background: #213E54;
  transform: scale(1.03);
  color: #fff;
}

/* TABLES */
table {
  width: 100%;
  border-collapse: collapse;
  margin: 30px 0;
  background: #fff;
  border-radius: 30px;
  overflow: hidden;
}
thead, th {
  background: #A6B7C6;
}
th, td {
  padding: 12px 16px;
}
td { color: #213E54; }
table tr:nth-child(even) {
  background: #fffbe8;
}
caption {
  font-family: var(--font-display);
  font-size: 1.14em;
  margin-bottom: 15px;
  color: #213E54;
}

/* MODAL + OVERLAYS (for cookie preferences) */
.cookie-modal-overlay {
  display: none; /* toggled by .open */
  position: fixed;
  z-index: 9800;
  top:0; left:0; right:0; bottom:0;
  background: rgba(33,62,84,0.42);
  justify-content: center;
  align-items: center;
  transition: opacity 0.32s;
}
.cookie-modal-overlay.open {
  display: flex;
}
.cookie-modal {
  background: #fff;
  border-radius: 22px 7px 19px 10px;
  box-shadow: 0 8px 50px rgba(33,62,84,0.11);
  padding: 40px 28px 24px 28px;
  max-width: 460px;
  min-width: 290px;
  width: 84vw;
  animation: popIn 0.23s;
}
@keyframes popIn {
  0% {transform: scale(0.8) translateY(30px); opacity:0;}
  100% {transform: scale(1) translateY(0); opacity:1;}
}
.cookie-modal h2 {
  color: #F06543;
  margin-top: 0;
  font-size: 1.42em;
}
.cookie-modal .cookie-toggle-row {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 22px;
}
.cookie-modal .cookie-toggle-label {
  flex: 1 1 auto;
  font-weight: 600;
  color: #213E54;
}
/* Custom Toggle Switch for modal */
.switch {
  position: relative;
  display: inline-block;
  width: 44px;
  height: 24px;
}
.switch input { opacity: 0; width: 0; height: 0; }
.slider {
  position: absolute;
  cursor: pointer;
  top:0; left:0; right:0; bottom:0;
  background: #A6B7C6;
  border-radius: 30px;
  transition: background 0.22s;
}
.switch input:checked + .slider {
  background: #F06543;
}
.slider:before {
  position: absolute;
  content: '';
  height: 18px; width: 18px;
  left: 3px; bottom: 3px;
  background: #fff;
  border-radius: 50%;
  transition: transform 0.22s;
}
.switch input:checked + .slider:before {
  transform: translateX(20px);
}

/* Cookie Consent Banner (fixed bottom) */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  width: 100%;
  z-index: 9000;
  background: #fffbe8;
  color: #213E54;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 22px;
  box-shadow: 0 -8px 34px rgba(246,101,67,0.11);
  padding: 22px 30px 19px 30px;
  border-radius: 24px 24px 0 0;
  animation: slideUpBanner 0.38s;
}
@keyframes slideUpBanner {
  0% { transform: translateY(80px); opacity: 0; }
  100% { transform: translateY(0); opacity: 1; }
}
.cookie-banner .cookie-message {
  flex: 1 1 340px;
  font-size: 1em;
  color: #213E54;
  margin-right: 10px;
}
.cookie-banner .cookie-actions {
  display: flex;
  gap: 12px;
}
.cookie-banner .cookie-btn {
  font-family: var(--font-display);
  font-size: 1em;
  border: none;
  border-radius: 10px 4px 10px 8px;
  padding: 10px 20px;
  background: #F06543;
  color: #fff;
  cursor: pointer;
  box-shadow: 0 2px 8px var(--color-shadow);
  margin: 0 3px;
  transition: background 0.14s, color 0.14s, transform 0.12s;
}
.cookie-banner .cookie-btn.settings {
  background: #A6B7C6;
  color: #213E54;
}
.cookie-banner .cookie-btn.accept {
  background: #F06543;
  color: #fff;
}
.cookie-banner .cookie-btn.reject {
  background: #213E54;
  color: #fff;
}
.cookie-banner .cookie-btn:hover, .cookie-banner .cookie-btn:focus {
  background: #213E54;
  color: #fff;
  transform: scale(1.06);
}
.cookie-banner .cookie-btn.settings:hover, .cookie-banner .cookie-btn.settings:focus {
  background: #F06543;
  color: #fff;
}

@media (max-width: 650px) {
  .cookie-banner {
    flex-direction: column;
    gap: 13px;
    padding: 15px 8px 13px 10px;
    font-size: 0.97em;
  }
}

/* == Artistic Extras: paint splash background icons == */
.section::before {
  content: '';
  display: block;
  position: absolute;
  top: -24px; right: 20px;
  width: 58px; height: 54px;
  background: url('../assets/pattern-splash.svg') no-repeat center center/contain;
  opacity: 0.17;
  z-index: 1;
  pointer-events: none;
}
.section:nth-child(odd)::before {
  left: 24px; right: auto; transform: scaleX(-1) rotate(-3deg);
}
@media (max-width: 700px) {
  .section::before { display: none; }
}

/* === Animations and Transitions === */
.card, .card-container, .section, .testimonial-card, .feature-grid li, .benefit-grid > div, .content-grid {
  transition: box-shadow 0.19s, transform 0.14s;
}

/* Subtle fade-in for all section content */
.section, main > section, .card, .testimonial-card {
  animation: fadeIn 0.5s;
}
@keyframes fadeIn {
  0%{ opacity:0; transform: translateY(30px); }
  100%{ opacity:1; transform: translateY(0); }
}

/* == CUSTOM SCROLLBAR (webkit) == */
body {
  scrollbar-color: #F06543 #A6B7C6;
  scrollbar-width: thin;
}
body::-webkit-scrollbar {
  width: 10px;
  background: #F4EBD0;
}
body::-webkit-scrollbar-thumb {
  background: #F06543;
  border-radius: 20px;
}
body::-webkit-scrollbar-track {
  background: #A6B7C6;
}

/* ========== RESPONSIVE RULES ========== */
@media (max-width: 1200px) {
  .container { max-width: 970px; }
}
@media (max-width: 900px) {
  .container { max-width: 700px; }
}
@media (max-width: 500px) {
  h1 { font-size: 1.58rem; }
  h2 { font-size: 1.25rem; }
  h3 { font-size: 1rem; }
  body { font-size: 15px; }
  .container { padding: 0 2px; }
}

/* ========== PRINT & HIGH CONTRAST ========== */
@media print {
  * {background: none !important; color: #000 !important;}
}

/* -------- Ensure NO CSS GRID or columns is present -------- */
/* -------- ALL layouts flexbox only -------- */