/* CSS RESET & NORMALIZATION */
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,
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 {
  scroll-behavior: smooth;
  -webkit-tap-highlight-color: transparent;
}
body {
  line-height: 1.5;
  background: #F7F8FA;
  color: #263D42;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}
img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
}
ul, ol {
  margin-left: 1.5em;
  margin-bottom: 1em;
}
li {
  margin-bottom: 8px;
}
*, *:before, *:after {
  box-sizing: inherit;
}
a {
  color: #6B7B8C;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #263D42;
  outline: none;
  text-decoration: underline;
}
button, input, select, textarea {
  font: inherit;
  background: none;
  border: none;
  outline: none;
}
button { cursor: pointer; }

/* BRAND COLORS & PASTEL PALETTE */
:root {
  --primary: #263D42;
  --secondary: #6B7B8C;
  --accent: #EFEFEA;
  --pastel-blue: #C5DFF8;
  --pastel-mint: #D6F5E8;
  --pastel-pink: #FFE3F2;
  --pastel-yellow: #FFFBE9;
  --pastel-purple: #DFD6F3;
  --white: #fff;
  --light-grey: #F7F8FA;
  --border: #e1e4ea;
  --shadow: 0 8px 24px rgba(38,61,66,0.07), 0 1.5px 3px rgba(107,123,140,0.05);
}

/* FONT IMPORTS */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700&family=Roboto:wght@400;500;700&display=swap');

/* TYPOGRAPHY */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: -0.5px;
}
h1 { font-size: 2.375rem; margin-bottom: 16px; }
h2 { font-size: 1.75rem; margin-bottom: 16px; }
h3 { font-size: 1.25rem; margin-bottom: 12px; font-weight: 600; }
h4, h5, h6 { font-size: 1.05rem; }
p, ul, ol, blockquote {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  margin-bottom: 12px;
}
blockquote {
  font-style: italic;
  color: var(--secondary);
  background: var(--pastel-yellow);
  border-left: 4px solid var(--pastel-mint);
  padding: 16px 20px;
  border-radius: 10px;
  margin: 28px 0;
}
b, strong {
  font-weight: 600;
}

/* GENERAL LAYOUT CONTAINERS */
.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 20px;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

/* NAVIGATION & HEADER */
header {
  background: var(--pastel-blue);
  box-shadow: 0 1px 8px rgba(38,61,66,0.06);
  position: sticky;
  top: 0;
  z-index: 50;
}
.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 80px;
  gap: 18px;
}
.logo-link {
  display: flex;
  align-items: center;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 24px;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  color: var(--primary);
  font-weight: 500;
  transition: color 0.2s;
}
.main-nav a:hover, .main-nav a:focus {
  color: var(--secondary);
}
.btn-primary {
  background: var(--primary);
  color: var(--white);
  font-family: 'Montserrat';
  font-weight: 700;
  font-size: 1rem;
  padding: 10px 28px;
  border-radius: 27px;
  box-shadow: var(--shadow);
  border: none;
  transition: background 0.22s, color 0.22s, box-shadow 0.17s;
  margin-left: 12px;
}
.btn-primary:hover, .btn-primary:focus {
  background: var(--secondary);
  color: var(--pastel-yellow);
  box-shadow: 0 4px 16px rgba(38, 61, 66, 0.12);
}
.btn-secondary {
  background: var(--pastel-mint);
  color: var(--primary);
  font-family: 'Montserrat';
  font-weight: 600;
  font-size: 1rem;
  padding: 10px 24px;
  border-radius: 27px;
  border: 1px solid var(--primary);
  box-shadow: var(--shadow);
  transition: border 0.2s, box-shadow 0.17s, background 0.16s;
  margin-top: 18px;
  display: inline-block;
}
.btn-secondary:hover, .btn-secondary:focus {
  background: var(--pastel-blue);
  border: 1px solid var(--secondary);
  box-shadow: 0 4px 16px rgba(38, 61, 66, 0.10);
}
.link-arrow {
  position: relative;
  font-weight: 500;
  color: var(--secondary);
  padding-right: 22px;
  display: inline-block;
  transition: color 0.18s;
}
.link-arrow::after {
  content: '\2192';
  position: absolute;
  right: 0;
  top: 0;
  color: var(--primary);
  font-size: 1.1em;
  transition: right 0.2s;
}
.link-arrow:hover, .link-arrow:focus {
  color: var(--primary);
}
.link-arrow:hover::after, .link-arrow:focus::after {
  right: -4px;
  color: var(--secondary);
}

/* BURGER MENU STYLES */
.mobile-menu-toggle {
  display: none;
  background: var(--pastel-mint);
  color: var(--primary);
  border-radius: 16px;
  width: 42px;
  height: 42px;
  font-size: 1.6rem;
  align-items: center;
  justify-content: center;
  border: none;
  box-shadow: var(--shadow);
  transition: background 0.14s, color 0.14s;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: var(--pastel-blue);
  color: var(--secondary);
}
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: var(--pastel-blue);
  box-shadow: 0 2px 24px rgba(38,61,66,0.08);
  z-index: 120;
  overflow: auto;
  transform: translateX(-100%);
  transition: transform 0.3s cubic-bezier(.77,0,.18,1);
  display: flex;
  flex-direction: column;
  padding: 0 0 60px 0;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  background: none;
  color: var(--primary);
  border-radius: 18px;
  font-size: 2rem;
  margin: 24px 28px 0 0;
  transition: background 0.17s, color 0.13s;
  border: none;
  padding: 8px 12px;
}
.mobile-menu-close:focus, .mobile-menu-close:hover {
  background: var(--pastel-mint);
  color: var(--secondary);
}
.mobile-nav {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}
.mobile-nav a {
  color: var(--primary);
  font-size: 1.25rem;
  font-family: 'Montserrat';
  padding: 12px 0;
  width: 80vw;
  text-align: center;
  border-radius: 14px;
  transition: background 0.17s, color 0.11s;
}
.mobile-nav a:focus, .mobile-nav a:hover {
  background: var(--pastel-mint);
  color: var(--secondary);
}

/* MAIN SECTIONS */
.hero-section {
  width: 100%;
  background: linear-gradient(120deg, var(--pastel-blue) 80%, var(--pastel-mint) 100%);
  padding: 50px 0 30px 0;
  margin-bottom: 0;
}
.hero-section .content-wrapper {
  align-items: center;
  justify-content: center;
  min-height: 280px;
}
.text-section {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  max-width: 600px;
}
.cta-section {
  background: var(--pastel-mint);
  border-radius: 24px;
  box-shadow: var(--shadow);
  margin-bottom: 60px;
  padding: 40px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.cta-section .text-section {
  align-items: center;
  text-align: center;
}

/* FEATURE/VALUES/ITEMS FLEXBOX GRIDS */
.feature-grid, .value-list, .category-highlights, .categories-grid, .item-list, .occasion-list, .services-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 28px;
}
.feature-item, .value-item, .category-item, .item-card, .occasion-item, .service-card {
  background: var(--white);
  border-radius: 20px;
  box-shadow: var(--shadow);
  padding: 28px 18px 22px 18px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  flex: 1 1 230px;
  min-width: 210px;
  max-width: 320px;
  margin-bottom: 20px;
  border: 1px solid var(--border);
  transition: box-shadow 0.16s, border 0.16s, background 0.12s;
}
.feature-item img, .value-item img, .service-card img, .category-item img, .item-card img {
  width: 44px;
  height: auto;
  margin-bottom: 10px;
}
.feature-item:hover, .value-item:hover, .category-item:hover, .item-card:hover, .occasion-item:hover, .service-card:hover {
  box-shadow: 0 9px 32px rgba(38,61,66,0.13);
  border: 1.5px solid var(--pastel-blue);
  background: var(--pastel-blue);
}
.price, .service-price {
  display: inline-block;
  font-weight: 700;
  color: var(--primary);
  background: var(--pastel-mint);
  border-radius: 14px;
  padding: 4px 12px;
  margin-top: 8px;
  font-size: 1rem;
  letter-spacing: 0.05em;
}

/* TESTIMONIALS */
.testimonials-section {
  background: var(--pastel-yellow);
  border-radius: 18px;
  box-shadow: var(--shadow);
  margin-bottom: 60px;
  padding: 40px 20px;
  width: 100%;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  background: var(--white);
  border-radius: 15px;
  padding: 20px 28px;
  margin-bottom: 20px;
  box-shadow: var(--shadow);
  border: 1px solid #f0e8db;
  color: var(--primary);
  font-size: 1.09rem;
  line-height: 1.6;
}
.testimonial-card span {
  color: var(--secondary);
  font-size: 0.98rem;
  font-style: italic;
}

/* THANK YOU SECTION AND NEXT STEPS */
.thank-you-section {
  background: var(--pastel-blue);
  border-radius: 16px;
  box-shadow: var(--shadow);
  margin-bottom: 60px;
  padding: 40px 20px;
}
.next-steps ul {
  margin-top: 16px;
  margin-bottom: 2px;
  padding-left: 18px;
}
.next-steps li {
  margin-bottom: 8px;
  color: var(--primary);
}

/* CONTACT DETAILS & TRUST SIGNALS */
.contact-details-section .text-section ul {
  list-style-type: disc;
  margin-left: 18px;
}
.contact-details-section .trust-signals ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 0;
  margin: 0 0 16px 0;
}
.contact-details-section .trust-signals li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1rem;
}
.contact-details-section .trust-signals img {
  width: 22px;
  height: 22px;
}

/* SERVICES FLEX CARDS */
.services-list-short {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 12px;
  font-size: 1.08rem;
}
.services-cards {
  gap: 24px;
  margin-bottom: -20px;
}
.service-card {
  min-width: 220px;
  flex: 1 1 220px;
}

/* FOOTER */
footer {
  background: var(--pastel-pink);
  padding: 32px 0 22px 0;
  margin-top: 60px;
  border-radius: 22px 22px 0 0;
  box-shadow: 0 -4px 16px rgba(38,61,66,0.04);
}
footer .content-wrapper {
  align-items: center;
  text-align: center;
  gap: 24px;
}
.footer-menu {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 32px;
  margin: 18px 0;
}
.footer-logo img {
  height: 42px;
  margin-bottom: 0;
}
.footer-menu a {
  color: var(--primary);
  font-size: 1rem;
}
.footer-menu a:hover, .footer-menu a:focus {
  color: var(--secondary);
  text-decoration: underline;
}

/* COOKIE CONSENT BANNER */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 9999;
  box-shadow: 0 -4px 12px rgba(38,61,66,0.08);
  background: var(--pastel-purple);
  color: var(--primary);
  padding: 22px 14px 22px 12px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 28px;
  font-size: 1rem;
  border-radius: 17px 17px 0 0;
  opacity: 1;
  pointer-events: auto;
  transition: opacity 0.28s, transform 0.23s;
}
.cookie-banner.hide {
  opacity: 0;
  pointer-events: none;
  transform: translateY(100%);
}
.cookie-banner .banner-msg {
  flex: 1 1 250px;
  max-width: 350px;
}
.cookie-banner .cookie-buttons {
  display: flex;
  flex-direction: row;
  gap: 16px;
}
.cookie-banner button {
  padding: 8px 18px;
  border-radius: 14px;
  font-family: 'Montserrat';
  font-weight: 600;
  font-size: 1rem;
  border: none;
  transition: background 0.11s, color 0.13s;
}
.cookie-banner .accept-btn {
  background: var(--pastel-mint);
  color: var(--primary);
}
.cookie-banner .accept-btn:hover, .cookie-banner .accept-btn:focus {
  background: var(--pastel-blue);
}
.cookie-banner .reject-btn {
  background: var(--pastel-pink);
  color: var(--primary);
}
.cookie-banner .reject-btn:hover, .cookie-banner .reject-btn:focus {
  background: var(--pastel-mint);
}
.cookie-banner .settings-btn {
  background: var(--pastel-yellow);
  color: var(--secondary);
}
.cookie-banner .settings-btn:hover, .cookie-banner .settings-btn:focus {
  background: var(--pastel-blue);
}

/* COOKIE PREFERENCES MODAL */
.cookie-modal-overlay {
  position: fixed;
  z-index: 10000;
  left: 0; top: 0; right: 0; bottom: 0;
  background: rgba(33,44,51,0.29);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  pointer-events: auto;
  transition: opacity 0.3s;
}
.cookie-modal-overlay.hide {
  opacity: 0;
  pointer-events: none;
}
.cookie-modal {
  background: var(--pastel-yellow);
  color: var(--primary);
  border-radius: 18px;
  max-width: 420px;
  width: 94vw;
  box-shadow: var(--shadow);
  padding: 34px 30px 28px 30px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
  transform: translateY(0);
  transition: transform 0.22s;
}
.cookie-modal .modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  font-size: 1.4rem;
  color: var(--secondary);
  background: none;
  border: none;
  border-radius: 11px;
  padding: 5px 10px;
  transition: background 0.11s, color 0.13s;
}
.cookie-modal .modal-close:focus, .cookie-modal .modal-close:hover {
  background: var(--pastel-mint);
  color: var(--primary);
}
.cookie-modal h2 {
  font-size: 1.3rem;
  margin-bottom: 8px;
}
.cookie-modal label {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  font-size: 1rem;
}
.cookie-modal input[type="checkbox"] {
  accent-color: var(--primary);
  width: 18px;
  height: 18px;
}
.cookie-modal .cookie-category {
  margin-bottom: 10px;
  font-size: 0.98rem;
}
.cookie-modal .cookie-modal-actions {
  display: flex;
  flex-direction: row;
  gap: 16px;
  margin-top: 8px;
  justify-content: flex-end;
}
.cookie-modal .cookie-modal-actions button {
  border-radius: 13px;
  padding: 8px 18px;
  font-family: 'Montserrat';
  font-weight: 600;
  font-size: 1rem;
}
.cookie-modal .save-btn {
  background: var(--primary);
  color: #fff;
}
.cookie-modal .save-btn:hover, .cookie-modal .save-btn:focus {
  background: var(--secondary);
}

/* MANDATORY SPACING, FLEX, CARD PATTERNS */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  box-shadow: var(--shadow);
  border-radius: 16px;
  background: var(--white);
  padding: 26px 18px;
}
.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;
}

/* CATEGORY/LIST FLEX LAYOUTS */
.category-highlights, .categories-grid, .item-list, .occasion-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 14px;
}
.category-item, .occasion-item {
  background: var(--white);
  border-radius: 16px;
  box-shadow: var(--shadow);
  flex: 1 1 200px;
  min-width: 170px;
  max-width: 290px;
  padding: 22px 16px;
  margin-bottom: 20px;
  border: 1px solid var(--border);
  transition: box-shadow 0.15s, border 0.22s;
}
.category-item:hover, .occasion-item:hover {
  box-shadow: 0 9px 32px rgba(38,61,66,0.12);
  border: 1.5px solid var(--pastel-mint);
  background: var(--pastel-mint);
}

/* VALUE/ABOUT/FEATURES FLEX LAYOUTS*/
.value-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.value-item {
  background: var(--white);
  border-radius: 16px;
  box-shadow: var(--shadow);
  flex: 1 1 200px;
  min-width: 180px;
  max-width: 270px;
  margin-bottom: 20px;
  padding: 26px 17px;
  border: 1px solid var(--border);
  transition: box-shadow 0.18s, border 0.19s;
}
.value-item:hover {
  box-shadow: 0 8px 30px rgba(97,136,139,0.10);
  border: 1.5px solid var(--pastel-pink);
  background: var(--pastel-pink);
}

/* QUOTE, HIGHLIGHTS */
.seasonal-highlights {
  background: var(--pastel-mint);
  border-radius: 14px;
  padding: 16px 16px 10px 16px;
  margin-bottom: 14px;
  box-shadow: var(--shadow);
  color: var(--primary);
}

/* POLICY/TEXT SECTIONS */
.privacy-section, .gdpr-section, .cookie-policy-section, .terms-section {
  background: var(--pastel-pink);
  border-radius: 14px;
  box-shadow: var(--shadow);
  margin-bottom: 60px;
  padding: 40px 20px;
}

/* RESPONSIVE DESIGN */
@media (max-width: 1020px) {
  .container { max-width: 98vw; }
  .main-nav { gap: 16px; }
}
@media (max-width: 900px) {
  .feature-grid, .value-list, .category-highlights, .categories-grid, .item-list, .occasion-list, .services-cards {
    flex-direction: column;
    gap: 24px;
  }
  .main-nav a { font-size: 0.98rem; }
  .footer-menu { gap: 16px; }
}
@media (max-width: 768px) {
  .main-nav, .btn-primary { display: none !important; }
  .mobile-menu-toggle { display: flex; }
  .nav-container { flex-wrap: wrap; }
  .hero-section, .cta-section, .testimonials-section, .privacy-section, .terms-section, .gdpr-section, .cookie-policy-section, .thank-you-section {
    padding: 30px 6vw;
  }
  .content-wrapper {
    padding: 0;
    align-items: flex-start;
  }
  .feature-grid, .value-list, .category-highlights, .categories-grid, .item-list, .occasion-list, .services-cards {
    flex-direction: column;
    gap: 20px;
  }
  .feature-item, .value-item, .category-item, .item-card, .occasion-item, .service-card {
    max-width: 98vw;
    min-width: unset;
  }
  .card-container, .content-grid { flex-direction: column; gap: 20px; }
  .footer-menu { flex-direction: column; gap: 8px; }
  .text-image-section { flex-direction: column; gap: 18px; }
  .testimonial-card { flex-direction: column; gap: 10px; }
}
@media (max-width: 576px) {
  h1 { font-size: 1.6rem; }
  h2 { font-size: 1.1rem; }
  .section, .cta-section, .privacy-section, .terms-section, .gdpr-section, .testimonials-section, .thank-you-section, .cookie-policy-section {
    padding: 22px 3vw;
    margin-bottom: 40px;
  }
  footer { padding: 18px 0 8px 0; }
  .footer-logo img { height: 29px; }
  .cookie-banner { flex-direction: column; align-items: flex-start; gap: 13px; font-size: 0.97rem; }
}

/* ANIMATIONS & MICRO-INTERACTIONS */
.btn-primary, .btn-secondary, .mobile-menu-toggle, .mobile-menu-close, .cookie-banner button, .cookie-modal .save-btn {
  transition: background 0.23s, color 0.17s, box-shadow 0.19s, border 0.17s;
}
.card, .feature-item, .value-item, .category-item, .item-card, .service-card, .occasion-item {
  transition: box-shadow 0.21s, border 0.17s, background 0.15s;
}
.mobile-menu, .mobile-menu.open {
  will-change: transform;
}

/* Z-INDEX LAYERING */
header { z-index: 50; }
.mobile-menu { z-index: 120; }
.cookie-banner { z-index: 9999; }
.cookie-modal-overlay { z-index: 10000; }

/* SCROLLBAR STYLES FOR MODAL/MOBILE MENU */
.mobile-menu::-webkit-scrollbar, .cookie-modal::-webkit-scrollbar {
  width: 8px; background: #e7e7ee;
}
.mobile-menu::-webkit-scrollbar-thumb, .cookie-modal::-webkit-scrollbar-thumb {
  background: var(--pastel-blue);
  border-radius: 6px;
}

/* Hide elements for ARIA/live regions (if JS applied) */
[aria-hidden="true"] { display: none !important; }
