/* 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,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;
}
article,aside,details,figcaption,figure,footer,header,hgroup,main,menu,nav,section {
  display: block;
}
body {
  line-height:1.5;
  background: #fff;
  color: #244265;
}
a { color: inherit; text-decoration: none; transition: color 0.2s; }
img { border:0; max-width:100%; display:block; }
ul,ol { padding-left: 1.2em; }
button,input,select,textarea { font-family: inherit; font-size: 100%; }
button { background: none; border: none; cursor: pointer; }
hr { border: none; border-top: 1px solid #E6ECF2; margin: 2rem 0; }

/* ROOT VARIABLES */
:root {
  --primary: #244265;
  --secondary: #7DA05C;
  --accent: #F6F6F6;
  --white: #fff;
  --black: #172332;
  --text-main: #244265;
  --text-muted: #57759b;
  --border: #E6ECF2;
  --shadow: rgba(36,66,101,0.07);
  --radius: 16px;
  --radius-small: 8px;
  --transition: 0.2s cubic-bezier(.4,.2,.2,1);
  --font-display: 'Montserrat', Arial, Helvetica, sans-serif;
  --font-body: 'Roboto', Arial, Helvetica, sans-serif;
}

/* TYPOGRAPHY */
body {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.03em;
  color: var(--text-main);
  background: var(--accent);
}

h1,h2,h3,h4,h5,h6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.2;
  color: var(--primary);
  letter-spacing: 0.015em;
}
h1 { font-size: 2.5rem; margin-bottom: 16px; }
h2 { font-size: 2rem; margin-bottom: 18px; }
h3 { font-size: 1.3rem; margin-bottom: 12px; font-weight: 600; }
h4 { font-size: 1.1rem; }

p,li { font-size: 1rem; margin-bottom: 10px; color: var(--text-main); }
strong { font-weight: bold; color: var(--secondary); }

/* STRUCTURE AND GEOMETRIC LAYOUTS */
.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: var(--white);
  border-radius: var(--radius);
  margin-bottom: 20px;
  position: relative;
  box-shadow: 0 2px 12px var(--shadow);
  padding: 24px 32px;
  min-width: 280px;
  flex: 1 1 260px;
  border: 1.5px solid var(--border);
  display: flex;
  flex-direction: column;
  transition: box-shadow var(--transition), transform var(--transition);
}
.card:hover {
  box-shadow: 0 8px 26px rgba(36,66,101,0.10);
  transform: translateY(-6px) scale(1.0175);
}
.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;
  background: var(--white);
  box-shadow: 0 2px 10px var(--shadow);
  border-radius: var(--radius);
  border-left: 4px solid var(--secondary);
  padding: 24px 26px;
  margin-bottom: 24px;
  font-style: italic;

  color: #1e283a;
  line-height: 1.6;
  position: relative;
}
.testimonial-card p {
  margin-bottom: 0;
  color: #1e283a;
}
.testimonial-card span {
  font-size: 0.98rem;
  color: var(--secondary);
  font-style: normal;
  font-family: var(--font-display);
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* HERO & CTA */
.hero, .about-hero, .services-hero, .blog-hero, .contact-hero, .thank-you {
  background: var(--primary);
  color: var(--white);
  border-radius: 0 0 var(--radius) var(--radius);
  padding: 64px 0 52px 0;
  margin-bottom: 56px;
  position: relative;
}
.hero h1, .about-hero h1, .services-hero h1, .blog-hero h1, .contact-hero h1, .thank-you h1 {
  color: var(--white);
  font-size: 2.5rem;
  text-transform: none;
}
.hero .cta-button, .about-hero .cta-button, .services-hero .cta-button, .contact-hero .cta-button, .thank-you .cta-button {
  background: var(--secondary);
  color: var(--white);
  font-weight: 700;
  border-radius: var(--radius-small);
  box-shadow: 0 2px 12px var(--shadow);
  padding: 13px 36px;
  border: none;
  letter-spacing: 0.06em;
  font-family: var(--font-display);
  font-size: 1.13rem;
  margin-top: 16px;
  transition: background var(--transition), color var(--transition), transform var(--transition);
  display: inline-block;
}
.hero .cta-button:hover,.about-hero .cta-button:hover,.services-hero .cta-button:hover,.contact-hero .cta-button:hover,.cta-button:focus,.thank-you .cta-button:hover {
  background: var(--primary);
  color: var(--secondary);
  transform: translateY(-3px) scale(1.01);
}

.cta {
  background: var(--secondary);
  color: var(--white);
  border-radius: var(--radius) var(--radius) 0 0;
  margin-bottom: 56px;
}
.cta .container,.cta .content-wrapper {
  color: var(--white);
}
.cta h2 {
  color: var(--white);
}
.cta .cta-button {
  background: var(--white);
  color: var(--secondary);
  border: 1.5px solid var(--white);
}
.cta .cta-button:hover {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}

/* NAVIGATION */
header {
  background: var(--white);
  box-shadow: 0 2px 16px var(--shadow);
  border-radius: 0 0 var(--radius) var(--radius);
  margin-bottom: 24px;
  z-index: 101;
  position: relative;
}
header .container {
  display:flex;
  align-items:center;
  flex-direction:row;
  justify-content:space-between;
  gap:20px;
  min-height:70px;
  padding-top:12px;
  padding-bottom:12px;
}
.logo img {
  height: 50px;
  width: auto;
  display:block;
}
.main-nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 30px;
  font-family: var(--font-display);
  font-size: 1rem;
}
.main-nav a {
  color: var(--primary);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 8px 0;
  border-bottom: 2px solid transparent;
  position: relative;
  transition: color var(--transition), border var(--transition);
}
.main-nav a:hover, .main-nav a:focus {
  color: var(--secondary);
  border-bottom: 2px solid var(--secondary);
}
.cta-button {
  background: var(--primary);
  color: var(--white);
  font-weight: 700;
  border-radius: var(--radius-small);
  box-shadow: 0 1px 6px var(--shadow);
  padding: 11px 28px;
  border: none;
  letter-spacing: 0.06em;
  font-family: var(--font-display);
  font-size: 1rem;
  transition: background var(--transition),color var(--transition),transform var(--transition);
  margin-left:24px;
  display: inline-block;
}
.cta-button:hover, .cta-button:focus {
  background: var(--secondary);
  color: var(--primary);
  transform: translateY(-2px) scale(1.018);
}

/* MOBILE NAVIGATION */
.mobile-menu-toggle {
  background: var(--secondary);
  color: var(--white);
  font-size: 2.2rem;
  border-radius: var(--radius-small);
  width: 48px; height: 48px;
  display: none;
  align-items: center;
  justify-content: center;
  transition: background var(--transition), color var(--transition);
  z-index: 215;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: var(--primary);
  color: var(--secondary);
}
.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  height: 100vh;
  width: 100vw;
  background: rgba(36,66,101,0.97);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  transform: translateX(-110vw);
  transition: transform 0.38s cubic-bezier(.47,1.64,.41,.8);
  pointer-events: none;
}
.mobile-menu.open {
  transform: translateX(0);
  pointer-events: auto;
}
.mobile-menu-close {
  background: var(--white);
  color: var(--primary);
  font-size: 2.1rem;
  border-radius: var(--radius-small);
  border: none;
  margin-top: 22px;
  margin-bottom: 30px;
  align-self: flex-end;
  margin-right: 24px;
  transition: background var(--transition), color var(--transition), box-shadow var(--transition);
  box-shadow: 0 1px 8px var(--shadow);
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: var(--secondary);
  color: var(--white);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  font-size: 1.24rem;
  font-family: var(--font-display);
  margin-left: 32px;
}
.mobile-nav a {
  color: var(--white);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 12px 0 12px 12px;
  border-left: 4px solid transparent;
  border-radius: 0 4px 4px 0;
  transition: color var(--transition), background var(--transition), border var(--transition);
  min-width: 180px;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: var(--secondary);
  border-left: 4px solid var(--secondary);
  background: rgba(255,255,255,0.04);
}

/* Hide desktop nav on mobile, show burger */
@media (max-width:920px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
  .cta-button {
    padding: 10px 18px;
    font-size: 0.98rem;
    margin-left: 10px;
  }
}
@media (max-width:920px) {
  .mobile-menu {
    display: flex;
  }
}


/* FOOTER */
footer {
  background: var(--primary);
  color: var(--white);
  border-radius: var(--radius) var(--radius) 0 0;
  margin-top: 36px;
  font-size: 0.98rem;
  line-height: 1.7;
  width: 100%;
}
footer .container {
  display: flex;
  flex-direction: column;
  gap:20px;
  padding: 36px 20px 16px 20px;
}
.footer-nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 40px;
  margin-bottom: 10px;
  flex-wrap: wrap;
}
.footer-nav a {
  color: var(--white);
  opacity: 0.85;
  text-transform: uppercase;
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: 0.045em;
  transition: opacity var(--transition), color var(--transition);
}
.footer-nav a:hover,.footer-nav a:focus {
  opacity: 1;
  color: var(--secondary);
}
.footer-contact {
  color: #cdd7e5;
  margin-top: 4px;
  font-size: 0.97em;
}
.footer-contact p {
  color: #cdd7e5;
}


/* FEATURES, LISTS, ICONS */
.features ul, .about-intro ul, .company-story ul, .services-overview ul, .approach ul, .why-choose-us ul, .sustainability ul, .results-impact ul, .contact-details ul {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  gap: 14px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.features li, .about-intro li, .company-story li, .services-overview li, .approach li, .why-choose-us li, .sustainability li, .results-impact li, .contact-details li {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--white);
  padding: 12px 18px;
  border-radius: var(--radius-small);
  box-shadow: 0 1px 6px var(--shadow);
  border-left: 4px solid var(--secondary);
  color: var(--text-main);
  font-size: 1rem;
  font-family: var(--font-body);
}
.features li img, .contact-details li img {
  width: 28px; height: 28px;
  filter: grayscale(0.25) brightness(0.90);
}

/* SERVICE CATEGORY CARDS */
.service-category {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: 0 1px 10px var(--shadow);
  border: 1.5px solid var(--border);
  padding: 24px 28px;
  min-width: 250px;
  margin-bottom: 20px;
  margin-top: 0;
  flex: 1 1 260px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.service-category h3 {
  color: var(--primary);
}

.project-summary {
  background: var(--accent);
  border-radius: var(--radius);
  border-left: 6px solid var(--secondary);
  margin-bottom: 30px;
  padding: 22px 28px 10px 24px;
  box-shadow: 0 1px 8px var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.project-summary h3 {
  margin-bottom: 8px;
}
.project-summary p {
  margin-bottom: 5px;
}

/* Cookie Banner & Modal */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  background: var(--primary);
  color: var(--white);
  width: 100vw;
  z-index: 3000;
  box-shadow: 0 0 14px #0005;
  padding: 30px 16px 24px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  font-family: var(--font-body);
  animation: slideBannerUp 0.55s cubic-bezier(.73,1.94,.42,.79);
}
@keyframes slideBannerUp {
  0% {transform: translateY(100%); opacity:0;}
  80% {transform: translateY(-10px);}
  100% {transform: translateY(0); opacity:1; }
}
.cookie-banner p {
  color: var(--white);
  font-size: 1rem;
  margin-bottom: 0;
  max-width: 560px;
}
.cookie-banner-buttons {
  display: flex;
  flex-direction: row;
  gap: 20px;
  flex-wrap: wrap;
}
.cookie-btn {
  padding: 10px 30px;
  background: var(--secondary);
  color: var(--white);
  border: none;
  border-radius: var(--radius-small);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  box-shadow: 0 0.5px 4px var(--shadow);
  transition: background var(--transition), color var(--transition), box-shadow var(--transition);
  margin-bottom: 0;
}
.cookie-btn:focus, .cookie-btn:hover {
  background: var(--white);
  color: var(--secondary);
  box-shadow: 0 1px 8px var(--shadow);
}
  
.cookie-btn-secondary {
  background: var(--white);
  color: var(--primary);
  border: 1.5px solid var(--border);
}
.cookie-btn-secondary:hover, .cookie-btn-secondary:focus {
  background: var(--secondary);
  color: var(--white);
}

/* Cookie modal overlay */
.cookie-modal-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(20,37,69, 0.84);
  z-index: 3500;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: auto;
  animation: fadeInOverlay 0.3s;
}
@keyframes fadeInOverlay {
  0% { opacity: 0; }
  100% { opacity: 1; }
}
.cookie-modal {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: 0 6px 28px var(--shadow);
  width: 95vw;
  max-width: 390px;
  padding: 36px 26px 26px 26px;
  display: flex;
  flex-direction: column;
  gap: 22px;
  position: relative;
  animation: slideModalUp 0.4s cubic-bezier(.73,1.94,.42,.79);
}
@keyframes slideModalUp {
  0% {transform: translateY(40px); opacity: 0;}
  100% {transform: translateY(0); opacity: 1;}
}
.cookie-modal h3 {
  color: var(--primary);
  font-size: 1.24rem;
  margin-bottom: 8px;
}
.cookie-modal-category {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 20px;
  margin-bottom: 10px;
}
.cookie-modal-category label {
  font-family: var(--font-display); color: var(--secondary); font-weight: 600; font-size: 1.08em; margin-right: 1em;
}
.cookie-modal-category input[type="checkbox"] {
  width: 22px; height: 22px;
  margin-right: 10px;
}
.cookie-category-essential {
  color: var(--primary);
  font-size: 1em;
  font-style: italic;
}
.cookie-modal-close {
  position: absolute;
  top: 14px; right: 18px;
  font-size: 1.6rem;
  background: none;
  border: none;
  color: var(--primary);
  border-radius: var(--radius-small);
  padding: 2px 8px;
  transition: background 0.18s, color 0.18s;
}
.cookie-modal-close:focus, .cookie-modal-close:hover {
  background: var(--secondary);
  color: var(--white);
}

/* OL & NUMBERED LISTS FOR STEPS */
ol {
  list-style: decimal inside;
  padding-left: 18px;
  margin: 0 0 14px 0;
}
ol li {
  background: var(--white);
  padding: 15px 19px;
  border-radius: var(--radius-small);
  margin-bottom: 8px;
  box-shadow: 0 1px 6px var(--shadow);
  color: var(--primary);
}

/* RESPONSIVE STYLES */
@media (max-width:1100px) {
  .container {
    max-width: 90vw;
  }
}
@media (max-width:920px) {
  .service-category, .card {
    min-width: 220px;
    padding: 18px 18px;
  }
  .footer-nav {
    gap: 22px;
  }
}
@media (max-width:768px) {
  .hero, .about-hero, .cta, .services-hero, .blog-hero, .contact-hero, .thank-you {
    padding: 44px 0 30px 0;
  }
  .container {
    padding: 0 8px;
  }
  h1 { font-size: 2rem; }
  h2 { font-size: 1.28rem; }
  .testimonial-card, .card, .service-category, .project-summary {
    padding: 14px 13px;
    font-size: 0.98rem;
  }
  .content-grid, .card-container {
    flex-direction: column;
    gap: 20px;
  }
  .content-wrapper {
    gap: 17px;
  }
  .section {
    padding: 20px 2px;
    margin-bottom: 36px;
  }
  .footer-nav {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 15px;
    align-items: flex-start;
  }
  .testimonial-card {
    flex-direction: column;
    align-items: flex-start;
  }
}
@media (max-width:480px) {
  header .container, .container, footer .container {
    padding: 0 2vw;
  }
  .footer-contact {
    font-size: 0.91em;
  }
  .cookie-banner {
    padding: 19px 5px 12px 5px;
  }
}

/* SPACING & FLEXINESS FOR ALL CARDS/SECTIONS */
main section, .card, .project-summary, .service-category, .testimonial-card, .about-intro, .why-choose-us {
  margin-bottom: 30px;
  margin-top: 0;
}
main section:last-child {
  margin-bottom: 0;
}

/* INTERACTIVE STATES & MICROINTERACTIONS */
.button-like, .cta-button, .cookie-btn {
  transition: box-shadow 0.18s, transform 0.18s, background 0.18s, color 0.18s;
}
.button-like:active, .cta-button:active, .cookie-btn:active {
  transform: scale(0.98);
  box-shadow: 0 0px 0px var(--shadow);
}

/* VISUAL GEOMETRIC ELEMENTS */
.hero, .about-hero, .services-hero, .blog-hero, .contact-hero, .thank-you {
  clip-path: polygon(0 0, 100% 0, 100% 90%, 92% 100%, 8% 100%, 0 90%);
}
.cta {
  clip-path: polygon(0 10%, 8% 0, 92% 0, 100% 10%, 100% 100%, 0 100%);
}
.card, .service-category, .testimonial-card, .project-summary {
  border-radius: 0 0 var(--radius) var(--radius);
  box-shadow: 0 3px 16px var(--shadow);
  border-top: 4px solid var(--secondary);
}

/* GEOMETRIC ANGULAR FONT ON HEADINGS */
h1, h2, h3 {
  font-family: var(--font-display);
  font-variation-settings: "wght" 700;
  font-feature-settings: "ss01" on, "liga" off;
  text-rendering: geometricPrecision;
}

/* BLOG ARTICLES */
.featured-articles ul, .blog-categories ul {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin: 0; padding: 0;
}
.featured-articles li {
  background: var(--white);
  border-radius: var(--radius-small);
  box-shadow: 0 1px 4px var(--shadow);
  padding: 24px 16px 17px 24px;
  border-left: 4px solid var(--primary);
  font-size: 1rem;
  color: var(--primary);
}

/* LEGAL PAGES */
.legal {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: 0 1px 10px var(--shadow);
  border-top: 4px solid var(--secondary);
  margin-bottom: 32px;
  padding: 34px 24px 14px 24px;
  max-width: 750px;
}
.legal h1, .legal h2, .legal h3 {
  color: var(--primary);
}
.legal ul li {
  background: none;
  padding: 0;
  border: none;
  box-shadow: none;
  color: var(--primary);
}

/* THANK YOU PAGE */
.thank-you {
  border-radius: var(--radius);
  background: var(--secondary);
  color: var(--white);
}
.thank-you h1 {
  color: var(--white);
}

/* UTILS */
.d-none { display: none !important; }

/* END OF STYLE.CSS */
