/* 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.5;
  font-family: 'Roboto', Arial, sans-serif;
  background: #F5F8FC;
  color: #222;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: #195B8C;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover {
  color: #F9B32F;
}

/* TYPOGRAPHY: Playful & Energetic */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  line-height: 1.22;
  font-weight: 800;
  letter-spacing: -0.5px;
  color: #195B8C;
}
h1 {
  font-size: 2.4rem;
  margin-bottom: 24px;
}
h2 {
  font-size: 2rem;
  margin-bottom: 18px;
}
h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
}
h4, h5, h6 {
  font-size: 1.1rem;
  margin-bottom: 8px;
}
p, li, dd, dt {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  color: #2B3151;
  margin-bottom: 12px;
}
strong {
  color: #195B8C;
  font-weight: bold;
}

/* CONTAINER & SECTIONS */
.container {
  max-width: 1150px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* FLEXBOX LAYOUTS - Playful, with spacing! */
.feature-grid,
.service-grid,
.step-by-step-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  justify-content: space-between;
  margin-top: 18px;
}
@media (max-width: 900px) {
  .feature-grid,
  .service-grid,
  .step-by-step-grid {
    flex-direction: column;
    gap: 22px;
  }
}
.card-container, .content-grid, .testimonial-slider {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.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: 20px;
  }
}
.card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 10px 0 rgba(25,91,140,0.13);
  padding: 32px 22px;
  margin-bottom: 20px;
  position: relative;
  transition: box-shadow 0.2s, transform 0.2s;
}
.card:hover {
  box-shadow: 0 6px 20px 3px rgba(33,89,128,0.21);
  transform: translateY(-6px) scale(1.016);
}

/* BUTTONS - Playful & Animated */
.btn-primary, .btn-secondary {
  display: inline-block;
  padding: 14px 31px;
  border-radius: 28px;
  border: none;
  outline: none;
  text-align: center;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.07rem;
  letter-spacing: 0.02em;
  box-shadow: 0 2px 10px 0 rgba(25,91,140,0.11);
  cursor: pointer;
  transition: background 0.2s, color 0.18s, box-shadow 0.22s, transform 0.1s;
  margin: 8px 8px 8px 0;
  position: relative;
}
.btn-primary {
  background: #195B8C;
  color: #fff;
  border: 2.5px solid #195B8C;
}
.btn-primary:hover, .btn-primary:focus {
  background: #F9B32F;
  color: #195B8C;
  box-shadow: 0 4px 16px 2px rgba(33,89,128,0.18);
  transform: scale(1.05) rotate(-1.5deg);
}
.btn-secondary {
  background: #F9B32F;
  color: #195B8C;
  border: 2px solid #F9B32F;
}
.btn-secondary:hover, .btn-secondary:focus {
  background: #195B8C;
  color: #fff;
  border-color: #195B8C;
  transform: scale(1.045) rotate(1deg);
}

/* HEADER/MENU */
header {
  background: #fff;
  padding: 0;
  box-shadow: 0 4px 18px -10px #195B8C22;
  position: sticky;
  top: 0;
  z-index: 99;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 0 20px;
  min-height: 72px;
}
.logo img {
  max-height: 44px;
  width: auto;
  margin-right: 14px;
}
.main-nav {
  display: flex;
  gap: 23px;
  align-items: center;
}
.main-nav a {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  color: #195B8C;
  font-weight: 600;
  font-size: 1rem;
  position: relative;
  padding-bottom: 2px;
  transition: color 0.2s;
}
.main-nav a:hover, .main-nav a:focus {
  color: #F9B32F;
  text-decoration: underline wavy #F9B32F;
}

/* Hide mobile burger at desktop, hide nav at mobile */
.mobile-menu-toggle {
  display: none;
  background: #F9B32F;
  color: #195B8C;
  font-size: 2.1rem;
  border: none;
  border-radius: 10px;
  width: 44px;
  height: 44px;
  margin-left: 10px;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
  z-index: 106;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: #195B8C;
  color: #fff;
}
@media (max-width: 900px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
  header .btn-primary {
    display: none;
  }
}

/* MOBILE MENU (slide-in left to right) */
.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: #fff;
  box-shadow: 4px 0 22px -8px #195B8C44;
  z-index: 2001;
  transform: translateX(-100%);
  transition: transform 0.33s cubic-bezier(.57,1.51,.49,.87);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0 0 0 0;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: transparent;
  color: #195B8C;
  font-size: 2.2rem;
  border: none;
  position: absolute;
  top: 24px;
  right: 35px;
  z-index: 12;
  cursor: pointer;
  transition: color 0.2s;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  color: #F9B32F;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 80px;
  margin-left: 34px;
}
.mobile-nav a {
  font-size: 1.30rem;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  color: #195B8C;
  font-weight: 700;
  padding: 10px 0;
  line-height: 1.2;
}
.mobile-nav a:active,
.mobile-nav a:hover {
  color: #F9B32F;
  text-decoration: underline;
}
@media (min-width: 901px) {
  .mobile-menu {
    display: none !important;
  }
}

/* HERO SECTION - Playful Introduction */
.hero {
  padding: 54px 0 46px;
  margin-bottom: 40px;
  background: #F9B32F0F;
  position: relative;
}
.hero:after {
  content: '';
  display: block;
  position: absolute;
  top: 15%; left: 0;
  width: 75px; height: 75px;
  background: #195B8C22;
  border-radius: 40% 69% 61% 46% / 66% 49% 59% 70%;
  z-index: 1;
  pointer-events: none;
  animation: playfulBlob1 10s infinite alternate-reverse both linear;
}
@keyframes playfulBlob1 {
  from { transform: scaleX(1) scaleY(1) rotate(-8deg); }
  to { transform: scaleX(1.2) scaleY(1.15) rotate(18deg); }
}
.hero .container {
  position: relative;
  z-index: 2;
}
.hero h1 {
  color: #195B8C;
  font-size: 2.4rem;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  margin-bottom: 12px;
}
.hero p {
  font-size: 1.1rem;
  color: #37416f;
  margin-bottom: 26px;
}

/* CARDS, FEATURE, TESTIMONIALS - Playful & Fun */
.feature-grid > div, .service-grid > div, .step-by-step-grid > div,
.quality-guarantee, .team-intro, .client-benefits, .project-steps {
  background: #fff;
  border-radius: 17px;
  box-shadow: 0 2px 12px 0 rgba(25,91,140,0.10);
  padding: 30px 22px;
  flex: 1;
  min-width: 250px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 20px;
  position: relative;
  transition: box-shadow 0.21s, transform 0.18s;
  border-bottom: 5px solid #F9B32F17;
}
.feature-grid > div:hover, .service-grid > div:hover, .step-by-step-grid > div:hover {
  box-shadow: 0 8px 24px 7px #195b8c20;
  transform: translateY(-7px) scale(1.03);
}
.feature-grid img, .service-grid img, .step-by-step-grid img {
  height: 48px;
  width: 48px;
  margin-bottom: 13px;
  filter: drop-shadow(0 2px 4px #F9B32F66) contrast(1.03);
  animation: playfulBump 2.5s infinite linear alternate;
}
@keyframes playfulBump {
  0%   { transform: scale(1) rotate(-2deg); }
  17%  { transform: scale(1.09) rotate(2deg); }
  35%  { transform: scale(1.07) rotate(-3deg); }
  65%  { transform: scale(1.02) rotate(1deg); }
  100% { transform: scale(1) rotate(-2deg); }
}

/* TESTIMONIAL CARD */
.testimonial-card {
  background: #FFFFFF;
  color: #173050;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  border-radius: 16px;
  box-shadow: 0 2px 12px 0 #B8D2ED44;
  padding: 20px 26px;
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  min-width: 250px;
  max-width: 420px;
  border-left: 7px solid #F9B32F;
  position: relative;
  transition: box-shadow 0.18s, transform 0.17s;
}
.testimonial-card:hover {
  box-shadow: 0 6px 22px 3px #195B8C23;
  transform: scale(1.02) rotate(-1deg);
}
.testimonial-card p {
  font-size: 1.12rem;
  font-style: italic;
  color: #2A2F4A;
}
.testimonial-card span {
  font-size: 1rem;
  color: #195B8C;
}
@media (max-width: 700px) {
  .testimonial-card {
    max-width: 100%;
  }
}

.review-highlights ul, .next-steps-info ul, .client-benefits ul, .project-steps ul, .benefit-list ul {
  list-style: none inside;
  padding-left: 0;
}
.review-highlights li, .next-steps-info li, .client-benefits li, .project-steps li, .benefit-list li {
  position: relative;
  margin-bottom: 12px;
  padding-left: 36px;
  font-size: 1rem;
}
.review-highlights li:before, .next-steps-info li:before, .client-benefits li:before, .project-steps li:before, .benefit-list li:before {
  content: "☀";
  color: #F9B32F;
  font-size: 1.2em;
  position: absolute;
  left: 0;
  top: 0;
}

/* CONTACT INFO SNIPPETS - Fun Styling */
.contact-info-snippet, .contact-info-full {
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: flex-start;
  font-size: 1rem;
  margin: 18px 0 12px 0;
}
.contact-info-snippet img, .contact-info-full img {
  display: inline;
  width: 22px;
  vertical-align: middle;
  margin-right: 11px;
  filter: drop-shadow(0 1px 6px #195B8C21) contrast(1.09);
  margin-bottom: -3px;
}

/* MAP SNIPPET */
.map-snippet p {
  font-style: italic;
  color: #F9B32F;
  font-size: 1.05rem;
  margin-bottom: 0;
}

/***** FOOTER *****/
footer {
  background: #195B8C;
  color: #fff;
  padding-top: 30px;
  margin-top: 60px;
}
footer .footer-top {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding-bottom: 18px;
  border-bottom: 2px solid #F9B32F44;
}
.footer-top img {
  height: 44px;
}
.footer-menu {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.footer-menu a {
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  opacity: 0.85;
  transition: color 0.15s, opacity 0.12s;
}
.footer-menu a:hover {
  color: #F9B32F;
  opacity: 1;
}
.social-links {
  display: flex;
  gap: 13px;
}
.social-links a {
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  transition: box-shadow 0.15s, background 0.14s;
}
.social-links a:hover {
  background: #F9B32F;
  box-shadow: 0 2px 8px 1px #F9B32F44;
}
.social-links img {
  width: 20px;
  height: 20px;
}
.footer-bottom {
  text-align: center;
  margin-top: 16px;
  font-size: 1.05rem;
  opacity: 0.8;
  padding-bottom: 16px;
}
@media (max-width: 750px) {
  footer .footer-top {
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
  }
}

/* SECTION SPACING */
section {
  margin-bottom: 60px;
  padding: 40px 0 0 0;
}

/* LISTS */
ul, ol {
  padding-left: 22px;
  margin-bottom: 18px;
}
dt {
  font-weight: bold;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
}
dd {
  margin-bottom: 11px;
  margin-left: 0;
}

/* FAQ, LEGAL, HIGHLIGHTS */
.faq-list dt {
  color: #195B8C;
  margin-bottom: 3px;
}
.faq-list dd {
  color: #1a2235;
  margin-bottom: 13px;
}
.highlighted-question, .faq-snippet {
  background: #ffd47c44;
  border-left: 6px solid #F9B32F;
  padding: 22px 19px 16px 23px;
  border-radius: 13px;
  margin-top: 26px;
  color: #195B8C;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.07rem;
  box-shadow: 0 2px 8px 0 #F9B32F14;
}
.legal-text {
  color: #244269;
  background: #fff;
  border-radius: 18px;
  padding: 32px 22px 24px 22px;
  margin-bottom: 18px;
  box-shadow: 0 2px 12px 0 #195B8C13;
}

/* CTA SECTION */
.cta-section {
  background: #F9B32F26;
  border-radius: 24px;
  box-shadow: 0 2px 16px #ffd47817;
  padding: 28px 0 36px 0;
  margin-bottom: 38px;
  text-align: center;
}
.cta-section .btn-primary {
  margin: 0 auto 12px auto;
}
.cta-section p {
  color: #195B8C;
  font-size: 1.09rem;
}

/* THANK YOU PAGE */
.thank-you {
  background: #F9B32F22;
  border-radius: 20px;
  box-shadow: 0 4px 22px 2px #195B8C11;
  margin: 44px 0 0 0;
  padding: 42px 18px;
  text-align: center;
}
.thank-you-message {
  font-size: 1.2rem;
  color: #195B8C;
  margin-bottom: 22px;
  font-family: 'Montserrat', Arial, sans-serif;
}
.next-steps-info {
  margin-bottom: 18px;
  text-align: left;
}

/* COOKIE CONSENT BANNER */
.cookie-banner {
  position: fixed;
  left: 20px; right: 20px; bottom: 20px;
  background: #fffbe6;
  color: #1a2235;
  box-shadow: 0 6px 24px 0 #F9B32F35;
  border-radius: 18px;
  z-index: 3000;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 22px;
  padding: 22px 27px 20px 27px;
  font-size: 1rem;
  animation: cookieSlideIn 1s cubic-bezier(.45,1.36,.47,.85);
}
@keyframes cookieSlideIn {
  from { opacity: 0; transform: translateY(80px) scale(0.99); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}
.cookie-banner p {
  flex: 1;
  margin-right: 10px;
  font-size: 1.05rem;
}
.cookie-banner .cookie-btn {
  margin-right: 5px;
}

.cookie-btn {
  border: none;
  border-radius: 21px;
  background: #F9B32F;
  color: #195B8C;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  padding: 9px 23px;
  margin-right: 8px;
  cursor: pointer;
  box-shadow: 0 1px 8px #F9B32F23;
  transition: background 0.18s, color 0.18s;
}
.cookie-btn:hover, .cookie-btn:focus {
  background: #195B8C;
  color: #fff;
}
.cookie-btn.reject {
  background: #fff;
  color: #F9B32F;
  border: 2px solid #F9B32F;
}
.cookie-btn.reject:hover, .cookie-btn.reject:focus {
  background: #F9B32F;
  color: #195B8C;
  border-color: #195B8C;
}
.cookie-btn.prefs {
  background: #195B8C;
  color: #fff;
  border: 2px solid #195B8C;
}
.cookie-btn.prefs:hover, .cookie-btn.prefs:focus {
  background: #fff;
  color: #195B8C;
  border-color: #F9B32F;
}

@media (max-width: 650px) {
  .cookie-banner {
    flex-direction: column;
    align-items: stretch;
    gap: 15px;
    left: 10px; right: 10px;
    padding: 22px 10px 19px 10px;
    font-size: 0.96rem;
  }
  .cookie-banner p {
    margin-right: 0;
  }
}

/* COOKIE PREFERENCES MODAL */
.cookie-modal {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(34,49,81,0.32);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 4000;
  animation: cookieFadeIn 0.3s;
}
@keyframes cookieFadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
.cookie-modal-content {
  background: #fff;
  border-radius: 20px;
  padding: 36px 30px 24px 30px;
  box-shadow: 0 12px 32px #195B8C35;
  min-width: 300px;
  max-width: 95vw;
  color: #222;
  font-family: 'Roboto', Arial, sans-serif;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 20px;
  animation: cookieModalPop 0.33s cubic-bezier(.57,1.29,.49,.87);
}
@keyframes cookieModalPop {
  from { opacity: 0; transform: scale(0.88); }
  to { opacity: 1; transform: scale(1); }
}
.cookie-modal-close {
  position: absolute;
  top: 14px; right: 20px;
  font-size: 1.7rem;
  background: none;
  border: none;
  color: #195B8C;
  cursor: pointer;
  z-index: 1;
}
.cookie-category {
  display: flex;
  flex-direction: row;
  gap: 15px;
  align-items: center;
}
.cookie-category label {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  color: #195B8C;
}
.cookie-toggle {
  accent-color: #F9B32F;
  width: 22px;
  height: 22px;
}
.cookie-category .desc {
  color: #595e69;
  font-weight: 400;
  margin-left: 8px;
  font-size: 0.96rem;
}
.cookie-modal-actions {
  display: flex;
  flex-direction: row;
  gap: 18px;
  justify-content: flex-end;
  margin-top: 15px;
}
@media (max-width: 600px) {
  .cookie-modal-content {
    padding: 24px 8px;
  }
}

/* ANIMATIONS for Playful Dynamic Feel */
@keyframes playfulPulse {
  0%   { transform: scale(1) rotate(-2deg); }
  35%  { transform: scale(1.05) rotate(2deg); }
  45%  { transform: scale(1.04) rotate(-1deg); }
  100% { transform: scale(1) rotate(-2deg); }
}
@keyframes playfulPop {
  0% { transform: scale(0.96); opacity: 0.7; }
  60% { transform: scale(1.03); opacity: 1; }
  100% { transform: scale(1); }
}

/* UTILITIES AND MISC */
.gap-24 { gap: 24px; }
.gap-20 { gap: 20px; }
.margin-b-20 { margin-bottom: 20px; }
.rounded { border-radius: 18px; }
.shadow { box-shadow: 0 2px 14px 2px #195B8C15; }

/* RESPONSIVE - MOBILE FIRST ADJUSTMENTS */
@media (max-width: 950px) {
  .container {
    padding: 0 11px;
  }
  .feature-grid, .service-grid, .step-by-step-grid {
    flex-direction: column;
    gap: 19px;
  }
}
@media (max-width: 768px) {
  h1 { font-size: 1.65rem; }
  h2 { font-size: 1.33rem; }
  .section { padding: 26px 10px; margin-bottom: 36px; }
  .hero { padding: 30px 0 30px; }
  .feature-grid > div, .service-grid > div {
    padding: 22px 10px;
  }
}
@media (max-width: 600px) {
  .footer-top {
    flex-direction: column;
    gap: 13px;
  }
  .container, .section {
    padding-left: 5px;
    padding-right: 5px;
  }
  .hero {
    padding: 18px 0 18px;
  }
}

/* Misc Improvements & Forms */
input, textarea, select {
  font-family: 'Roboto', Arial, sans-serif;
  padding: 11px;
  border-radius: 9px;
  border: 1.5px solid #dde6ee;
  outline: none;
  margin-bottom: 16px;
  width: 100%;
  box-sizing: border-box;
  font-size: 1rem;
  transition: border-color 0.18s;
}
input:focus, textarea:focus, select:focus {
  border-color: #195B8C;
  outline: none;
}

::-webkit-scrollbar {
  width: 9px;
}
::-webkit-scrollbar-thumb {
  background: #dde6ee;
  border-radius: 5px;
}
::-webkit-scrollbar-track {
  background: transparent;
}

/******************* END ******************/
