/* 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 {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
  height: 100%;
}
body {
  min-height: 100vh;
  background: #00212a; /* fallback for gradient accent */
  color: #F4F4F4;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  background-color: #003642;
  /* Subtle blend effect */
  background-image: linear-gradient(120deg,#003642 70%,#005968 100%);
}
img {
  display: block;
  max-width: 100%;
  height: auto;
}
a {
  color: #FFD966;
  text-decoration: none;
  transition: color 0.3s;
}
a:hover, a:focus {
  color: #F4F4F4;
  text-shadow: 0 0 8px #FFD966B0;
}
button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  background: none;
  border: none;
  outline: none;
}
ul, ol {
  list-style: none;
}


/* TYPOGRAPHY */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #FFD966;
  letter-spacing: 1px;
  font-weight: 700;
  line-height: 1.18;
}
h1 { font-size: 2.75rem; margin-bottom: 20px; }
h2 { font-size: 2rem; margin-bottom: 18px; }
h3 { font-size: 1.25rem; margin-bottom: 10px; }
h4, h5, h6 { font-size: 1.1rem; margin-bottom: 7px; }
p, li, span { font-family: 'Roboto', Arial, sans-serif; color: #F4F4F4; }
p { margin-bottom: 18px; line-height: 1.7; }
strong { color: #FFD966; font-weight: 600; }

/* LAYOUT CONTAINERS */
.container {
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.text-section {
  width: 100%;
  margin-bottom: 30px;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  position: relative;
  background: rgba(0, 54, 66, 0.8);
  border-radius: 20px;
  box-shadow: 0 4px 40px 0 rgba(0,54,66,0.10),0 0px 0px 1px #00364280;
}

/* FLEXBOX PATTERNS per requirements */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #033c49;
  border-radius: 18px;
  box-shadow: 0 2px 20px 0 #00eafd18, 0 0 0 1px #F4F4F442;
  padding: 32px 26px;
  display: flex;
  flex-direction: column;
  z-index: 1;
  transition: box-shadow 0.2s, transform 0.2s;
}
.card:hover, .card:focus-within {
  box-shadow: 0 6px 50px 0 #FFD96655, 0 0 0 2px #FFD966CC;
  transform: translateY(-4px) scale(1.025);
}
.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;
  flex-direction: column;
  gap: 20px;
  padding: 20px;
  background: #F4F4F4;
  color: #003642;
  border-radius: 16px;
  box-shadow: 0 2px 18px 0 #00364230;
  margin-bottom: 28px;
  border: 1px solid #FFD96640;
  transition: box-shadow 0.2s;
}
.testimonial-card p {
  color: #003642;
  font-size: 1.1rem;
  font-style: italic;
  margin-bottom: 8px;
}
.testimonial-card strong {
  color: #003642;
  text-align: right;
  width: 100%;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
}


/* HEADER & NAVIGATION */
header {
  width: 100%;
  background: #00212a;
  box-shadow: 0 2px 32px 0 #00364240;
  position: relative;
  z-index: 40;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 76px;
}
.logo img {
  height: 46px;
  width: auto;
  display: block;
  filter: drop-shadow(0 0 8px #FFD96680);
  transition: filter 0.2s;
}
.logo:hover img,
.logo:focus img {
  filter: drop-shadow(0 0 16px #FFD966CC);
}
.main-nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 32px;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #F4F4F4;
  font-weight: 500;
  letter-spacing: 0.5px;
  padding: 8px 10px;
  position: relative;
  transition: color 0.2s;
}
.main-nav a:after {
  content: '';
  display: block;
  width: 0%;
  height: 2px;
  background: #FFD966;
  margin-top: 3px;
  border-radius: 2px;
  transition: width 0.3s;
}
.main-nav a:hover:after, .main-nav a:focus:after { width: 90%; }
.main-nav a:hover, .main-nav a:focus{ color: #FFD966; }

.btn, .btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1.08rem;
  border-radius: 26px;
  padding: 13px 30px;
  margin-left: 16px;
  background: #FFD966;
  box-shadow: 0 2px 16px 0 #FFD96660;
  color: #003642;
  border: none;
  cursor: pointer;
  transition: background 0.18s, color 0.18s, box-shadow 0.18s, transform 0.13s;
  text-shadow: none;
}
.btn-primary {
  background: linear-gradient(90deg, #FFD966 65%, #FFEAA0 100%);
}
.btn:hover, .btn:focus, .btn-primary:hover, .btn-primary:focus {
  background: #F4F4F4;
  color: #003642;
  box-shadow: 0 4px 20px 2px #FFD96688;
  transform: scale(1.045);
}


/* MOBILE MENU */
.mobile-menu-toggle {
  display: none;
  background: #FFD966;
  color: #003642;
  border-radius: 8px;
  font-size: 2rem;
  width: 50px;
  height: 50px;
  align-items: center;
  justify-content: center;
  border: none;
  box-shadow: 0 2px 12px 0 #FFD96640;
  cursor: pointer;
  z-index: 120;
}
.mobile-menu {
  display: none;
}
.mobile-menu.open {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  position: fixed;
  top: 0; left: 0; 
  width: 100vw;
  height: 100vh;
  background: #00212aee;
  z-index: 1000;
  transform: translateX(0%);
  animation: mobileMenuIn 0.27s cubic-bezier(.68,.03,.53,.98);
  transition: transform 0.22s;
}
@keyframes mobileMenuIn {
  from { transform: translateX(100%); }
  to { transform: translateX(0); }
}
.mobile-menu-close {
  margin: 22px 26px 12px 0;
  align-self: flex-end;
  font-size: 2.3rem;
  background: #FFD966;
  color: #003642;
  border-radius: 50%;
  padding: 8px 18px 8px 18px;
  cursor: pointer;
  border: none;
  transition: background 0.2s, color 0.2s;
  box-shadow: 0 2px 12px #FFD96630;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #F4F4F4;
  color: #003642;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  width: 100%;
  align-items: flex-start;
  gap: 16px;
  padding: 12px 36px;
}
.mobile-nav a {
  color: #FFD966;
  font-size: 1.32rem;
  font-family: 'Montserrat', Arial, sans-serif;
  text-align: left;
  padding: 12px 0;
  width: 100%;
  border-bottom: 1px solid #01455427;
  transition: color 0.18s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: #F4F4F4;
  background: #ffd96610;
}

/* HERO SECTION */
.hero {
  background: linear-gradient(120deg, #003642 70%, #013142 100%);
  min-height: 320px;
  box-shadow: 0 2px 50px 0 #00364280;
  border-radius: 0 0 36px 36px;
  margin-bottom: 60px;
  padding: 85px 0 65px 0;
  position: relative;
  display: flex;
  align-items: center;
}
.hero .content-wrapper {
  align-items: flex-start;
  gap: 16px;
}
.hero h1 {
  color: #FFD966;
  font-size: 2.8rem;
  text-shadow: 0 8px 32px #FFD96643, 0 1px 0px #003642cc;
}
.hero p {
  color: #F4F4F4;
  font-size: 1.18rem;
  max-width: 600px;
  margin-bottom: 12px;
}

/* FEATURES/UL LISTS with ICONS */
ul li {
  display: flex;
  align-items: center;
  gap: 17px;
  margin-bottom: 24px;
  font-size: 1.12rem;
  color: #F4F4F4;
  padding-left: 0;
}
ul li img {
  width: 32px;
  height: 32px;
  filter: drop-shadow(0 0 6px #FFD96690);
}
ul li strong {
  font-size: 1.12rem;
  color: #FFD966;
  margin-right: 6px;
}

/* SERVICE/JOURNEY CARDS IN UL (services grid) */
.services-list, .content-wrapper > ul {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  flex-direction: row;
}
.services-list li, .content-wrapper > ul > li {
  flex: 1 1 320px;
  min-width: 260px;
  background: #033c49;
  color: #F4F4F4;
  border-radius: 18px;
  padding: 28px 24px 22px 24px;
  margin-bottom: 20px;
  box-shadow: 0 1px 14px #FFD96626, 0 0 0 1px #FFD96610;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: box-shadow 0.2s, transform 0.14s;
  border: 1px solid transparent;
}
.services-list li:hover, .content-wrapper > ul > li:hover {
  box-shadow: 0 6px 40px 0 #FFD96644, 0 0 0 2px #FFD96699;
  border: 1px solid #FFD96699;
  transform: translateY(-3px) scale(1.028);
}
.services-list li h3,
.content-wrapper > ul > li h3 {
  color: #FFD966;
  font-size: 1.3rem;
  margin-bottom: 7px;
}
.services-list li span,
.content-wrapper > ul > li span {
  color: #FFD966;
  font-weight: 600;
  font-size: 1.08rem;
}
.services-list li a,
.content-wrapper > ul > li a {
  align-self: flex-start;
  background: none;
  color: #FFD966;
  font-weight: 600;
  padding: 0;
  border: none;
  margin-top: 10px;
  font-size: 1rem;
  transition: color 0.2s;
}
.services-list li a:hover,
.content-wrapper > ul > li a:hover {
  color: #F4F4F4;
}

/* FOOTER */
footer {
  width: 100%;
  background: #00212a;
  box-shadow: 0 -2px 40px 0 #00364260;
  padding: 44px 0 0 0;
}
footer .container {
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 32px;
}
.footer-logo img {
  width: 54px;
  height: 54px;
  filter: drop-shadow(0px 1px 10px #FFD96666);
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.footer-nav a {
  color: #FFD966;
  font-family: "Montserrat", Arial, sans-serif;
  margin-bottom: 2px;
  font-size: 1rem;
  transition: color 0.18s;
}
.footer-nav a:hover, .footer-nav a:focus { color: #F4F4F4; }
.footer-contact {
  color: #F4F4F4;
  font-size: 0.98rem;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.footer-contact a { color: #FFD966; transition: color 0.18s; }
.footer-contact a:hover, .footer-contact a:focus { color: #F4F4F4; }
.footer-rights {
  color: #EBEBEB;
  opacity: 0.70;
  font-size: 0.92rem;
  flex-basis: 100%;
  margin-top: 24px;
}

/* CTA BANNER */
.section-cta, .cta-banner, section .btn-primary:last-child {
  background: linear-gradient(90deg, #003642 72%, #FFD96622 100%);
  border-radius: 18px;
  padding: 45px 32px !important;
  box-shadow: 0 2px 40px 0 #FFD96622;
  margin-bottom: 38px;
}

/* COOKIES BANNER + MODAL */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;
  background: #00212acc;
  color: #F4F4F4;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 22px 24px;
  box-shadow: 0 -2px 22px #003642cc;
  z-index: 2000;
  gap: 16px;
  transition: transform 0.4s;
  animation: cookieBannerIn 0.42s;
}
@keyframes cookieBannerIn {
  from { transform: translateY(100%); }
  to { transform: translateY(0); }
}
.cookie-banner__message {
  font-size: 1rem;
  color: #F4F4F4;
  max-width: 560px;
}
.cookie-banner__actions {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 15px;
}
.cookie-banner__btn, .cookie-banner__btn-primary {
  background: #FFD966;
  color: #003642;
  border-radius: 20px;
  padding: 8px 22px;
  border: none;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 0.97rem;
  transition: background 0.18s, color 0.18s, transform 0.17s;
  box-shadow: 0 1px 10px #FFD96642;
  cursor: pointer;
}
.cookie-banner__btn:hover, .cookie-banner__btn-primary:hover {
  background: #F4F4F4;
  color: #003642;
}
.cookie-modal-overlay {
  visibility: hidden;
  opacity: 0;
  position: fixed;
  left: 0;top: 0;width: 100vw;height: 100vh;
  z-index: 2050;
  background: #00212aee;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.3s, visibility 0.3s;
}
.cookie-modal-overlay.open {
  visibility: visible;
  opacity: 1;
}
.cookie-modal {
  background: #F4F4F4;
  color: #003642;
  border-radius: 20px;
  box-shadow: 0 4px 60px 0 #FFD96660;
  padding: 36px 40px 24px 40px;
  min-width: 330px;
  max-width: 95vw;
  display: flex;
  flex-direction: column;
  gap: 18px;
  z-index: 2100;
  animation: cookieModalIn 0.27s;
}
@keyframes cookieModalIn {
  from { transform: translateY(80px) scale(0.96); opacity: 0; }
  to { transform: translateY(0) scale(1); opacity: 1; }
}
.cookie-modal h2 {
  color: #003642;
  font-size: 1.23rem;
  margin-bottom: 7px;
}
.cookie-modal ul {
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.cookie-modal li {
  color: #003642;
  font-size: 0.97rem;
  background: #FFD96614;
  border-radius: 12px;
  padding: 9px 12px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.cookie-toggle {
  appearance: none;
  width: 36px;
  height: 20px;
  border-radius: 12px;
  background: #FFD96655;
  position: relative;
  outline: none;
  cursor: pointer;
  transition: background 0.18s;
}
.cookie-toggle:checked {
  background: #FFD966;
}
.cookie-toggle::before {
  content: '';
  position: absolute;
  left: 2px;top: 2px;
  width: 16px; height: 16px;
  background: #F4F4F4;
  border-radius: 50%;
  transition: transform 0.19s;
  box-shadow: 0 0 4px #FFD966bb;
}
.cookie-toggle:checked::before {
  transform: translateX(15px);
  background: #003642;
}
.cookie-modal .cookie-modal-actions {
  display: flex;
  flex-direction: row;
  gap: 16px;
  justify-content: flex-end;
  margin-top: 7px;
}
.cookie-modal .cookie-modal-close {
  margin-left: auto;
  font-size: 1.7rem;
  background: #FFD966;
  color: #003642;
  border-radius: 22px;
  padding: 2px 18px 2px 18px;
  cursor: pointer;
  border: none;
  transition: background 0.2s, color 0.2s;
  box-shadow: 0 1px 9px #FFD96618;
}

/* RESPONSIVE DESIGN */
@media (max-width: 1200px) {
  .container { max-width: 94vw; }
}
@media (max-width: 992px) {
  .main-nav { gap: 18px; }
  .content-wrapper { gap: 16px; }
  .content-grid, .card-container, .services-list, .content-wrapper > ul {
    gap: 14px;
  }
  .card, .services-list li, .content-wrapper > ul > li {
    min-width: 230px;
    padding: 22px 12px 16px 14px;
  }
  .hero { min-height: 200px; padding: 50px 0 35px 0; }
}
@media (max-width: 850px) {
  footer .container {
    flex-direction: column;
    gap: 23px;
    align-items: flex-start;
  }
  .footer-logo { margin-bottom: 10px; }
}
@media (max-width: 768px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.3rem; }
  .main-nav { display: none; }
  .btn, .btn-primary { margin-left: 0; }
  .mobile-menu-toggle { display: flex; position: absolute; right: 26px; top: 14px; }
  header .container { min-height: 64px; }
  .hero { padding: 38px 0 22px 0; min-height: 0; border-radius: 0 0 20px 20px; }
  .section, .section-cta, .cta-banner { padding: 26px 7px 26px 7px !important; margin-bottom: 36px; border-radius: 12px; }
  .card, .services-list li, .content-wrapper > ul > li { min-width: 100%; }
  .card-container, .content-grid, .services-list, .content-wrapper > ul {
    gap: 11px;
    flex-direction: column;
  }
  .testimonial-card { padding: 15px; border-radius: 11px; }
  .text-image-section { flex-direction: column; gap: 11px; }
}
@media (max-width: 540px) {
  .container { padding: 0 4px; }
  .footer-logo img { width: 41px; height: 41px; }
  .hero h1 { font-size: 1.25rem; }
  .hero p { font-size: 1rem; }
  .btn, .btn-primary, .cookie-banner__btn, .cookie-banner__btn-primary {
    font-size: 0.97rem; padding: 9px 12px;
  }
  .cookie-banner { flex-direction: column; padding: 16px 8px; gap: 9px; }
}

/* MICRO-INTERACTIONS & ANIMATIONS */
.btn, .btn-primary, .cookie-banner__btn, .cookie-banner__btn-primary, .mobile-menu-close {
  transition: background 0.18s, box-shadow 0.16s, color 0.17s, transform 0.15s;
}
.card, .services-list li, .content-wrapper > ul > li, .testimonial-card {
  transition: box-shadow 0.18s, transform 0.13s;
}
.card:active, .services-list li:active, .testimonial-card:active {
  transform: scale(0.98);
}

/* DP CUSTOM SCROLLBAR FOR DARK BG */
body::-webkit-scrollbar {
  width: 9px;
}
body::-webkit-scrollbar-thumb {
  background: #FFD96655;
  border-radius: 6px;
}
body::-webkit-scrollbar-track {
  background: #003642;
}

/* Z-INDEX LAYOUT - Prevent overlapping */
header, .mobile-menu, .cookie-banner, .cookie-modal-overlay, .cookie-modal {
  z-index: 100+;
}

/* UTILITY - VISIBILITY & MARGINS */
.mt-32 { margin-top: 32px; }
.mb-32 { margin-bottom: 32px; }
.mt-16 { margin-top: 16px; }
.mb-16 { margin-bottom: 16px; }
.gap-16 { gap: 16px; }

/*--- END ---*/
