/* =========================
   CSS RESET & BASE STYLES
   ========================= */
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%;
  font: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}
html {
  height: 100%;
  scroll-behavior: smooth;
}
body {
  line-height: 1.5;
  min-height: 100vh;
  font-family: 'Roboto', Arial, sans-serif;
  background-color: #11191C;
  color: #F3EFDC;
  -webkit-font-smoothing: antialiased;
  background-image: linear-gradient(135deg, #17413B 0%, #253B46 100%);
}
ol, ul {
  list-style: disc inside;
}
a {
  color: #7CA05F;
  text-decoration: none;
  transition: color 0.22s;
}
a:hover, a:focus {
  color: #F3EFDC;
  text-shadow: 0 0 6px #7CA05F55;
}
h1, h2, h3, h4 {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #F3EFDC;
  letter-spacing: .5px;
  line-height: 1.2;
}
h1 {
  font-size: 2.2rem;
  font-weight: 800;
  margin-bottom: 20px;
}
h2 {
  font-size: 1.55rem;
  font-weight: 700;
  margin-bottom: 18px;
}
h3 {
  font-size: 1.12rem;
  font-weight: 600;
  margin-bottom: 10px;
}
p, li {
  font-size: 1rem;
  color: #DCDED8;
  margin-bottom: 14px;
  line-height: 1.6;
}
strong {
  color: #F3EFDC;
  font-weight: 700;
}
img {
  max-width: 100%;
  height: auto;
  display: inline-block;
}
button, .cta-btn {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  outline: none;
  cursor: pointer;
  border: none;
}
:focus {
  outline: 2px solid #7CA05F;
  outline-offset: 2px;
}

/* =========================
   BRAND COLORS & TOKENS
   ========================= */
:root {
  --color-primary: #17413B;
  --color-secondary: #7CA05F;
  --color-accent: #F3EFDC;
  --color-dark-bg: #11191C;
  --color-darker-bg: #0B1215;
  --color-black: #0B1012;
  --color-testimonial-bg: #F3EFDC;
  --color-testimonial-text: #19372B;
  --color-footer-bg: #11201B;
  --neon: #CFFFB4;
  --shadow-main: 0 2px 36px 0 #7CA05F2a;
  --shadow-inner: 0 2px 6px 0 #7CA05F22;
  --radius-main: 15px;
  --radius-btn: 40px;
}


/* =============================
   LAYOUT, CONTAINERS, FLEXBOX
   ============================= */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 18px;
  padding-right: 18px;
  display: flex;
  flex-direction: column;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin: 0 auto;
  padding: 0;
}
main {
  width: 100%;
  min-height: 60vh;
  background: none;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: none;
  border-radius: var(--radius-main);
}

/* =========================
   HEADER & NAVIGATION
   ========================= */
header {
  background: var(--color-dark-bg);
  position: sticky;
  top: 0;
  z-index: 50;
  box-shadow: 0 2px 16px #15282a44;
  padding-top: 14px;
  padding-bottom: 14px;
}
header .container {
  flex-direction: row;
  align-items: center;
  gap: 18px;
  justify-content: space-between;
}
header img {
  height: 48px;
  width: auto;
}
.main-nav {
  display: flex;
  gap: 28px;
  align-items: center;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  font-size: 1rem;
  letter-spacing: .5px;
  position: relative;
  color: var(--color-accent);
  padding: 6px 0;
  transition: color 0.18s;
}
.main-nav a:not(:last-child)::after {
  content: '';
  display: inline-block;
  width: 5px;
  height: 5px;
  border-radius: 100%;
  background: var(--color-secondary);
  margin: 0 11px 2px 11px;
  vertical-align: middle;
  transition: background 0.18s;
}
.main-nav a:hover, .main-nav a.active {
  color: var(--neon);
  text-shadow: 0 0 5px var(--color-secondary);
}

.cta-btn {
  display: inline-block;
  background: linear-gradient(90deg, var(--color-secondary) 0%, var(--neon) 100%);
  color: #17413B;
  padding: 13px 38px;
  border-radius: var(--radius-btn);
  font-size: 1.08rem;
  font-weight: 700;
  box-shadow: 0 8px 32px -2px #7CA05F66;
  border: none;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: background 0.21s, box-shadow 0.21s, color 0.21s, scale .2s;
  margin-left: 10px;
  outline: none;
}
.cta-btn:hover, .cta-btn:focus {
  background: linear-gradient(90deg, var(--neon) 0%, var(--color-secondary) 100%);
  color: #0B1215;
  box-shadow: 0 0 24px 0 #CFFFB477, 0 2px 8px 0 #7CA05F22;
  scale: 1.05;
}

/* =========================
   MOBILE NAVIGATION
   ========================= */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--color-accent);
  font-size: 2.1rem;
  margin-left: 18px;
  cursor: pointer;
  z-index: 200;
  transition: color 0.2s;
  border-radius: 50%;
  height: 48px;
  width: 48px;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  color: var(--neon);
  background: #17413B33;
}
.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  height: 100vh;
  width: 320px;
  max-width: 95vw;
  background: linear-gradient(135deg, #15282A 65%, #1B3C34 100%);
  box-shadow: -4px 0 28px #062514b8;
  padding: 36px 22px 30px 30px;
  transform: translateX(100%);
  transition: transform 0.36s cubic-bezier(.31,1.07,.69,1);
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: 28px;
  visibility: hidden;
}
.mobile-menu.open {
  transform: translateX(0);
  visibility: visible;
}
.mobile-menu-close {
  font-size: 2.2rem;
  color: var(--color-accent);
  background: none;
  border: none;
  align-self: flex-end;
  cursor: pointer;
  margin-bottom: 7px;
  margin-top: 0;
  z-index: 1100;
  transition: color 0.21s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: var(--color-secondary);
  background: #253B4622;
  border-radius: 50%;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin-top: 18px;
  align-items: flex-start;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--color-accent);
  padding: 10px 0;
  letter-spacing: 1px;
  border-radius: 9px;
  transition: background 0.16s, color 0.16s;
  width: 100%;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #7CA05F22;
  color: var(--neon);
  text-shadow: 0 0 8px #7CA05F77;
}

/* =========================
   HERO SECTION
   ========================= */
.hero {
  width: 100%;
  min-height: 340px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(114deg, #223a29 65%, #263B29 100%);
  box-shadow: 0 18px 48px #25413B22;
  border-radius: 0 0 28px 28px;
  margin-bottom: 65px;
  position: relative;
}
.hero .container {
  min-height: 300px;
  align-items: center;
  justify-content: center;
}
.hero .content-wrapper {
  align-items: flex-start;
  gap: 18px;
  max-width: 600px;
}
.hero h1 {
  color: var(--neon);
  text-shadow: 0 0 14px #CFFFB4aa, 0 0 3px #7CA05Faa;
}
.hero p {
  color: var(--color-accent);
  font-size: 1.14rem;
  font-weight: 400;
}

/* =========================
   FEATURES SECTION CARDS
   ========================= */
.features-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-top: 8px;
  justify-content: flex-start;
}
.feature-icon {
  background: var(--color-darker-bg);
  border-radius: var(--radius-main);
  box-shadow: var(--shadow-main);
  padding: 32px 24px 24px 24px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  width: min(310px, 100%);
  margin-bottom: 20px;
  position: relative;
  border: 1.5px solid #213524;
  transition: box-shadow 0.22s, border-color 0.18s, scale .24s;
}
.feature-icon:hover {
  box-shadow: 0 8px 35px 0 #7ca05ffc, 0 2px 8px 0 #7CA05F22;
  border-color: var(--color-secondary);
  scale: 1.03;
  z-index: 2;
}
.feature-icon img {
  height: 48px;
  width: 48px;
  margin-bottom: 10px;
  filter: drop-shadow(0 0 8px #CFFFB4);
}
.feature-icon h3 {
  color: var(--neon);
  font-size: 1.15rem;
  font-weight: 700;
}

/* =========================
   CARDS, CONTENT GRIDS
   ========================= */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: var(--color-dark-bg);
  box-shadow: var(--shadow-main);
  border-radius: var(--radius-main);
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  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;
}
.card-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}

/* =========================
   TESTIMONIALS SECTION
   ========================= */
.testimonials {
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
  margin-top: 18px;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  padding: 30px 34px;
  min-width: 260px;
  background: var(--color-testimonial-bg);
  color: var(--color-testimonial-text);
  border-radius: var(--radius-main);
  box-shadow: 0 6px 28px #19372b40, 0 2px 6px #7CA05F22;
  border-left: 5px solid var(--neon);
  border-bottom: 3px solid var(--color-secondary);
  margin-bottom: 20px;
}
.testimonial-card p {
  color: var(--color-testimonial-text);
  font-size: 1.08rem;
  font-style: italic;
  line-height: 1.4;
  margin-bottom: 8px;
}
.testimonial-card strong {
  color: var(--color-primary);
}
.testimonial-card div {
  color: #285343;
  font-size: 0.97rem;
}

/* =============================
   FOOTER
   ============================= */
footer {
  background: var(--color-footer-bg);
  padding: 44px 0 26px 0;
  margin-top: 80px;
  border-radius: 22px 22px 0 0;
  box-shadow: 0 -6px 36px #11482d33;
}
footer .container {
  flex-direction: row;
  align-items: flex-start;
  gap: 32px;
  justify-content: space-between;
  flex-wrap: wrap;
}
.footer-branding {
  flex: 1 0 220px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: flex-start;
}
.footer-branding img {
  height: 44px;
}
.footer-branding p {
  color: var(--color-accent);
  font-size: 1.03rem;
}
.footer-menu {
  flex: 1 0 180px;
  display: flex;
  flex-direction: column;
  gap: 13px;
}
.footer-menu a {
  font-size: 1rem;
  color: var(--color-accent);
  transition: color 0.17s;
}
.footer-menu a:hover {
  color: var(--neon);
}
.footer-contact {
  flex: 2 0 260px;
  display: flex;
  flex-direction: column;
  gap: 13px;
}
.footer-contact div {
  color: var(--color-accent);
  font-size: 0.98rem;
  display: flex;
  align-items: center;
  gap: 7px;
}
.footer-contact img {
  height: 20px;
  width: 20px;
  filter: brightness(0) saturate(100%) invert(73%) sepia(7%) saturate(1468%) hue-rotate(63deg) brightness(105%) contrast(92%);
}

/* =============================
   FEATURE ITEM, CARDS
   ============================= */
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  padding: 28px 18px;
  border-radius: var(--radius-main);
  background: var(--color-dark-bg);
  box-shadow: var(--shadow-inner);
}

/* =============================
   FAQ & BLOG / ARTICLE LISTS
   ============================= */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 26px;
}
.faq-list h3 {
  color: var(--neon);
  font-size: 1.1rem;
  margin-bottom: 7px;
}
.latest-articles-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 15px;
}
.guide-list {
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.featured-story {
  background: var(--color-darker-bg);
  border-radius: var(--radius-main);
  box-shadow: var(--shadow-inner);
  padding: 22px 18px;
  margin-top: 22px;
}

/* =============================
   CONTACT PAGE
   ============================= */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin: 22px 0 20px 0;
}
.contact-info div {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.02rem;
  color: var(--color-accent);
}
.location-map {
  margin-top: 8px;
  font-size: 0.96rem;
  color: var(--color-accent);
}

/* =============================
   RESPONSIVE DESIGN (MOBILE-FIRST)
   ============================= */
@media (max-width: 1100px) {
  .container {
    max-width: 96vw;
  }
  .footer-contact {
    flex: 2 0 210px;
  }
}
@media (max-width: 900px) {
  .container {
    max-width: 98vw;
  }
  .footer-branding, .footer-menu, .footer-contact {
    flex: 100%;
    max-width: 100%;
  }
  footer .container {
    flex-direction: column;
    align-items: flex-start;
    gap: 26px;
    justify-content: flex-start;
  }
}
@media (max-width: 820px) {
  .features-grid, .testimonials, .card-grid, .content-grid {
    gap: 16px;
  }
  .feature-icon {
    min-width: 230px;
    padding: 22px 12px 18px 12px;
  }
}
@media (max-width: 768px) {
  .main-nav, .cta-btn {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
  .features-grid, .testimonials, .card-grid, .content-grid {
    flex-direction: column;
    gap: 20px;
  }
  .content-wrapper, .footer-branding, .footer-menu, .footer-contact {
    align-items: flex-start;
    gap: 14px;
  }
  .hero {
    min-height: 200px;
    padding: 18px 0;
    border-radius: 0 0 20px 20px;
    margin-bottom: 38px;
  }
  .section {
    margin-bottom: 36px;
    padding: 22px 10px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 14px;
    align-items: center;
  }
  header .container {
    flex-direction: row;
    align-items: center;
    gap: 10px;
    justify-content: space-between;
    padding-left: 8px;
    padding-right: 8px;
  }
  footer {
    padding: 28px 0 20px 0;
    margin-top: 40px;
    border-radius: 13px 13px 0 0;
  }
}
@media (max-width: 520px) {
  html {
    font-size: 14px;
  }
  header img, .footer-branding img {
    height: 32px;
  }
  .hero .container {
    padding-left: 5px;
    padding-right: 5px;
  }
  .hero h1 {
    font-size: 1.18rem;
  }
  h2 {
    font-size: 1rem;
  }
  .testimonials {
    gap: 10px;
  }
  .testimonial-card {
    padding: 14px 8px;
  }
}

/* =========================
   BUTTONS & INTERACTIVE
   ========================= */
button, .cta-btn {
  box-shadow: 0 2px 12px 0 #7CA05F55;
  transition: background 0.21s, color 0.21s, transform 0.17s;
}
button:active, .cta-btn:active {
  transform: scale(0.98);
}

/* =========================
   COOKIE CONSENT BANNER
   ========================= */
.cookie-consent-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  background: #19372B;
  color: var(--color-accent);
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 22px 32px;
  box-shadow: 0 0 20px 0 #7CA05F44;
  border-radius: 22px 22px 0 0;
  transition: transform 0.41s, opacity 0.41s;
}
.cookie-consent-banner.hide {
  transform: translateY(120%);
  opacity: 0;
  pointer-events: none;
}
.cookie-banner-message {
  font-size: 1rem;
  color: var(--color-accent);
  max-width: 550px;
  flex: 1 1 auto;
}
.cookie-btns {
  display: flex;
  gap: 14px;
  align-items: center;
}
.cookie-btns button {
  background: var(--color-secondary);
  color: var(--color-black);
  border-radius: var(--radius-btn);
  padding: 8px 24px;
  font-size: 1rem;
  font-weight: 600;
  border: none;
  box-shadow: 0 1px 6px #7CA05F33;
  transition: background 0.19s, color 0.19s;
}
.cookie-btns .cookie-reject {
  background: #fff;
  color: var(--color-primary);
  border: 2px solid var(--color-secondary);
  margin-right: 0;
}
.cookie-btns .cookie-settings {
  background: none;
  color: var(--color-accent);
  border: 2px solid var(--color-accent);
  margin-right: 0;
}
.cookie-btns button:hover, .cookie-btns button:focus {
  background: var(--neon);
  color: var(--color-primary);
}
@media (max-width: 640px) {
  .cookie-consent-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    padding: 14px 10px;
  }
  .cookie-btns {
    width: 100%;
    justify-content: flex-end;
    gap: 10px;
  }
  .cookie-banner-message {
    font-size: 0.96rem;
    max-width: 100%;
  }
}

/* =========================
   COOKIE MODAL POPUP
   ========================= */
.cookie-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 10041;
  background: #11191ccf;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: all;
  animation: cookieModalFadeIn 0.38s;
}
@keyframes cookieModalFadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
.cookie-modal {
  background: var(--color-testimonial-bg);
  color: var(--color-testimonial-text);
  border-radius: 22px;
  box-shadow: 0 8px 60px #1B3C3488;
  max-width: 430px;
  width: 95vw;
  padding: 38px 30px 30px 30px;
  display: flex;
  flex-direction: column;
  gap: 26px;
  z-index: 10042;
  position: relative;
  animation: cookieModalPop 0.28s cubic-bezier(.7,1.3,.7,1);
}
@keyframes cookieModalPop {
  0% { transform: scale(.93); opacity: 0; }
  90% { transform: scale(1.06); }
  100% { transform: scale(1); opacity: 1; }
}
.cookie-modal h2 {
  color: var(--color-primary);
  margin-bottom: 10px;
}
.cookie-modal-category {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 14px;
  margin-bottom: 7px;
}
.cookie-modal-category label {
  font-weight: 600;
  color: var(--color-primary);
  font-size: 1.05rem;
}
.cookie-modal-category input[type="checkbox"] {
  appearance: none;
  width: 26px;
  height: 26px;
  border: 2px solid var(--color-secondary);
  border-radius: 8px;
  background: #fff;
  margin-right: 8px;
  position: relative;
  transition: background 0.13s, border 0.13s;
}
.cookie-modal-category input[type="checkbox"]:checked {
  background: var(--color-secondary);
  border-color: var(--neon);
}
.cookie-modal-category input[type="checkbox"]:checked:after {
  content: '';
  display: block;
  position: absolute;
  left: 8px;
  top: 8px;
  width: 6px;
  height: 6px;
  border-radius: 2px;
  background: #fff;
}
.cookie-modal-actions {
  display: flex;
  flex-direction: row;
  gap: 14px;
  margin-top: 20px;
}
.cookie-modal-actions button {
  background: var(--color-secondary);
  color: var(--color-black);
  border-radius: var(--radius-btn);
  padding: 8px 22px;
  font-size: 1rem;
  font-weight: 600;
  border: none;
}
.cookie-modal-actions button:hover, .cookie-modal-actions button:focus {
  background: var(--neon);
}
.cookie-modal .modal-close-btn {
  background: none;
  border: none;
  color: var(--color-primary);
  font-size: 1.7rem;
  font-weight: 700;
  position: absolute;
  right: 18px;
  top: 16px;
  cursor: pointer;
  padding: 0;
}
.cookie-modal .modal-close-btn:hover {
  color: var(--color-secondary);
}
@media (max-width: 520px) {
  .cookie-modal {
    padding: 20px 10px 20px 10px;
    max-width: 99vw;
  }
  .cookie-modal-actions {
    flex-direction: column;
    gap: 10px;
  }
}
/* =========================
   ANIMATIONS & MICRO-INTERACTIONS
   ========================= */
.feature-icon, .card, .testimonial-card, .feature-item {
  transition: box-shadow 0.25s, scale 0.20s, border-color 0.16s;
}
.feature-icon:active, .card:active, .testimonial-card:active, .feature-item:active {
  scale: 0.98;
}
.cta-btn:focus-visible {
  outline: 3px solid var(--color-secondary);
  outline-offset: 2px;
}

/* =========================
   MISCELLANEOUS/UTILITIES
   ========================= */
::-webkit-scrollbar {
  width: 7px;
  background: #1d2d23;
}
::-webkit-scrollbar-thumb {
  background: #17413Bdd;
  border-radius: 7px;
}
::selection {
  background: #7CA05F55;
}

/* Hide outline for mouse users but show for keyboard navigation */
:focus:not(:focus-visible) {
  outline: none;
}

/* Hide mobile menu at non-mobile breakpoints */
@media (min-width: 769px) {
  .mobile-menu, .mobile-menu-toggle {
    display: none !important;
  }
}
