/* =======================
   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,
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;
}
html {
  -webkit-text-size-adjust: 100%;
  font-size: 16px;
  scroll-behavior: smooth;
}
body {
  min-height: 100vh;
  font-family: 'Roboto', Arial, sans-serif;
  background: #181E22;
  color: #E4F3DF;
  line-height: 1.55;
  letter-spacing: 0.01em;
  overflow-x: hidden;
  transition: background 0.3s;
}
*, *::before, *::after {
  box-sizing: inherit;
}
a {
  color: #FFD23F;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #fffde6;
}
img {
  max-width: 100%;
  display: block;
}
ul, ol {
  padding-left: 24px;
  margin-top: 12px;
  margin-bottom: 12px;
}
li {
  margin-bottom: 5px;
}
/* =======================
   TYPOGRAPHY
   ======================= */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 700;
  color: #E4F3DF;
  letter-spacing: 0.01em;
}
h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: #FFD23F;
  line-height: 1.12;
  text-shadow: 0 2px 16px #16534799;
}
h2 {
  font-size: 2rem;
  margin-bottom: 18px;
  color: #E4F3DF;
  line-height: 1.18;
}
h3 {
  font-size: 1.3rem;
  margin-bottom: 12px;
  color: #FFD23F;
  font-weight: 600;
}
h4, h5, h6 {
  font-size: 1.1rem;
  margin-bottom: 10px;
  font-weight: 600;
}
p {
  font-size: 1rem;
  margin-bottom: 16px;
}
strong {
  color: #FFD23F;
  font-weight: 700;
}

/* =======================
   CONTAINER & LAYOUT
   ======================= */
.container {
  width: 100%;
  max-width: 1180px;
  padding-left: 20px;
  padding-right: 20px;
  margin-left: auto;
  margin-right: auto;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.card {
  margin-bottom: 20px;
  background: #1B3531;
  border-radius: 20px;
  box-shadow: 0 3px 32px 0 #16534733, 0 1px 6px 0 #0001;
  position: relative;
  transition: box-shadow 0.25s, transform 0.2s;
  min-width: 250px;
}
.card:hover, .card:focus-within {
  transform: translateY(-5px) scale(1.04);
  box-shadow: 0 6px 38px 0 #FFD23F33, 0 2px 16px 0 #16534744;
}

.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;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  background: #E4F3DF;
  color: #165347;
  border-radius: 18px;
  margin-bottom: 24px;
  box-shadow: 0 2px 16px #0002;
  transition: box-shadow 0.25s, transform 0.15s;
}
.testimonial-card p {
  color: #165347;
}
.testimonial-card strong {
  color: #165347;
}
.testimonial-card:hover {
  box-shadow: 0 4px 28px #FFD23F44;
  transform: scale(1.02);
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* =======================
   HEADER & NAVIGATION
   ======================= */
header {
  background: #132823;
  box-shadow: 0 1px 18px 0 #16534733;
  padding: 0;
  position: relative;
  z-index: 102;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 75px;
  gap: 20px;
}
header a img {
  height: 44px;
  width: auto;
  vertical-align: middle;
}
.main-nav {
  display: flex;
  gap: 28px;
  align-items: center;
  margin-right: 20px;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 500;
  color: #E4F3DF;
  letter-spacing: 0.02em;
  padding: 8px 0;
  border-bottom: 2px solid transparent;
  position: relative;
  transition: color 0.18s, border-bottom 0.18s;
}
.main-nav a:hover, .main-nav a:focus {
  color: #FFD23F;
  border-bottom: 2px solid #FFD23F;
}
.cta-button {
  background: linear-gradient(82deg, #FFD23F 60%, #E4F3DF 150%);
  color: #165347;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  border: none;
  border-radius: 22px;
  padding: 13px 34px;
  margin-left: 18px;
  font-size: 1.1rem;
  box-shadow: 0 2px 18px 0 #FFD23F33;
  cursor: pointer;
  transition: background 0.25s, color 0.18s, box-shadow 0.18s, transform 0.18s;
  text-shadow: none;
  outline: none;
  display: inline-block;
}
.cta-button:hover, .cta-button:focus {
  background: #FFD23F;
  color: #132823;
  box-shadow: 0 4px 32px #FFD23F55, 0 2px 8px #16534744;
  transform: translateY(-2px) scale(1.03);
}
.mobile-menu-toggle {
  background: none;
  border: none;
  color: #FFD23F;
  font-size: 2.1rem;
  cursor: pointer;
  margin-left: 18px;
  padding: 6px 13px;
  border-radius: 10px;
  display: none;
  transition: background 0.2s;
  z-index: 110;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: #1B3531;
}
/* ==============
   MOBILE MENU
   ============== */
.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(20,46,39,0.96);
  box-shadow: -6px 0 38px #16534744;
  transform: translateX(100%);
  transition: transform 0.38s cubic-bezier(.77,0,.175,1);
  z-index: 200;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  padding-top: 24px;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: none;
  border: none;
  color: #FFD23F;
  font-size: 2.2rem;
  position: absolute;
  top: 26px;
  right: 26px;
  cursor: pointer;
  z-index: 210;
  padding: 6px;
  transition: color 0.17s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: #fffde6;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  margin-top: 70px;
  width: 100%;
  gap: 14px;
  align-items: center;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.33rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: #FFD23F;
  padding: 14px 36px;
  border-radius: 11px;
  background: none;
  width: 90%;
  text-align: left;
  transition: background 0.15s, color 0.18s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #FFD23F;
  color: #165347;
}
/* ===============
   HERO SECTION
   =============== */
.hero-section {
  background: linear-gradient(120deg, #132823 75%, #165347 140%);
  min-height: 340px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 3px 48px 0 #16534755;
  margin-bottom: 60px;
  padding: 80px 0 60px 0;
}
.hero-section .container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.hero-section h1 {
  color: #FFD23F;
  font-size: 2.6rem;
}
.hero-section p {
  color: #E4F3DF;
  font-size: 1.15rem;
  max-width: 650px;
  margin-bottom: 28px;
}
.hero-section .cta-button {
  margin-top: 16px;
}

/* ===============
   FEATURES & SERVICES
   =============== */
.features-section, .services-section {
  background: #1B3531;
  border-radius: 18px;
  margin-bottom: 60px;
}
.features-section h2, .services-section h2 {
  color: #FFD23F;
}
.service-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin-top: 32px;
  justify-content: flex-start;
}
.service-card {
  background: #132823;
  border-radius: 16px;
  box-shadow: 0 2px 22px #16534744;
  padding: 28px 22px 18px 22px;
  flex: 1 1 240px;
  min-width: 220px;
  max-width: 280px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  transition: box-shadow 0.22s, transform 0.18s;
}
.service-card img {
  width: 40px;
  height: 40px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 1px 8px #FFD23F22;
  padding: 7px;
  margin-bottom: 12px;
}
.service-card h3 {
  font-size: 1.14rem;
  color: #FFD23F;
  margin-bottom: 8px;
}
.service-card p {
  font-size: 1rem;
  color: #E4F3DF;
  margin-bottom: 8px;
}
.service-card:hover {
  box-shadow: 0 6px 22px #FFD23F44, 0 4px 24px #16534766;
  transform: translateY(-3px) scale(1.02);
}
.service-list, .benefits-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  font-size: 1rem;
}

/* ===============
   ABOUT/INFO SECTIONS
   =============== */
.about-section {
  background: #132823;
  border-radius: 18px;
  margin-bottom: 60px;
  color: #BEE4CE;
}
.about-section h2 {
  color: #FFD23F;
}
.about-section ul, .about-section ol {
  margin-top: 12px;
  margin-bottom: 14px;
  padding-left: 26px;
}
.about-section li {
  margin-bottom: 7px;
  color: #E4F3DF;
}

/* ===============
   CONTACT SECTION
   =============== */
.contact-section {
  background: #1B3531;
  border-radius: 18px;
  margin-bottom: 60px;
  color: #E4F3DF;
}
.contact-section h2 {
  color: #FFD23F;
}
.contact-info-block {
  background: #165347;
  color: #E4F3DF;
  padding: 18px 20px;
  border-radius: 12px;
  box-shadow: 0 2px 12px #16534755;
  margin-bottom: 18px;
  font-size: 1rem;
}
.contact-info-block a {
  color: #FFD23F;
  font-weight: 600;
  text-decoration: underline;
}
.contact-info-block a:hover, .contact-info-block a:focus {
  color: #fffde6;
}

/* ===============
   FOOTER
   =============== */
footer {
  background: #132823;
  color: #BEE4CE;
  padding: 28px 0 18px 0;
}
footer .container {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.footer-nav {
  display: flex;
  gap: 28px;
  margin-bottom: 10px;
  flex-wrap: wrap;
  justify-content: center;
}
.footer-nav a {
  color: #FFD23F;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  font-size: 1rem;
  text-decoration: none;
  transition: color 0.18s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: #E4F3DF;
}
footer p {
  color: #BEE4CE;
  font-size: 0.95rem;
  margin-top: 4px;
}

/*============================
  COOKIE CONSENT BANNER/MODAL
  ============================*/
.cookie-consent-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  width: 100%;
  background: #165347;
  color: #E4F3DF;
  box-shadow: 0 -2px 24px #0002;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 30px;
  z-index: 996;
  font-family: 'Roboto', Arial, sans-serif;
  animation: cookieIn 0.7s cubic-bezier(.77,0,.175,1) 1;
}
@keyframes cookieIn {
  from {transform: translateY(100%); opacity:0;}
  to {transform: translateY(0); opacity:1;}
}
.cookie-consent-banner p {
  color: #E4F3DF;
  font-size: 1rem;
  margin: 0 10px 0 0;
  flex: 1 1 auto;
}
.cookie-actions {
  display: flex;
  gap: 12px;
  align-items: center;
}
.cookie-btn {
  border: none;
  border-radius: 16px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  padding: 11px 22px;
  cursor: pointer;
  transition: background 0.18s, color 0.15s, box-shadow 0.16s;
}
.cookie-accept {
  background: #FFD23F;
  color: #165347;
}
.cookie-accept:hover, .cookie-accept:focus {
  background: #E4F3DF;
  color: #165347;
}
.cookie-reject {
  background: none;
  color: #FFD23F;
  border: 1px solid #FFD23F;
}
.cookie-reject:hover, .cookie-reject:focus {
  background: #FFD23F11;
  color: #FFD23F;
}
.cookie-settings {
  background: #1B3531;
  color: #FFD23F;
  border: 1px solid #FFD23F;
}
.cookie-settings:hover, .cookie-settings:focus {
  background: #FFD23F11;
  color: #FFD23F;
}
/* COOKIE MODAL */
.cookie-modal-overlay {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(24,30,34,0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
  animation: fadeIn 0.7s;
}
@keyframes fadeIn {
  from {opacity: 0;}
  to {opacity: 1;}
}
.cookie-modal {
  background: #132823;
  color: #E4F3DF;
  border-radius: 18px;
  padding: 36px 30px 30px 30px;
  box-shadow: 0 4px 42px #16534799;
  min-width: 320px;
  max-width: 95vw;
  width: 430px;
  display: flex;
  flex-direction: column;
  gap: 22px;
  animation: modalPop 0.45s cubic-bezier(.77,0,.175,1);
  position: relative;
}
@keyframes modalPop {
  from {transform: scale(0.93); opacity: 0;}
  to {transform: scale(1); opacity: 1;}
}
.cookie-modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  background: none;
  border: none;
  color: #FFD23F;
  font-size: 1.7rem;
  cursor: pointer;
  transition: color 0.14s;
}
.cookie-modal-close:hover {
  color: #fffde6;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.08rem;
  margin-bottom: 15px;
}
.cookie-category input[type="checkbox"] {
  accent-color: #FFD23F;
  width: 16px;
  height: 16px;
}
.cookie-category label {
  color: #FFD23F;
  font-weight: 600;
  margin-bottom: 0;
}
.cookie-category .always-on {
  color: #9AD78A;
  font-size: 0.98rem;
  font-weight: bold;
  margin-left: 6px;
}
.cookie-modal-actions {
  display: flex;
  gap: 14px;
  justify-content: flex-end;
  margin-top: 8px;
}

/* ===============
   SPACING PATTERNS & FLEX LAYOUTS
   =============== */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.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;
}

/* ===================
   RESPONSIVE DESIGN
   =================== */
@media (max-width: 1100px) {
  .header .container, .container {
    max-width: 96vw;
  }
  .service-grid {
    justify-content: center;
  }
}
@media (max-width: 980px) {
  .main-nav {
    gap: 16px;
  }
}
@media (max-width: 900px) {
  .service-card {
    max-width: 100%;
    min-width: 180px;
  }
  .service-grid {
    gap: 20px;
  }
}
@media (max-width: 768px) {
  .container {
    padding-left: 10px;
    padding-right: 10px;
  }

  .main-nav {
    display: none;
  }
  .cta-button {
    margin-left: 3px;
    padding-left: 24px;
    padding-right: 24px;
    font-size: 1rem;
  }
  .mobile-menu-toggle {
    display: inline-block;
  }
  .hero-section {
    padding: 48px 0 32px 0;
    min-height: 210px;
    border-radius: 0 0 28px 28px;
  }
  .hero-section h1 {
    font-size: 1.55rem;
  }
  .hero-section p {
    font-size: 1rem;
    margin-bottom: 18px;
  }
  
  .content-wrapper {
    gap: 16px;
  }
  .section {
    margin-bottom: 36px;
    padding: 22px 8px;
  }
  .features-section, .services-section, .about-section, .contact-section {
    border-radius: 13px;
    margin-bottom: 38px;
    padding: 15px 4px;
  }
  .service-grid {
    flex-direction: column;
    gap: 14px;
  }
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }
  .about-section ul, .about-section ol {
    margin-bottom: 8px;
    padding-left: 18px;
  }
  .card-container, .content-grid {
    flex-direction: column;
    gap: 12px;
  }
  .testimonial-card {
    padding: 14px;
    border-radius: 11px;
    gap: 12px;
    font-size: 0.99rem;
  }
  .footer-nav {
    gap: 18px;
    flex-direction: column;
    margin-bottom: 10px;
  }
}
@media (max-width: 500px) {
  h1 {
    font-size: 1.22rem;
  }
  h2 {
    font-size: 1.07rem;
  }
  .cookie-modal {
    min-width: 80vw;
    padding: 20px 7px 22px 7px;
    border-radius: 10px;
  }
  .cookie-consent-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 13px;
    padding: 15px 8px;
    font-size: 0.96rem;
  }
  .card {
    border-radius: 9px;
  }
}

/* =====================
   SCROLLBAR STYLES
   ===================== */
::-webkit-scrollbar {
  width: 9px;
  background: #132823;
}
::-webkit-scrollbar-thumb {
  background: #165347;
  border-radius: 10px;
}

/* ====================
   ANIMATIONS & EFFECTS
   ==================== */
a, .cta-button, .service-card, .card, .testimonial-card, .main-nav a, .footer-nav a {
  transition: color 0.18s, background 0.19s, box-shadow 0.22s, border-bottom 0.15s, transform 0.17s;
}
/* Neon glow for futuristic feel */
.cta-button, .service-card:hover, .footer-nav a:hover, .main-nav a:focus, .cookie-accept, .mobile-nav a:hover {
  box-shadow: 0 0 8px #FFD23F66, 0 0 2px #FFD23F77;
}
::selection {
  background: #FFD23F66;
  color: #165347;
}

/* =======================
   BRAND FONT FACE (LOAD)
   ======================= */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@600;700&family=Roboto:wght@400;500;700&display=swap');

body, input, button, select, textarea {
  font-family: 'Roboto', Arial, sans-serif;
}
h1, h2, h3, h4, h5, h6, .cta-button, .main-nav a, .footer-nav a, .mobile-nav a {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
}

/* END OF STYLE.CSS */
