/* RESET & BASE TYPOGRAPHY --------------------------------------------------- */
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: #ffffff;
  color: #003049;
  font-family: 'Roboto', Arial, sans-serif;
  min-height: 100vh;
  font-size: 16px;
  letter-spacing: 0.01em;
  background-color: #fafdff;
}
ul, ol {
  list-style: none;
}
a {
  color: #003049;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover,
a:focus {
  color: #FFD600;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
*,*:before,*:after {
  box-sizing: inherit;
}

/* FONTS ---------------------------------------------------- */
@import url('https://fonts.googleapis.com/css?family=Montserrat:700,900&display=swap');
@import url('https://fonts.googleapis.com/css?family=Roboto:400,700&display=swap');

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 900;
  line-height: 1.15;
  color: #003049;
  margin-bottom: 16px;
  letter-spacing: 0.03em;
  text-shadow: 1px 2px 0 #FFD60033;
  /* Playful drop shadow */
}
h1 {
  font-size: 2.8rem;
  margin-bottom: 18px;
  letter-spacing: 0.05em;
}
h2 {
  font-size: 2rem;
  margin-bottom: 14px;
}
h3 {
  font-size: 1.25rem;
}
.subheadline {
  font-size: 1.2rem;
  color: #2e457a;
  margin-bottom: 28px;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 600;
}
p, ul, ol, td, th {
  font-size: 1rem;
  margin-bottom: 14px;
  font-family: 'Roboto', Arial, sans-serif;
}
strong, b {
  font-weight: bold;
}

/* BRAND COLORS as CSS VARIABLES ---------------------------------- */
:root {
  --color-primary: #003049;
  --color-secondary: #ffffff;
  --color-accent: #FFD600;
  --color-blue: #1EA7FD;
  --color-lightblue: #fafdff;
  --color-danger: #ff5a5f;
  --color-grey: #f5f5f8;
  --color-dark: #003049;
  --color-card-shadow: rgba(0,49,73,0.08);
  --border-radius: 18px;
  --transition-fast: 0.18s cubic-bezier(0.53,0.07,0.59,0.92);
}


/* SPACING CONTAINERS ---------------------------------------------- */
.container {
  max-width: 1140px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 16px;
  padding-right: 16px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.text-section {
  gap: 18px;
}
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    gap: 20px;
  }
}

/* HEADER ---------------------------------------------------------- */
header {
  width: 100%;
  background: var(--color-secondary);
  box-shadow: 0 1px 8px var(--color-card-shadow);
  z-index: 999;
  position: sticky;
  top: 0;
  left: 0;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 24px;
  padding-top: 12px;
  padding-bottom: 12px;
  position: relative;
}
header nav {
  display: flex;
  gap: 18px;
  align-items: center;
  flex-wrap: wrap;
}
header nav a {
  font-weight: 700;
  font-size: 1rem;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  padding: 6px 12px;
  border-radius: var(--border-radius);
  transition: background-color var(--transition-fast), color var(--transition-fast), transform 0.15s;
  color: var(--color-primary);
}
header nav a:hover, header nav a:focus {
  background: var(--color-accent);
  color: var(--color-primary);
  transform: translateY(-2px) scale(1.1);
}
.cta-btn {
  background: var(--color-accent);
  color: var(--color-primary);
  border: none;
  padding: 12px 26px;
  border-radius: 42px;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 900;
  font-size: 1.1rem;
  box-shadow: 0 2px 16px 0 var(--color-card-shadow);
  transition: background var(--transition-fast), color 0.15s, transform 0.15s;
  margin-left: 16px;
  cursor: pointer;
  outline: none;
  letter-spacing: 0.03em;
  position: relative;
  z-index: 2;
  text-shadow: 0 2px 6px #ffd60044;
  animation: btn-pop 2.2s cubic-bezier(0.36,0.17,0.48,0.94) infinite 0.4s alternate;
}
@keyframes btn-pop {
  0% { transform: scale(1); }
  100% { transform: scale(1.06) rotate(-2deg);}
}
.cta-btn:hover, .cta-btn:focus {
  background: #fff549;
  color: #003049;
  transform: scale(1.09);
  box-shadow: 0 8px 22px 0 #0030491a;
}

/* BURGER MENU (mobile) --------------------------------------------- */
.mobile-menu-toggle {
  background: var(--color-accent);
  color: var(--color-primary);
  border: none;
  font-size: 2.2rem;
  border-radius: 50%;
  padding: 0.25em 0.47em;
  cursor: pointer;
  margin-left: auto;
  transition: background var(--transition-fast), box-shadow var(--transition-fast);
  box-shadow: 0 2px 12px #00304920;
  outline: none;
  z-index: 1002;
  display: none;
}
.mobile-menu-toggle:hover,
.mobile-menu-toggle:focus {
  background: #ffe451;
  box-shadow: 0 4px 18px 0 #00304937;
}

.mobile-menu {
  position: fixed;
  top: 0; left: 0; bottom: 0; right: 0;
  width: 100vw;
  height: 100vh;
  background: #003049ee;
  box-shadow: 0 10px 40px 8px #00304966;
  z-index: 1200;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  transform: translateX(-100vw);
  transition: transform 0.36s cubic-bezier(.67,.04,.19,1.29);
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: #FFD600;
  color: #003049;
  border: none;
  font-size: 2.1rem;
  font-family: 'Montserrat', Arial, sans-serif;
  border-radius: 50%;
  padding: .33em .59em;
  margin: 24px 0 14px 24px;
  cursor: pointer;
  box-shadow: 0 2px 8px #FFD60055;
  align-self: flex-start;
  transition: background var(--transition-fast);
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  background: #ffe451;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-left: 28px;
  margin-top: 18px;
}
.mobile-nav a {
  color: #FFD600;
  font-size: 1.3rem;
  letter-spacing: 0.037em;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 800;
  padding: 10px 2px 10px 0;
  border-radius: 0 24px 24px 0;
  transition: background 0.2s, color 0.2s;
  text-shadow: 1px 1px 6px #00122288;
  outline: none;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #FFF54933;
  color: #003049;
}
@media (max-width: 1100px) {
  header nav,
  .cta-btn {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}
@media (max-width: 640px) {
  .mobile-nav a {
    font-size: 1.1rem;
  }
}

/* HERO & SECTION ------------------------------------------------- */
section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: none;
  border-radius: var(--border-radius);
}
section:nth-of-type(odd) {
  background: #fffde7;
}

@media (max-width: 768px) {
  section {
    padding: 20px 6px;
    margin-bottom: 34px;
  }
}

/* CARD & FEATURE/GRID STYLES -------------------------------------- */
.features-grid, .services-list, .testimonial-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.feature, .service {
  background: #fff;
  border-radius: var(--border-radius);
  box-shadow: 0 4px 16px 0 var(--color-card-shadow);
  padding: 30px 18px 28px 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1 1 260px;
  min-width: 230px;
  min-height: 260px;
  max-width: 320px;
  margin-bottom: 20px;
  margin-right: 0;
  transition: box-shadow 0.22s, transform 0.18s;
  position: relative;
  border: 2.5px solid #FFD60027;
  cursor: pointer;
  animation: fadeinup 1.1s cubic-bezier(.38,.04,.35,.95) both;
}
.feature img, .service img {
  width: 60px;
  height: 60px;
  margin-bottom: 18px;
  filter: drop-shadow(0 2px 6px #ffd60033) brightness(1.1);
}
.feature h3, .service h3 {
  margin: 0 0 12px 0;
  font-size: 1.16rem;
  font-weight: 900;
  color: var(--color-primary);
  text-align: center;
}
.feature p, .service p {
  margin-bottom: 10px;
  text-align: center;
  color: #265a7a;
}
.service .price {
  display: inline-block;
  margin-top: 8px;
  font-weight: bold;
  background: #fff9af;
  color: #003049;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  padding: 3px 18px;
  border-radius: 22px;
  font-size: .93rem;
  letter-spacing: 0.02em;
}
.feature:hover,
.service:hover {
  box-shadow: 0 8px 28px 3px #FFD60033, 0 4px 16px 0 #00304911;
  transform: scale(1.035) translateY(-4px);
  border-color: var(--color-accent);
}
@keyframes fadeinup {
  from { opacity: 0; transform: translateY(60px) scale(.92); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

/* ICON ROW  */
.icon-row {
  display: flex;
  gap: 36px;
  margin-top: 20px;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-start;
}
.icon-row img {
  width: 56px;
  height: 56px;
  filter: drop-shadow(0 3px 12px #FFD60044) brightness(1.12);
}
@media (max-width: 600px) {
  .features-grid, .services-list, .icon-row {
    flex-direction: column;
    gap: 18px;
  }
  .feature, .service {
    min-width: 100%;
    max-width: 98vw;
  }
  .icon-row {
    gap: 18px;
  }
}

/* PRICING TABLE ------------------------------------------------- */
.pricing-table {
  width: 100%;
  background: #fff;
  border-radius: var(--border-radius);
  box-shadow: 0 4px 12px 1px #00304910;
  border: 1.5px solid #FFD60033;
  overflow-x: auto;
  margin-bottom: 34px;
  margin-top: 8px;
}
.pricing-table th, .pricing-table td {
  padding: 16px 13px;
  font-size: 1rem;
  font-family: 'Roboto', Arial, sans-serif;
  border-bottom: 1px solid #e3eaf3;
  color: #003049;
  text-align: left;
}
.pricing-table th {
  background: #fff9af;
  color: #003049;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 800;
  font-size: 1.05rem;
}
.pricing-table tr:last-child td {
  border-bottom: none;
}
@media (max-width: 600px) {
  .pricing-table th, .pricing-table td {
    font-size: .98rem;
    padding: 10px 7px;
  }
}

/* TESTIMONIALS -------------------------------------------------- */
.testimonial-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 12px;
  margin-bottom: 12px;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  padding: 24px 22px 14px 22px;
  background: #fff;
  border-radius: var(--border-radius);
  box-shadow: 0 5px 28px 2px #0030490c, 0 2px 9px #FFD60022;
  min-width: 250px;
  flex: 1 1 280px;
  margin-bottom: 20px;
  min-height: 180px;
  border: 2.5px solid #FFD60055;
  position: relative;
  transition: box-shadow 0.21s, border 0.18s, transform 0.22s;
  color: #00244e;
}
.testimonial-card:hover, .testimonial-card:focus {
  box-shadow: 0 12px 33px 6px #FFD60055, 0 3px 8px #00304924;
  transform: scale(1.034);
  border-color: var(--color-primary);
}
.testimonial-card .star-rating {
  font-size: 1.25rem;
  color: #FFD600;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  letter-spacing: 0.09em;
}
.testimonial-card p {
  color: #155299;
  font-style: italic;
  font-size: 1.04rem;
  margin-bottom: 4px;
}
.testimonial-author {
  font-size: .93rem;
  color: #003049;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  margin-top: 6px;
  font-weight: 700;
}

/* FOR CTA/TEASER SECTIONS ---------------------------------- */
.cta-section {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: center;
  justify-content: center;
}

/* ABOUT - LEADING BULLET LISTS ----------------------------------- */
.text-section ul, .price-details ul, .open-hours ul {
  margin-left: 0;
  padding-left: 0;
  margin-bottom: 12px;
}
.text-section ul li,
.price-details ul li,
.open-hours ul li {
  font-size: 1rem;
  position: relative;
  margin-bottom: 12px;
  padding-left: 32px;
  color: #003049;
  font-family: 'Roboto', Arial, sans-serif;
  font-weight: 500;
}
.text-section ul li:before,
.price-details ul li:before, .open-hours ul li:before {
  content: '✔';
  color: #FFD600;
  font-size: 1.24em;
  position: absolute;
  left: 0;
  top: 0;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 900;
}

/* FOOTER -------------------------------------------------- */
footer {
  width: 100%;
  background: linear-gradient(90deg, #003049 80%, #ffd600 100%);
  color: #fff;
  padding: 0;
  margin-top: 48px;
  font-family: 'Roboto', Arial, sans-serif;
}
footer .container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px 34px;
  align-items: flex-start;
  justify-content: space-between;
  padding: 36px 20px 10px 20px;
}
.footer-nav {
  flex: 2 1 280px;
  display: flex;
  flex-wrap: wrap;
  gap: 16px 16px;
}
.footer-nav a {
  color: #FFD600;
  font-weight: 700;
  font-size: 1rem;
  border-radius: 20px;
  padding: 4px 12px;
  transition: background 0.21s;
}
.footer-nav a:hover,
.footer-nav a:focus {
  background: #fff9af;
  color: #003049;
}
.footer-contact p, .footer-contact a {
  color: #fff9af;
  font-size: 1rem;
  margin-bottom: 6px;
}
.footer-social img {
  width: 54px;
  height: 54px;
  margin-bottom: 10px;
}
.footer-legal {
  flex-basis: 100%;
  margin-top: 14px;
}
.footer-legal small {
  color: #FFD600;
  font-size: .84rem;
}
@media (max-width: 900px) {
  footer .container {flex-direction: column; gap: 18px; align-items: flex-start;}
  .footer-nav {flex-basis: 100%;}
}

/* CONTACT PAGE ----------------------------------------------- */
.contact-details p {
  margin-bottom: 8px;
  font-size: 1rem;
}
.contact-details a {
  color: #1EA7FD;
  text-decoration: underline;
}
.map-embed {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 18px;
}
.map-embed img {
  width: 90px;
  height: 90px;
  filter: drop-shadow(0 2px 12px #FFD60044);
}

/* UTILS & ANIMATIONS ------------------------------------------- */
@keyframes wiggle {
  0%, 100% { transform: rotate(-3deg); }
  50% { transform: rotate(3deg); }
}

@media (max-width: 600px) {
  .map-embed { flex-direction: column; gap: 8px; }
  .footer-nav { gap: 8px; }
  .footer-social img { margin: 0 auto 14px auto; }
}

/* COOKIE CONSENT BANNER ---------------------------------------- */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  width: 100vw;
  background: #FFD600;
  color: #003049;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 16px 26px;
  box-shadow: 0 -4px 20px #00304911;
  z-index: 2000;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 600;
  gap: 16px;
  animation: cookieSlideUp 800ms cubic-bezier(.49,0,.32,1.65);
}
@keyframes cookieSlideUp {
  from { transform: translateY(110%); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.cookie-banner .cookie-text {
  flex: 2;
  font-size: 1.09rem;
  color: #003049;
}
.cookie-banner .cookie-actions {
  display: flex;
  flex-direction: row;
  gap: 14px;
  flex-wrap: wrap;
}
.cookie-btn {
  background: #fff;
  color: #003049;
  font-weight: bold;
  border: none;
  border-radius: 22px;
  padding: 8px 20px;
  font-size: 1rem;
  cursor: pointer;
  box-shadow: 0 2px 8px #00304917;
  transition: background 0.21s, color 0.2s, transform 0.18s;
}
.cookie-btn:hover, .cookie-btn:focus {
  background: #003049;
  color: #FFD600;
  transform: scale(1.07);
}
.cookie-btn.settings {
  background: #FFF549;
  color: #003049;
}
.cookie-btn.reject {
  background: #ff5a5f;
  color: #fff;
}
.cookie-btn.reject:hover {
  background: #c50e1f;
  color: #FFD600;
}

@media (max-width: 700px) {
  .cookie-banner { flex-direction: column; align-items: flex-start; gap: 10px; padding: 12px 6px; }
  .cookie-banner .cookie-actions { width: 100%;justify-content: flex-start;}
}

/* COOKIE PREFERENCES MODAL ---------------------------------------- */
.cookie-modal {
  position: fixed;
  left: 0; right: 0; top: 0; bottom: 0;
  z-index: 2100;
  background: rgba(0,32,64,0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: auto;
  animation: cookieModalFadein 400ms cubic-bezier(.38,.06,.22,.92);
}
@keyframes cookieModalFadein {
  from { opacity: 0; }
  to { opacity: 1; }
}
.cookie-modal-content {
  background: #fff;
  color: #003049;
  padding: 36px 22px 32px 22px;
  border-radius: 22px;
  box-shadow: 0 7px 38px #00304944;
  min-width: 310px;
  max-width: 98vw;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  animation: wiggle 1.4s both;
}
.cookie-modal-content h2 {
  color: #FFD600;
  margin-bottom: 6px;
}
.cookie-modal-content ul {
  margin: 0 0 22px 0;
  padding: 0;
  list-style: none;
}
.cookie-modal-close {
  position: absolute;
  right: 18px; top: 14px;
  background: #FFD600;
  color: #003049;
  border-radius: 50%;
  border: none;
  font-size: 1.4rem;
  font-family: 'Montserrat', Arial, sans-serif;
  cursor: pointer;
  width: 36px;
  height: 36px;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 2px 10px #FFD60033;
  transition: background 0.19s;
}
.cookie-modal-close:hover { background: #ffe451; }
.cookie-cat-row {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 13px;
}
.cookie-cat-label {
  font-weight: 700;
  font-family: 'Montserrat', Arial, sans-serif;
  min-width: 120px;
  color: #003049;
}
.cookie-cat-toggle {
  accent-color: #FFD600;
  width: 28px;
  height: 28px;
  outline: none;
  border-radius: 50%;
  border: 1.7px solid #FFD60066;
  margin-right: 10px;
}
.cookie-cat-note {
  font-size: 0.97em;
  color: #1d2851a0;
  margin-left: 2px;
  font-style: italic;
}

/* RESPONSIVE -------------------------------------------- */
@media (max-width: 900px) {
  .container {
    max-width: 98vw;
    padding-left: 4vw;
    padding-right: 4vw;
  }
}
@media (max-width: 600px) {
  h1 { font-size: 1.7rem; }
  h2 { font-size: 1.22rem; }
  .cta-btn { font-size: 1rem; padding: 10px 12px; }
  .feature, .service { min-width: 100%; max-width: 96vw; margin: 0 auto 18px auto; }
}

/* MISC -------------------------------------------------- */
::-webkit-scrollbar { width: 10px; background: #fff; }
::-webkit-scrollbar-thumb {
  background: #FFD60099;
  border-radius: 22px;
}
::-webkit-scrollbar-thumb:hover { background: #FFD600; }


/* ACCESSIBILITY & FOCUS STATES -------------------------- */
a:focus-visible, button:focus-visible {
  outline: 3px dashed #FFD600;
  outline-offset: 2px;
  background: #ffd60012;
}

/* Remove unwanted outline on mouse (but keep for keyboard nav) */
:focus:not(:focus-visible) {
  outline: none;
  box-shadow: none;
}

/* END OF STYLE.CSS */
