/* -------------------
  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,
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%;
  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: #F4F4F9;
  color: #2d3640;
  font-family: 'Open Sans', Arial, sans-serif;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: #16697A;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #17678A;
  text-decoration: underline;
}
ul, ol {
  list-style: none;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  color: #16697A;
  margin-bottom: 16px;
  line-height: 1.15;
}
h1 {
  font-size: 2.125rem;
  margin-bottom: 20px;
}
h2 {
  font-size: 1.5rem;
  margin-bottom: 18px;
}
h3 {
  font-size: 1.17rem;
  margin-bottom: 14px;
}
p, li, dd {
  font-size: 1rem;
  color: #2d3640;
  font-family: 'Open Sans', Arial, sans-serif;
}
strong {
  font-weight: 700;
}

/* ----------- BRANDING ----------- */
:root {
  --color-primary: #16697A;
  --color-secondary: #82C0CC;
  --color-accent: #F4F4F9;
  --color-bg: #F4F4F9;
  --color-head: #16697A;
  --color-body: #2d3640;
  --color-border: #dee2e9;
  --color-action: #3498b7;
  --color-shadow: rgba(22, 105, 122, 0.09);
  --radius: 12px;
  --transition: 0.22s cubic-bezier(.5,.2,.3,1);
}

/* --------- LAYOUT WRAPPERS --------- */
.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 18px;
  display: flex;
  flex-direction: column;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: 0 6px 28px var(--color-shadow);
}

/* ----------- NAVIGATION HEADER ----------- */
header {
  background: #fff;
  box-shadow: 0 2px 14px 0 rgba(22, 105, 122, 0.06);
  position: sticky;
  top: 0;
  z-index: 30;
  width: 100%;
}
.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0 14px 0;
  max-width: 1160px;
  margin: 0 auto;
  gap: 28px;
}
.logo-link img {
  height: 36px;
  width: auto;
}
.main-nav {
  display: flex;
  gap: 24px;
  align-items: center;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  font-size: 16px;
  padding: 8px 0;
  color: #16697A;
  border-bottom: 2px solid transparent;
  transition: border-bottom 0.2s, color 0.2s;
}
.main-nav a:hover, .main-nav a:focus {
  color: #17678A;
  border-bottom: 2px solid #82C0CC;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  background: var(--color-primary);
  color: #fff;
  border: none;
  outline: none;
  padding: 0 28px;
  height: 44px;
  border-radius: 8px;
  margin-left: 12px;
  cursor: pointer;
  font-size: 1.05rem;
  box-shadow: 0 2px 8px var(--color-shadow);
  transition: background var(--transition), box-shadow var(--transition), color var(--transition);
}
.btn-primary:hover, .btn-primary:focus {
  background: #145D6E;
  color: #fff;
  box-shadow: 0 4px 24px var(--color-shadow);
}

/* ----------- HERO ----------- */
.hero {
  background: linear-gradient(90deg, #f4f4f9 70%, #e5f3f8 100%);
  padding: 54px 0 38px 0;
  border-bottom: 1.5px solid #e5eaf5;
}
.hero h1 {
  font-size: 2.2rem;
  color: var(--color-head);
  margin-bottom: 14px;
}
.hero p {
  font-size: 1.15rem;
  margin-bottom: 20px;
  max-width: 520px;
  color: var(--color-body);
}
.hero .btn-primary {
  margin-top: 8px;
}

/* ----------- FEATURES SECTION ----------- */
.features {
  background: #fff;
  margin-bottom: 60px;
  border-radius: var(--radius);
  box-shadow: 0 6px 20px var(--color-shadow);
}
.features-grid,
.features-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 14px;
}
.feature, .features-list li {
  background: #F7FAFC;
  border-radius: 10px;
  box-shadow: 0 2px 12px 0 var(--color-shadow);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 24px 20px 20px 20px;
  min-width: 220px;
  flex: 1 1 220px;
  gap: 15px;
  margin-bottom: 20px;
}
.feature img, .features-list li img, .features-list img {
  width: 36px;
  height: 36px;
  margin-bottom: 2px;
  filter: grayscale(.09);
  flex-shrink: 0;
}
.feature h3 {
  color: var(--color-primary);
  font-size: 1.15rem;
  margin-bottom: 4px;
}
.feature p {
  font-size: 1rem;
}

.features-grid {
  width: 100%;
  justify-content: space-between;
}

/* ========= SERVICE LISTS, STEPS =========== */
.service-list, .event-package-list, .team-list, .step-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin: 20px 0;
}
.service-list li,
.event-package-list li,
.step-list li,
.feature-list li {
  background: #F7FAFC;
  border-radius: 8px;
  padding: 16px 18px;
  font-size: 1rem;
  color: var(--color-body);
  box-shadow: 0 1px 8px var(--color-shadow);
  line-height: 1.5;
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.feature-list img {
  width: 28px;
  height: 28px;
  margin-right: 7px;
  flex-shrink: 0;
}

ul.team-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 16px;
}
.team-list li {
  background: #F7FAFC;
  border-radius: var(--radius);
  box-shadow: 0 2px 10px var(--color-shadow);
  padding: 22px 18px;
  min-width: 230px;
  flex: 1 1 220px;
  margin-bottom: 20px;
}

/* ========= CARD CONTAINERS =========== */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: 0 2px 12px var(--color-shadow);
  margin-bottom: 20px;
  padding: 20px;
  position: relative;
  transition: box-shadow .15s;
}
.card:hover, .card:focus-within {
  box-shadow: 0 4px 20px var(--color-shadow);
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
}

.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;
}

/* ========== HIGHLIGHTS, CTAS ============ */
.highlight {
  background: var(--color-secondary);
  color: #fff;
  border-radius: 8px;
  padding: 16px 20px;
  font-size: 1.09rem;
  margin-bottom: 24px;
  margin-top: 8px;
  box-shadow: 0 2px 8px var(--color-shadow);
}
.cta {
  background: #16697A;
  color: #fff;
  border-radius: var(--radius);
  padding: 32px 20px;
  text-align: center;
  margin-bottom: 36px;
  box-shadow: 0 2px 16px var(--color-shadow);
}
.cta h2, .cta h3 {
  color: #fff;
}
.cta p {
  font-size: 1.1rem;
  margin-bottom: 16px;
  color: #fff;
}
.cta .btn-primary {
  margin-top: 8px;
}

/* ========= PRICING TABLE ============= */
.pricing-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  margin-bottom: 16px;
  margin-top: 12px;
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 10px var(--color-shadow);
}
.pricing-table th {
  background: var(--color-primary);
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  padding: 14px 8px;
  font-size: 1rem;
  text-align: left;
}
.pricing-table td {
  padding: 14px 8px;
  font-size: 1rem;
  color: #353b48;
  background: #F7FAFC;
  border-bottom: 1px solid var(--color-border);
}
.pricing-table tr:last-child td {
  border-bottom: none;
}
.pricing-table tr:hover td {
  background: #e5f3f8;
  transition: background .18s;
}

/* ========= TESTIMONIALS ========== */
.testimonials {
  background: #f7fafc;
  margin-bottom: 60px;
  border-radius: var(--radius);
  box-shadow: 0 6px 18px var(--color-shadow);
}
.testimonials h2 {
  color: var(--color-head);
  margin-bottom: 24px;
}
.testimonial-slider {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 0 0 8px 0;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  background: #fff;
  box-shadow: 0 2px 12px var(--color-shadow);
  padding: 20px;
  border-radius: 12px;
  flex: 1 1 275px;
  min-width: 250px;
  max-width: 360px;
}
.testimonial-card img {
  width: 28px;
  height: 28px;
  margin-bottom: 2px;
}
.testimonial-card p {
  color: #2d3640;
  font-size: 1.06rem;
  margin-bottom: 6px;
  text-align: center;
  line-height: 1.5;
  font-style: italic;
}
.testimonial-meta {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #16697A;
  font-size: 0.97rem;
  text-align: center;
}

/* ========= FAQ LIST =========== */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin: 18px 0 24px 0;
}
.faq-list dt {
  font-weight: 700;
  color: var(--color-primary);
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.08rem;
  margin-bottom: 5px;
}
.faq-list dd {
  margin-bottom: 4px;
  margin-left: 0;
  padding-left: 0;
  color: #222f3e;
  font-size: 1rem;
}

/* ========== ADDRESS & TEXT SECTIONS ============= */
.text-section {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.address-details, .neutral-contact, .service-guarantee, .sustainability-statement {
  padding: 10px 0;
  background: none;
  color: #2d3640;
}

/* ========== FOOTER ============= */
footer {
  background: #16697A;
  color: #fff;
  padding: 34px 0 14px 0;
  border-top: 3px solid #e5f3f8;
  font-size: 0.95rem;
}
.footer-container {
  max-width: 1160px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 32px;
  flex-wrap: wrap;
}
.footer-brand img {
  width: 52px;
  margin-bottom: 8px;
}
.footer-contact {
  min-width: 190px;
  color: #e3f1f7;
}
.footer-contact a {
  color: #e3f1f7;
  text-decoration: underline;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-nav a {
  color: #e3f1f7;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  transition: color .19s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: #82C0CC;
}

/* =========== MOBILE MENU =========== */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 2rem;
  color: #16697A;
  padding: 10px;
  margin-left: 8px;
  cursor: pointer;
  border-radius: 8px;
  transition: background .18s;
  z-index: 104;
}
.mobile-menu-toggle:focus {
  background: #e5f3f8;
  outline: 2px solid #16697A;
}
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(22, 105, 122, 0.97);
  transform: translateX(100%);
  transition: transform .32s cubic-bezier(.4,.25,.25,1);
  z-index: 103;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 38px 22px 24px 22px;
  width: 100vw;
  height: 100vh;
}
.mobile-menu.active {
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  background: none;
  border: none;
  font-size: 2.1rem;
  color: #fff;
  cursor: pointer;
  margin-bottom: 16px;
  padding: 8px 10px;
  border-radius: 8px;
  transition: background .16s;
  z-index: 108;
}
.mobile-menu-close:focus {
  background: #82C0CC;
  color: #14677a;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 18px;
  width: 100%;
}
.mobile-nav a {
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.15rem;
  padding: 14px 0 6px 0;
  border-bottom: 1px solid #228aa7;
  border-radius: 0;
  transition: background .17s, color .15s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #82C0CC;
  color: #14677a;
  border-radius: 6px;
  text-decoration: none;
}

@media (max-width: 990px) {
  .footer-container {
    flex-direction: column;
    gap: 16px;
    align-items: center;
    text-align: center;
  }
}
@media (max-width: 870px) {
  .nav-container {
    gap: 14px;
  }
}
@media (max-width: 850px) {
  .nav-container, .footer-container {
    max-width: 98vw;
    padding-left: 8px;
    padding-right: 8px;
  }
}
@media (max-width: 900px) {
  .main-nav {
    gap: 12px;
  }
  .card-container {
    gap: 16px;
  }
}

@media (max-width: 840px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
  .btn-primary {
    margin-left: 6px;
  }
  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}

@media (max-width: 650px) {
  .container {
    max-width: 99vw;
    padding-left: 8px;
    padding-right: 8px;
  }
  .features-grid, .testimonial-slider, .team-list, .content-grid {
    flex-direction: column;
    gap: 18px;
    align-items: stretch;
  }
  .hero {
    padding: 34px 0 18px 0;
  }
  .footer-container {
    gap: 8px;
    text-align: center;
  }
}

@media (max-width: 768px) {
  .content-wrapper {
    gap: 12px;
  }
  .features-grid, .testimonial-slider, .team-list, .content-grid {
    flex-direction: column;
    gap: 18px;
  }
  .service-list, .step-list, .event-package-list {
    gap: 13px;
  }
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }
}

@media (max-width: 540px) {
  h1 { font-size: 1.35rem; }
  h2 { font-size: 1.12rem; }
  h3 { font-size: 1.01rem; }
  .footer-brand img {
    width: 38px; margin-bottom:4px;
  }
  .highlight, .feature, .features-list li, .service-list li, .team-list li, .testimonial-card, .card {
    padding: 12px 10px;
  }
}

/* ====== MICRO INTERACTIONS ===== */
.btn-primary,
.mobile-menu-close,
.mobile-menu-toggle,
.main-nav a,
.mobile-nav a {
  transition: background .17s, color .15s, box-shadow .18s, border-color .15s;
}
.card, .testimonial-card, .feature {
  transition: box-shadow .18s, background .16s;
}
.card:hover, .testimonial-card:hover, .feature:hover {
  box-shadow: 0 4px 26px var(--color-shadow);
  background: #F7FAFC;
}

/* =========== COOKIE CONSENT BANNER =========== */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1000;
  background: #fff;
  color: #2d3640;
  box-shadow: 0 -4px 24px var(--color-shadow);
  padding: 22px 10px 18px 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  border-top: 2px solid #e5f3f8;
  font-size: 1rem;
  width: 100vw;
}
.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}
.cookie-btn {
  font-family: 'Montserrat', Arial, sans-serif;
  padding: 8px 20px;
  border: none;
  border-radius: 7px;
  font-size: 1rem;
  cursor: pointer;
  margin-bottom: 4px;
  font-weight: 600;
  box-shadow: 0 1px 8px var(--color-shadow);
  transition: background .16s, color .16s;
}
.cookie-btn.accept {
  background: #16697A;
  color: #fff;
}
.cookie-btn.accept:hover, .cookie-btn.accept:focus {
  background: #145D6E;
}
.cookie-btn.reject {
  background: #e54b4b;
  color: #fff;
}
.cookie-btn.reject:hover, .cookie-btn.reject:focus {
  background: #d12c2c;
}
.cookie-btn.settings {
  background: #eceff1;
  color: #16697A;
}
.cookie-btn.settings:hover, .cookie-btn.settings:focus {
  background: #d6e6ec;
}

/* COOKIE MODAL DIALOG */
.cookie-modal-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(38, 63, 82, 0.66);
  z-index: 1100;
  display: none;
  align-items: center;
  justify-content: center;
}
.cookie-modal-overlay.active {
  display: flex;
  animation: cookieFade .29s cubic-bezier(.55,.15,.25,1);
}
@keyframes cookieFade {
  from { opacity: 0; }
  to { opacity: 1; }
}
.cookie-modal {
  background: #fff;
  color: #222f3e;
  padding: 30px 22px 24px 22px;
  border-radius: 18px;
  min-width: 300px;
  max-width: 95vw;
  max-height: 99vh;
  box-shadow: 0 6px 40px 0 rgba(22,105,122,.13);
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
}
.cookie-modal-close {
  position: absolute;
  top: 14px; right: 18px;
  background: none;
  border: none;
  font-size: 1.25rem;
  color: #16697A;
  cursor: pointer;
  padding: 6px;
  border-radius: 7px;
  transition: background .14s;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  background: #eceff1;
}
.cookie-modal h3 {
  color: #16697A;
  margin-bottom: 8px;
  font-size: 1.15rem;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 10px;
}
.cookie-category label {
  font-size: 1rem;
  color: #222f3e;
}
.cookie-toggle {
  width: 38px; height: 22px;
  background: #cedee0;
  border-radius: 12px;
  position: relative;
  display: inline-block;
  transition: background .18s;
}
.cookie-toggle input[type="checkbox"] {
  display: none;
}
.cookie-toggle span {
  display: block;
  position: absolute;
  top: 2px; left: 2px;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: #82C0CC;
  transition: left .18s, background .14s;
}
.cookie-toggle input[type="checkbox"]:checked + span {
  left: 18px;
  background: #16697A;
}

/* ======= CONFIRMATION PAGE ========== */
.confirmation {
  background: #fff;
  padding: 49px 0 49px 0;
  border-radius: var(--radius);
  box-shadow: 0 6px 28px var(--color-shadow);
  margin-bottom: 60px;
}

/* ======= MISC SPACING PATTERNS ========= */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
}
.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;
}

/* ======= VISUAL ACCESSIBILITY ======= */
body, .footer-contact, .testimonial-card p, .card, .features-list li, .feature, .faq-list dd {
  color: #2d3640;
  background: none;
}
.testimonial-card p, .testimonial-meta {
  color: #18202c;
}
.testimonial-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 12px var(--color-shadow);
}

/* ===== FONT IMPORT (for production bundle, move to index) ===== */
@import url('https://fonts.googleapis.com/css?family=Montserrat:700,500,400&display=swap');
@import url('https://fonts.googleapis.com/css?family=Open+Sans:400,600&display=swap');
