/* Prism Yacht Service – Soft Pastel CSS Theme */
/* ==================================================
    RESET & BASE STYLES
================================================== */
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,
main, 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 {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  min-height: 100%;
  background: #FAFCFF;
}
body {
  font-family: 'Helvetica Neue', Arial, sans-serif;
  color: #2D3748;
  font-size: 16px;
  line-height: 1.7;
  background: #FAFCFF;
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: #3A7387;
  text-decoration: none;
  transition: color 0.25s cubic-bezier(0.4,0,0.2,1);
}
a:hover, a:focus {
  color: #003654;
  text-decoration: underline;
}

ul, ol {
  margin-bottom: 1em;
  padding-left: 1.5em;
}
li:not(:last-child) {
  margin-bottom: 0.5em;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Helvetica Neue', Arial, sans-serif;
  font-weight: 700;
  color: #003654;
  letter-spacing: 0.01em;
  margin-bottom: 0.7em;
}
h1 {
  font-size: 2.5rem;
  line-height: 1.15;
}
h2 {
  font-size: 2rem;
}
h3 {
  font-size: 1.4rem;
}
strong {
  font-weight: 600;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 16px;
  display: flex;
  flex-direction: column;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* Colors: Brand + Soft Pastel Palette (gentle gradients in backgrounds) */
:root {
  --primary: #003654;
  --secondary: #6EB5C0;
  --accent: #EFEFEF;
  --pastel-blue: #B3D5E0;
  --pastel-mint: #E2F7F2;
  --pastel-pink: #F5E7EB;
  --pastel-lavender: #E6E8FA;
  --pastel-yellow: #FFF8DC;
  --text-dark: #003654;
  --text-light: #FFFFFF;
}

/* ==================================================
    HEADER & NAVIGATION
================================================== */
header {
  background: linear-gradient(90deg, #E2F7F2 0%, #F5E7EB 100%);
  box-shadow: 0 2px 12px 0 rgba(48, 109, 133, 0.05);
  position: sticky;
  top: 0;
  z-index: 101;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
}
header img {
  height: 44px;
  transition: transform .25s cubic-bezier(.4,0,.2,1);
}
header img:hover {
  transform: scale(1.05) rotate(-2deg);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 24px;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: var(--primary);
  padding: 8px 12px;
  border-radius: 16px;
  transition: background 0.18s, color 0.18s;
}
.main-nav a:not(.button-primary):hover,
.main-nav a:not(.button-primary):focus {
  background: #E6E8FA;
  color: var(--secondary);
}

.button-primary {
  background: var(--primary);
  color: var(--text-light)!important;
  padding: 10px 26px;
  border: none;
  border-radius: 26px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  box-shadow: 0 3px 16px 0 rgba(48, 109, 133, 0.08);
  cursor: pointer;
  transition: background 0.24s, box-shadow 0.3s, transform 0.12s;
  outline: none;
  margin-left: 16px;
  display: inline-block;
  letter-spacing: 0.02em;
  text-align: center;
}
.button-primary:hover, .button-primary:focus {
  background: var(--secondary);
  color: var(--primary)!important;
  box-shadow: 0 6px 28px 0 rgba(48, 109, 133, 0.16);
  transform: translateY(-2px) scale(1.03);
}
.button-secondary {
  background: var(--secondary);
  color: var(--primary);
  padding: 9px 22px;
  border: none;
  border-radius: 24px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  box-shadow: 0 2px 8px 0 rgba(110, 181, 192, 0.11);
  cursor: pointer;
  transition: background 0.2s, color 0.2s, box-shadow 0.23s;
  margin-top: 8px;
  margin-bottom: 8px;
}
.button-secondary:hover, .button-secondary:focus {
  background: var(--primary);
  color: var(--text-light);
  box-shadow: 0 4px 18px 0 rgba(48, 109, 133, 0.12);
}

/* Hamburger Icon */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 2.2rem;
  color: var(--primary);
  cursor: pointer;
  padding: 5px 10px;
  border-radius: 10px;
  margin-left: 12px;
  transition: background .18s;
  z-index: 201;
}
.mobile-menu-toggle:hover {
  background: var(--pastel-mint);
}

/* Mobile Menu Overlay */
.mobile-menu {
  position: fixed;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background: linear-gradient(95deg,#E2F7F2 65%,#F5E7EB 100%);
  box-shadow: 0 8px 36px rgba(0,54,84,0.24);
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.5,0,0.2,1);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  z-index: 200;
  opacity: 0;
  pointer-events: none;
}
.mobile-menu.open {
  transform: translateX(0);
  opacity: 1;
  pointer-events: all;
}
.mobile-menu-close {
  background: none;
  border: none;
  color: var(--primary);
  font-size: 2.2rem;
  margin: 24px 24px 8px 20px;
  padding: 6px;
  align-self: flex-end;
  border-radius: 12px;
  cursor: pointer;
  transition: background 0.17s, color 0.17s;
  z-index: 210;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: var(--secondary);
  background: var(--pastel-mint);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 22px;
  margin: 0 0 0 40px;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 19px;
  font-weight: 500;
  color: var(--primary);
  padding: 8px 0 8px 2px;
  border-radius: 12px;
  transition: background 0.18s, color 0.18s;
  width: 100%;
  text-align: left;
}
.mobile-nav a.button-primary {
  margin-top: 24px;
  font-size: 18px;
  width: auto;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #E6E8FA;
  color: var(--secondary);
}

/* Hide main nav on mobile */
@media (max-width: 1024px) {
  .main-nav {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: block;
  }
}
@media (min-width: 1025px) {
  .mobile-menu {
    display: none !important;
  }
}

/* ==================================================
    HERO SECTIONS & GENERAL LAYOUTS
================================================== */
.hero {
  background: linear-gradient(120deg, #E2F7F2 75%, #FFF8DC 100%);
  padding: 48px 0 36px 0;
  border-bottom-left-radius: 60px;
  border-bottom-right-radius: 60px;
  box-shadow: 0 3px 28px 0 rgba(149,184,214,0.080);
}
.hero h1 {
  color: var(--primary);
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 2.8rem;
  font-weight: 800;
}
.hero p {
  color: var(--primary);
  font-size: 1.2rem;
  margin-bottom: 18px;
}
.hero .button-primary {
  margin-top: 24px;
}

/* FEATURES & FLEX PATTERNS */
.features {
  background: #F5E7EB;
  border-radius: 42px;
  margin-top: 36px;
}
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
  margin-top: 20px;
}
.feature {
  background: #FFFFFF;
  border-radius: 22px;
  box-shadow: 0 2px 12px 0 rgba(110,181,192,0.10);
  padding: 28px 22px;
  flex: 1 1 220px;
  max-width: 340px;
  min-width: 200px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  align-items: flex-start;
  transition: box-shadow 0.22s, transform 0.14s;
}
.feature img {
  width: 44px;
  height: 44px;
  margin-bottom: 12px;
}
.feature:hover, .feature:focus-within {
  box-shadow: 0 8px 24px 0 rgba(110,181,192,0.18);
  transform: translateY(-3px) scale(1.045);
}

/* Info Cards & Containers */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 32px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #FFFFFF;
  border-radius: 20px;
  box-shadow: 0 2px 16px 0 rgba(110,181,192,0.09);
  padding: 24px 18px;
  display: flex;
  flex-direction: column;
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.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;
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    gap: 16px;
  }
}

@media (max-width: 900px) {
  .feature-grid {
    gap: 18px;
  }
}

/* ==================================================
    TESTIMONIALS (Distinctive, Contrast, Cards)
================================================== */
.testimonials {
  background: #E6E8FA;
  border-radius: 32px;
  margin: 46px 0;
  padding: 40px 12px;
}
.testimonial-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 12px;
  align-items: flex-start;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 26px 30px 16px 30px;
  border-radius: 20px;
  background: #FFF;
  color: #14243C;
  box-shadow: 0 2px 24px 0 rgba(110,181,192,0.14);
  min-width: 260px;
  max-width: 420px;
  flex: 1 1 260px;
  margin-bottom: 20px;
  font-size: 1rem;
  font-family: 'Helvetica Neue', Arial, sans-serif;
  transition: box-shadow 0.18s, transform 0.12s;
}
.testimonial-card p {
  font-size: 1.06rem;
  color: #222e47;
  line-height: 1.7;
}
.testimonial-meta {
  color: var(--secondary);
  font-size: 0.97rem;
  margin-top: 6px;
  font-family: 'Montserrat', Arial, sans-serif;
  text-align: right;
  width: 100%;
}
.testimonial-card:hover, .testimonial-card:focus-within {
  box-shadow: 0 4px 30px 0 rgba(110,181,192,0.21);
  transform: scale(1.025) translateY(-3px);
}

/* Standalone testimonial */
.testimonials .testimonial-card:not(:last-child) {
  margin-right: 0px;
}

/* Ensure text contrast! */
@media (max-width: 900px) {
  .testimonial-list {
    flex-direction: column;
    gap: 18px;
  }
}

/* ==================================================
    SECTION SPACING & PATTERNS
================================================== */
.section, .about-mission, .team, .why-us, .about, .services-overview, .process, .legal, .contact-details, .thank-you, .cta {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #FFFFFF;
  border-radius: 28px;
  box-shadow: 0 2px 18px 0 rgba(110,181,192,0.07);
}
/* About-Teaser & Services-Teaser Styling */
.about-teaser, .services-teaser {
  background: #B3D5E0;
  color: var(--primary);
  border-radius: 32px;
  margin-bottom: 48px;
}
.about-teaser h2, .services-teaser h2 {
  color: var(--primary);
}
.about-teaser .button-secondary, .services-teaser .button-secondary {
  margin-top: 10px;
}

/* Contact Cards & CTA */
.contact-cta, .cta, .contact-details {
  background: #E2F7F2;
  border-radius: 32px;
  margin-bottom: 48px;
  padding: 36px 20px;
}
.contact-cta ul, .contact-details ul.contact-list {
  list-style: none;
  padding: 0;
  margin: 14px 0 24px 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.contact-cta ul img, .contact-details ul.contact-list img {
  width: 24px;
  margin-right: 12px;
  vertical-align: middle;
}
.contact-snippet li, .contact-list li {
  background: #FFF;
  border-radius: 12px;
  padding: 12px 18px;
  display: flex;
  align-items: center;
  color: #2D3748;
}

/* ==================================================
    FOOTER STYLES
================================================== */
footer {
  background: linear-gradient(105deg, #E2F7F2 63%, #B3D5E0 100%);
  padding: 32px 0 24px 0;
  margin-top: 45px;
}
footer .container {
  flex-direction: column;
  gap: 18px;
  align-items: center;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin-bottom: 10px;
}
.footer-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 15px;
  color: var(--primary);
  opacity: 0.9;
  padding: 6px 8px;
  border-radius: 10px;
  transition: background 0.17s, color 0.17s;
}
.footer-nav a:hover, .footer-nav a:focus {
  background: var(--pastel-lavender);
  color: var(--secondary);
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1rem;
  color: var(--primary);
  opacity: .87;
}
.footer-brand img {
  width: 34px;
  height: 34px;
}

/* ==================================================
    COOKIE CONSENT BANNER & MODAL
================================================== */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(93deg, #F5E7EB 55%, #B3D5E0 100%);
  color: #293445;
  box-shadow: 0 -8px 28px 0 rgba(48,109,133,0.18);
  padding: 28px 16px 20px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  z-index: 9999;
  font-size: 1rem;
  border-top-left-radius: 28px;
  border-top-right-radius: 28px;
  animation: bannerfadein .55s cubic-bezier(0.2,0.7,0.3,1);
}
@keyframes bannerfadein {
  from {opacity: 0;transform: translateY(30px);}
  to {opacity: 1;transform: translateY(0);}
}
.cookie-banner .cookie-buttons {
  display: flex;
  flex-direction: row;
  gap: 18px;
  margin-top: 12px;
}
.cookie-banner button {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  padding: 8px 20px;
  border: none;
  border-radius: 20px;
  cursor: pointer;
  transition: background 0.17s, color 0.17s, box-shadow 0.16s;
  box-shadow: 0 2px 8px rgba(110,181,192,0.11);
}
.cookie-banner .accept {
  background: var(--primary);
  color: #FFF;
  font-weight: 600;
}
.cookie-banner .accept:hover, .cookie-banner .accept:focus {
  background: var(--secondary);
  color: var(--primary);
}
.cookie-banner .reject {
  background: var(--secondary);
  color: var(--primary);
}
.cookie-banner .reject:hover, .cookie-banner .reject:focus {
  background: var(--primary);
  color: #FFF;
}
.cookie-banner .settings {
  background: var(--accent);
  color: var(--primary);
}
.cookie-banner .settings:hover, .cookie-banner .settings:focus {
  background: var(--pastel-blue);
  color: var(--primary);
}

.cookie-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(180, 208, 224, 0.55);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  animation: bannerfadein .41s cubic-bezier(0.2,0.7,0.3,1);
}
.cookie-modal {
  background: #FFF;
  border-radius: 32px;
  padding: 38px 28px 28px 28px;
  min-width: 310px;
  max-width: 92vw;
  box-shadow: 0 8px 40px 0 rgba(110,181,192,0.22);
  font-family: 'Montserrat', Arial, sans-serif;
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: flex-start;
  position: relative;
  z-index: 10011;
  color: var(--primary);
}
.cookie-modal h2 {
  margin-bottom: 6px;
  font-size: 1.35rem;
  color: var(--primary);
}
.cookie-modal .categories {
  margin: 0 0 18px 0;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.cookie-modal .category {
  padding: 10px 0 10px 0;
  width: 100%;
  display: flex;
  align-items: center;
  gap: 12px;
}
.cookie-modal .category input[type='checkbox'] {
  accent-color: var(--secondary);
  width: 20px; height: 20px;
}
.cookie-modal .category.essential label {
  font-weight: 600;
  color: #99A8BE;
  cursor: not-allowed;
}
.cookie-modal .modal-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 10px;
}
.cookie-modal .close-modal {
  position: absolute;
  right: 19px;
  top: 14px;
  background: none;
  color: var(--primary);
  font-size: 1.7rem;
  border: none;
  cursor: pointer;
  transition: color 0.17s;
}
.cookie-modal .close-modal:hover {
  color: var(--secondary);
}

/* Hide modal and banner if not active (with classes in JS) */
.cookie-banner,
.cookie-modal-overlay {
  display: none;
}
.cookie-banner.active,
.cookie-modal-overlay.active {
  display: flex;
}

/* ==================================================
    RESPONSIVE DESIGN (Mobile First)
================================================== */
@media (max-width: 900px) {
  .container {
    padding: 0 6vw;
  }
  header .container {
    min-height: 58px;
    padding: 0 13px;
  }
  .footer-brand {
    flex-direction: column;
    gap: 4px;
  }
  .section, .about-mission, .team, .why-us, .about, .services-overview, .process, .legal, .contact-details, .thank-you, .cta {
    padding: 26px 10px;
  }
  .about-teaser, .services-teaser, .testimonials, .contact-cta, .cta, .contact-details {
    padding: 26px 10px;
    border-radius: 22px;
  }
  .hero {
    border-bottom-left-radius: 32px;
    border-bottom-right-radius: 32px;
    padding-bottom: 18px;
  }
  h1 {
    font-size: 2rem;
  }
  h2 {
    font-size: 1.24rem;
  }
  .feature-grid {
    flex-direction: column;
    gap: 16px;
  }
  .testimonial-list {
    flex-direction: column;
    gap: 16px;
  }
}

@media (max-width: 600px) {
  .container {
    padding: 0 4vw;
  }
  .hero {
    padding: 32px 0 14px 0;
  }
  .about-teaser, .services-teaser, .testimonials, .contact-cta, .cta, .contact-details {
    padding: 18px 5px;
    border-radius: 12px;
  }
  .testimonial-card {
    padding: 16px 10px 10px 10px;
  }
}

/* ==================================================
    MISC & MICRO-INTERACTIONS
================================================== */
::-webkit-scrollbar {
  width: 9px;
  background: #E2F7F2;
  border-radius: 5px;
}
::-webkit-scrollbar-thumb {
  background: #B3D5E0;
  border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover {
  background: #6EB5C0;
}

input, button, textarea, select {
  font-family: inherit;
  font-size: inherit;
}

/* Lists for process and about/why-us */
ol {
  counter-reset: ordered;
}
ol > li {
  position: relative;
  margin-bottom: 12px;
  padding-left: 25px;
}
ol > li:before {
  content: counter(ordered) '.';
  counter-increment: ordered;
  position: absolute;
  left: 0;
  top: 0;
  color: var(--secondary);
  font-weight: bold;
}

.section ul, .section ol {
  margin-bottom: 0.5em;
}

/* Table for legal pages (if any) */
table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 24px;
  background: #FFF;
  border-radius: 10px;
  box-shadow: 0 2px 12px 0 rgba(110,181,192,0.07);
  overflow: hidden;
}
th, td {
  padding: 10px 8px;
  text-align: left;
}
th {
  background: #E6E8FA;
}
tr:not(:last-child) td {
  border-bottom: 1px solid #EFEFEF;
}

/* ==================================================
    SPECIAL CLASSES & ACCESSIBILITY
================================================== */
.sr-only {
  position: absolute;
  left: -10000px;
  top: auto;
  width: 1px; 
  height: 1px; 
  overflow: hidden;
}

:focus {
  outline: 3px solid #A4DDFF;
  outline-offset: 2px;
}

/* ==================================================
    END - ALL FLEXBOX, NO GRID. ALL SELECTORS PRESENT
================================================== */