/* 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: #F4EDEA;
  color: #231F20;
  min-height: 100vh;
  overflow-x: hidden;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: #22726B;
  text-decoration: none;
  transition: color 0.25s;
}
a:hover, a:focus {
  color: #FF5D2E;
}
ul, ol {
  margin-left: 1.5em;
}

/* BRAND PALETTE & VARIABLES ----------------------------------- */
:root {
  --clr-primary: #476B5D;
  --clr-secondary: #DBCBB6;
  --clr-accent: #F4EDEA;
  --clr-electric1: #FB278B;
  --clr-electric2: #29B9FF;
  --clr-electric3: #F9D923;
  --clr-black: #231F20;
  --clr-white: #fff;
  --clr-bg-darker: #2A323A;

  --ff-display: 'Montserrat', Arial, Helvetica, sans-serif;
  --ff-body: 'Roboto', Arial, Helvetica, sans-serif;
}

/* TYPOGRAPHY -------------------------------------------------- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--ff-display);
  font-weight: 800;
  color: var(--clr-primary);
  letter-spacing: -1px;
  margin-bottom: 18px;
  line-height: 1.1;
}
h1 {
  font-size: 2.5rem;
  color: var(--clr-electric1);
  text-shadow: 0 2px 12px rgba(251, 39, 139, 0.12);
}
h2 {
  font-size: 2rem;
  color: var(--clr-electric2);
}
h3 {
  font-size: 1.33rem;
  color: var(--clr-primary);
}
h4, h5, h6 {
  font-size: 1.1rem;
  font-weight: 700;
}
p, li, span {
  font-family: var(--ff-body);
  font-size: 1.05rem;
  color: var(--clr-black);
  line-height: 1.7;
  margin-bottom: 12px;
}
strong {
  font-weight: 700;
}

/* LAYOUT & CONTAINERS ----------------------------------------- */
.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 18px;
  width: 100%;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: var(--clr-white);
  border-radius: 20px;
  box-shadow: 0 4px 22px 0 rgba(41, 185, 255, 0.12);
  margin-bottom: 20px;
  padding: 26px 22px;
  position: relative;
  transition: box-shadow 0.2s, transform 0.2s;
}
.card:hover {
  box-shadow: 0 7px 30px 0 rgba(251, 39, 139, 0.10);
  transform: translateY(-4px) scale(1.02);
}
.content-grid, .feature-grid, .service-cards, .article-summaries, .project-list, .service-list {
  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-card {
  background: var(--clr-secondary);
  color: var(--clr-black);
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  margin-bottom: 20px;
  border-radius: 18px;
  box-shadow: 0 2px 16px 0 rgba(71,107,93,0.08);
  font-size: 1.15rem;
}
.testimonial-card p {
  color: var(--clr-black);
  font-size: 1.13rem;
}
.testimonial-card span {
  font-size: 1rem;
  margin-left: auto;
  font-weight: 700;
  color: var(--clr-primary);
}
.testimonial-card:hover {
  box-shadow: 0 6px 24px 0 rgba(41, 185, 255, 0.13);
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* BUTTONS & CTAs ----------------------------------------------- */
.cta-btn, .testimonial-form a, .cookie-btn {
  display: inline-block;
  background: var(--clr-electric2);
  color: var(--clr-white);
  font-family: var(--ff-display);
  font-weight: 800;
  font-size: 1.07rem;
  border: none;
  border-radius: 100vw;
  padding: 14px 42px;
  margin-top: 14px;
  margin-bottom: 10px;
  box-shadow: 0 4px 20px 0 rgba(41,185,255, 0.18);
  cursor: pointer;
  transition: background 0.18s, box-shadow 0.16s, transform 0.18s;
  letter-spacing: 0.02em;
}
.cta-btn:hover, .cta-btn:focus {
  background: var(--clr-electric1);
  color: var(--clr-white);
  box-shadow: 0 8px 32px 0 rgba(251,39,139, 0.15);
  transform: translateY(-2px) scale(1.03);
}
button {
  font-family: var(--ff-display);
  cursor: pointer;
}
nav a {
  font-family: var(--ff-display);
  font-weight: 700;
  color: var(--clr-primary);
  padding: 8px 18px;
  border-radius: 24px;
  transition: background 0.16s, color 0.13s;
  font-size: 1.01rem;
  margin-right: 6px;
}
nav a:hover, nav a:focus {
  background: var(--clr-electric1);
  color: var(--clr-white);
}

/* HEADER ------------------------------------------------------ */
header {
  background: var(--clr-white);
  box-shadow: 0 2px 12px rgba(251,39,139,0.03), 0 1.5px 4px rgba(29,182,255,0.06);
  position: sticky;
  top: 0;
  z-index: 90;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 18px;
}
header nav {
  display: flex;
  align-items: center;
  gap: 10px;
}
header img {
  width: 170px;
  height: auto;
}

/* MOBILE MENU ------------------------------------------------- */
.mobile-menu-toggle {
  display: none;
  font-size: 2.25rem;
  background: var(--clr-electric1);
  color: var(--clr-white);
  border: none;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 14px 0 rgba(251,39,139,0.20);
  position: relative;
  z-index: 121;
  margin-left: 10px;
  transition: background 0.16s, color 0.13s;
}
.mobile-menu-toggle:focus,
.mobile-menu-toggle:hover {
  background: var(--clr-electric2);
  color: var(--clr-white);
}
.mobile-menu {
  display: none;
  flex-direction: column;
  align-items: flex-start;
  background: var(--clr-primary);
  color: var(--clr-white);
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 120;
  padding: 42px 32px 24px 32px;
  transform: translateX(-110vw);
  transition: transform 0.33s cubic-bezier(.6,0,.88,.67);
}
.mobile-menu.open {
  display: flex;
  transform: translateX(0);
}
.mobile-menu-close {
  background: var(--clr-electric1);
  border: none;
  font-size: 2rem;
  color: var(--clr-white);
  align-self: flex-end;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  margin-bottom: 24px;
  transition: background 0.13s, color 0.13s;
}
.mobile-menu-close:focus,
.mobile-menu-close:hover {
  background: var(--clr-electric3);
  color: var(--clr-primary);
}
.mobile-nav {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.mobile-nav a {
  color: var(--clr-white);
  font-weight: 800;
  font-size: 1.18rem;
  padding: 18px 0 8px 0;
  border-radius: 0;
  border-bottom: 2px solid rgba(251,39,139,0.23);
  transition: color 0.18s, border-color 0.16s;
}
.mobile-nav a:focus,
.mobile-nav a:hover {
  color: var(--clr-electric3);
  border-bottom: 2.5px solid var(--clr-electric3);
}

/* HERO SECTION ------------------------------------------------ */
.hero-section {
  background: linear-gradient(100deg, var(--clr-electric2) 55%, var(--clr-electric1) 98%);
  color: var(--clr-white);
  padding: 54px 0 56px 0;
  min-height: 320px;
}
.hero-section .container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}
.hero-section h1 { color: var(--clr-white); text-shadow: 0 6px 24px rgba(71,107,93,0.23); font-size: 2.6rem; }
.hero-section p {
  color: var(--clr-white);
  font-size: 1.25rem;
  max-width: 710px;
  font-weight: 500;
  margin-bottom: 24px;
}
.hero-section .cta-btn {
  background: var(--clr-electric3);
  color: var(--clr-primary);
  margin-top: 18px;
}
.hero-section .cta-btn:hover {
  background: var(--clr-white);
  color: var(--clr-electric2);
}

/* FEATURES, SERVICE CARDS, ABOUT ------------------------------ */
.features-section, .services-summary-section, .services-section, .project-overview-section, .tips-intro-section, .privacy-policy-section, .rodo-policy-section, .cookies-policy-section, .terms-section, .about-intro-section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--clr-accent);
  border-radius: 24px;
  box-shadow: 0 4px 18px 0 rgba(41, 185, 255, 0.09);
}
.feature-grid, .service-cards, .article-summaries, .project-list, .service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}
.feature-grid > div, .service-cards > div, .article-summaries > div, .project-list > div, .service-list > div {
  background: var(--clr-white);
  border-radius: 20px;
  flex: 1 1 280px;
  min-width: 240px;
  max-width: 360px;
  margin-bottom: 20px;
  padding: 26px 20px;
  box-shadow: 0 2px 18px 0 rgba(41,185,255,0.10);
  transition: box-shadow 0.16s, transform 0.13s;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.feature-grid img, .service-cards img, .project-list img {
  margin-bottom: 14px;
  width: 40px;
  height: 40px;
}
.feature-grid h3, .service-cards h3, .project-list h3 {
  color: var(--clr-electric1);
}
.feature-grid > div:hover, .service-cards > div:hover, .project-list > div:hover, .article-summaries > div:hover, .service-list > div:hover {
  box-shadow: 0 8px 30px rgba(251,39,139,0.10);
  transform: translateY(-3px) scale(1.025);
}

/* ABOUT / TEAM */
#about-brand, #team-section, #why-us-section {
  background: var(--clr-white);
  border-radius: 22px;
  margin-bottom: 60px;
  padding: 40px 16px 32px 16px;
  box-shadow: 0 2px 14px 0 rgba(251,39,139,0.07);
}
#about-brand h1, #team-section h2, #why-us-section h2 {
  color: var(--clr-electric2);
}
.text-section ul, .why-read-section ul, .faq-section ul {
  margin: 0 0 18px 0;
  padding-left: 18px;
  color: var(--clr-primary);
}
.text-section li, .why-read-section li, .faq-section li {
  margin-bottom: 10px;
  font-size: 1.08rem;
}

/* CTA BANNER ------------------------------------------------- */
.cta-banner-section {
  background: linear-gradient(94deg, var(--clr-electric1) 18%, var(--clr-electric2) 70%);
  color: var(--clr-white);
  border-radius: 18px;
  margin: 0 0 56px 0;
  padding: 34px 0 40px 0;
  box-shadow: 0 6px 24px 0 rgba(251,39,139,0.11);
}
.cta-banner-section h2 {
  color: var(--clr-white);
  font-weight: 900;
  text-shadow: 0 4px 20px rgba(41,185,255, 0.13);
  font-size: 2rem;
  margin-bottom: 12px;
}
.cta-banner-section .cta-btn {
  background: var(--clr-electric3);
  color: var(--clr-primary);
  font-weight: 800;
  font-size: 1.22rem;
}
.cta-banner-section .cta-btn:hover {
  background: var(--clr-white);
  color: var(--clr-electric2);
}

/* TESTIMONIALS ------------------------------------------------ */
.testimonials-preview-section, .testimonials-section {
  background: var(--clr-white);
  border-radius: 18px;
  margin-bottom: 60px;
  padding: 40px 18px;
  box-shadow: 0 2px 12px 0 rgba(251,39,139,0.05);
}
.star-ratings h2 {
  font-size: 1.45rem;
  color: var(--clr-electric1);
  font-family: var(--ff-display);
  margin-bottom: 4px;
  font-weight: 800;
}
.star-ratings p {
  color: var(--clr-primary);
  font-size: 1rem;
}
.testimonial-form {
  margin-top: 26px;
  padding: 16px 14px;
  background: var(--clr-accent);
  border-radius: 12px;
  box-shadow: 0 1.2px 7px 0 rgba(41,185,255,0.07);
}
.testimonial-form h3 {
  color: var(--clr-electric2);
  margin-bottom: 12px;
}
.testimonial-form a {
  color: var(--clr-electric1);
  font-weight: 800;
  text-decoration: underline;
}

/* CONTACT SECTION --------------------------------------------- */
.contact-section {
  background: var(--clr-secondary);
  border-radius: 20px;
  padding: 32px 18px 38px 18px;
  margin-bottom: 48px;
}
.direct-contact-details {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: flex-start;
  margin-bottom: 16px;
}
.direct-contact-details .text-section p img {
  width: 22px;
  height: 22px;
  margin-right: 5px;
  vertical-align: middle;
}
.opening-hours {
  display: flex;
  align-items: center;
  gap: 12px;
}
.opening-hours img {
  width: 27px;
  height: 27px;
}
.address-map {
  font-style: italic;
  color: var(--clr-primary);
  font-size: 1.03rem;
  max-width: 330px;
}

/* FOOTER ------------------------------------------------------ */
footer {
  background: var(--clr-accent);
  padding: 40px 0 40px 0;
  margin-top: 44px;
  box-shadow: 0 -2.5px 8px 0 rgba(41,185,255,0.06);
}
footer .container {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
footer .content-wrapper {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 36px;
  justify-content: space-between;
}
footer nav {
  display: flex;
  flex-direction: column;
  gap: 7px;
}
footer nav a {
  color: var(--clr-electric1);
  font-weight: 700;
  font-size: 1.01rem;
  background: transparent;
  padding: 0;
}
footer nav a:focus,
footer nav a:hover {
  color: var(--clr-electric2);
}
footer img {
  width: 58px;
  height: auto;
}
footer p {
  color: var(--clr-black);
  font-size: 0.98rem;
  margin-bottom: 7px;
}
footer a {
  color: var(--clr-primary);
  transition: color 0.19s;
}
footer a:focus, footer a:hover {
  color: var(--clr-electric3);
}

/* SPACING - CRITICAL ------------------------------------------ */
.card, .testimonial-card, .feature-grid > div, .service-cards > div, .project-list > div, .service-list > div, .article-summaries > div {
  margin-bottom: 20px !important;
}
.feature-grid, .service-cards, .article-summaries, .project-list, .service-list {
  gap: 24px !important;
}
.section, .features-section, .services-summary-section, .about-intro-section, .testimonials-preview-section, .cta-banner-section {
  margin-bottom: 60px !important;
  padding: 40px 20px !important;
}
.text-image-section, .direct-contact-details {
  gap: 30px !important;
}
.content-grid {
  gap: 20px !important;
}
.text-section ul, .why-read-section ul, .faq-section ul {
  margin-bottom: 20px !important;
}

/* COOKIES CONSENT BANNER ------------------------------------- */
.cookie-consent-banner {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100vw;
  background: var(--clr-white);
  box-shadow: 0 -2px 18px 0 rgba(41,185,255,0.13);
  padding: 20px 22px 18px 22px;
  z-index: 600;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 22px;
  transition: transform 0.25s, opacity 0.18s;
  font-size: 1.02rem;
}
.cookie-consent-banner.hide {
  transform: translateY(140%);
  opacity: 0;
}
.cookie-consent-banner .cookie-btn {
  background: var(--clr-electric2);
  color: var(--clr-white);
  border-radius: 25px;
  border: none;
  margin-right: 10px;
  font-size: 0.98rem;
  font-weight: 800;
  padding: 10px 28px;
  transition: background 0.14s, color 0.13s;
}
.cookie-consent-banner .cookie-btn:not(:last-child) {
  background: var(--clr-electric3);
  color: var(--clr-primary);
}
.cookie-consent-banner .cookie-btn:hover {
  background: var(--clr-electric1);
  color: var(--clr-white);
}

/* COOKIES MODAL ---------------------------------------------- */
.cookie-modal {
  display: none;
  position: fixed;
  left: 0; top: 0;
  width: 100vw; height: 100vh;
  background: rgba(34,46,57,0.50);
  z-index: 900;
  align-items: center;
  justify-content: center;
}
.cookie-modal.active {
  display: flex;
}
.cookie-modal-content {
  background: var(--clr-white);
  color: var(--clr-primary);
  min-width: 320px;
  max-width: 95vw;
  border-radius: 22px;
  box-shadow: 0 8px 54px 0 rgba(41,185,255,0.13);
  padding: 39px 29px 30px 29px;
  position: relative;
  animation: fadeInScale 0.32s cubic-bezier(.45,0,1,.72);
}
@keyframes fadeInScale {
  from { opacity:0; transform: scale(0.88) translateY(80px); }
  to   { opacity:1; transform: scale(1.0) translateY(0); }
}
.cookie-category {
  display: flex;
  align-items: center;
  margin: 19px 0 13px 0;
  font-size: 1.02rem;
}
.cookie-category label {
  margin-left: 8px;
  font-weight: 700;
}
.cookie-modal-close {
  position: absolute;
  top: 13px;
  right: 19px;
  background: var(--clr-electric1);
  border: none;
  width: 40px;
  height: 40px;
  border-radius:50%;
  color: var(--clr-white);
  font-size: 1.5rem;
  transition: background 0.13s;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  background: var(--clr-electric2);
  color: var(--clr-white);
}

/* FORM - TESTIMONIAL SUBMISSION EXAMPLE --------------------- */
.testimonial-form input, .testimonial-form textarea {
  border-radius: 10px;
  border: 1px solid var(--clr-secondary);
  background: var(--clr-accent);
  padding: 10px 15px;
  font-size: 1rem;
  width: 100%;
  margin-bottom: 14px;
  font-family: var(--ff-body);
}

/* MISC ------------------------------------------------------ */
.text-section em {
  opacity: 0.84;
}
.why-read-section, .faq-section {
  margin-top: 7px;
}
.faq-section h3 {
  color: var(--clr-electric1);
  font-size: 1.21rem;
}

/* THANK YOU SECTION ----------------------------------------- */
.thank-you-section {
  background: var(--clr-secondary);
  border-radius: 16px;
  margin: 32px 0 47px 0;
  padding: 36px 20px;
  box-shadow: 0 1.6px 12px 0 rgba(71,107,93,0.11);
}

/* RESPONSIVE FLEX & MOBILE-FIRST ---------------------------- */
@media (max-width: 1024px) {
  .container {
    max-width: 98vw;
  }
  .feature-grid, .service-cards, .article-summaries, .project-list, .service-list {
    gap: 16px;
  }
}
@media (max-width: 900px) {
  .content-grid, .feature-grid, .service-cards, .article-summaries, .project-list, .service-list {
    flex-direction: column;
    gap: 18px;
  }
  .feature-grid > div, .service-cards > div, .article-summaries > div, .project-list > div, .service-list > div {
    min-width: 0;
    max-width: 100%;
  }
  .direct-contact-details {
    flex-direction: column;
    gap: 19px;
  }
  .content-wrapper, footer .content-wrapper {
    gap: 18px;
  }
}
@media (max-width: 768px) {
  header .container {
    padding: 12px 10px;
  }
  nav {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: flex;
  }
  .feature-grid, .service-cards, .article-summaries, .project-list, .service-list, .content-grid {
    flex-direction: column;
    gap: 12px !important;
  }
  .text-image-section {
    flex-direction: column;
    gap: 18px !important;
    align-items: stretch;
  }
  .cta-btn, .cookie-btn {
    width: 100%;
    min-width: 0;
    text-align: center;
    font-size: 1.06rem;
  }
  footer .content-wrapper {
    flex-direction: column;
    gap: 14px;
    align-items: flex-start;
  }
  .section, .features-section, .services-summary-section, .about-intro-section, .testimonials-preview-section, .cta-banner-section {
    padding: 29px 8px !important;
    margin-bottom: 38px !important;
  }
}
@media (max-width: 570px) {
  h1 { font-size: 1.46rem; }
  h2 { font-size: 1.19rem; }
  .hero-section { padding: 40px 0 38px 0; }
  .container { padding: 0 5px; }
  .testimonial-card, .card, .feature-grid > div, .service-cards > div, .project-list > div, .service-list > div, .about-intro-section, .privacy-policy-section, .rodo-policy-section, .cookies-policy-section, .terms-section {
    padding: 16px 10px !important;
  }
  .cookie-modal-content { padding: 24px 6vw 18px 6vw; }
}

/* ANIMATIONS & MICRO-INTERACTIONS ----------------------------- */
.cta-btn, .testimonial-card, .card, .service-cards > div, .feature-grid > div, .article-summaries > div, .project-list > div, .cookie-btn {
  transition: background 0.14s, color 0.14s, box-shadow 0.14s, transform 0.13s;
}
.cta-btn:active, .cookie-btn:active {
  transform: scale(0.98);
}

/* SCROLLBAR --------------------------------------------- */
body::-webkit-scrollbar {
  width: 10px;
  background: var(--clr-accent);
}
body::-webkit-scrollbar-thumb {
  background: var(--clr-electric2);
  border-radius: 12px;
}

/* HIGH CONTRAST FOR REVIEWS/TESTIMONIALS ---------------------- */
.testimonials-section, .testimonials-preview-section, .testimonial-card {
  color: var(--clr-black);
  background: var(--clr-secondary);
}
.testimonial-card span, .testimonials-section h2, .testimonials-section h3 {
  color: var(--clr-primary) !important;
}
.testimonial-card p {
  color: var(--clr-black) !important;
  font-weight: 500;
}

/* END OF CSS */
