/* ==========================================================================
   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;
}
ul, ol {
  list-style: none;
}
body {
  line-height: 1.47;
  background: #172134;
  color: #F6F7F9;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  min-height: 100vh;
  font-size: 16px;
  background: linear-gradient(135deg, #1a2434 0%, #20496A 100%);
}
a {
  color: #97C64C;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #FFF738;
  text-decoration: underline;
}
img {
  max-width: 100%;
  display: block;
}
button {
  font-family: inherit;
  cursor: pointer;
  background: none;
  border: none;
  color: inherit;
  outline: none;
}

/* ==========================================================================
   Typography
   ==========================================================================
*/
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Open Sans', Arial, sans-serif;
  font-weight: 700;
  color: #F6F7F9;
  letter-spacing: 0.02em;
  line-height: 1.1;
  margin-bottom: 16px;
}
h1 { font-size: 2.5rem; margin-bottom: 18px; }
h2 { font-size: 2rem; margin-bottom: 16px; }
h3 { font-size: 1.2rem; margin-bottom: 12px; color: #97C64C; }
h4, h5, h6 { font-size: 1rem; }
p, li, blockquote {
  font-size: 1rem;
  color: #F6F7F9;
  line-height: 1.7;
  margin-bottom: 10px;
}
blockquote {
  position: relative;
  padding-left: 32px;
  font-style: italic;
  color: #20496A;
  background: #F6F7F9;
  border-left: 4px solid #97C64C;
  border-radius: 12px;
  margin-bottom: 10px;
}
blockquote:before {
  content: '“';
  position: absolute;
  left: 12px;
  top: 3px;
  color: #97C64C;
  font-size: 2.2rem;
}
.testimonial-card .testimonial-author {
  color: #20496A;
  font-weight: 600;
  font-size: 1rem;
  margin-left: 8px;
}

/* ==========================================================================
   Layout Containers
   ==========================================================================
*/
.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container, .card-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #232B40;
  border-radius: 18px;
  box-shadow: 0 4px 14px rgba(22,35,50, 0.12);
  padding: 24px 20px;
  min-width: 240px;
  flex: 1 1 300px;
  transition: box-shadow 0.2s, border-color 0.2s, transform 0.20s;
  border: 1px solid #273554;
}
.card:hover, .card:focus {
  border-color: #97C64C;
  box-shadow: 0 8px 28px #97C64C44;
  transform: translateY(-4px) scale(1.015);
}
.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;
  background: #F6F7F9;
  border-radius: 16px;
  box-shadow: 0 2px 8px #20496A22;
  margin-bottom: 22px;
  border: 2px solid #97C64C22;
  flex-direction: column;
  color: #20496A;
}
.testimonial-card blockquote {
  color: #20496A;
  background: transparent;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}
ul {
  padding-left: 0;
  margin-bottom: 10px;
}
li {
  padding-left: 0;
  margin-bottom: 7px;
  display: flex;
  align-items: center;
  gap: 10px;
}

/* ==========================================================================
   Header & Navigation
   ==========================================================================
*/
header {
  width: 100%;
  padding: 16px 0;
  background: #172134;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 13px #20496A18;
  z-index: 1101;
  position: relative;
}
header > a img {
  height: 48px;
  margin-right: 32px;
  display: block;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-right: 40px;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  color: #F6F7F9;
  font-size: 1rem;
  letter-spacing: 0.02em;
  text-shadow: 0 1px 4px #20496A55;
  transition: color 0.2s;
  position: relative;
  padding: 2px 0;
}
.main-nav a:after {
  content: '';
  display: block;
  width: 0;
  height: 2px;
  background: #97C64C;
  transition: width 0.15s;
  position: absolute;
  left: 0;
  bottom: -4px;
}
.main-nav a:hover:after, .main-nav a:focus:after {
  width: 100%;
}
.btn-primary {
  background: linear-gradient(93deg, #97C64C, #7DBC33 90%);
  color: #1a2434;
  padding: 11px 32px;
  border-radius: 60px;
  text-align: center;
  font-family: 'Montserrat', sans-serif;
  font-weight: bold;
  font-size: 1.07rem;
  letter-spacing: 0.02em;
  box-shadow: 0 2px 16px #97C64C36;
  border: none;
  margin-left: 18px;
  transition: background 0.13s, color 0.13s, box-shadow 0.17s, filter 0.11s;
  position: relative;
}
.btn-primary:hover, .btn-primary:focus {
  background: linear-gradient(93deg, #aee563, #e8ea3d 90%);
  color: #20496A;
  box-shadow: 0 2px 30px #e8ea3d55;
  filter: brightness(1.08);
}

/* Burger menu icon */
.mobile-menu-toggle {
  display: none;
  background: none;
  font-size: 2.2rem;
  color: #97C64C;
  border: none;
  margin-left: 26px;
  transition: color 0.18s, filter 0.18s;
  line-height: 1;
  z-index: 1302;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  color: #FFF738;
  filter: drop-shadow(0 0 8px #97C64C77);
}

/* ==========================================================================
   Mobile Menu Overlay
   ==========================================================================
*/
.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 100vw;
  height: 100vh;
  background: #172134;
  z-index: 1301;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: flex-start;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(.37,1.62,.56,.95);
  box-shadow: -6px 0 28px #20496A44;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: none;
  border: none;
  color: #97C64C;
  font-size: 2.2rem;
  margin: 26px 25px 12px 0;
  align-self: flex-end;
  cursor: pointer;
  transition: color 0.13s, filter 0.13s;
}
.mobile-menu-close:hover {
  color: #FFF738;
  filter: drop-shadow(0 0 7px #97C64C99);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  width: 100%;
  gap: 19px;
  margin-top: 18px;
  padding-right: 32px;
}
.mobile-nav a {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.27rem;
  font-weight: 600;
  color: #F6F7F9;
  padding: 14px 0;
  width: 100%;
  text-align: right;
  border-bottom: 1px solid #223258;
  transition: background 0.15s, color 0.15s;
  border-radius: 3px;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #232B40;
  color: #97C64C;
}

/* Main nav and burger responsiveness */
@media (max-width: 1024px) {
  .main-nav {
    gap: 13px;
    margin-right: 12px;
  }
  .btn-primary {
    margin-left: 9px;
    padding: 10px 16px;
  }
  header > a img {
    height: 41px;
    margin-right: 16px;
  }
}
@media (max-width: 768px) {
  .main-nav {
    display: none;
  }
  .btn-primary {
    margin-left: 0;
  }
  .mobile-menu-toggle {
    display: block;
  }
  header {
    flex-direction: row;
    justify-content: space-between;
    padding: 10px 10px 10px 14px;
  }
}

/* ==========================================================================
   Hero & Call-to-Action Sections
   ==========================================================================
*/
.hero, .hero-about, .hero-shop, .hero-services, .hero-advice, .hero-gallery, .hero-contact, .hero-thank-you {
  background: linear-gradient(120deg, #20496A 73%, #97C64C 200%);
  padding: 54px 0 44px 0;
  border-bottom-left-radius: 50px 22px;
  border-bottom-right-radius: 65px 28px;
  box-shadow: 0 6px 38px #20496A55;
  color: #F6F7F9;
}
.hero h1, .hero-about h1, .hero-shop h1, .hero-services h1, .hero-advice h1, .hero-gallery h1, .hero-contact h1 {
  font-size: 2.3rem;
  color: #F6F7F9;
  margin-bottom: 12px;
  text-shadow: 0 3px 15px #12274255;
  letter-spacing: 0.015em;
}
.cta-home, .cta-shop, .cta-services, .cta-advice, .cta-gallery, .cta-contact, .cta-thank-you {
  background: #97C64C;
  box-shadow: 0 6px 28px #7dbc3340;
  border-radius: 42px;
  margin-bottom: 32px;
  color: #132031;
}
.cta-home h2, .cta-shop h2, .cta-services h2, .cta-advice h2, .cta-gallery h2, .cta-contact h2, .cta-thank-you h2 {
  color: #20496A;
}
.cta-home .btn-primary, .cta-shop .btn-primary, .cta-services .btn-primary,
.cta-gallery .btn-primary, .cta-contact .btn-primary, .cta-thank-you .btn-primary {
  background: linear-gradient(90deg, #20496A, #00E0D2);
  color: #F6F7F9;
  margin-top: 8px;
}
.cta-home .btn-primary:hover, .cta-shop .btn-primary:hover, .cta-services .btn-primary:hover,
.cta-gallery .btn-primary:hover, .cta-contact .btn-primary:hover, .cta-thank-you .btn-primary:hover {
  background: linear-gradient(90deg, #00E0D2, #97C64C);
  color: #20496A;
}

/* ==========================================================================
   Features Lists & Iconbullets
   ==========================================================================
*/
.features, .features-shop, .features-gallery, .services-list, .features-advice, .features-contact {
  background: #232B40;
  border-radius: 32px;
  box-shadow: 0 4px 20px #20496A22;
  margin-bottom: 42px;
}
.features ul, .features-shop ul, .features-gallery ul, .services-list ul, .features-advice ul, .features-contact ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 8px;
  margin-bottom: 0;
}
.features li img, .features-shop li img, .services-list li img, .features-contact li img {
  width: 32px;
  height: 32px;
  filter: drop-shadow(0 0 7px #97C64C99);
}
.features li, .features-shop li, .features-gallery li, .services-list li, .features-advice li, .features-contact li {
  font-size: 1.13rem;
  padding: 8px 0;
  line-height: 1.45;
  color: #97C64C;
  background: none;
  border-radius: 10px;
  transition: background 0.10s;
}
.features li strong {
  color: #F6F7F9;
}
.features li:hover, .features-shop li:hover, .services-list li:hover, .features-contact li:hover {
  background: #3c475d66;
}

/* ==========================================================================
   About Page / Story Sections
   ==========================================================================
*/
.about-home, .about-story, .about-trust, .about-testimonials /**/ {
  background: #232B40;
  border-radius: 32px;
  box-shadow: 0 4px 20px #20496A22;
  margin-bottom: 42px;
}
.about-home h2, .about-story h2, .about-trust h2 {
  color: #97C64C;
  font-size: 2rem;
}
.text-section {
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.text-section ul {
  padding-left: 12px;
}
.text-section li {
  font-size: 1rem;
  color: #e7ecc9;
}

/* ==========================================================================
   Shop, Services, Gallery, Contact Page Specific
   ==========================================================================
*/
.shop-services, .services-benefits, .advice-expert, .contact-info-section, .terms-section, .cookies-section, .privacy-policy-section, .gdpr-section {
  background: #232B40;
  border-radius: 32px;
  box-shadow: 0 4px 20px #20496A22;
  margin-bottom: 42px;
}

.shop-services ul, .services-benefits ul, .advice-expert ul, .contact-info-section ul, .privacy-policy-section ul, .gdpr-section ul {
  padding-left: 0;
  margin: 10px 0;
}

.shop-services li, .services-benefits li, .advice-expert li, .contact-info-section li {
  color: #adffe6;
  padding-left: 0;
  gap: 7px;
}

/* ==========================================================================
   Newsletter signup (footer)
   ==========================================================================
*/
.newsletter-signup {
  background: #172134;
  border-radius: 18px;
  margin-top: 20px;
  padding: 18px 22px;
  color: #F6F7F9;
  box-shadow: 0 4px 24px #20496A28;
}
.newsletter-signup h3 {
  color: #97C64C;
  margin-bottom: 8px;
}
.newsletter-signup p {
  color: #F6F7F9;
  margin-bottom: 0;
  font-size: 1rem;
}

/* ==========================================================================
   Footer
   ==========================================================================
*/
footer {
  background: #1a2434;
  border-top: 2px solid #20496A;
  padding: 36px 0 16px 0;
  margin-top: 60px;
  color: #F6F7F9;
}
footer .container {
  padding: 0 20px;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 10px;
}
.footer-nav a {
  font-size: 1rem;
  color: #97C64C;
  transition: color 0.13s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: #FFF738;
  filter: drop-shadow(0 0 10px #97C64C88);
}
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.contact-info p {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 1rem;
  color: #d8fadd;
}
.contact-info img {
  width: 24px;
  height: 24px;
  filter: drop-shadow(0 0 7px #97C64C77);
  margin-right: 2px;
}

/* ==========================================================================
   Responsive Tables, Forms, etc.
   ==========================================================================
*/
table {
  width: 100%;
  border-collapse: collapse;
}
th, td {
  padding: 10px 8px;
  border-bottom: 1px solid #20496A;
  color: #F6F7F9;
}

input[type="text"], input[type="email"], textarea {
  width: 100%;
  padding: 12px 13px;
  border: 1px solid #20496A;
  border-radius: 8px;
  background: #19273d;
  margin-bottom: 14px;
  color: #F6F7F9;
}
input[type="text"]:focus, input[type="email"]:focus, textarea:focus {
  outline: 2px solid #97C64C99;
  border-color: #97C64C;
}

/* ==========================================================================
   Cookie Consent Banner & Modal
   ==========================================================================
*/
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1800;
  width: 100vw;
  background: #232B40;
  border-top: 2px solid #97C64C;
  padding: 28px 16px 18px 16px;
  box-shadow: 0 -4px 36px #20496A33;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 24px;
  color: #F6F7F9;
  font-size: 1rem;
  opacity: 1;
  transition: opacity 0.6s ease, transform 0.5s cubic-bezier(.42,1.23,.53,.91);
}
.cookie-banner.hide {
  opacity: 0;
  pointer-events: none;
  transform: translateY(100%);
}
.cookie-banner-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.cookie-banner button {
  background: #97C64C;
  color: #20496A;
  font-weight: 700;
  font-family: 'Montserrat', sans-serif;
  border-radius: 32px;
  padding: 8px 22px;
  border: none;
  font-size: 1rem;
  cursor: pointer;
  box-shadow: 0 1px 10px #97C64C15;
  transition: background 0.15s, color 0.13s;
}
.cookie-banner .cookie-settings-btn {
  background: transparent;
  color: #97C64C;
  border: 2px solid #97C64C;
}
.cookie-banner button:hover, .cookie-banner button:focus {
  background: #FFF738;
  color: #20496A;
}
.cookie-banner .cookie-settings-btn:hover, .cookie-banner .cookie-settings-btn:focus {
  background: #172134;
  color: #FFF738;
}
/* Cookie Modal */
.cookie-modal-overlay {
  position: fixed;
  z-index: 1900;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: #20496Aaa;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  pointer-events: all;
  transition: opacity 0.4s cubic-bezier(.56,1.44,.68,.94);
}
.cookie-modal-overlay.hide {
  opacity: 0;
  pointer-events: none;
}
.cookie-modal {
  background: #232B40;
  max-width: 430px;
  width: 96vw;
  border-radius: 26px;
  box-shadow: 0 8px 44px #20496A66;
  padding: 38px 28px 28px 28px;
  position: relative;
}
.cookie-modal h3 {
  color: #97C64C;
  font-size: 1.3rem;
  margin-bottom: 14px;
}
.cookie-modal label {
  display: flex;
  align-items: center;
  margin-bottom: 13px;
  gap: 11px;
  font-size: 1rem;
  color: #F6F7F9;
}
.cookie-modal input[type="checkbox"] {
  accent-color: #97C64C;
  width: 22px;
  height: 22px;
}
.cookie-modal-category-desc {
  font-size: 0.96rem;
  color: #97C64C;
  margin-left: 16px;
  line-height: 1.2;
}
.cookie-modal .modal-actions {
  display: flex;
  gap: 13px;
  margin-top: 22px;
}
.cookie-modal .close-cookie-modal {
  background: none;
  border: none;
  color: #97C64C;
  font-size: 2.1rem;
  position: absolute;
  right: 18px;
  top: 16px;
  cursor: pointer;
  filter: drop-shadow(0 0 5px #97C64C66);
  transition: color 0.11s;
}
.cookie-modal .close-cookie-modal:hover {
  color: #FFF738;
}

/* ==========================================================================
   Animations & Microinteractions
   ==========================================================================
*/
.card, .testimonial-card, .btn-primary, .cookie-banner, .cookie-modal, .mobile-menu {
  transition: box-shadow 0.22s, border-color 0.18s, background 0.20s, color 0.16s, transform 0.22s, opacity 0.17s;
}
.btn-primary:active {
  transform: scale(0.98);
  filter: brightness(0.95);
}
main a.btn-primary:focus {
  outline: 2px solid #97C64C;
  outline-offset: 3px;
}

/* ==========================================================================
   RESPONSIVENESS (Mobile-first)
   ==========================================================================
*/
@media (max-width: 960px) {
  .container {
    max-width: 650px;
    padding: 0 10px;
  }
  .section {
    padding: 25px 8px;
  }
  .footer-nav {
    flex-direction: column;
    gap: 10px;
    margin-bottom: 16px;
  }
}
@media (max-width: 768px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.35rem; }
  .testimonial-card {
    font-size: 0.96rem;
    padding: 14px;
  }
  .card, .card-container, .content-grid {
    flex-direction: column;
    gap: 13px;
  }
  .content-wrapper {
    gap: 13px;
  }
  .section {
    padding: 17px 6px;
    margin-bottom: 34px;
  }
  .container {
    padding: 0 7px;
  }
  .cta-home, .cta-shop, .cta-services, .cta-advice, .cta-gallery, .cta-contact, .cta-thank-you {
    border-radius: 24px;
  }
  .newsletter-signup {
    padding: 12px 9px;
    font-size: 0.96rem;
  }
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }
}
@media (max-width: 500px) {
  h1, .hero h1 { font-size: 1.23rem; }
  h2 { font-size: 1rem; }
  .btn-primary { font-size: 0.97rem; padding: 9px 13px; }
}

/* ==========================================================================
   Accessibility & Misc
   ==========================================================================
*/
:focus {
  outline: 2px solid #97C64C;
  outline-offset: 2px;
}

::-webkit-scrollbar {
  width: 8px;
  background: #232B40;
}
::-webkit-scrollbar-thumb {
  background: #97C64Caa;
  border-radius: 8px;
}

/* Remove space for mobile safari notch */
body {
  min-height: 100vh;
  min-height: 100dvh;
  background-attachment: fixed;
}

/* ==========================================================================
   END OF CSS
   ==========================================================================
*/
