/* CSS RESET & BASE -------------------------------------------------- */
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;
}
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1.6;
  background: #fff;
  color: #1a2333;
  font-family: 'Roboto', Arial, sans-serif;
  min-height: 100vh;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: #273652;
  text-decoration: none;
  transition: color 0.3s;
}
a:hover,
a:focus {
  color: #6BA47A;
  text-decoration: underline;
  outline: none;
}
ul, ol {
  margin-left: 24px;
  margin-bottom: 20px;
}
li {
  margin-bottom: 8px;
}
*::selection {
  background: #FDE8C2;
}

/* BRAND FONTS ---------------------------------------------------------------------*/
@import url('https://fonts.googleapis.com/css?family=Montserrat:700,800&display=swap');
@import url('https://fonts.googleapis.com/css?family=Roboto:400,500,700&display=swap');

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  color: #273652;
  letter-spacing: 0.01em;
  line-height: 1.17;
}
h1 {
  font-size: 2.5rem;
  margin-bottom: 24px;
  font-weight: 800;
}
h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  font-weight: 700;
}
h3 {
  font-size: 1.35rem;
  margin-bottom: 10px;
  font-weight: 700;
}
h4, h5, h6 {
  font-size: 1.1rem;
  font-weight: 700;
}
p, ul, ol {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  margin-bottom: 16px;
}
strong {
  font-weight: 700;
}

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

/* HEADER --------------------------------------------------------------- */
header {
  background: #fff;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 8px 0 rgba(39,54,82,0.065);
}
.header-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px 0;
}
.logo-link {
  display: flex;
  align-items: center;
  gap: 13px;
}
.logo-link img {
  height: 44px;
  width: auto;
}
.main-nav {
  display: flex;
  gap: 28px;
  align-items: center;
}
.main-nav a {
  font-weight: 500;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  color: #273652;
  padding: 4px 0;
  position: relative;
  transition: color 0.3s;
}
.main-nav a:hover,
.main-nav a:focus {
  color: #6BA47A;
}

.btn-primary {
  background: #6BA47A;
  color: #fff !important;
  padding: 12px 32px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.1rem;
  border-radius: 28px;
  border: none;
  box-shadow: 0 4px 16px rgba(107,164,122, 0.11);
  cursor: pointer;
  font-weight: 700;
  letter-spacing: 0.05em;
  outline: none;
  transition: background 0.22s, box-shadow 0.22s, transform 0.18s;
  position: relative;
  z-index: 1;
}
.btn-primary:hover,
.btn-primary:focus {
  background: #273652;
  color: #FDE8C2 !important;
  box-shadow: 0 8px 32px rgba(39,54,82,0.13);
  transform: translateY(-2px) scale(1.03);
}

/* HERO SECTION --------------------------------------------------------- */
.hero {
  background: linear-gradient(90deg,#FDE8C2 60%,#6BA47A 100%);
  min-height: 340px;
  display: flex;
  align-items: center;
  padding: 0;
  margin-bottom: 50px;
  position: relative;
  overflow: hidden;
}
.hero .container {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}
.hero .content-wrapper {
  text-align: left;
  color: #273652;
  z-index: 1;
  padding: 46px 0 56px 0;
}
.hero h1 {
  color: #273652;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 2.8rem;
  margin-bottom: 16px;
  text-shadow: 2px 3px 3px rgba(39,54,82,0.04);
}
.hero p {
  font-size: 1.21rem;
  color: #34455E;
  margin-bottom: 28px;
  max-width: 560px;
}


/* SECTION SPACING & BASE STRUCTURES ----------------------------------- */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.content-wrapper {
  margin: 0 auto;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 1.5px 8px rgba(39,54,82,0.08);
  overflow: hidden;
  transition: box-shadow 0.2s, transform 0.18s;
  min-width: 260px;
}
.card:hover {
  box-shadow: 0 8px 24px rgba(39,54,82,0.16);
  transform: translateY(-2px) scale(1.02);
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 32px 26px 24px 26px;
}
.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;
}
.text-section {
  padding: 0;
  margin-bottom: 28px;
}
.text-section img {
  vertical-align: middle;
  height: 26px;
  margin-right: 10px;
}


/* FEATURES/GRID - ARTISTIC -------------------------------------------- */
.features-grid, .services-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.feature, .service-block {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 1px 6px rgba(39,54,82,0.07);
  padding: 26px 22px 22px 22px;
  min-width: 230px;
  flex: 1 1 230px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 20px;
  position: relative;
  border-left: 8px solid #FDE8C2;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.feature:hover, .service-block:hover {
  border-left-color: #6BA47A;
  box-shadow: 0 6px 21px rgba(107,164,122,0.09);
}
.feature h3, .service-block h3 {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #273652;
  margin: 0 0 10px 0;
  font-size: 1.18rem;
}
.feature img, .service-block img {
  height: 38px;
  width: 38px;
  margin-bottom: 12px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}
.price {
  background: #FDE8C2;
  color: #273652;
  border-radius: 12px;
  padding: 2px 12px;
  font-size: 0.97em;
  font-weight: 700;
  margin-left: 10px;
  font-family: 'Roboto', Arial, sans-serif;
}

/* CARDS --------------------------------------------------------------- */
.card, .testimonial-card {
  margin-bottom: 20px;
  position: relative;
}

/* TESTIMONIALS -------------------------------------------------------- */
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  border-radius: 18px;
  background: #FDE8C2;
  color: #273652;
  font-size: 1.09em;
  box-shadow: 0 1.5px 8px rgba(39,54,82,0.10);
  margin-bottom: 20px;
  position: relative;
  flex-direction: column;
  align-items: flex-start;
  border-left: 7px solid #6BA47A;
}
.testimonial-card p {
  margin-bottom: 8px;
  color: #273652;
}
.testimonial-card .stars {
  font-size: 1.25em;
  color: #FFB400;
  letter-spacing: 2px;
  margin-bottom: 6px;
}
.testimonial-card span {
  font-size: 0.96em;
  color: #273652;
  opacity: 0.75;
}

/* SERVICES LIST (HOME) ----------------------------------------------- */
.services-list {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  flex-direction: column;
  margin-bottom: 16px;
}
.services-list li {
  color: #34455E;
  background: #F8FAFC;
  border-left: 5px solid #6BA47A;
  padding: 10px 16px;
  border-radius: 10px;
  margin-bottom: 12px;
  font-size: 1em;
  font-family: 'Roboto', Arial, sans-serif;
  transition: background 0.2s, border-color 0.14s;
}
.services-list li a {
  color: #6BA47A;
  font-weight: 500;
  margin-left: 6px;
}
.services-list li:hover {
  background: #FDE8C2;
  border-left-color: #FFB400;
}


/* PROJECT LIST ------------------------------------------------------- */
.project-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.project-list .text-section {
  min-width: 240px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 1.5px 8px rgba(39,54,82,0.04);
  padding: 30px 18px 22px 26px;
  margin-bottom: 20px;
  border-left: 6px solid #6BA47A;
}
.project-list h3 {
  color: #273652;
  margin-bottom: 10px;
}
.project-list li {
  color: #273652;
}

/* FOOTER ------------------------------------------------------------- */
footer {
  background: #273652;
  color: #fff;
  font-family: 'Roboto', Arial, sans-serif;
  padding-top: 28px;
  padding-bottom: 10px;
}
.footer-flex {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 48px;
  margin-bottom: 14px;
  flex-wrap: wrap;
}
.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
}
.footer-brand img {
  height: 38px;
  width: auto;
  margin-bottom: 4px;
}
.footer-brand p {
  color: #FDE8C2;
  font-size: 0.99em;
  margin-bottom: 2px;
}
.footer-nav {
  display: flex;
  gap: 26px;
  flex-wrap: wrap;
  align-items: flex-start;
}
.footer-nav a {
  color: #FDE8C2;
  font-size: 1em;
  text-decoration: none;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  opacity: 0.88;
  transition: color 0.18s;
}
.footer-nav a:hover,
.footer-nav a:focus {
  color: #6BA47A;
}
.copyright {
  text-align: center;
  color: #fff;
  opacity: 0.70;
  font-size: 0.93em;
  margin-top: 8px;
  padding-bottom: 9px;
}

/* MOBILE BURGER MENU ------------------------------------------------- */
.mobile-menu-toggle {
  display: none;
  background: #fff;
  color: #6BA47A;
  border: none;
  font-size: 2rem;
  line-height: 2.2rem;
  cursor: pointer;
  z-index: 2001;
  margin-left: 10px;
  transition: color 0.18s, background 0.2s;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  outline: none;
  box-shadow: 0 2px 8px rgba(107,164,122,0.08);
}

.mobile-menu {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  background: #273652;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 2200;
  padding-top: 28px;
  padding-left: 0;
  transform: translateX(-100%);
  opacity: 0;
  visibility: hidden;
  transition: transform 0.38s cubic-bezier(0.5,0.1,0.4,1), opacity 0.28s;
}
.mobile-menu.open {
  transform: translateX(0);
  opacity: 1;
  visibility: visible;
}
.mobile-menu-close {
  background: transparent;
  color: #FDE8C2;
  border: none;
  font-size: 2.1rem;
  margin-left: 22px;
  margin-bottom: 18px;
  cursor: pointer;
  z-index: 2240;
  align-self: flex-start;
  transition: color 0.18s;
  outline: none;
  border-radius: 50%;
  width: 42px;
  height: 42px;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  color: #6BA47A;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 30px;
  padding-left: 34px;
  padding-top: 10px;
}
.mobile-nav a {
  color: #FDE8C2;
  font-size: 1.25rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  text-decoration: none;
  padding: 8px;
  transition: background 0.22s, color 0.18s;
  border-radius: 14px;
  line-height: 1.8;
  min-width: 160px;
}
.mobile-nav a:hover,
.mobile-nav a:focus {
  background: #6BA47A;
  color: #fff;
}

/* HIDE DESKTOP NAV ON MOBILE, SHOW HAMBURGER ------------------------- */
@media (max-width: 1020px) {
  .main-nav {
    display: none;
  }
  .btn-primary {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
}

/* HIDE MOBILE MENU ON DESKTOP ---------------------------------------- */
@media (min-width: 1021px) {
  .mobile-menu, .mobile-menu-toggle {
    display: none !important;
  }
}


/* RESPONSIVE & MOBILE FIRST ------------------------------------------ */
@media (max-width: 800px) {
  .container {
    padding: 0 12px;
  }
  .hero .content-wrapper {
    padding-top: 26px;
    padding-bottom: 32px;
  }
  .hero h1 {
    font-size: 2.13rem;
  }
  h2 {
    font-size: 1.55rem;
  }
  .header-flex {
    gap: 10px;
    padding: 13px 0;
  }
  .footer-brand p {
    font-size: 0.92em;
  }
  .features-grid, .services-list, .project-list {
    gap: 18px;
  }
}
@media (max-width: 768px) {
  .hero {
    min-height: 240px;
    margin-bottom: 27px;
  }
  .section {
    margin-bottom: 37px;
    padding: 26px 8px;
  }
  .footer-flex {
    flex-direction: column;
    gap: 15px;
    align-items: flex-start;
  }
  .content-grid, .features-grid, .services-list, .project-list {
    flex-direction: column !important;
    gap: 16px !important;
  }
  .card-container {
    flex-direction: column;
    gap: 15px;
  }
  .card, .feature, .service-block, .project-list .text-section {
    min-width: 0;
    width: 100%;
    margin-bottom: 18px;
  }
  .testimonial-card {
    padding: 13px;
    font-size: 0.97em;
  }
}
@media (max-width: 540px) {
  h1 {
    font-size: 1.38rem;
  }
  h2 {
    font-size: 1.07rem;
  }
  .btn-primary {
    width: 98%;
    font-size: 1em;
    padding: 10px 2px;
    text-align: center;
  }
  .feature, .service-block, .project-list .text-section {
    padding: 13px 5px 14px 12px;
  }
}
@media (max-width: 400px) {
  .footer-nav {
    gap: 10px;
    flex-direction: column;
  }
}

/* ANIMATIONS --------------------------------------------------------- */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero .content-wrapper, .section .content-wrapper {
  animation: fadeInUp 0.7s cubic-bezier(0.44,0.11,0.33,1) both;
}
.card, .feature, .service-block, .testimonial-card, .project-list .text-section {
  transition: box-shadow 0.2s, transform 0.18s, border-color 0.2s;
}

/* BUTTON EFFECTS ----------------------------------------------------- */
.btn-primary {
  transition: background 0.23s, color 0.18s, box-shadow 0.19s, transform 0.16s;
}
.btn-primary:active {
  background: #467A52;
  color: #fff !important;
  transform: scale(0.97);
}

/* COOKIES BANNER ----------------------------------------------------- */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3333;
  background: #273652;
  color: #FDE8C2;
  box-shadow: 0 -2px 18px rgba(39,54,82,0.11);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 28px 12px 22px 12px;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1.05em;
  gap: 16px;
  animation: fadeInUp 0.5s cubic-bezier(0.46,0.19,0.56,1) both;
}
.cookie-banner p {
  color: #fff;
  margin-bottom: 0;
}
.cookie-actions {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}
.cookie-btn {
  background: #6BA47A;
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1em;
  border-radius: 18px;
  border: none;
  padding: 8px 24px;
  cursor: pointer;
  margin: 0 1.5px;
  transition: background 0.18s, color 0.15s;
  outline: none;
}
.cookie-btn:hover, .cookie-btn:focus {
  background: #FDE8C2;
  color: #273652;
}
.cookie-btn.secondary {
  background: #FDE8C2;
  color: #273652;
}
.cookie-btn.secondary:hover,
.cookie-btn.secondary:focus {
  background: #6BA47A;
  color: #fff;
}

@media (max-width: 576px) {
  .cookie-banner {
    font-size: 0.98em;
    padding: 23px 4px 18px 4px;
  }
  .cookie-actions {
    gap: 8px;
    flex-direction: column;
    align-items: stretch;
  }
}

/* COOKIE MODAL ------------------------------------------------------- */
.cookie-modal-overlay {
  position: fixed;
  left: 0; right: 0; top: 0; bottom: 0;
  background: rgba(39,54,82,0.65);
  z-index: 3440;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.24s;
}
.cookie-modal-overlay.open {
  opacity: 1;
  pointer-events: auto;
}
.cookie-modal {
  background: #fff;
  color: #273652;
  border-radius: 22px;
  box-shadow: 0 2px 32px rgba(39,54,82,0.18);
  padding: 32px 22px 26px 22px;
  min-width: 295px;
  max-width: 96vw;
  font-family: 'Roboto', Arial, sans-serif;
  display: flex;
  flex-direction: column;
  gap: 13px;
  animation: fadeInUp 0.34s;
}
.cookie-modal h2 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.29rem;
  color: #273652;
  margin-bottom: 9px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
}
.cookie-toggle {
  width: 38px;
  height: 21px;
  border-radius: 21px;
  background: #FDE8C2;
  position: relative;
  cursor: pointer;
  transition: background 0.18s;
  display: inline-flex;
  align-items: center;
}
.cookie-toggle input {
  opacity: 0;
  width: 0;
  height: 0;
}
.cookie-toggle-slider {
  position: absolute;
  left: 3px;
  top: 3px;
  width: 15px;
  height: 15px;
  background: #6BA47A;
  border-radius: 50%;
  transition: left 0.18s;
}
.cookie-toggle input:checked + .cookie-toggle-slider {
  left: 20px;
  background: #273652;
}
.cookie-modal .cookie-btn {
  margin-top: 8px;
  padding: 8px 16px;
}
.cookie-modal-close {
  position: absolute;
  top: 18px;
  right: 22px;
  background: none;
  border: none;
  font-size: 1.38rem;
  color: #6BA47A;
  cursor: pointer;
}
@media (max-width: 600px) {
  .cookie-modal {
    padding: 13px 5px 12px 7px;
    min-width: 0;
  }
  .cookie-modal-close {
    top: 7px; right: 11px; font-size: 1.1rem;
  }
}

/* ACCESSIBILITY ------------------------------------------------------ */
:focus {
  outline: 2px dashed #6BA47A;
  outline-offset: 3px;
}


/* ARTISTIC DESIGN TOUCHES -------------------------------------------- */
.section:not(:first-child) h2 {
  position: relative;
  padding-left: 16px;
}
.section:not(:first-child) h2:before {
  content: '';
  position: absolute;
  left: 0; top: 0.68em;
  width: 9px;
  height: 9px;
  background: #6BA47A;
  border-radius: 50%;
  margin-right: 8px;
  display: inline-block;
}
.feature, .service-block, .testimonial-card {
  border-radius: 20px 28px 18px 10px/20px 22px 28px 18px;
}
.project-list .text-section {
  border-radius: 18px 12px 24px 30px;
}

/* MICRO INTERACTIONS FOR ICONS --------------------------------------- */
.text-section img {
  filter: brightness(1) saturate(1.2) drop-shadow(0 3px 3px #FDE8C2);
  transition: filter 0.16s;
}
.text-section img:hover {
  filter: brightness(0.9) saturate(1.5) drop-shadow(0 1.5px 6px #6BA47A);
}

/* UNIQUE/ARTISTIC FONTS FOR HIGHLIGHTS ------------------------------ */
.card h3, .feature h3, .service-block h3, .testimonial-card span, .price {
  font-family: 'Montserrat', cursive, 'Roboto', sans-serif;
  letter-spacing: 0.03em;
}

/* ENSURE DARK TEXT ON TESTIMONIALS ----------------------------------- */
.testimonial-card, .testimonial-card p, .testimonial-card span {
  color: #273652 !important;
  background: #FDE8C2 !important;
}

/* ADJUST Z-INDEX WHEN MOBILE MENU AND COOKIES MODAL OPEN ------------- */
.mobile-menu.open {
  z-index: 2201;
}
.cookie-banner {
  z-index: 3333;
}
.cookie-modal-overlay.open {
  z-index: 3440;
}

/* FORMS & MISC ------------------------------------------------------- */
input, textarea, select {
  font-family: inherit;
  font-size: 1rem;
  border: 1.5px solid #CED3DC;
  border-radius: 8px;
  padding: 10px 14px;
  margin-bottom: 18px;
  width: 100%;
  background: #F8FAFC;
  color: #273652;
  transition: border-color 0.18s;
}
input:focus, textarea:focus, select:focus {
  border-color: #6BA47A;
  outline: none;
}
label {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1em;
  color: #273652;
  font-weight: 500;
  margin-bottom: 6px;
  display: block;
}

/* MARGIN AND SPACING ENFORCEMENT ------------------------------------ */
.section, .card-container, .card, .content-grid, .testimonial-card, .feature-item {
  margin-bottom: 20px;
}
.card-container, .features-grid, .content-grid, .text-image-section, .services-list, .footer-flex, .project-list {
  gap: 20px;
}
