/* -----------------------------------------------------
   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 {
  font-size: 16px;
  scroll-behavior: smooth;
}
body {
  line-height: 1.6;
  background: #FAFBFD;
  color: #1B3D5B;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  min-height: 100vh;
  font-weight: 400;
  letter-spacing: 0.01em;
}

/* Typography ------------------------------------- */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Roboto', Arial, Helvetica, sans-serif;
  color: #1B3D5B;
  font-weight: 700;
  margin-bottom: 16px;
  letter-spacing: 0.015em;
}
h1 {
  font-size: 2.5rem;
  line-height: 1.13;
  margin-bottom: 20px;
}
h2 {
  font-size: 2rem;
  line-height: 1.12;
  margin-bottom: 20px;
}
h3 {
  font-size: 1.25rem;
  margin-bottom: 8px;
}
h4, h5, h6 {
  font-size: 1.125rem;
  margin-bottom: 8px;
}
p, li, address, blockquote {
  font-size: 1rem;
  line-height: 1.7;
  color: #243C55;
}
p.subheadline {
  font-size: 1.25rem;
  color: #584B23;
  font-weight: 500;
  margin-bottom: 26px;
}
a {
  color: #1B3D5B;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #EFD469;
  outline: none;
}
strong {
  font-weight: 600;
  color: #E6BB2C;
}
blockquote {
  font-style: italic;
  color: #222;
  margin-bottom: 12px;
}

/* Luxurious Details -------------------------------- */
::selection {
  background: #EFD469;
  color: #1B3D5B;
}

/* Utility Classes -------------------------------- */
.container {
  max-width: 1220px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
  width: 100%;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}
.text-section {
  width: 100%;
}
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 18px 0 rgba(27,61,91,0.07);
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  margin-bottom: 20px;
  position: relative;
  border-radius: 14px;
  box-shadow: 0 2px 12px 0 rgba(27,61,91,0.11);
  padding: 24px;
  transition: box-shadow 0.2s, transform 0.2s;
}
.card:hover {
  box-shadow: 0 4px 22px 0 rgba(239, 212, 105, 0.23);
  transform: translateY(-4px) scale(1.015);
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
}

.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  background: #F7F4ED;
  border-radius: 14px;
  box-shadow: 0 2px 8px 0 rgba(28,24,10,0.09);
  margin-bottom: 24px;
  border-left: 5px solid #E6BB2C;
  max-width: 600px;
  color: #202022;
}
.testimonial-meta {
  font-size: 0.98rem;
  color: #867743;
  font-family: 'Montserrat', 'Roboto', Arial, Helvetica, sans-serif;
}

/* Feature & Offer Grids --------------------------- */
.features .feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  list-style: none;
  justify-content: flex-start;
  margin-top: 0;
  margin-bottom: 0;
  padding: 0;
}
.features .feature-grid li {
  flex: 1 1 230px;
  background: #fff;
  border-radius: 14px;
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  box-shadow: 0 1px 8px 0 rgba(27,61,91,0.09);
  border: 1px solid #EBECF0;
  gap: 14px;
  min-width: 210px;
  max-width: 286px;
  transition: box-shadow 0.18s, border-color 0.18s;
}
.features .feature-grid li:hover {
  border-color: #EFD469;
  box-shadow: 0 4px 24px 0 rgba(239, 212, 105, 0.13);
}
.features .feature-grid img {
  width: 40px;
  height: 40px;
  margin-bottom: 4px;
}

.event-category-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 14px;
}
.event-category-tabs li {
  list-style: none;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 600;
  color: #888;
  background: #F4E9B2;
  border-radius: 27px;
  padding: 6px 18px;
  font-size: 1rem;
  cursor: pointer;
  border: 1px solid transparent;
  transition: background 0.19s, color 0.19s, border 0.19s;
}
.event-category-tabs li:hover, .event-category-tabs li:active {
  background: #EFD469;
  color: #1B3D5B;
  border: 1px solid #EBECF0;
}

.offer-list {
  list-style: none;
  padding: 0;
  margin: 0 0 20px 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.offer-list li {
  font-size: 1rem;
  color: #243C55;
  padding-left: 24px;
  position: relative;
}
.offer-list li:before {
  content: '\2022';
  position: absolute;
  left: 0;
  color: #EFD469;
  font-size: 1.1em;
  top: 3px;
}

.pricing-table {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 12px;
  margin-bottom: 16px;
}
.pricing-table div {
  flex: 0 1 170px;
  background: #F7F4ED;
  padding: 20px;
  border-radius: 12px;
  text-align: center;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.1rem;
  color: #1B3D5B;
  border: 2px solid #EFD469;
  box-shadow: 0 1px 6px 0 rgba(239, 212, 105, 0.08);
}

.pricing-overview {
  margin-bottom: 16px;
  background: #FCF7E4;
  color: #1B3D5B;
  font-weight: 600;
  border-radius: 7px;
  padding: 12px 18px;
  border-left: 3px solid #EFD469;
}

/* Section Styling -------------------------------- */
.hero {
  background: #1B3D5B;
  color: #fff;
  padding-top: 60px;
  padding-bottom: 60px;
  margin-bottom: 60px;
  border-radius: 0 0 32px 32px;
  box-shadow: 0 12px 18px 0 rgba(27, 61, 91, 0.11);
}
.hero .container {
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero h1, .hero h2, .hero p, .hero .subheadline {
  color: #fff;
}
.hero .cta.primary {
  background: #EFD469;
  color: #1B3D5B;
  box-shadow: 0 2px 12px 0 rgba(239, 212, 105, 0.22);
}

.newsletter {
  background: #f8f7f6;
  border-radius: 20px;
  margin-bottom: 60px;
  padding: 40px 20px;
  box-shadow: 0 1px 6px 0 rgba(27,61,91,0.07);
}

.services span {
  background: #EFD469;
  color: #1B3D5B;
  padding: 2px 12px;
  border-radius: 12px;
  font-weight: 700;
  margin-left: 7px;
  font-size: 0.97rem;
}

.confirmation {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 56vh;
}

.legal .content-wrapper {
  gap: 18px;
}
.legal .text-section h2 {
  color: #857441;
  font-size: 1.15rem;
  margin-bottom: 8px;
  font-weight: 600;
}
.legal .text-section ul {
  list-style: disc;
  margin-left: 24px;
  margin-bottom: 16px;
}
.legal .text-section li {
  color: #243C55;
  font-size: 1rem;
  margin-bottom: 6px;
}

/* Header & Navigation ---------------------------- */
header {
  background: #fff;
  box-shadow: 0 2px 12px 0 rgba(27,61,91,0.06);
  padding: 0 0 0 0;
  position: sticky;
  top: 0;
  z-index: 30;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 66px;
  gap: 20px;
  padding-top: 14px;
  padding-bottom: 14px;
}
.logo img {
  height: 42px;
  display: block;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
}
.main-nav a {
  font-size: 1rem;
  font-weight: 600;
  color: #1B3D5B;
  position: relative;
  padding: 4px 10px;
  transition: color 0.18s;
}
.main-nav a:hover, .main-nav a:focus {
  color: #EFD469;
}
.main-nav a.active {
  color: #EFD469;
  font-weight: 700;
}

.cta {
  display: inline-block;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  border-radius: 32px;
  padding: 11px 28px;
  box-shadow: 0 2px 12px 0 rgba(27,61,91,0.10);
  transition: background 0.19s, color 0.19s, box-shadow 0.18s, outline 0.18s;
  border: none;
  cursor: pointer;
  margin-left: 16px;
}
.cta.primary {
  background: #EFD469;
  color: #1B3D5B;
  border: 2px solid #EFD469;
}
.cta.primary:hover, .cta.primary:focus {
  background: #1B3D5B;
  color: #EFD469;
  outline: 1.5px solid #EFD469;
}
.cta.secondary {
  background: #1B3D5B;
  color: #EFD469;
  border: 2px solid #1B3D5B;
}
.cta.secondary:hover, .cta.secondary:focus {
  background: #fff;
  color: #1B3D5B;
  outline: 1.5px solid #EFD469;
}

/* Footer ----------------------------------------- */
footer {
  background: #1B3D5B;
  padding: 32px 0 16px 0;
  color: #fff;
  margin-top: 60px;
}
footer .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
}
.footer-nav {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
}
.footer-nav a {
  color: #EFD469;
  font-size: 1rem;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  transition: color 0.18s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: #fff;
}
.brand-info {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.05rem;
  font-family: 'Montserrat', 'Roboto', Arial, Helvetica, sans-serif;
  color: #EFD469;
}
.brand-info img {
  height: 28px;
}
.contact-brief {
  color: #fff;
  font-size: 0.98rem;
  margin-top: 6px;
  text-align: center;
}

/* ----------------------------------------------- */
/* Responsive: Mobile, Tablet, Desktop            */
/* ----------------------------------------------- */
@media (max-width: 1080px) {
  .container {
    max-width: 98vw;
    padding-left: 10px;
    padding-right: 10px;
  }
  .features .feature-grid {
    gap: 12px;
  }
  .card-container {
    gap: 14px;
  }
}
@media (max-width: 900px) {
  .features .feature-grid li, .card {
    min-width: 175px;
    max-width: 85vw;
  }
}
@media (max-width: 768px) {
  
  html {
    font-size: 15px;
  }
  h1 {
    font-size: 2rem;
  }
  h2 {
    font-size: 1.25rem;
  }
  .container {
    max-width: 100vw;
  }
  .hero {
    padding-top: 36px;
    padding-bottom: 38px;
    border-radius: 0 0 24px 24px;
  }
  .section, .newsletter {
    padding: 26px 8px;
    border-radius: 11px;
  }
  .features .feature-grid, .card-container, .pricing-table {
    flex-direction: column;
    gap: 18px;
  }
  .content-wrapper, .content-grid, .text-image-section {
    flex-direction: column;
    gap: 17px;
  }
  .main-nav {
    display: none !important;
  }
  .cta {
    margin-left: 0;
  }
  .footer-nav {
    flex-direction: column;
    gap: 12px;
    align-items: center;
  }
}

/* ----------------------------------------------- */
/* MOBILE NAVIGATION / BURGER MENU                */
/* ----------------------------------------------- */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 2rem;
  color: #1B3D5B;
  position: relative;
  z-index: 1002;
  cursor: pointer;
  margin-left: 10px;
  padding: 4px 10px;
  border-radius: 6px;
  transition: background 0.18s;
}
.mobile-menu-toggle:focus {
  outline: 2px solid #EFD469;
  background: #F7F4ED;
}
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: #1B3D5B;
  box-shadow: 0 9px 32px 0 rgba(27,61,91,0.36);
  transform: translateX(-120vw);
  transition: transform 0.35s cubic-bezier(.77,0,.18,1);
  z-index: 1001;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 38px 0 0 0;
  pointer-events: none;
  opacity: 0;
}
.mobile-menu.open {
  transform: translateX(0);
  pointer-events: auto;
  opacity: 1;
}
.mobile-menu-close {
  background: none;
  border: none;
  color: #EFD469;
  font-size: 2.2rem;
  position: absolute;
  top: 22px;
  right: 30px;
  z-index: 1002;
  cursor: pointer;
  transition: color 0.19s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: #fff;
  outline: 2px solid #EFD469;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  width: 100vw;
  margin-top: 36px;
  gap: 22px;
  align-items: flex-start;
  background: none;
  padding-left: 35px;
}
.mobile-nav a {
  color: #EFD469;
  font-size: 1.16rem;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 600;
  padding: 8px 0;
  width: 90vw;
  transition: color 0.17s, background 0.17s;
  border-radius: 8px;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #fff3da;
  color: #1B3D5B;
}

@media (max-width: 1050px) {
  .main-nav {
    gap: 15px;
  }
}
@media (max-width: 900px) {
  header .container {
    flex-direction: row;
    gap: 10px;
  }
}
@media (max-width: 768px) {
  .mobile-menu-toggle {
    display: block;
  }
  .cta.primary, .cta.secondary {
    padding: 10px 22px;
    font-size: 1rem;
  }
  header .container {
    min-height: 50px;
    padding-top: 8px;
    padding-bottom: 8px;
  }
}

/* ----------------------------------------------- */
/* COOKIE CONSENT BANNER & DIALOG                  */
/* ----------------------------------------------- */
.cookie-banner {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100vw;
  z-index: 1100;
  background: #fffdf6;
  color: #1B3D5B;
  border-top: 2.5px solid #EFD469;
  box-shadow: 0 -2px 14px 0 rgba(27,61,91,0.07);
  padding: 20px 28px 16px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  animation: cookieBannerIn 0.52s cubic-bezier(.56,0,.21,1);
}
@keyframes cookieBannerIn {
  from { transform: translateY(100%); opacity: 0; }
  to   { transform: translateY(0); opacity: 1; }
}
.cookie-banner .cookie-banner-text {
  flex: 3 3 380px;
  min-width: 180px;
}
.cookie-banner .cookie-banner-actions {
  display: flex;
  gap: 16px;
  flex: 1 1 180px;
  justify-content: flex-end;
}
.cookie-btn {
  padding: 8px 19px;
  border-radius: 21px;
  border: none;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  margin-left: 0;
  transition: background 0.18s, color 0.18s, box-shadow 0.18s;
}
.cookie-btn.accept {
  background: #EFD469;
  color: #1B3D5B;
  border: 2px solid #EFD469;
}
.cookie-btn.accept:hover, .cookie-btn.accept:focus {
  background: #1B3D5B;
  color: #EFD469;
}
.cookie-btn.reject {
  background: #f9f9f9;
  color: #1B3D5B;
  border: 2px solid #CAAB36;
}
.cookie-btn.reject:hover, .cookie-btn.reject:focus {
  background: #fff6cc;
  color: #857441;
}
.cookie-btn.settings {
  background: transparent;
  color: #857441;
  border: 2px solid #EFD469;
}
.cookie-btn.settings:hover, .cookie-btn.settings:focus {
  background: #EFD469;
  color: #1B3D5B;
}

@media (max-width: 680px) {
  .cookie-banner {
    flex-direction: column;
    gap: 13px;
    padding: 14px 8px 9px 8px;
    font-size: 0.98rem;
    align-items: flex-start;
  }
  .cookie-banner .cookie-banner-actions {
    justify-content: flex-start;
    gap: 10px;
  }
}

/* Cookie Preferences Modal ------------------------- */
.cookie-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(27,61,91,0.28);
  z-index: 1300;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  animation: cookieModalIn 0.32s cubic-bezier(.46,0,.17,1);
}
@keyframes cookieModalIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
.cookie-modal {
  background: #F9F6EE;
  width: 100%;
  max-width: 430px;
  border-radius: 18px 18px 0 0;
  box-shadow: 0 2px 22px 0 rgba(27,61,91,0.11);
  color: #1B3D5B;
  padding: 28px 32px 23px 32px;
  margin-bottom: 0;
  animation: cookieModalSlideUp 0.37s cubic-bezier(.46,0,.17,1);
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@keyframes cookieModalSlideUp {
  from { transform: translateY(100%); }
  to { transform: translateY(0); }
}
.cookie-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 7px;
}
.cookie-modal-close {
  background: none;
  border: none;
  font-size: 1.65rem;
  color: #EFD469;
  cursor: pointer;
  transition: color 0.19s;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  color: #1B3D5B;
}
.cookie-pref-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 12px;
}
.cookie-pref-category {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.06rem;
}
.cookie-toggle {
  appearance: none;
  width: 32px;
  height: 18px;
  background: #EFD469;
  border-radius: 12px;
  position: relative;
  outline: none;
  box-shadow: 0 1px 3px 0 rgba(180,160,70,0.07);
  margin-left: 8px;
  cursor: pointer;
  transition: background 0.19s;
}
.cookie-toggle:checked {
  background: #1B3D5B;
}
.cookie-toggle:before {
  content: '';
  position: absolute;
  left: 2px;
  top: 2px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 1px 2px 0 rgba(150,150,50,0.11);
  transition: left 0.19s;
}
.cookie-toggle:checked:before {
  left: 16px;
}
.pref-desc {
  font-size: 0.97rem;
  color: #857441;
  margin-top: 2px;
  margin-left: 34px;
}
.cookie-modal-footer {
  display: flex;
  gap: 15px;
  margin-top: 10px;
  justify-content: flex-end;
}

@media (max-width: 500px) {
  .cookie-modal {
    padding: 20px 7px 14px 7px;
    max-width: 100vw;
    border-radius: 18px 18px 0 0;
  }
  .cookie-modal-header {
    flex-direction: column;
    gap: 7px;
  }
  .cookie-modal-footer {
    gap: 10px;
  }
}

/* Micro-Transitions & Effects -------------------- */
.card, .features .feature-grid li, .cta, .main-nav a, .mobile-nav a, .cookie-btn, .cookie-modal {
  transition: box-shadow 0.19s, transform 0.18s, background 0.18s, color 0.18s, border-color 0.18s;
}

/* ------------------------------------------------
   Forms, Fieldsets (for future forms)
------------------------------------------------- */
input, select, textarea {
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  border-radius: 6px;
  background: #fff;
  color: #1B3D5B;
  padding: 10px 12px;
  border: 1.5px solid #EFD469;
  margin-bottom: 14px;
  box-shadow: 0 1.5px 4px 0 rgba(239,212,105,0.05);
  outline: none;
  transition: border-color 0.17s;
}
input:focus, textarea:focus, select:focus {
  border-color: #1B3D5B;
}

/* ------------------------------------------------
   Accessibility & Misc
------------------------------------------------- */
.sr-only { position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }

/* ------------------------------------------------
   Miscellaneous (override default lists, spacing)
------------------------------------------------- */
ul, ol {
  margin-left: 18px;
  margin-bottom: 16px;
}
li {
  margin-bottom: 7px;
}
address {
  font-style: normal;
  color: #1B3D5B;
  font-size: 1rem;
  margin-bottom: 10px;
}

/* Ensure min spacing between all content cards/sections */
section > *, .content-wrapper > *, .card-container > *, .card-content > *, .testimonial-card > *, .features .feature-grid > * {
  margin-bottom: 0;
}

/* Remove extra margin in last child */
section > *:last-child, .content-wrapper > *:last-child, .card-content > *:last-child, .testimonial-card > *:last-child, .features .feature-grid > *:last-child {
  margin-bottom: 0;
}

/* Prevent content overlap */
* {
  box-sizing: border-box;
}

/* ------ Fix for Cookie Banner over content on mobile ------- */
body {
  padding-bottom: env(safe-area-inset-bottom, 0);
}
