/* ============================== */
/*        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;
}
html {
  box-sizing: border-box;
  scroll-behavior: smooth;
}
*, *::before, *::after {
  box-sizing: inherit;
}
body {
  line-height: 1.6;
  background: #F6F7F9;
  color: #1A232B;
  font-family: 'Open Sans', Arial, sans-serif;
  min-height: 100vh;
  word-break: break-word;
  font-size: 16px;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: #073B4C;
  text-decoration: none;
  transition: color 0.18s cubic-bezier(.4,0,.2,1);
}
a:hover,
a:focus {
  color: #FFD166;
}
ul,ol {
  margin: 0 0 16px 24px;
}
ul li, ol li {
  margin-bottom: 8px;
  font-size: 16px;
}
strong {
  font-weight: 700;
  color: #073B4C;
}

/* ============================== */
/*      Brand Fonts (Fallbacks)   */
/* ============================== */
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;700&family=Rubik:wght@700&display=swap');
h1, h2, h3, h4, h5 {
  font-family: 'Rubik', Arial, Helvetica, sans-serif;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #073B4C;
}
h1 {
  font-size: 2.5rem;
  line-height: 1.15;
  margin-bottom: 24px;
}
h2 {
  font-size: 2rem;
  margin-bottom: 18px;
}
h3 {
  font-size: 1.25rem;
  margin: 14px 0 8px;
}
p {
  font-size: 1rem;
  color: #25323C;
  margin-bottom: 16px;
}

/* ========================= */
/*     Utility & Layout      */
/* ========================= */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 3px 24px 0 rgba(7,59,76,0.08);
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  flex: 1 1 290px;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 12px 0 rgba(7,59,76,0.05);
  border: 1.5px solid #E0E6EB;
  padding: 24px;
  transition: box-shadow 0.22s cubic-bezier(.4,0,.2,1), transform 0.16s;
}
.card:hover {
  box-shadow: 0 5px 32px 0 rgba(7,59,76,0.12);
  transform: translateY(-3px) scale(1.02);
}
.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;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  background: #F6F7F9;
  border-radius: 16px;
  box-shadow: 0 1.5px 10px 0 rgba(7,59,76,.07);
  margin-bottom: 20px;
  min-width: 260px;
  max-width: 520px;
  border-left: 7px solid #FFD166;
}
.testimonial-card p {
  font-size: 1.05rem;
  color: #073B4C;
}
.testimonial-card span {
  font-style: italic;
  font-size: 0.95rem;
  color: #435160;
}
.testimonial-card .star-rating {
  color: #FFD166;
  font-size: 1.25rem;
  letter-spacing: 0.03em;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* Visual Hierarchy for Lists in Features */
.features ul,
.features ol {
  margin: 0 0 0 10px;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  flex-direction: column;
}
.features li {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 1.05rem;
  padding: 13px 18px;
  background: #F6F7F9;
  border-radius: 12px;
  box-shadow: 0 1px 6px rgba(7,59,76,0.06);
  border-left: 3px solid #FFD166;
}
.features li img {
  width: 28px;
  height: 28px;
  border-radius: 6px;
  background: #fff;
  border: 1.5px solid #073B4C20;
  padding: 3px;
}
.services ul {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  flex-direction: column;
  margin-left: 0;
  margin-bottom: 16px;
}
.services li {
  background: #F6F7F9;
  border-radius: 13px;
  box-shadow: 0 1px 6px rgba(7,59,76,0.06);
  border-left: 3px solid #073B4C;
  padding: 16px 18px;
  font-size: 1.08rem;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 0;
  min-width: 220px;
}
.services li span {
  color: #FFD166;
  font-weight: 700;
  margin-left: 2px;
  font-size: 1.05rem;
}

.opening-hours ul {
  background: #F6F7F9;
  border-radius: 12px;
  box-shadow: 0 1px 6px rgba(7,59,76,0.06);
  border-left: 3px solid #FFD166;
  padding: 12px 20px;
}
.opening-hours li {
  margin: 5px 0;
}

.text-section {
  background: #fff;
  border-radius: 14px;
  padding: 18px 20px;
  box-shadow: 0 1px 8px rgba(7,59,76,0.06);
}
.address-map {
  display: flex;
  align-items: center;
  gap: 14px;
  background: #F6F7F9;
  border-radius: 10px;
  padding: 11px 16px;
  margin-top: 10px;
}

/* ========================= */
/*        Header/Nav         */
/* ========================= */
header {
  background: #073B4C;
  color: #fff;
  box-shadow: 0 2px 10px 0 rgba(7,59,76,0.14);
  z-index: 20;
  position: sticky;
  top: 0;
  left: 0;
}
.main-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 17px 0 17px 0;
  position: relative;
}
.logo-link {
  display: flex;
  align-items: center;
}
.logo-link img {
  height: 42px;
  width: auto;
  margin-right: 0;
}
.nav-list {
  display: flex;
  align-items: center;
  gap: 25px;
  list-style: none;
}
.nav-list li {
  display: flex;
  align-items: center;
}
.nav-list a {
  color: #fff;
  font-family: 'Rubik', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  padding: 7px 13px;
  border-radius: 7px;
  font-weight: 700;
  position: relative;
  transition: background .16s, color .16s;
}
.nav-list a:hover,
.nav-list a:focus {
  background: #FFD166;
  color: #073B4C;
}
.nav-list .primary.cta {
  background: #FFD166;
  color: #073B4C;
  border-radius: 7px;
  padding: 8px 17px;
  margin-left: 8px;
  font-size: 1rem;
  font-weight: 700;
  box-shadow: 0 1px 5px rgba(255,209,102,0.09);
  transition: background .18s, color .18s, transform .18s;
}
.nav-list .primary.cta:hover,
.nav-list .primary.cta:focus {
  background: #073B4C;
  color: #FFD166;
  transform: scale(1.06);
}

/* Burger mobile menu - hidden desktop */
.mobile-menu-toggle {
  background: transparent;
  color: #FFD166;
  border: none;
  font-size: 2.1rem;
  display: none;
  align-items: center;
  cursor: pointer;
  margin-left: 16px;
  transition: color 0.18s;
  z-index: 60;
  height: 40px;
  width: 44px;
}
.mobile-menu-toggle:focus {
  outline: 2px solid #FFD166;
  outline-offset: 3px;
}

.mobile-menu {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: #073B4C;
  z-index: 99;
  transform: translateX(-105vw);
  transition: transform 0.35s cubic-bezier(.9,0,.3,1);
  box-shadow: 0 4px 32px rgba(7,59,76,0.17);
  opacity: 0.98;
  pointer-events: none;
}
.mobile-menu.open {
  transform: translateX(0);
  pointer-events: auto;
}
.mobile-menu-close {
  background: transparent;
  color: #FFD166;
  border: none;
  font-size: 2rem;
  align-self: flex-end;
  margin: 18px 16px 8px 0;
  cursor: pointer;
  transition: color 0.18s;
}
.mobile-menu-close:focus {
  outline: 2px solid #FFD166;
  outline-offset: 2px;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
  align-items: flex-start;
  margin-top: 24px;
  padding-left: 32px;
}
.mobile-nav a {
  color: #FFD166;
  font-family: 'Rubik', Arial, Helvetica, sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  padding: 12px 0;
  border-radius: 6px;
  width: 92%;
  transition: background 0.15s, color 0.15s;
  min-height: 40px;
}
.mobile-nav a:active,
.mobile-nav a:hover,
.mobile-nav a:focus {
  background: #FFD166;
  color: #073B4C;
}

/* Hamburger visible only on mobile */
@media (max-width: 1024px) {
  .nav-list { display: none; }
  .mobile-menu-toggle { display: flex; }
}
@media (max-width: 768px) {
  .main-nav {
    flex-direction: row;
    gap: 12px;
  }
}

/* ============================== */
/*            Hero                */
/* ============================== */
.hero {
  background: linear-gradient(120deg, #073B4C 78%, #FFD166 165%);
  color: #fff;
  padding: 60px 0 40px 0;
  margin-bottom: 50px;
  border-radius: 0 0 30px 30px/0 0 12px 12px;
  position: relative;
}
.hero .container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.hero h1 {
  color: #FFD166;
  font-size: 2.5rem;
  margin-bottom: 19px;
  letter-spacing: 0.01em;
  text-shadow: 0 2px 8px rgba(7,59,76,0.09);
}
.hero p {
  color: #fff;
  font-size: 1.18rem;
  margin-bottom: 28px;
  max-width: 600px;
}
.hero .cta.primary {
  background: #FFD166;
  color: #073B4C;
  font-size: 1.1rem;
  font-weight: 700;
  border-radius: 8px;
  padding: 14px 32px;
  box-shadow: 0 6px 28px 0 rgba(255,209,102,0.12);
  transition: background 0.16s, color 0.16s, box-shadow 0.22s, transform 0.15s;
  border: none;
}
.hero .cta.primary:hover,
.hero .cta.primary:focus {
  background: #fff;
  color: #073B4C;
  box-shadow: 0 12px 36px 0 rgba(255,209,102,0.15);
  transform: translateY(-2px) scale(1.02);
}

/* =============================== */
/*    CTA Primary & Secondary Btn  */
/* =============================== */
.cta {
  display: inline-block;
  font-family: 'Rubik', Arial, Helvetica, sans-serif;
  text-align: center;
  cursor: pointer;
  transition: background 0.18s, color 0.17s, box-shadow 0.16s, transform 0.15s;
  outline: none;
}
.cta.primary {
  background: #FFD166;
  color: #073B4C;
  font-weight: 700;
  border-radius: 9px;
  padding: 12px 25px;
  border: none;
  box-shadow: 0 1.5px 12px rgba(255,209,102,0.12);
  font-size: 1.09rem;
}
.cta.primary:hover,
.cta.primary:focus {
  background: #073B4C;
  color: #FFD166;
  box-shadow: 0 6px 32px 0 rgba(7,59,76,0.13);
  transform: scale(1.05);
}
.cta.secondary {
  background: #073B4C;
  color: #FFD166;
  border-radius: 9px;
  padding: 12px 25px;
  border: 2px solid #FFD166;
  box-shadow: 0 1.5px 12px rgba(7,59,76,0.09);
  margin-top: 15px;
  font-weight: 700;
  font-size: 1.01rem;
}
.cta.secondary:hover,
.cta.secondary:focus {
  background: #FFD166;
  color: #073B4C;
  border-color: #073B4C;
  box-shadow: 0 10px 32px 0 rgba(255,209,102,0.15);
  transform: scale(1.04);
}

/* =============================== */
/*            Footer               */
/* =============================== */
footer {
  background: #073B4C;
  color: #fff;
  padding: 42px 0 34px 0;
  position: relative;
  margin-top: 80px;
  border-radius: 28px 28px 0 0/12px 12px 0 0;
  box-shadow: 0 -1.5px 16px 0 rgba(7,59,76,0.13);
}
footer .container {
  display: flex;
  flex-direction: column;
  gap: 0;
}
footer .content-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 36px;
  justify-content: space-between;
  align-items: flex-start;
}
.footer-nav,
.footer-legal {
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.footer-nav a, .footer-legal a {
  color: #FFD166;
  font-family: 'Rubik', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  padding: 5px 0;
  border-radius: 5px;
}
.footer-nav a:hover,
.footer-legal a:hover,
.footer-nav a:focus,
.footer-legal a:focus {
  background: #FFD166;
  color: #073B4C;
}
.footer-contact {
  font-size: 1rem;
  color: #FFD166;
  margin-bottom: 5px;
}
.footer-contact strong {
  color: #FFD166;
}
.footer-contact a {
  color: #fff;
  text-decoration: underline;
}
.footer-social {
  display: flex;
  flex-direction: row;
  gap: 18px;
  align-items: center;
  margin-top: 8px;
}
.footer-social img {
  width: 29px;
  height: 29px;
  border-radius: 7px;
  background: #FFD166;
  padding: 4px;
  transition: filter 0.18s, background 0.18s;
  box-shadow: 0 1px 8px rgba(255,209,102,0.08);
  cursor: pointer;
}
.footer-social img:hover {
  background: #fff;
  filter: brightness(0.7);
}

@media (max-width: 900px) {
  footer .content-wrapper {
    gap: 22px;
    flex-direction: column;
  }
  .footer-nav, .footer-legal {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 13px;
  }
}

/* =============================== */
/*         Cookie Consent          */
/* =============================== */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  width: 100vw;
  background: #073B4C;
  color: #FFD166;
  z-index: 140;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 23px 12px 19px 18px;
  box-shadow: 0 -2px 18px 0 rgba(7,59,76,.18);
  font-size: 1.03rem;
  font-family: 'Open Sans', Arial, sans-serif;
  border-radius: 12px 12px 0 0 /8px 8px 0 0;
  animation: bannerFadeIn 0.29s cubic-bezier(.4,0,.2,1);
}
@keyframes bannerFadeIn {
  from { transform: translateY(100px); opacity:0; }
  to   { transform: translateY(0); opacity:1; }
}
.cookie-banner p {
  max-width: 480px;
  color: #FFD166;
}
.cookie-banner .cookie-btn {
  font-family: 'Rubik', Arial, sans-serif;
  border-radius: 7px;
  border: none;
  margin-left: 9px;
  padding: 10px 22px;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0;
  transition: background 0.16s,color 0.16s, box-shadow 0.15s;
  cursor: pointer;
}
.cookie-banner .accept-btn {
  background: #FFD166;
  color: #073B4C;
  box-shadow: 0 1.5px 8px rgba(255,209,102,0.12);
}
.cookie-banner .accept-btn:hover,
.cookie-banner .accept-btn:focus {
  background: #fff;
  color: #073B4C;
}
.cookie-banner .reject-btn {
  background: #fff;
  color: #073B4C;
  border: 1.5px solid #FFD166;
  margin-left: 8px;
}
.cookie-banner .reject-btn:hover,
.cookie-banner .reject-btn:focus {
  background: #FFD166;
  color: #073B4C;
}
.cookie-banner .settings-btn {
  background: transparent;
  border: 1.5px solid #FFD166;
  color: #FFD166;
  margin-left: 8px;
}
.cookie-banner .settings-btn:hover,
.cookie-banner .settings-btn:focus {
  background: #FFD166;
  color: #073B4C;
}

.cookie-modal-backdrop {
  position: fixed;
  top:0; left:0; right:0; bottom:0;
  width: 100vw;
  height: 100vh;
  background: rgba(7, 59, 76, 0.50);
  z-index: 150;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: auto;
  animation: fadeIn 0.20s;
}
@keyframes fadeIn {
  from { opacity:0; }
  to { opacity:1; }
}
.cookie-modal {
  background: #fff;
  color: #073B4C;
  border-radius: 14px;
  box-shadow: 0 12px 48px 0 rgba(7,59,76,0.17);
  padding: 38px 30px 30px 30px;
  max-width: 430px;
  width: 95vw;
  display: flex;
  flex-direction: column;
  gap: 24px;
  z-index: 155;
  animation: cookieSlideIn .32s cubic-bezier(.9,0,.3,1);
  position: relative;
}
@keyframes cookieSlideIn {
  from { transform: translateY(80px) scale(0.93); opacity:0; }
  to { transform: translateY(0) scale(1); opacity:1; }
}
.cookie-modal h3 {
  color: #073B4C;
  font-size: 1.4rem;
  margin-bottom: 14px;
}
.cookie-modal .modal-close {
  position: absolute;
  top: 15px;
  right: 18px;
  background: transparent;
  border: none;
  color: #073B4C;
  font-size: 1.5rem;
  cursor: pointer;
}
.cookie-modal .cookie-category {
  display: flex;
  align-items: center;
  gap: 13px;
  margin: 12px 0;
}
.cookie-modal label {
  font-size: 1rem;
  color: #073B4C;
}
.cookie-modal input[type=checkbox] {
  accent-color: #FFD166;
  width: 19px; height: 19px;
}
.cookie-modal .modal-actions {
  display: flex; align-items: center;
  gap: 13px;
  margin-top: 18px;
}
.cookie-modal .accept-btn,
.cookie-modal .reject-btn {
  border-radius: 7px;
  border: none;
  padding: 11px 26px;
  font-family: 'Rubik', Arial, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
}
.cookie-modal .accept-btn {
  background: #FFD166;
  color: #073B4C;
}
.cookie-modal .accept-btn:focus,
.cookie-modal .accept-btn:hover {
  background: #073B4C;
  color: #FFD166;
}
.cookie-modal .reject-btn {
  background: #fff;
  border: 1.5px solid #FFD166;
  color: #073B4C;
}
.cookie-modal .reject-btn:focus,
.cookie-modal .reject-btn:hover {
  background: #FFD166;
  color: #073B4C;
}
.cookie-modal .settings-btn {
  background: transparent;
  color: #FFD166;
  border: 1.5px solid #FFD166;
}
.cookie-modal .settings-btn:focus,
.cookie-modal .settings-btn:hover {
  background: #FFD166;
  color: #073B4C;
}

.cookie-modal .always-on {
  color: #16A085;
  font-size: 0.92rem;
  font-weight: 600;
  margin-left: 6px;
}

/* =============================== */
/*    Responsive adjustments       */
/* =============================== */
@media (max-width: 1200px) {
  .container {
    max-width: 98vw;
  }
}
@media (max-width: 1024px) {
  .footer-nav, .footer-legal {
    font-size: 0.95rem;
  }
}
@media (max-width: 900px) {
  .content-wrapper {
    gap: 16px;
  }
}
@media (max-width: 768px) {
  .main-nav {
    flex-direction: row;
    gap: 8px;
    padding: 10px 0 10px 0;
  }
  .section {
    margin-bottom: 32px;
    padding: 24px 8px;
  }
  .features ul,
  .services ul {
    gap: 14px;
  }
  .card-container,
  .content-grid {
    gap: 12px;
  }
  .testimonial-card {
    padding: 14px;
    min-width: 0;
    max-width: 98vw;
    font-size: 0.99rem;
  }
  .footer-social img {
    width: 25px; height: 25px;
  }
  .hero {
    padding: 40px 0 24px 0;
    margin-bottom: 28px;
  }
  .hero h1 {
    font-size: 1.35rem;
    margin-bottom: 12px;
  }
  .hero p {
    font-size: 0.97rem;
    margin-bottom: 19px;
  }
  .hero .cta.primary {
    font-size: 1rem;
    padding: 11px 20px;
  }
  .text-section {
    padding: 13px 8px;
  }
  .opening-hours ul {
    padding: 7px 8px;
  }
  .address-map {
    padding: 8px 7px;
  }
}
@media (max-width: 600px) {
  .footer-contact {
    font-size: 0.97rem;
  }
}
@media (max-width: 540px) {
  h1 { font-size: 1.12rem; }
  h2 { font-size: 1.01rem; }
  h3 { font-size: .95rem; }
  .footer-nav a, .footer-legal a { font-size: 0.97rem;}
  .footer-contact { font-size: 0.92rem;}
  .container { padding: 0 3vw; }
  .content-wrapper { gap: 7px; }
  .section { padding: 11px 3px; }
}
@media (max-width: 700px) {
  .text-image-section {
    flex-direction: column;
    gap: 14px;
    align-items: flex-start;
  }
  .card-container,
  .content-grid {
    flex-direction: column;
    gap: 14px;
  }
}

/* ============================ */
/*  Geometric-structured Deco   */
/* ============================ */
.section {
  border-radius: 18px 18px 18px 7px/18px 18px 7px 18px;
  border-bottom: 6px solid #FFD166;
  box-shadow: 0 3px 24px 0 rgba(7,59,76,0.08);
}
.features li, .services li, .opening-hours ul {
  border-radius: 14px 14px 4px 14px / 10px 14px 14px 14px;
}
.features li {
  border-left: 5px solid #FFD166;
}
.services li {
  border-left: 5px solid #073B4C;
}
.card {
  border-radius: 14px 5px 14px 14px;
}
.testimonial-card {
  border-left: 8px solid #FFD166;
  border-radius: 12px 16px 10px 16px;
}

/* Angle/Structured font accents */
h1, h2, h3, .cta, .nav-list a, .mobile-nav a {
  font-family: 'Rubik', Arial, Helvetica, sans-serif;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: none;
}

/* Micro-interactions */
.cta, button, .nav-list a, .mobile-nav a {
  transition: background 0.17s, color 0.16s, box-shadow 0.14s, transform 0.10s;
}
.card, .section, .testimonial-card {
  transition: box-shadow 0.25s cubic-bezier(.4,0,.2,1), transform 0.18s;
}
.card:hover, .testimonial-card:hover {
  box-shadow: 0 7px 34px 3px rgba(7,59,76,0.14);
  transform: translateY(-2px) scale(1.01);
}

/* Accessibility: focus states */
:focus-visible {
  outline: 2px solid #FFD166;
  outline-offset: 3px;
}

/* ============================ */
/* Misc: visible horizontal rule */
hr {
  border: 0;
  border-top: 2px solid #E3E7ED;
  margin: 30px 0;
}
