/* === CSS RESET & NORMALIZATION === */
html { box-sizing: border-box; }
*, *::before, *::after { box-sizing: inherit; margin: 0; padding: 0; }
body {
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  color: #222;
  background: #F5F5F5;
  line-height: 1.6;
  font-size: 16px;
}
img { max-width: 100%; height: auto; display: block; }
strong, b { font-weight: 700; }
ul, ol { padding-left: 1.8em; }
a { color: #065143; text-decoration: none; transition: color .2s; }
a:hover, a:focus { color: #92C02B; text-decoration: underline; }
button, .cta-button {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  cursor: pointer;
  border: none;
  background: none;
  outline: none;
}

/* === BRAND COLORS AND FONTS === */
:root {
  --primary: #065143;
  --secondary: #92C02B;
  --accent: #F5F5F5;
  --danger: #C02B2B;
  --white: #fff;
  --text-main: #212121;
  --shadow-regular: 0 4px 18px rgba(6,81,67,0.07);
  --radius-main: 18px;
  --radius-card: 16px;
  --radius-btn: 25px;
}

/* === TYPOGRAPHY HIERARCHY === */
h1, h2, h3, h4 {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--primary);
}
h1 {
  font-size: 2.6rem;
  margin-bottom: 24px;
  line-height: 1.15;
}
h2 {
  font-size: 2rem;
  margin-bottom: 18px;
}
h3 {
  font-size: 1.4rem;
  margin-bottom: 12px;
}
h4 {
  font-size: 1.15rem;
  margin-bottom: 10px;
  color: var(--secondary);
}
p, ul, ol, li, table, blockquote {
  font-size: 1rem;
  margin-bottom: 18px;
  color: var(--text-main);
}

@media (max-width: 600px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.35rem; }
}

/* === CONTAINERS & LAYOUT === */
.container {
  display: flex;
  flex-direction: column;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 18px;
}
.content-wrapper {
  padding: 0;
  width: 100%;
  margin-bottom: 16px;
}

.section, section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--accent);
  border-radius: var(--radius-main);
  box-shadow: var(--shadow-regular);
}

/* === HEADER === */
header {
  background: var(--white);
  box-shadow: 0 2px 20px rgba(6,81,67,0.06);
  position: sticky;
  top: 0;
  z-index: 1001;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  height: 76px;
  gap: 14px;
}
header a img {
  height: 38px;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 26px;
}
.main-nav a {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: .01em;
  color: var(--primary);
  padding: 7px 7px 7px 0;
  transition: color .2s;
}
.main-nav a:hover, .main-nav a:focus {
  color: var(--secondary);
}

.cta-button {
  background: var(--secondary);
  color: var(--primary);
  border-radius: var(--radius-btn);
  padding: 12px 32px;
  font-size: 1.1rem;
  font-weight: 700;
  text-align: center;
  box-shadow: 0 6px 22px rgba(146,192,43,0.11);
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
  margin-left: 24px;
  letter-spacing: 0.04em;
  display: inline-block;
}
.cta-button:hover, .cta-button:focus {
  background: var(--primary);
  color: var(--white);
  box-shadow: 0 8px 25px rgba(6,81,67,0.11);
}

.mobile-menu-toggle {
  display: none;
  background: var(--secondary);
  color: var(--primary);
  padding: 8px 18px;
  font-size: 1.5rem;
  border-radius: 8px;
  border: 2px solid var(--secondary);
  transition: background .2s, color .2s;
  margin-left: 16px;
  z-index: 1200;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: var(--primary);
  color: var(--white);
}


/* === MOBILE MENU === */
.mobile-menu {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  background: var(--white);
  position: fixed;
  top: 0;
  right: 0;
  height: 100vh;
  width: min(320px, 90vw);
  min-width: 260px;
  transform: translateX(110%);
  z-index: 1800;
  padding: 32px 18px 18px 22px;
  box-shadow: 0 0 28px rgba(6,81,67,0.18);
  transition: transform .35s cubic-bezier(.8,.2,.3,.99);
}
.mobile-menu.open {
  transform: translateX(0);
}

.mobile-menu-close {
  position: absolute;
  top: 18px;
  right: 20px;
  background: var(--secondary);
  color: var(--primary);
  font-size: 2rem;
  border-radius: 50%;
  border: none;
  width: 39px;
  height: 39px;
  transition: background .18s, color .18s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: var(--danger);
  color: var(--white);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 79px;
  width: 95%;
}
.mobile-nav a {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-size: 1.18rem;
  color: var(--primary);
  font-weight: 600;
  padding: 11px 3px 11px 0px;
  border-radius: 6px;
  transition: color .18s, background .18s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: var(--secondary);
  background: #e9fad9;
}

@media (max-width: 990px) {
  .main-nav, .cta-button { display: none; }
  .mobile-menu-toggle { display: block; }
}
@media (min-width: 991px) {
  .mobile-menu { display: none !important; }
}

/* === HERO === */
.hero {
  background: linear-gradient(95deg, #92C02B 0%, #F5F5F5 100%);
  background-size: cover;
  border-radius: var(--radius-main);
  margin-bottom: 60px;
  padding: 40px 0 55px 0;
  box-shadow: 0 8px 32px rgba(146,192,43,0.09);
  display: flex;
}
.hero .container {
  align-items: flex-start;
  flex-direction: column;
}
.hero .content-wrapper {
  background: rgba(255,255,255,0.69);
  border-radius: 32px 8px 24px 24px;
  padding: 30px 38px 32px 38px;
  margin: 0 auto;
  max-width: 650px;
  box-shadow: 0 8px 28px rgba(6,81,67,0.05);
  text-align: left;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
}
.hero h1 {
  color: var(--primary);
  font-size: 2.4rem;
}
.hero p {
  color: var(--primary);
  font-size: 1.16rem;
  margin-bottom: 20px;
}
.hero .cta-button {
  font-size: 1.15rem;
  padding: 12px 38px;
  margin: 0 auto;
}

/* === FEATURES & SERVICES === */
.features-grid, .service-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}
.features-grid > div, .service-grid > div {
  min-width: 220px;
  flex: 1 1 250px;
  background: var(--white);
  border-radius: var(--radius-card);
  box-shadow: 0 2px 14px rgba(6,81,67,0.04);
  padding: 24px 22px 22px 22px;
  margin-bottom: 20px;
  transition: box-shadow .18s, transform .21s;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  border-left: 8px solid var(--secondary);
  position: relative;
}
.features-grid > div:hover, .service-grid > div:hover {
  box-shadow: 0 9px 24px rgba(6,81,67,0.12);
  transform: translateY(-5px) scale(1.04);
}
.features-grid img, .service-grid img {
  height: 48px;
  width: 48px;
  margin-bottom: 2px;
  filter: drop-shadow(0 3px 20px rgba(146,192,43,0.17));
}

.features-grid h3, .service-grid h3 {
  color: var(--primary);
  font-size: 1.15rem;
  font-family: 'Montserrat', Arial, sans-serif;
  margin-bottom: 0.1em;
}
.features-grid p, .service-grid p {
  color: var(--text-main);
  font-size: 1rem;
}
.service-grid strong {
  color: var(--secondary);
  font-size: 1.1em;
}

@media (max-width: 900px) {
  .features-grid, .service-grid { flex-direction: column; gap: 20px; }
  .features-grid > div, .service-grid > div { min-width: 0; width: 100%; }
}

/* === CARDS & PROJECTS === */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: var(--white);
  box-shadow: 0 2px 14px rgba(6,81,67,0.04);
  border-radius: var(--radius-card);
  margin-bottom: 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 28px 26px 24px;
  min-width: 220px;
  transition: box-shadow 0.14s, transform 0.15s;
}
.card:hover {
  box-shadow: 0 8px 31px rgba(146,192,43,0.14);
  transform: translateY(-7px) scale(1.03);
}

.project-report {
  background: var(--white);
  border-left: 6px solid var(--secondary);
  border-radius: var(--radius-main);
  box-shadow: 0 2px 13px rgba(6,81,67,.05);
  padding: 24px 28px 18px 22px;
  margin-bottom: 24px;
  margin-top: 8px;
}

/* === TESTIMONIALS === */
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: var(--accent);
  border-radius: 20px;
  margin-bottom: 20px;
  box-shadow: 0 4px 16px rgba(146,192,43,0.06);
  border-left: 7px solid var(--primary);
  transition: box-shadow .18s, border .18s;
}
.testimonial-card strong {
  color: var(--primary);
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 800;
}
.testimonial-card span {
  color: #FDBD02;
  font-size: 1.1em;
  margin-left: 2px;
  letter-spacing: 1.2px;
}
.testimonial-card:hover {
  box-shadow: 0 8px 36px rgba(6,81,67,0.13);
  border-left: 7px solid var(--secondary);
}
.testimonial-card div {
  color: #202020;
  font-size: 1.05em;
}

/* === ADVANTAGES === */
ul li img {
  height: 20px; width: 20px; vertical-align: bottom;
  margin-right: 8px;
}
ul li {
  margin-bottom: 14px;
}

/* === JOB LISTINGS === */
.job-listing {
  background: var(--white);
  border-radius: var(--radius-card);
  box-shadow: 0 3px 10px rgba(6,81,67,0.07);
  padding: 20px 20px 10px 22px;
  margin-bottom: 20px;
  border-left: 8px solid var(--secondary);
}

/* === FOOTER === */
footer {
  background: var(--primary);
  color: var(--white);
  border-top-left-radius: var(--radius-card);
  border-top-right-radius: var(--radius-card);
  padding-top: 48px;
  padding-bottom: 19px;
  margin-top: 48px;
}
footer .container { padding: 0 18px; }
.footer-columns {
  display: flex;
  flex-wrap: wrap;
  gap: 60px;
  justify-content: space-between;
  margin-bottom: 20px;
}
.footer-columns > div {
  flex: 1 1 220px;
  min-width: 180px;
  max-width: 340px;
  margin-bottom: 18px;
}
.footer-columns img { height: 36px; margin-bottom: 6px; }
footer nav {
  display: flex;
  flex-direction: column;
  gap: 9px;
}
footer nav a {
  color: var(--white);
  font-size: 0.98rem;
  font-family: 'Montserrat', Arial, sans-serif;
  opacity: 0.96;
  font-weight: 500;
  margin-bottom: 2px;
  transition: color .19s, opacity .17s;
}
footer nav a:hover, footer nav a:focus {
  color: var(--secondary);
  opacity: 1;
}
footer strong { font-family: 'Montserrat', Arial, sans-serif; font-size: 1.1rem; color: var(--white); margin-bottom: 7px; display: block; }
footer h4 {
  color: var(--secondary);
  font-size: 1rem;
  margin-bottom: 8px;
}
footer .small-print {
  color: #dbf1e3;
  font-size: 0.91rem;
  margin-top: 18px;
  opacity: 0.70;
  text-align: center;
}

/* === SECTIONS LAYOUTS === */
.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; }

/* === MISC / GENERAL === */
::-webkit-input-placeholder { color: #b2b2b2; }
::-moz-placeholder { color: #b2b2b2; }
:-ms-input-placeholder { color: #b2b2b2; }
::placeholder { color: #b2b2b2; opacity: 1; }

blockquote {
  border-left: 4px solid var(--secondary);
  margin: 0 0 18px 0;
  padding: 9px 22px;
  background: #eafade;
  border-radius: 9px;
}

/* === ANIMATIONS === */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(60px); }
  to { opacity: 1; transform: translateY(0); }
}
.section, .hero .content-wrapper, .features-grid > div, .card, .service-grid > div, .testimonial-card, .project-report, .job-listing {
  animation: fadeInUp .83s cubic-bezier(.52,.2,.29,1.02);
}

/* === INTERACTIONS === */
button:focus, a:focus { outline: 2px solid var(--secondary); outline-offset: 2px; }

/* === DISTINCTIVE DECORATIVE ELEMENTS (for "creative_artistic") === */
.section, .hero .content-wrapper, .testimonial-card {
  border-radius: 28px 8px 32px 12px;
  border-top: 3px dashed var(--secondary);
  border-bottom: 2px dotted var(--primary);
  position: relative;
}
.section::before, .hero .content-wrapper::before, .testimonial-card::before {
  content: '';
  display: block;
  position: absolute;
  top: 20px; left: -30px;
  width: 34px; height: 34px;
  background: var(--secondary);
  opacity: 0.16;
  border-radius: 50%;
  z-index: 1;
  filter: blur(2.5px);
}

.hero .content-wrapper::before { left: -50px; top: -18px; background: var(--primary); opacity: 0.09; }
.testimonial-card::before {
  left: -28px; top: 12px;
  width: 26px; height: 26px;
  background: var(--primary);
  opacity: 0.12;
  filter: blur(1.2px);
}

/* === COOKIE BANNER === */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2500;
  padding: 23px 20px 19px 20px;
  background: var(--primary);
  color: #fff;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 22px;
  box-shadow: 0 -4px 24px rgba(6,81,67,0.16);
  font-size: 1.04rem;
  animation: fadeInUp .7s cubic-bezier(.72,.4,.17,1.03);
}
.cookie-banner .cookie-buttons {
  display: flex;
  gap: 13px;
  margin-left: 22px;
}
.cookie-banner button {
  padding: 10px 22px;
  font-size: 1rem;
  border-radius: var(--radius-btn);
  font-family: 'Montserrat','Roboto',Arial,sans-serif;
  font-weight: bold;
  border: none;
  cursor: pointer;
  box-shadow: 0 2px 11px rgba(146,192,43,0.20);
  transition: background 0.16s, color 0.14s;
}
.cookie-accept { background: var(--secondary); color: var(--primary); }
.cookie-accept:hover, .cookie-accept:focus { background: var(--primary); color: var(--white); }
.cookie-reject { background: var(--white); color: var(--danger); border: 1.5px solid var(--danger); }
.cookie-reject:hover, .cookie-reject:focus { background: var(--danger); color: var(--white); }
.cookie-settings { background: var(--secondary); color: var(--primary); border: none; }
.cookie-settings:hover, .cookie-settings:focus { background: var(--primary); color: var(--white); }

/* === COOKIE MODAL === */
.cookie-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(6,81,67,0.78);
  z-index: 2700;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeInUp .27s cubic-bezier(.52,.2,.29,1.02);
}
.cookie-modal {
  background: var(--white);
  color: var(--primary);
  min-width: 340px;
  max-width: 98vw;
  border-radius: 24px 12px 32px 10px;
  padding: 36px 32px 34px 32px;
  box-shadow: 0 11px 41px rgba(6,81,67,.21);
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 22px;
  animation: fadeInUp .33s cubic-bezier(.52,.2,.29,1.02);
}
.cookie-modal h2 {
  color: var(--primary);
  font-size: 1.27rem;
  margin-bottom: 12px;
}
.cookie-category {
  display: flex;
  gap: 15px;
  align-items: center;
  margin-bottom: 13px;
}
.cookie-category input[type="checkbox"] {
  width: 22px;
  height: 22px;
  accent-color: var(--secondary);
}
.cookie-modal .cookie-close {
  position: absolute;
  top: 14px;
  right: 18px;
  font-size: 1.7rem;
  color: var(--danger);
  background: transparent;
  border: none;
  cursor: pointer;
  transition: color .17s;
}
.cookie-modal .cookie-close:hover, .cookie-modal .cookie-close:focus { color: #b00000; }
.cookie-modal .cookie-save-btn {
  background: var(--secondary);
  color: var(--primary);
  padding: 10px 20px;
  border-radius: var(--radius-btn);
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  border: none;
  box-shadow: 0 2px 11px rgba(146,192,43,0.17);
  margin-top: 18px;
  transition: background .18s, color .14s;
}
.cookie-modal .cookie-save-btn:hover, .cookie-modal .cookie-save-btn:focus {
  background: var(--primary); color: white;
}

/* === RESPONSIVE DESIGN === */
@media (max-width: 768px) {
  .container { padding: 0 7px; }
  .footer-columns { flex-direction: column; gap: 33px; }
  .hero .content-wrapper { padding: 23px 11px 24px 11px; }
  .hero h1 { font-size: 1.25rem; }
  .main-nav, .cta-button { display: none; }
  .mobile-menu-toggle { display: block; }
  .features-grid, .service-grid { flex-direction: column; gap: 22px; }
  .features-grid > div, .service-grid > div { width: 100%; min-width: 0; }
  .testimonial-card { flex-direction: column; align-items: flex-start; }
  .section, section { padding: 27px 5px; }
  .project-report, .job-listing { padding: 12px 9px 9px 9px; }
}
@media (max-width: 480px) {
  h1 { font-size: 1.45rem; }
  .mobile-menu { width: 100vw; min-width: unset; }
  .cookie-modal { padding: 22px 9px 22px 12px; min-width: unset; }
}

/* === FORMS (if added later) === */
input, textarea, select {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  border: 1.5px solid var(--secondary);
  border-radius: 10px;
  padding: 11px 14px;
  margin-bottom: 18px;
  background: #fcfff8;
  color: #222;
  width: 100%;
  box-shadow: 0 2px 9px rgba(146,192,43,0.09);
  transition: border-color .13s, background .12s;
}
input:focus, textarea:focus, select:focus {
  border-color: var(--primary);
  outline: none;
  background: #f5f5f5;
}

/* === SCROLLBAR CUSTOMIZATION === */
::-webkit-scrollbar {
  width: 10px;
  background: #e7f3db;
}
::-webkit-scrollbar-thumb {
  background: var(--secondary);
  border-radius: 6px;
}

/* === MISC & PRINT === */
@media print {
  header, footer, .mobile-menu, .cookie-banner, .cookie-modal-overlay { display: none !important; }
}
