/* --- 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;
  background: #F5F5F7;
  color: #2D2D2A;
}
ol, ul {
  list-style: none;
}
a {
  background: transparent;
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}
img, svg {
  max-width: 100%;
  display: block;
}
button {
  cursor: pointer;
  border: none;
  background: none;
  font: inherit;
  color: inherit;
}

/* --- Import Google Fonts (RETRO INSPIRED) --- */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@700;900&family=Roboto:wght@400;500;700&family=Shrikhand&display=swap');

:root {
  --primary: #233B5F;
  --secondary: #19A89F;
  --accent: #F5F5F7;
  --retro-orange: #E98335;
  --retro-yellow: #F6C96B;
  --retro-green: #A6C48A;
  --retro-brown: #665240;
  --retro-blue: #4267B2;
  --white: #FFF;
  --black: #2D2D2A;
}

body {
  font-family: 'Roboto', Arial, sans-serif;
  background: var(--accent);
  color: var(--black);
  font-size: 16px;
  letter-spacing: 0.02em;
}

h1, h2, h3, h4 {
  font-family: 'Montserrat', 'Shrikhand', Arial, sans-serif;
  color: var(--primary);
  margin-bottom: 16px;
  letter-spacing: 0.01em;
  font-weight: 900;
}
h1 {
  font-size: 2.5rem;
  text-shadow: 1px 2px 0 var(--retro-yellow), 0 2px 6px var(--retro-brown, #66524020);
  font-family: 'Shrikhand', 'Montserrat', Arial, sans-serif;
}
h2 {
  font-size: 2rem;
  margin-top: 0;
  color: var(--retro-orange);
}
h3 {
  font-size: 1.4rem;
  color: var(--retro-blue);
  font-weight: 700;
}

strong {
  font-weight: 700;
  color: var(--retro-orange);
}

p, li {
  font-size: 1rem;
  font-family: 'Roboto', Arial, sans-serif;
  color: var(--black);
  margin-bottom: 8px;
}

ul li, .icon-list li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 12px;
  font-size: 1rem;
}
.icon-list li img {
  position: absolute;
  left: 0;
  top: 3px;
  width: 22px;
  height: 22px;
  margin-right: 8px;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--white);
  border-radius: 18px;
  box-shadow: 0 4px 28px 0 rgb(138 67 2 / 7%), 0 0 0 4px var(--retro-yellow, #F6C96B10);
}

/* --- HEADER, NAV & LOGO --- */
header {
  background: var(--retro-orange);
  border-bottom: 4px solid var(--retro-yellow);
  padding: 0;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  padding-bottom: 16px;
  gap: 32px;
}
header nav {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
}
header nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  color: var(--black);
  padding: 8px 0;
  position: relative;
  transition: color 0.2s;
}
header nav a:hover,
header nav a:focus {
  color: var(--secondary);
}

a.cta-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.1rem;
  font-weight: 900;
  background: var(--retro-orange);
  color: var(--white);
  border-radius: 40px;
  box-shadow: 0 2px 12px 0 #e9833533;
  outline: none;
  border: 2px solid var(--retro-yellow);
  letter-spacing: 0.02em;
  margin-left: 10px;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s, border 0.2s;
  text-shadow: 1px 1px 0 var(--retro-brown, #66524085);
}
a.cta-primary:hover, a.cta-primary:focus {
  background: var(--secondary);
  color: var(--white);
  border: 2px solid var(--retro-orange);
  box-shadow: 0 6px 22px 0 #19a89f33;
}


/* -- MOBILE MENU BURGER -- */
.mobile-menu-toggle {
  position: fixed;
  top: 24px;
  right: 24px;
  z-index: 300;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--retro-yellow);
  color: var(--primary);
  font-size: 2.2rem;
  display: none;
  align-items: center;
  justify-content: center;
  transition: box-shadow 0.2s, background 0.2s;
  box-shadow: 0 2px 12px #E9833525;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: var(--retro-orange);
  color: var(--white);
}

.mobile-menu {
  position: fixed;
  top: 0; left: 0; bottom: 0; right: 0;
  background: var(--retro-yellow);
  z-index: 500;
  display: flex;
  flex-direction: column;
  padding: 32px 24px 24px 24px;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.82,0,0.22,1);
  box-shadow: -2px 0 30px #233b5f30;
}
.mobile-menu.open {
  transform: translateX(0%);
}
.mobile-menu-close {
  align-self: flex-end;
  border-radius: 50%;
  width: 40px; height: 40px;
  font-size: 2rem;
  color: var(--retro-orange);
  transition: background 0.2s;
  margin-bottom: 12px;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: var(--secondary);
  color: var(--white);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin-top: 32px;
}
.mobile-nav a {
  font-size: 1.25rem;
  font-family: 'Montserrat', 'Shrikhand', Arial, sans-serif;
  color: var(--primary);
  font-weight: 700;
  padding: 8px 0;
  border-bottom: 2px dotted var(--retro-orange);
  transition: color 0.2s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: var(--retro-blue);
  border-bottom: 2px solid var(--retro-blue);
}

/* --- HERO SECTION --- */
.hero {
  background: repeating-linear-gradient(135deg, var(--retro-yellow), var(--retro-yellow) 36px, #fde0c5 36px, #fde0c5 72px);
  border-bottom: 6px dashed var(--retro-orange);
  box-shadow: 0 6px 32px 0 #233b5f10 inset;
  padding: 0 0 60px 0;
}
.hero .container {
  padding-top: 50px;
  padding-bottom: 50px;
}
.hero .content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
  max-width: 660px;
}
.hero h1 {
  color: var(--retro-orange);
  font-family: 'Shrikhand', 'Montserrat', Arial, sans-serif;
  font-size: 2.9rem;
  line-height: 1.12;
}
.hero p {
  font-size: 1.1rem;
  color: var(--primary);
  margin-bottom: 12px;
}

/* --- FEATURES --- */
.features {
  background: var(--white);
  border-left: 10px solid var(--retro-green);
  border-radius: 0 32px 32px 0;
  margin-top: 30px;
  margin-bottom: 60px;
}
.feature-grid, .service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background: #fffbed;
  gap: 15px;
  border-radius: 20px;
  box-shadow: 0 4px 18px #e983353a, 0 2px 0 #6652401a;
  padding: 24px 20px;
  min-width: 240px;
  flex: 1 1 240px;
  margin-bottom: 20px;
  transition: transform 0.2s, box-shadow 0.2s;
  border: 1.5px dashed var(--retro-yellow);
}
.feature-item img {
  width: 36px;
  height: 36px;
  margin-bottom: 10px;
  filter: drop-shadow(0px 2px 2px #F6C96Bcc);
}
.feature-item:hover {
  transform: translateY(-8px) scale(1.04);
  box-shadow: 0 12px 26px #e9833545, 0 4px 0 #66524032;
  border: 2px solid var(--retro-orange);
}
.features h2 {
  margin-bottom: 16px;
  color: var(--retro-green);
  font-size: 2rem;
}

.icon-list {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin-top: 22px;
}
.icon-list li {
  background: #f6e8db;
  border-radius: 16px;
  box-shadow: 0 2px 8px #e9833533;
  padding: 18px 28px 18px 50px;
  font-size: 1.08rem;
  color: var(--primary);
  min-width: 240px;
  margin-bottom: 20px;
}
.icon-list li img {
  left: 18px;
  top: 18px;
}


/* --- SERVICE CARDS --- */
.service-list {
  gap: 28px;
}
.service-item {
  background: #faf7f2;
  border-radius: 20px;
  box-shadow: 0 2px 14px #19a89f22;
  padding: 20px;
  margin-bottom: 20px;
  transition: box-shadow 0.2s, border 0.2s, background 0.2s;
  border: 1.5px solid var(--retro-green);
  position: relative;
}
.service-item img {
  width: 28px;
  height: 28px;
  margin-right: 6px;
  margin-bottom: 8px;
}
.service-item h3 {
  color: var(--retro-blue);
  margin-bottom: 6px;
}
.service-item .service-price {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.15rem;
  color: var(--retro-orange);
  font-weight: 700;
  margin-top: 10px;
}
.service-item:hover {
  box-shadow: 0 12px 22px 0 #19a89f4c, 0 0 0 4px var(--retro-yellow) inset;
  border: 2px solid var(--retro-yellow);
}

.service-categories {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-bottom: 32px;
}
.service-categories li {
  background: #fbecc3;
  border-radius: 16px;
  box-shadow: 0 2px 8px #e983354a;
  padding: 14px 25px 14px 48px;
  color: var(--primary);
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.07rem;
  font-weight: 700;
  margin-bottom: 12px;
  min-width: 220px;
  position: relative;
}
.service-categories li img {
  left: 16px;
  top: 14px;
  width: 22px; height: 22px;
}
.service-descriptions {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin-bottom: 28px;
}

/* --- TESTIMONIALS --- */
.testimonials {
  background: repeating-linear-gradient(120deg, #fffbed, #fffbed 32px, #faebcc 32px, #faebcc 60px);
  border-top: 6px dashed var(--retro-orange);
  border-bottom: 6px dashed var(--retro-yellow);
}
.testimonials h2 {
  color: var(--retro-blue);
}
.testimonials .content-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px 28px 20px 26px;
  margin-bottom: 20px;
  background: #fbfbfa;
  border-radius: 18px;
  box-shadow: 0 4px 18px #233b5f16 inset, 0 2px 0 #e9833530;
  min-width: 240px;
  max-width: 430px;
  flex: 1 1 300px;
  border: 1.5px solid var(--retro-orange);
  position: relative;
  transition: transform 0.18s, box-shadow 0.18s;
}
.testimonial-card:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 10px 24px #e9833538, 0 6px 0 #f6c96b2c;
}
.testimonial-card p {
  font-style: italic;
  color: var(--black);
  font-size: 1.08rem;
}
.testimonial-meta {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  color: var(--retro-green);
  font-size: 0.99rem;
}

/* --- CTA --- */
.cta {
  background: var(--retro-blue);
  border-radius: 0 0 30px 30px;
  text-align: center;
  padding: 40px 20px;
  box-shadow: 0 -2px 14px #233b5f20 inset;
}
.cta h2 {
  color: var(--white);
  margin-bottom: 12px;
}
.cta .content-wrapper {
  align-items: center;
}
.cta p {
  color: #fffbed;
  max-width: 470px;
}
.cta a.cta-primary {
  margin-top: 14px;
  background: var(--retro-yellow);
  color: var(--primary);
  border-color: var(--white);
  text-shadow: none;
}
.cta a.cta-primary:hover {
  background: var(--retro-orange);
  color: var(--white);
  border-color: var(--retro-yellow);
}

/* --- Contact & Footer Details --- */
.contact-details, .footer-contact {
  display: flex;
  flex-direction: column;
  gap: 8px;
  color: var(--primary);
  font-size: 1rem;
}
.contact-details img,
.footer-contact img {
  width: 18px;
  height: 18px;
  margin-right: 8px;
  vertical-align: middle;
}

.opening-hours {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.98rem;
  color: var(--retro-brown);
}
.opening-hours img {
  width: 22px;
  height: 22px;
  margin-top: 4px;
}

.address-map {
  background: #fbecc3;
  border-radius: 17px;
  padding: 24px 20px;
  font-size: 0.99rem;
  color: var(--retro-blue);
  box-shadow: 0 2px 10px #E9833512;
  margin-bottom: 20px;
}
.address-map h3 {
  margin-top: 0;
  margin-bottom: 6px;
  font-size: 1.09rem;
  color: var(--retro-orange);
}

/* --- FAQ --- */
.faq-list, .faq {
  background: #faf7f2;
  border-radius: 16px;
  box-shadow: 0 1px 8px #4267b274;
  padding: 24px;
  font-size: 1.0rem;
  margin-bottom: 18px;
  color: var(--black);
}
.faq strong, .faq-list strong {
  color: var(--retro-green);
  font-family: 'Montserrat', Arial, sans-serif;
}

/* --- Responsive Card Containers --- */
.card-container, .card-grid, .content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  align-items: flex-start;
}
.card {
  background: var(--white);
  border-radius: 18px;
  box-shadow: 0 2px 14px #4267b222;
  margin-bottom: 20px;
  padding: 26px;
  flex: 1 1 240px;
  min-width: 240px;
  transition: box-shadow 0.16s;
  position: relative;
}
.card:hover {
  box-shadow: 0 12px 22px #E9833533;
}

/* -- Footer -- */
footer {
  background: var(--retro-brown, #665240);
  color: var(--retro-yellow);
  padding: 36px 0 24px 0;
  font-size: 1.05rem;
  border-top: 4px solid var(--retro-yellow);
  margin-top: 60px;
}
footer .container {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 38px;
  justify-content: space-between;
}
footer .footer-nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
footer .footer-nav a {
  color: var(--retro-yellow);
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1.07rem;
  transition: color 0.2s;
}
footer .footer-nav a:hover, footer .footer-nav a:focus {
  color: var(--retro-orange);
}
footer .footer-contact {
  color: var(--retro-yellow);
}
footer .footer-contact div {
  margin-bottom: 6px;
}

/* --- Section Patterns per specification --- */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
}
.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-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}


/* --- Cookie Consent Banner --- */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 7000;
  background: var(--retro-yellow);
  color: var(--primary);
  box-shadow: 0 -2px 16px #E9833530;
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 24px 20px 14px 24px;
  align-items: center;
  font-size: 1rem;
  animation: cookieSlideIn 0.5s cubic-bezier(.85,0,.22,1);
}
@keyframes cookieSlideIn {
  from { transform: translateY(120%); opacity:0; }
  to   { transform: translateY(0); opacity:1; }
}
.cookie-banner .cookie-buttons {
  display: flex;
  gap: 16px;
  margin-top: 4px;
  flex-wrap: wrap;
}
.cookie-banner button {
  font-family: 'Montserrat', Arial, sans-serif;
  padding: 10px 24px;
  margin: 0 2px;
  border-radius: 40px;
  font-weight: 700;
  border: 2px solid var(--retro-orange);
  background: var(--retro-yellow);
  color: var(--primary);
  transition: background 0.19s, color 0.19s;
}
.cookie-banner button.accept {
  background: var(--retro-orange);
  color: var(--white);
  border-color: var(--retro-orange);
}
.cookie-banner button.accept:hover {
  background: var(--retro-green);
  color: var(--primary);
}
.cookie-banner button.reject {
  background: var(--white);
  color: var(--primary);
  border-color: var(--retro-orange);
}
.cookie-banner button.reject:hover {
  background: var(--retro-yellow);
  color: var(--retro-orange);
}
.cookie-banner button.settings {
  background: var(--retro-yellow);
  color: var(--primary);
  border-color: var(--retro-orange);
}
.cookie-banner button.settings:hover {
  background: var(--retro-orange);
  color: var(--white);
}

/* --- Cookie Consent Modal --- */
.cookie-modal {
  position: fixed;
  left: 0; top: 0; right: 0; bottom: 0;
  background: rgba(35,59,95,0.50);
  z-index: 8000;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: cookieFadeIn 0.2s;
}
@keyframes cookieFadeIn {
  from { opacity:0; }
  to { opacity:1; }
}
.cookie-modal-content {
  background: var(--white);
  border-radius: 20px;
  box-shadow: 0 2px 32px #233b5f55;
  padding: 32px 28px 28px 32px;
  max-width: 400px;
  min-width: 260px;
  color: var(--primary);
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 20px;
  font-size: 1.06rem;
  animation: cookiePopIn 0.25s cubic-bezier(.77,0,.22,1);
}
@keyframes cookiePopIn {
  0% { transform: scale(0.8); opacity: 0; }
  65% { transform: scale(1.04); }
  100% { transform: scale(1); opacity: 1; }
}
.cookie-modal-content h4 {
  margin-bottom: 4px;
  font-size: 1.2rem;
  color: var(--retro-green);
}
.cookie-category {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}
.cookie-category label {
  flex: 1;
  font-weight: 500;
  color: var(--primary);
}
.cookie-category input[type='checkbox'] {
  accent-color: var(--retro-orange);
  width: 25px;
  height: 25px;
  margin-left: 14px;
}
.cookie-modal-close {
  position: absolute;
  top: 15px; right: 18px;
  font-size: 1.5rem;
  background: none;
  border: none;
  color: var(--retro-orange);
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  color: var(--retro-blue);
}

/* --- MEDIA QUERIES --- */
@media (max-width: 1080px) {
  .feature-grid, .service-list, .icon-list, .service-categories, .service-descriptions, .content-grid, .card-container, .footer .container {
    gap: 14px;
    flex-wrap: wrap;
  }
}
@media (max-width: 900px) {
  .feature-grid, .service-list, .icon-list, .service-categories, .service-descriptions, .content-grid, .card-container, .content-wrapper {
    flex-direction: column;
    align-items: stretch !important;
    gap: 20px;
  }
  .hero .content-wrapper { max-width: 94vw; }
  header .container { gap: 12px; }
  footer .container { flex-direction: column; gap: 24px; align-items: stretch; }
}
@media (max-width: 768px) {
  /* MOBILE NAV */
  header nav, header .cta-primary {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: flex;
  }
  .container {
    max-width: 99vw;
    padding-left: 10px;
    padding-right: 10px;
  }
  .section, .hero, .features, .cta, .card-container, .testimonial-card, .feature-grid, .service-list, .address-map, .cookie-banner, .cookie-modal-content {
    border-radius: 20px;
    padding: 22px 8px;
    margin-bottom: 34px;
  }
  .content-wrapper, .card-container, .content-grid, .feature-grid, .service-list, .icon-list, .service-categories, .service-descriptions {
    flex-direction: column !important;
    gap: 18px;
    align-items: stretch !important;
  }
  .text-image-section {
    flex-direction: column !important;
    gap: 20px;
    align-items: stretch;
  }
  .testimonial-card, .feature-item, .service-item, .icon-list li, .card {
    min-width: 0;
    max-width: 100%;
    width: 100%;
  }
  .hero h1 {
    font-size: 2rem;
  }
}
@media (max-width: 480px) {
  h1 { font-size: 1.3rem; }
  h2 { font-size: 1.1rem; }
  .cta .content-wrapper { gap: 10px; }
  .container { padding-left: 2vw; padding-right: 2vw; }
  .hero, .section, .features, .cta, .card-container,
  .testimonial-card, .feature-item, .footer .container, .cookie-banner {
    padding: 9px 2vw !important;
    border-radius: 13px;
  }
  .address-map, .faq, .faq-list { padding: 12px 4vw; }
}

/* --- Micro-interactions --- */
a, button, .cta-primary, .feature-item, .service-item, .card, .testimonial-card {
  transition: box-shadow 0.18s, color 0.18s, border 0.15s, background 0.18s, transform 0.15s;
}
a:focus, button:focus {
  outline: 2px dotted var(--retro-orange) !important;
  outline-offset: 2px;
}

/* --- Utilities --- */
.text-center { text-align: center; }
.mt-4 { margin-top: 32px; }
.mb-2 { margin-bottom: 16px; }
.mb-4 { margin-bottom: 32px; }
.d-flex { display: flex !important; }
.flex-column { flex-direction: column !important; }
.flex-row { flex-direction: row !important; }
.gap-20 { gap: 20px !important; }
.rounded { border-radius: 18px !important; }
.shadow { box-shadow: 0 2px 8px #233b5f33 !important; }
.bg-white { background: var(--white) !important; }
.bg-yellow { background: var(--retro-yellow) !important; }
.bg-orange { background: var(--retro-orange) !important; color: var(--white) !important; }

/* --- End of Style.css --- */
