/* =================== 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;
}
body {
  line-height: 1.5;
  background: #111c18;
  color: #FAFAFA;
  font-family: 'Open Sans', Arial, sans-serif;
  min-height: 100vh;
  letter-spacing: 0.01em;
  -webkit-font-smoothing: antialiased;
}
img, svg {
  display: inline-block;
  max-width: 100%;
  height: auto;
}
a {
  color: #FFD600;
  text-decoration: none;
  transition: color 0.25s;
}
a:hover, a:focus {
  color: #fff7a4;
  text-decoration: underline;
}
ul, ol {
  margin-left: 1.5em;
  margin-bottom: 20px;
}
li {
  margin-bottom: 8px;
}
strong {
  font-weight: 700;
  color: #FFD600;
}
hr {
  border: none;
  border-top: 1px solid #24492f;
  margin: 24px 0;
}

/* =================== TYPOGRAPHY =================== */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #FFD600;
  font-weight: 700;
  letter-spacing: 0.01em;
  margin-bottom: 16px;
}
h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}
h2 {
  font-size: 2rem;
  margin-bottom: 18px;
}
h3 {
  font-size: 1.4rem;
  margin-bottom: 10px;
  color: #FAFAFA;
}
.subheadline {
  font-size: 1.125rem;
  color: #FFD600;
  margin-bottom: 24px;
}
p {
  font-size: 1rem;
  color: #e4e6e8;
  margin-bottom: 18px;
  line-height: 1.7;
}
small {
  color: #99a4af;
  font-size: 0.92rem;
}

@media (max-width: 768px) {
  h1 {
    font-size: 2rem;
  }
  h2 {
    font-size: 1.5rem;
  }
  .subheadline {
    font-size: 1rem;
  }
}

/* =================== LAYOUT CONTAINERS =================== */
.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding-left: 18px;
  padding-right: 18px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: rgba(24,79,41,0.07);
  border-radius: 28px;
  box-shadow: 0 2px 16px 0 rgba(0,0,0,0.08);
}

.content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
  margin-bottom: 24px;
}

.text-section {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    gap: 24px;
    align-items: flex-start;
  }
  .content-wrapper {
    align-items: stretch;
  }
}

.card-container, .card-grid, .feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 16px;
  justify-content: flex-start;
}

.card {
  background: #162820;
  border: 1.5px solid #1c3323;
  border-radius: 20px;
  margin-bottom: 20px;
  position: relative;
  box-shadow: 0 2px 12px 0 rgba(0,0,0,0.08);
  padding: 28px 26px;
  min-width: 270px;
  flex: 1 1 260px;
  transition: box-shadow 0.3s, border-color 0.3s, transform 0.25s;
  z-index: 1;
}
.card:hover {
  border-color: #FFD600;
  box-shadow: 0 6px 24px 0 rgba(252,246,165,0.10);
  transform: translateY(-2px) scale(1.022);
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #162820;
  border-radius: 20px;
  padding: 28px 22px 20px 22px;
  border: 1px solid #24492f;
  min-width: 232px;
  min-height: 220px;
  margin-bottom: 20px;
  box-shadow: 0 2px 12px 0 rgba(39, 51, 34, 0.06);
  transition: box-shadow 0.3s, border-color 0.3s, transform 0.23s;
}
.feature-item img {
  width: 48px;
  height: 48px;
  filter: drop-shadow(0 1px 6px #FFD60066);
}
.feature-item:hover {
  border-color: #FFD600;
  box-shadow: 0 4px 24px 0 #FFD60030;
  transform: translateY(-4px) scale(1.03);
}
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}

@media (max-width: 800px) {
  .feature-grid, .card-container, .card-grid, .content-grid {
    flex-direction: column;
    gap: 18px;
  }
  .feature-item, .card {
    min-width: unset;
    width: 100%;
    flex: 1 1 100%;
  }
}

/* =================== HEADER & NAVIGATION =================== */
header {
  background: #12231a;
  border-bottom: 2px solid #24492f;
  box-shadow: 0 2px 12px 0 #172f1b10;
  position: sticky;
  top: 0;
  z-index: 100;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-top: 18px;
  padding-bottom: 18px;
}
.logo img {
  height: 50px;
  transition: filter 0.2s;
}
.logo:hover img {
  filter: drop-shadow(0px 0px 6px #FFD60099);
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 22px;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.04rem;
  color: #FAFAFA;
  font-weight: 600;
  position: relative;
  padding: 5px 8px;
  border-radius: 6px;
  transition: background 0.18s, color 0.2s;
}
.main-nav a:hover, .main-nav a:focus {
  background: #24492f;
  color: #FFD600;
}
.btn-primary {
  background: #FFD600;
  color: #184F29;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 800;
  font-size: 1.09rem;
  padding: 10px 28px;
  border-radius: 40px;
  border: none;
  box-shadow: 0 2px 12px 0 #FFD60033;
  cursor: pointer;
  outline: none;
  letter-spacing: 0.03em;
  text-shadow: none;
  margin-left: 12px;
  transition: background 0.26s, color 0.26s, box-shadow 0.27s;
  display: inline-block;
}
.btn-primary:hover, .btn-primary:focus {
  background: #fff7a4;
  color: #184F29;
  box-shadow: 0 4px 24px 0 #FFD60055; 
}

/* =================== MOBILE MENU =================== */
.mobile-menu-toggle {
  display: none;
}
.mobile-menu {
  display: none;
}

@media (max-width: 1000px) {
  .main-nav {
    display: none;
  }
  .btn-primary {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
    font-size: 2.4rem;
    color: #FFD600;
    background: none;
    border: none;
    line-height: 1;
    padding: 10px 12px;
    border-radius: 9px;
    cursor: pointer;
    transition: background 0.19s;
    position: relative;
    z-index: 202;
  }
  .mobile-menu-toggle:hover {
    background: #224030;
  }
  .mobile-menu {
    display: flex;
    position: fixed;
    top: 0; left: 0;
    width: 100vw;
    height: 100vh;
    background: #101c14e6;
    z-index: 210;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-end;
    transition: transform 0.48s cubic-bezier(.35,1,.29,1.09);
    transform: translateX(100%);
    overflow: hidden;
    box-shadow: -3px 0 28px 5px #FFD60012;
  }
  .mobile-menu.open {
    transform: translateX(0);
    display: flex;
  }
  .mobile-menu-close {
    margin: 23px 24px 0 0;
    font-size: 2.2rem;
    color: #FFD600;
    background: none;
    border: none;
    padding: 6px 10px;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.2s;
    align-self: flex-end;
    z-index: 211;
  }
  .mobile-menu-close:hover,
  .mobile-menu-close:focus {
    background: #24492f;
    color: #fff7a4;
  }
  .mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin: 32px 0 0 0;
    width: 100vw;
    align-items: center;
  }
  .mobile-nav a {
    color: #FFD600;
    font-size: 1.45rem;
    font-family: 'Montserrat', Arial, sans-serif;
    font-weight: 700;
    letter-spacing: 0.02em;
    background: none;
    border: none;
    padding: 18px 0;
    border-radius: 14px;
    text-align: center;
    width: 90vw;
    transition: background 0.2s, color 0.2s;
  }
  .mobile-nav a:hover, .mobile-nav a:focus {
    background: #FFD600;
    color: #174220;
    text-decoration: none;
  }
}

/* =================== MAIN SECTIONS =================== */
main {
  background: linear-gradient(180deg, #12231a 50%, #184F29 100%);
  min-height: 60vh;
  padding-bottom: 36px;
}

section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
@media (max-width: 600px) {
  section {
    padding: 28px 6px;
    margin-bottom: 36px;
  }
}

/* =================== TESTIMONIALS =================== */
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  margin-bottom: 24px;
  background: #FAFAFA;
  border-radius: 14px;
  box-shadow: 0 2px 14px 0 #FFD60026;
  color: #1f271e;
  flex-direction: row;
  border-left: 5px solid #FFD600;
  position: relative;
  min-width: 220px;
  max-width: 760px;
  font-size: 1.08rem;
  transition: box-shadow 0.24s, transform 0.22s;
}
.testimonial-card p {
  color: #12231a;
  font-size: 1.13rem;
  margin-bottom: 0;
}
.testimonial-card span {
  color: #184F29;
  font-size: 0.94rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-style: italic;
}
.testimonial-card:hover {
  box-shadow: 0 8px 32px 0 #FFD60029;
  transform: scale(1.022);
}
@media (max-width: 700px) {
  .testimonial-card {
    flex-direction: column;
    padding: 16px 12px;
    gap: 10px;
    width: 100%;
    max-width: none;
  }
}

/* =================== FORMS AND CONTACT LIST =================== */
.contact-list {
  list-style: none;
  margin-bottom: 16px;
}
.contact-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  font-size: 1.04rem;
}
.contact-list img {
  width: 22px;
  height: 22px;
}
.map-embed {
  background: #162820;
  border: 1px solid #24492f;
  border-radius: 18px;
  padding: 15px 22px;
  display: flex;
  align-items: center;
  gap: 14px;
  color: #FFD600;
}

/* =================== FOOTER =================== */
footer {
  background: #162820;
  color: #FAFAFA;
  padding-top: 30px;
  padding-bottom: 20px;
  border-top: 2px solid #24492f;
  margin-top: 30px;
}
.footer-flex {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
  align-items: flex-start;
}
.footer-flex > div {
  min-width: 220px;
}
.footer-links, .footer-social {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-links a {
  color: #FFD600;
  font-size: 1rem;
  font-weight: 600;
  padding: 2px 0;
  transition: color 0.16s;
}
.footer-links a:hover {
  color: #fff7a4;
}
.footer-social a img {
  width: 28px;
  height: 28px;
  filter: drop-shadow(0px 1px 5px #FFD60044);
  transition: filter 0.19s, transform 0.17s;
}
.footer-social a:hover img {
  filter: drop-shadow(0px 0px 13px #FFD600ee);
  transform: scale(1.12);
}
.footer-legal {
  margin-top: 18px;
  text-align: left;
}
@media (max-width: 900px) {
  .footer-flex {
    flex-direction: column;
    gap: 26px;
    align-items: flex-start;
  }
}

/* =================== ANIMATIONS & TRANSITIONS =================== */
a, .btn-primary, .feature-item, .card, .testimonial-card, .footer-social a img {
  transition: all 0.20s cubic-bezier(.77,.2,.35,1.01);
}

/* =================== COOKIE CONSENT BANNER =================== */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 4000;
  width: 100vw;
  background: #162820ee;
  color: #FAFAFA;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: 0 -2px 24px 0 #FFD60022;
  border-top: 2px solid #FFD600;
  padding: 20px 10px 21px 10px;
  gap: 16px;
  font-size: 1.03rem;
  animation: cookieSlideIn 0.7s cubic-bezier(.44,1.17,.2,1);
}
@keyframes cookieSlideIn {
  0% { transform: translateY(100%); opacity: 0; }
  100% { transform: translateY(0); opacity: 1; }
}
.cookie-banner .cookie-btns {
  display: flex;
  gap: 16px;
  margin-top: 8px;
}
.cookie-btn {
  background: #FFD600;
  color: #184F29;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.01rem;
  padding: 8px 18px;
  border-radius: 32px;
  border: none;
  margin: 0 2px;
  cursor: pointer;
  transition: background 0.220s, color 0.16s, box-shadow 0.19s;
  box-shadow: 0 1px 8px 0 #FFD60014;
}
.cookie-btn:hover, .cookie-btn:focus {
  background: #fff7a4;
  color: #184F29;
}
.cookie-btn.secondary {
  background: #162820;
  color: #FFD600;
  border: 1px solid #FFD600;
  font-weight: 500;
}
.cookie-btn.secondary:hover {
  background: #FFD600;
  color: #184F29;
}

/* Cookie settings modal */
.cookie-modal-overlay {
  display: none;
  position: fixed;
  z-index: 4500;
  left: 0; top: 0; right: 0; bottom: 0;
  background: #101c14e0;
  justify-content: center;
  align-items: center;
  width: 100vw;
  height: 100vh;
}
.cookie-modal-overlay.open {
  display: flex;
  animation: fadeInCookie 0.7s cubic-bezier(.32,1,.16,1);
}
@keyframes fadeInCookie {
  0% { opacity: 0; }
  100% { opacity: 1; }
}
.cookie-modal {
  background: #fff;
  color: #184F29;
  border-radius: 18px;
  min-width: 342px;
  max-width: 95vw;
  padding: 28px 24px;
  box-shadow: 0 4px 44px 0 #FFD60022;
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
  animation: popCookieOpen 0.3s cubic-bezier(.57,1.29,.23,1);
}
@keyframes popCookieOpen {
  0% { transform: scale(0.91); opacity: 0; }
  91% { transform: scale(1.03); }
  100% { transform: scale(1); opacity: 1; }
}
.cookie-modal h2 {
  color: #184F29;
  margin-bottom: 13px;
  font-size: 1.32rem;
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 11px;
  font-size: 1.06rem;
}
.cookie-switch {
  width: 42px;
  height: 24px;
  border-radius: 13px;
  position: relative;
  background: #ddd;
  transition: background 0.2s;
  margin-left: 12px;
}
.cookie-switch input {
  display: none;
}
.cookie-switch span {
  position: absolute;
  top: 2px;
  left: 3px;
  width: 20px;
  height: 20px;
  background: #FFD600;
  border-radius: 50%;
  transition: left 0.17s, background 0.18s;
}
.cookie-switch input:checked + span {
  left: 19px;
  background: #184F29;
}
.cookie-modal .modal-actions {
  display: flex;
  gap: 11px;
  margin-top: 14px;
}
.cookie-modal .close-modal {
  position: absolute;
  top: 13px;
  right: 13px;
  font-size: 1.8rem;
  background: none;
  border: none;
  color: #184F29;
  cursor: pointer;
  border-radius: 6px;
  padding: 2px 8px;
  transition: background 0.18s;
}
.cookie-modal .close-modal:hover {
  background: #eff6ed;
}

@media (max-width: 540px) {
  .cookie-modal {
    min-width: 90vw;
    padding: 16px 8px;
  }
  .cookie-modal h2 {
    font-size: 1.11rem;
  }
}

/* =================== MEDIA QUERIES RESPONSIVE =================== */
@media (max-width: 650px) {
  .container {
    padding-left: 6px;
    padding-right: 6px;
  }
  .footer-flex > div {
    min-width: 120px;
  }
  h1 {
    font-size: 1.44rem !important;
  }
  h2 {
    font-size: 1.1rem !important;
  }
  .btn-primary {
    font-size: 1.01rem;
    padding: 8px 18px;
  }
  .feature-item, .card {
    padding: 16px 10px;
  }
}

/* =================== SCROLLBAR =================== */
body::-webkit-scrollbar {
  width: 10px;
  background: #12231a;
}
body::-webkit-scrollbar-thumb {
  background: #24492f;
  border-radius: 14px;
}
body {
  scrollbar-color: #24492f #12231a;
  scrollbar-width: thin;
}

/* =================== MISC =================== */
::-moz-selection {
  background: #FFD600;
  color: #184F29;
}
::selection {
  background: #FFD600;
  color: #184F29;
}

/* =================== CUSTOM UTILITIES =================== */
.mt-16 { margin-top: 16px !important; }
.mt-24 { margin-top: 24px !important; }
.mb-18 { margin-bottom: 18px !important; }
.mb-24 { margin-bottom: 24px !important; }
.text-center { text-align: center !important; }

/* =================== END =================== */
