/* ==== CSS RESET & NORMALIZE ==== */
html {
  box-sizing: border-box;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
*, *::before, *::after {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
}
body {
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  background: #161E22;
  color: #F3F8F8;
  min-height: 100vh;
  line-height: 1.6;
}
img {
  max-width: 100%;
  display: block;
}
a {
  text-decoration: none;
  color: inherit;
  transition: color 0.2s;
}
ul, ol {
  list-style: none;
}
button {
  font-family: inherit;
  background: none;
  border: none;
  color: inherit;
  cursor: pointer;
}

/* ==== BRANDING COLORS ==== */
:root {
  --c-primary: #245144;
  --c-secondary: #D6CAB0;
  --c-accent: #FADF68;
  --c-dark-bg: #161E22;
  --c-whitelight: #F3F8F8;
  --c-neutral: #232a33;
  --c-neon: #46ffd7;
  --c-warning: #FA3A3A;
  --c-shadow: rgba(36, 81, 68, 0.15);
  --spacing: 20px;
}

/* ==== TYPOGRAPHY ==== */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@700&family=Open+Sans:wght@400;600&display=swap');
h1, h2, h3, h4 {
  font-family: 'Montserrat', 'Open Sans', Arial, sans-serif;
  font-weight: 700;
  letter-spacing: 0.01em;
  color: var(--c-accent);
}
h1 {
  font-size: 2.3rem;
  margin-bottom: 18px;
}
h2 {
  font-size: 1.7rem;
  margin-bottom: 16px;
}
h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
  color: var(--c-neon);
}
h4 {
  font-size: 1.1rem;
  margin-bottom: 10px;
}
p, li, span {
  font-size: 1rem;
  color: var(--c-whitelight);
}
strong {
  font-weight: 700;
  color: var(--c-accent);
}

/* ==== LAYOUT STRUCTURE ==== */
.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.text-section {
  align-items: flex-start;
}

/* ==== FLEX LAYOUTS (MANDATORY) ==== */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: var(--c-neutral);
  border-radius: 18px;
  margin-bottom: 20px;
  padding: 24px;
  box-shadow: 0 4px 20px var(--c-shadow);
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.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;
  background: #ffffff;
  color: #222c32;
  border-radius: 18px;
  margin-bottom: 24px;
  box-shadow: 0 4px 26px rgba(36,81,68,0.08);
  border-left: 5px solid var(--c-neon);
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* ==== HEADER & NAV ==== */
header {
  background: linear-gradient(to right, #161E22 50%, #245144 100%);
  padding: 0 0 12px 0;
  box-shadow: 0 2px 18px rgba(36,81,68,0.08);
  position: relative;
  z-index: 970;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 76px;
}
header img {
  height: 46px;
}
.main-nav {
  display: flex;
  gap: 22px;
  align-items: center;
  margin-left: 24px;
}
.main-nav a {
  color: var(--c-accent);
  padding: 8px 0 5px 0;
  font-weight: 600;
  font-size: 1rem;
  position: relative;
  transition: color 0.18s;
}
.main-nav a:hover, .main-nav a:focus {
  color: var(--c-neon);
}
.cta-btn {
  background: var(--c-neon);
  color: #1B2A2B;
  border: none;
  padding: 12px 32px;
  border-radius: 60px;
  font-family: 'Montserrat', 'Open Sans', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 0.02em;
  margin-left: 28px;
  box-shadow: 0 2px 18px rgba(70,255,215,0.15);
  cursor: pointer;
  outline: none;
  transition: background 0.22s, color 0.22s, box-shadow 0.22s;
  text-shadow: 0 0 4px #5ae8b0,0 0 2px #fff;
}
.cta-btn:hover, .cta-btn:focus {
  background: #1b6651;
  color: var(--c-accent);
  box-shadow: 0 4px 35px #46ffd7aa;
}
.mobile-menu-toggle {
  display: none;
  background: var(--c-neon);
  color: #222c32;
  border-radius: 11px;
  padding: 7px 19px;
  font-size: 2.1rem;
  margin-left: 25px;
  border: none;
  box-shadow: 0 2px 8px rgba(70,255,215,0.18);
  transition: background 0.2s, color 0.2s;
}
.mobile-menu-toggle:focus {
  outline: 2px solid var(--c-accent);
}

/* ==== MOBILE MENU ==== */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: #18272f;
  box-shadow: 3px 0 20px 0 #00000049;
  z-index: 2000;
  transform: translateX(-100vw);
  transition: transform 0.28s cubic-bezier(.73,.01,.33,1);
  display: flex;
  flex-direction: column;
  padding: 30px 30px 20px 30px;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  margin-left: auto;
  background: none;
  border: none;
  font-size: 2.7rem;
  color: var(--c-neon);
  cursor: pointer;
  margin-bottom: 26px;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.mobile-nav a {
  color: var(--c-accent);
  font-size: 1.25rem;
  font-family: 'Montserrat', 'Open Sans', Arial, sans-serif;
  font-weight: 700;
  padding: 14px 0;
  border-bottom: 1px solid #222c3240;
  transition: color 0.2s, background 0.2s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: var(--c-neon);
  background: #17534bB4;
}

/* ==== HERO & SECTION STYLE ==== */
section {
  margin-bottom: 60px;
  padding: 40px 0 40px 0;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}
section .container {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

/* ==== FEATURE/GRID LISTS ==== */
.feature-grid,
.service-list,
.benefit-list,
.benefits-grid,
.project-overview,
.blog-post-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
  margin: 26px 0;
}
.feature-grid li,
.service-list li,
.benefits-grid li,
.benefit-list li,
.project-overview li,
.blog-post-list li {
  background: #232a33;
  border-radius: 13px;
  box-shadow: 0 2px 14px var(--c-shadow);
  padding: 24px 22px 20px 22px;
  min-width: 212px;
  flex: 1 1 250px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  border-left: 3.5px solid var(--c-neon);
  transition: border 0.18s, background 0.18s, box-shadow 0.18s;
}
.feature-grid li:hover,
.service-list li:hover,
.benefits-grid li:hover,
.benefit-list li:hover,
.project-overview li:hover,
.blog-post-list li:hover {
  border-left: 5.5px solid var(--c-accent);
  box-shadow: 0 6px 24px #46ffd73f;
  background: #232a33ee;
}
.feature-grid img, .service-list img, .benefits-grid img {
  width: 48px;
  height: 48px;
  margin-bottom: 8px;
  filter: drop-shadow(0 0 2px #46ffd7) drop-shadow(0 0 12px #46ffd770);
}

/* ==== TESTIMONIAL CARDS ==== */
.testimonial-card {
  background: #fff;
  color: #232a33;
  border-radius: 18px;
  padding: 22px 30px 22px 30px;
  margin-bottom: 24px;
  box-shadow: 0 8px 36px rgba(36,81,68,0.10);
  display: flex;
  align-items: center;
  gap: 20px;
  min-width: 0;
  max-width: 760px;
}
.testimonial-card .star-rating {
  color: var(--c-accent);
  font-size: 1.45rem;
  letter-spacing: 4px;
  text-shadow: 0 1px 0 #e7df83, 0 6px 10px #f6e59c44;
  margin-top: 6px;
}
.testimonial-card strong {
  color: #255144;
}
.testimonial-card p {
  color: #222c32;
  font-size: 1.08rem;
  margin-bottom: 8px;
  font-weight: 500;
}

/* ==== FOOTER ==== */
footer {
  background: linear-gradient(90deg, #224f48 0%, #161E22 100%);
  color: #F3F8F8;
  padding: 40px 0 24px 0;
  box-shadow: 0 -2px 26px #0c1316ab;
}
footer .container {
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-nav a {
  color: var(--c-accent);
  transition: color 0.16s;
  font-size: 0.99rem;
  font-weight: 600;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: var(--c-neon);
}
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 0.97rem;
}
.footer-contact img {
  width: 22px;
  height: 22px;
  margin-right: 8px;
  vertical-align: middle;
}
.footer-logo img {
  width: 62px; height: 62px;
  filter: drop-shadow(0 0 6px #46ffd7aa);
}

/* ==== BADGES & CERTIFICATIONS ==== */
.certification-badges, .awards, .trust-signals {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 20px;
}
.certification-badges img, .awards img, .trust-signals img {
  width: 38px;height: 38px;
}

.team-image-placeholder {
  min-width: 150px;
  min-height: 120px;
  background: linear-gradient(45deg,#163430,#224f48,#245144 70%,#222c32);
  border-radius: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-accent);
  font-size: 1.35rem;
  opacity: 0.5;
}

/* ==== FEATURED POST ==== */
.featured-post {
  background: #232a33;
  border-left: 5px solid var(--c-accent);
  border-radius: 13px;
  box-shadow: 0 4px 15px #46ffd715;
  padding: 24px 24px 18px 22px;
  margin-top: 16px;
  transition: box-shadow .19s, border .19s;
}
.featured-post:hover {
  border-left: 7px solid var(--c-neon);
  box-shadow: 0 8px 24px #46ffd74f;
}

/* ==== FORM ELEMENTS ==== */
input, textarea, select {
  border: 2px solid var(--c-secondary);
  border-radius: 7px;
  font-size: 1rem;
  padding: 11px 14px;
  outline: none;
  width: 100%;
  margin-bottom: 16px;
  background: #222c32;
  color: var(--c-whitelight);
  transition: border .17s, box-shadow .17s;
}
input:focus, textarea:focus, select:focus {
  border-color: var(--c-neon);
  box-shadow: 0 0 0 2px #46ffd74d;
}

/* ==== ANIMATIONS & HOVER EFFECTS ==== */
a, .cta-btn, button, .card, .testimonial-card, .featured-post {
  transition: all .22s cubic-bezier(.4,.82,.44,1);
}
.card:hover, .testimonial-card:hover {
  box-shadow: 0 8px 32px #46ffd7aa;
  border-left: 6px solid var(--c-accent);
}
.card:active, .cta-btn:active {
  transform: scale(0.98);
}

/* ==== COOKIE CONSENT BANNER ==== */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  width: 100vw;
  z-index: 3000;
  background: #1B2A2B;
  color: #ffffff;
  box-shadow: 0 -4px 24px #00000040;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 30px 16px 26px 16px;
  gap: 30px;
  flex-wrap: wrap;
  transition: transform 0.33s;
}
.cookie-banner.hide {
  transform: translateY(150%);
}
.cookie-banner .cookie-text {
  font-size: 1rem;
  max-width: 560px;
  line-height: 1.5;
}
.cookie-banner .cookie-btns {
  display: flex;
  flex-direction: row;
  gap: 12px;
  align-items: center;
}
.cookie-banner button {
  background: var(--c-neon);
  color: #232a33;
  border-radius: 28px;
  padding: 10px 32px;
  font-family: 'Montserrat', 'Open Sans', Arial, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  border: none;
  margin-left: 0;
  box-shadow: 0 2px 12px #46ffd770;
  transition: background .17s, color .17s, box-shadow .17s;
}
.cookie-banner button:hover {
  background: #222c32;
  color: var(--c-accent);
}
.cookie-banner .cookie-settings-btn {
  background: #224f48;
  color: var(--c-neon);
}
.cookie-banner .cookie-settings-btn:hover {
  background: var(--c-neon);
  color: #232a33;
}

/* ==== COOKIE SETTINGS MODAL ==== */
.cookie-modal-overlay {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(20,36,35,0.93);
  z-index: 3100;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.2s;
}
.cookie-modal {
  background: #232a33;
  border-radius: 16px;
  box-shadow: 0 6px 36px #46ffd770;
  max-width: 420px;
  width: 92vw;
  color: #fff;
  padding: 38px 28px 22px 28px;
  display: flex;
  flex-direction: column;
  gap: 22px;
  position: relative;
  animation: cookie-modal-pop 0.24s cubic-bezier(.78,-0.02,.51,1.22);
}
@keyframes cookie-modal-pop {
  from { transform: scale(0.9) translateY(80px); opacity: 0; }
  to   { transform: scale(1)   translateY(0);    opacity: 1; }
}
.cookie-modal h2 {
  color: var(--c-accent);
  margin-bottom: 10px;
}
.cookie-modal label {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-bottom: 14px;
}
.cookie-modal .cookie-category {
  font-weight: bold;
  margin-bottom: 5px;
}
.cookie-modal .cookie-description {
  font-size: 0.98rem;
  color: #eaeaea;
  opacity: 0.9;
}
.cookie-modal .cookie-modal-actions {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  margin-top: 12px;
}
.cookie-modal .cookie-modal-close {
  position: absolute;
  top: 14px;
  right: 15px;
  background: none;
  color: var(--c-neon);
  border: none;
  font-size: 1.65rem;
  cursor: pointer;
  padding: 2px 8px;
  line-height: 1;
}
.cookie-modal input[type='checkbox'] {
  accent-color: var(--c-neon);
  width: 20px;
  height: 20px;
  margin-right: 7px;
}

/* ==== RESPONSIVE ==== */
@media (max-width: 1200px) {
  .container {
    max-width: 98vw;
  }
}
@media (max-width: 900px) {
  header .container,
  footer .container {
    flex-direction: column;
    align-items: flex-start;
    gap: 30px;
  }
  footer .footer-logo {
    margin-top: 25px;
  }
}
@media (max-width: 768px) {
  .container {
    max-width: 99vw;
    padding: 0 10px;
  }
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
  section, .section {
    padding: 30px 0;
    margin-bottom: 38px;
  }
  .content-grid, .card-container, .feature-grid, .service-list, .benefits-grid, .blog-post-list, .project-overview {
    flex-direction: column;
    gap: 18px;
  }
  .testimonial-card {
    flex-direction: column;
    align-items: flex-start;
    padding: 18px 9px 18px 12px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 22px;
  }
  h1 {
    font-size: 2rem;
  }
  h2 {
    font-size: 1.25rem;
  }
  .card, .feature-grid li, .service-list li, .benefits-grid li {
    min-width: 0;
  }
}
@media (max-width: 500px) {
  h1 { font-size: 1.35rem; }
  h2 { font-size: 1.1rem; }
  .cta-btn { font-size: 1rem; padding: 10px 18px; }
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    padding: 20px 6px 20px 6px;
  }
  .cookie-modal {
    padding: 18px 10px 14px 10px;
  }
}

/* ==== UTILITY CLASSES ==== */
.text-center {
  text-align: center;
}
.text-right {
  text-align: right;
}
.mt-2   { margin-top: 12px; }
.mt-4   { margin-top: 24px; }
.mb-2   { margin-bottom: 12px; }
.mb-4   { margin-bottom: 24px; }
.rounded {
  border-radius: 12px;
}
.shadow {
  box-shadow: 0 3px 24px #46ffd755;
}
.gap-2   { gap: 12px; }
.gap-4   { gap: 24px; }

/* ==== VISUAL FOCUS INDICATORS ==== */
a:focus, button:focus, .cta-btn:focus {
  box-shadow: 0 0 0 2px var(--c-neon), 0 0 4px var(--c-accent);
  outline: none;
  z-index: 20;
}

/* ==== MISC DECORATIVE NEON EFFECTS ==== */
h1, h2 {
  text-shadow: 0 1px 14px #46ffd774, 0 0 2px #fff;
}
hr {
  border: none;
  border-top: 2px solid var(--c-neon);
  margin: 32px 0;
}

/* ==== MISC ==== */
::-webkit-scrollbar { width: 10px; background: #1B2A2B; }
::-webkit-scrollbar-thumb { background: #245144; border-radius: 6px; }
::-webkit-scrollbar-thumb:hover { background: #46ffd7; }

/* End of style.css */
