/* 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,main,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;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  background: #F9FAFB;
  color: #212931;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.7;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

*, *:before, *:after {
  box-sizing: inherit;
}

a {
  color: #005870;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #FFC145;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
ul,ol {
  margin-left: 1.4em;
  margin-bottom: 2em;
}
li {
  margin-bottom: .5em;
}
button {
  font: inherit;
  background: none;
  border: none;
  outline: none;
  cursor: pointer;
}

/* BASE CONTAINERS & UTILITIES */
.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 20px;
}

.content-wrapper {
  width: 100%;
  margin: 0 auto;
  padding: 0;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}


/* TYPOGRAPHY */
h1, .hero h1 {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 900;
  font-size: 2.75rem;
  letter-spacing: -.5px;
  color: #005870;
  margin-bottom: 18px;
  line-height: 1.18;
}
h2 {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 800;
  font-size: 2rem;
  color: #005870;
  margin-bottom: 24px;
}
h3 {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.3rem;
  color: #2b2d35;
  margin-bottom: 12px;
}
h4, h5, h6 {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  color: #005870;
}
p {
  margin-bottom: 14px;
  font-size: 1rem;
  color: #27292f;
}
strong {
  font-weight: bold;
  color: #005870;
}
.text-section {
  margin-bottom: 36px;
}

/* CREATIVE ARTISTIC FONTS ACCENTS */
p,li,blockquote {
  font-family: 'Roboto', Arial, sans-serif;
}
.hero h1, h2, .cta, .testimonial-meta {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  letter-spacing: 0.7px;
}

/* ARTISTIC DETAIL ELEMENTS */
hr {
  height: 4px;
  width: 80px;
  background: #FFC145;
  border: none;
  margin: 32px auto;
  border-radius: 2px;
}

/* BUTTONS & CTA */
.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 36px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 1.06rem;
  box-shadow: 0 3px 10px rgba(0,88,112,0.11), 0 1px 4px rgba(0,0,0,0.05);
  transition: background 0.22s, color 0.22s, transform 0.2s, box-shadow 0.22s;
  margin: 4px 0 0 0;
  border: none;
}
.cta.primary {
  background: #005870;
  color: #fff;
}
.cta.primary:hover, .cta.primary:focus {
  background: #FFC145;
  color: #005870;
  transform: translateY(-2px) scale(1.03);
}
.cta.secondary {
  background: #FFC145;
  color: #005870;
  border: none;
  margin-top: 6px;
  margin-bottom: 6px;
}
.cta.secondary:hover, .cta.secondary:focus {
  background: #005870;
  color: #fff;
  transform: translateY(-2px) scale(1.03);
}

/* HEADER & NAVIGATION */
header {
  background: #fff;
  box-shadow: 0 4px 18px 0 rgba(30,44,61,.06);
  position: sticky;
  top: 0; left: 0; right: 0;
  z-index: 100;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  gap: 18px;
}
header nav {
  display: flex;
  align-items: center;
  gap: 28px;
}
header nav a {
  color: #005870;
  font-weight: 500;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-size: 1.05rem;
  border-radius: 18px;
  padding: 7px 16px;
  transition: background 0.15s, color 0.18s;
}
header nav a:hover, header nav a.active {
  color: #FFC145;
  background: rgba(0,88,112,.07);
}
header .cta.primary {
  margin-left: 14px;
}
header img {
  height: 42px;
  width: auto;
}

/* HAMBURGER MENU */
.mobile-menu-toggle {
  display: none;
  background: none;
  font-size: 2rem;
  color: #005870;
  border: none;
  margin-left: 10px;
  z-index: 250;
  transition: color 0.18s, transform 0.18s;
}
.mobile-menu-toggle:active {
  color: #FFC145;
  transform: scale(0.93);
}

/* MOBILE MENU OVERLAY */
.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  background: rgba(0,88,112, 0.96);
  color: #fff;
  z-index: 4999;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0;
  transform: translateX(-100vw);
  transition: transform 0.36s cubic-bezier(.77,0,.18,1);
  box-shadow: 0 6px 32px 0 rgba(0,0,0,0.27);
  will-change: transform;
}
.mobile-menu.active {
  transform: translateX(0);
}
.mobile-menu-close {
  position: absolute;
  top: 22px;
  right: 32px;
  font-size: 2.2rem;
  color: #fff;
  background: none;
  border: none;
  z-index: 5010;
  padding: 8px 6px;
  cursor: pointer;
  transition: color 0.18s;
}
.mobile-menu-close:focus, .mobile-menu-close:hover {
  color: #FFC145;
}
.mobile-nav {
  margin-top: 84px;
  display: flex;
  flex-direction: column;
  gap: 28px;
  width: 100%;
  align-items: flex-start;
  padding-left: 38px;
}
.mobile-nav a {
  color: #fff;
  font-size: 1.22rem;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 600;
  padding: 8px 0;
  transition: color 0.17s;
  border-radius: 12px;
  min-width: 180px;
}
.mobile-nav a:hover, .mobile-nav a:active {
  color: #FFC145;
}

/* HERO SECTION */
.hero {
  background: linear-gradient(88deg, #FFC145 0%, #F9FAFB 100%);
  border-bottom-left-radius: 90px 70px;
  border-bottom-right-radius: 90px 70px;
  box-shadow: 0 12px 40px rgba(0,88,112, 0.09), 0 4px 20px #FFC14510;
  margin-bottom: 54px;
  padding-top: 46px;
  padding-bottom: 46px;
}
.hero .container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}
.hero .content-wrapper {
  max-width: 730px;
}
.hero p {
  font-size: 1.23rem;
  color: #252930;
  margin-bottom: 28px;
  font-family: 'Roboto', Arial, sans-serif;
  font-weight: 400;
}

/* FLEX CONTAINERS FOR LAYOUT */
.features-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-bottom: 28px;
}
.features-grid > div {
  flex: 1 1 260px;
  background: #fff;
  padding: 30px 24px;
  border-radius: 32px;
  box-shadow: 0 4px 24px #00587015, 0 2px 8px #8881;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  position: relative;
  margin-bottom: 0;
  min-width: 220px;
  min-height: 220px;
  transition: box-shadow 0.21s, transform 0.18s;
}
.features-grid > div:hover {
  box-shadow: 0 10px 32px #00587029, 0 4px 20px #FFC14515;
  transform: translateY(-2px) scale(1.018);
}
.features-grid img {
  width: 46px;
  height: 46px;
  margin-bottom: 6px;
  filter: drop-shadow(0 2px 4px #FFC14530);
}
.features-grid h3 {
  margin-bottom: 0;
  font-size: 1.16rem;
  color: #005870;
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 3px 16px #00587018;
  margin-bottom: 20px;
  position: relative;
  padding: 26px 22px;
  min-width: 220px;
  min-height: 210px;
  transition: box-shadow 0.22s, transform 0.14s;
}
.card:hover {
  box-shadow: 0 8px 32px #00587022;
  transform: translateY(-3px) scale(1.015);
}

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

.services-list {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin-bottom: 12px;
}
.services-list > div {
  background: #fff;
  border-radius: 28px;
  box-shadow: 0 3px 12px #00587012;
  padding: 30px 22px 24px;
  flex: 1 1 300px;
  min-width: 230px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 0;
  transition: box-shadow 0.19s, transform 0.15s;
}
.services-list > div:hover {
  box-shadow: 0 8px 20px #0058702c, 0 2px 7px #FFC1451a;
  transform: translateY(-3px) scale(1.02);
}
.services-list .price {
  display: block;
  font-size: 1.02rem;
  color: #005870;
  font-weight: 500;
  margin-bottom: 3px;
}

/* TESTIMONIALS */
.testimonials {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin-bottom: 16px;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 24px;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 4px 20px #00587015;
  margin-bottom: 0;
  transition: box-shadow 0.18s, transform 0.13s;
  max-width: 370px;
}
.testimonial-card:hover {
  box-shadow: 0 12px 32px #00587030;
  transform: scale(1.025);
}
.testimonial-card p {
  color: #142e39;
  font-size: 1.16rem;
  margin-bottom: 8px;
  font-family: 'Montserrat', sans-serif;
  letter-spacing: .22px;
}
.testimonial-meta {
  font-size: 0.99rem;
  color: #005870;
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  display: flex;
  gap: 10px;
  align-items: center;
}
.stars {
  color: #FFC145;
  letter-spacing: .1em;
  font-weight: 600;
}

/* FOOTER */
footer {
  background: #fff;
  box-shadow: 0 -2px 12px #0058700A;
}
footer .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 30px 20px 20px 20px;
}
.footer-nav {
  font-size: 0.95rem;
  color: #005870;
  margin-bottom: 12px;
  display: flex;
  gap: 5px;
  flex-wrap: wrap;
  align-items: center;
  text-align: center;
}
.footer-nav a {
  color: #005870;
  transition: color 0.21s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: #FFC145;
  text-decoration: underline;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.98rem;
  color: #005870;
}
.footer-brand img {
  height: 32px;
}

/* CONTACT DETAILS */
.contact-details {
  background: #f1f7fa;
  border-radius: 14px;
  padding: 18px 20px;
  margin: 24px 0 18px 0;
  box-shadow: 0 2px 8px #0058700a;
  font-size: 1rem;
}
.contact-details a {
  color: #005870;
  text-decoration: underline;
  font-weight: 500;
}

/* LISTS STYLES */
ul, ol {
  padding-left: 20px;
}
ul li {
  margin-bottom: 6px;
  font-size: 1rem;
}
ul li strong {
  color: #005870;
}

/* ARTISTIC ACCENTS & SHADOWS */
.card, .services-list > div, .features-grid > div, .testimonial-card {
  box-shadow: 0 2px 10px #00587012;
  border-radius: 20px;
  transition: box-shadow 0.2s, transform 0.16s;
}

/* SPACING - ENSURE NO CARD OVERLAP */
.card, .services-list > div, .features-grid > div, .testimonial-card {
  margin-bottom: 20px !important;
}

/* RESPONSIVE DESIGN */
@media (max-width: 1080px) {
  .container {
    max-width: 98vw;
    padding: 0 10px;
  }
  .features-grid, .services-list, .testimonials {
    gap: 20px;
  }
}
@media (max-width: 900px) {
  .features-grid, .services-list, .testimonials {
    flex-direction: column;
    align-items: stretch;
    gap: 18px;
  }
}
@media (max-width: 768px) {
  h1 { font-size: 2.13rem; }
  h2 { font-size: 1.35rem; }
  .hero {
    padding-top: 34px;
    padding-bottom: 30px;
    border-bottom-left-radius: 50px 34px;
    border-bottom-right-radius: 50px 34px;
    margin-bottom: 35px;
  }
  header .container {
    flex-wrap: wrap;
    gap: 10px;
  }
  header nav {
    display: none;
  }
  .cta.primary {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
  .features-grid, .card-container, .content-grid, .services-list, .testimonials {
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
  }
  .card, .services-list > div, .features-grid > div, .testimonial-card {
    min-width: 0;
    max-width: 100vw;
  }
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }
  .section {
    margin-bottom: 34px;
    padding: 24px 6px;
  }
  footer .container {
    padding: 22px 10px 16px 10px;
  }
}
@media (max-width: 500px) {
  h1 { font-size: 1.45rem; }
  h2 { font-size: 1.07rem; }
  .hero {
    padding-top: 22px;
    padding-bottom: 14px;
    border-radius: 28px 28px 32px 32px;
  }
  .section {
    padding: 12px 3px;
  }
}

/* FORM ELEMENTS */
input,select,textarea {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  padding: 10px 13px;
  border: 1.5px solid #E3EBF0;
  border-radius: 10px;
  transition: box-shadow 0.11s, border-color 0.15s;
  margin-bottom: 12px;
  outline: none;
}
input:focus, select:focus, textarea:focus {
  border-color: #005870;
  box-shadow: 0 2px 7px #00587026;
}

/* COOKIE CONSENT BANNER */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0;
  width: 100vw;
  background: #005870;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  z-index: 9999;
  padding: 24px 7vw 24px 24px;
  box-shadow: 0 -2px 16px #00587033;
  font-size: 1rem;
  transition: transform 0.33s cubic-bezier(.82,.01,.18,1);
  transform: translateY(100%);
  border-top-left-radius: 18px;
  border-top-right-radius: 18px;
}
.cookie-banner.active {
  transform: translateY(0);
}
.cookie-banner .cookie-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.cookie-banner button {
  border-radius: 30px;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  padding: 9px 28px;
  margin-right: 4px;
  border: none;
  box-shadow: 0 2px 8px #FFC14524;
  cursor: pointer;
  transition: background 0.16s, color 0.15s, transform 0.15s;
}
.cookie-banner .accept-btn {
  background: #FFC145;
  color: #005870;
}
.cookie-banner .accept-btn:hover {
  background: #fff;
  color: #005870;
  transform: translateY(-1px);
}
.cookie-banner .reject-btn {
  background: #2b2d35;
  color: #fff;
}
.cookie-banner .reject-btn:hover {
  background: #FFC145;
  color: #005870;
  transform: translateY(-1px);
}
.cookie-banner .settings-btn {
  background: #005870;
  color: #FFC145;
  border: 1.5px solid #FFC145;
}
.cookie-banner .settings-btn:hover {
  background: #FFC145;
  color: #005870;
}
@media (max-width: 700px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    padding: 18px 8px 16px 8px;
    font-size: 0.97rem;
    gap: 12px;
  }
  .cookie-banner .cookie-actions {
    gap: 9px;
  }
}

/* COOKIE PREFERENCES MODAL */
.cookie-modal-overlay {
  position: fixed;
  top: 0; left: 0; width: 100vw; height: 100vh;
  background: rgba(28,43,52, 0.53);
  z-index: 20000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.22s;
}
.cookie-modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}
.cookie-modal {
  background: #fff;
  color: #223440;
  border-radius: 22px;
  max-width: 380px;
  box-shadow: 0 8px 34px #00587033;
  padding: 38px 34px 24px 34px;
  position: relative;
  transition: transform 0.16s cubic-bezier(.91,-0.07,.26,1.13);
  transform: translateY(60px) scale(.97);
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.cookie-modal.active {
  transform: translateY(0) scale(1);
}
.cookie-modal h3 {
  font-size: 1.19rem;
  color: #005870;
  font-family: 'Montserrat', sans-serif;
}
.cookie-modal .cookie-category {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 1rem;
  margin-bottom: 13px;
}
.cookie-modal .category-label {
  font-weight: 500;
}
.cookie-modal input[type=checkbox] {
  accent-color: #005870;
  width: 19px; height: 19px;
  margin-left: 6px;
}
.cookie-modal .essential {
  font-size: .96rem;
  color: #888;
  margin-left: 5px;
}
.cookie-modal .modal-actions {
  display: flex;
  gap: 16px;
  margin-top: 6px;
}
.cookie-modal .modal-close {
  position: absolute;
  top: 17px;
  right: 20px;
  font-size: 1.5rem;
  background: none;
  border: none;
  color: #005870;
  cursor: pointer;
  transition: color 0.18s;
  padding: 4px 8px;
}
.cookie-modal .modal-close:focus, .cookie-modal .modal-close:hover {
  color: #FFC145;
}
@media (max-width: 480px) {
  .cookie-modal {
    max-width: min(99vw,350px);
    padding: 20px 4vw 16px 4vw;
  }
}

/* ANIMATIONS & MICRO-INTERACTIONS */
.cta, .card, .services-list > div, .features-grid > div, .testimonial-card {
  transition: box-shadow 0.18s, transform 0.14s, background 0.16s, color 0.13s;
}
a, .cta {
  transition: color 0.14s, background 0.17s, transform 0.13s;
}
.card:hover, .services-list > div:hover, .features-grid > div:hover, .testimonial-card:hover {
  filter: brightness(1.018);
}

/* UNIQUENESS: CREATIVE ARTISTIC VIBE */
h1, h2, .cta.primary, .cta.secondary {
  text-shadow: 0 2px 12px #FFC14544, 0 1px 1px #00587033;
}
.features-grid > div:before {
  content: '';
  display: block;
  position: absolute;
  top: -25px; left: -20px;
  width: 54px; height: 54px;
  background: rgba(255,193,69,0.11);
  border-radius: 50%;
  z-index: 0;
  pointer-events: none;
  filter: blur(1px);
}

.features-grid > div:nth-child(2)::before {
  background: rgba(0,88,112,0.11);
}
.features-grid > div:nth-child(3)::before {
  left: auto; right: -20px;
}

.testimonial-card {
  border-left: 7px solid #FFC145;
  background:
    linear-gradient(97deg, #F9FAFB 90%, #FFE6AE 100%);
}
/* Ensuring readable contrast */
.testimonial-card p, .testimonial-card .testimonial-meta {
  color: #1d2429;
}

/* GALLERY TESTIMONIALS VARIANT */
.gallery-testimonials .testimonial-card {
  border-left: 7px solid #005870;
}

/* Feature item (if used elsewhere) */
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* Hide mobile menu on desktop */
@media (min-width: 769px) {
  .mobile-menu, .mobile-menu-toggle { display: none !important; }
  header nav { display: flex !important; }
  header .cta.primary { display: inline-flex; }
}

/* Accessibility and Focus States */
a:focus, .cta:focus, button:focus {
  outline: 2.5px solid #FFC145;
  outline-offset: 3px;
}

::-webkit-input-placeholder { color: #AAC3CF; }
::-moz-placeholder { color: #AAC3CF; }
:-ms-input-placeholder { color: #AAC3CF; }
::placeholder { color: #AAC3CF; }

/* Selection colors */
::selection, ::-moz-selection {
  background: #FFC145;
  color: #0a2d38;
}

/* Artistic touches for icon links */
header nav a[aria-current="page"], header nav a.active {
  background: #FFC14517;
  color: #FFC145;
}
.mobile-nav a.active {
  color: #FFC145;
}
