/* === CSS RESET & NORMALIZE (mobile first) === */
html {
  box-sizing: border-box;
  font-size: 16px;
  scroll-behavior: smooth;
}
*, *:before, *:after {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
}
body {
  min-height: 100vh;
  background: #171B23;
  color: #F6F3EB;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  line-height: 1.625;
  -webkit-font-smoothing: antialiased;
}
img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
  height: auto;
}
a {
  color: #BE8A36;
  text-decoration: none;
  transition: color 0.2s;
}
a:active, a:focus {
  outline: 2px solid #BE8A36;
  outline-offset: 2px;
}
a:hover {
  color: #fff6e2;
}
ul, ol {
  padding-left: 1.5rem;
}
table {
  border-collapse: collapse;
  width: 100%;
  margin: 24px 0;
  background: rgba(32,65,39,0.3);
  border-radius: 12px;
  overflow: hidden;
}
th, td {
  padding: 16px 12px;
  border-bottom: 1px solid #294f35;
}
th {
  background: #204127;
  color: #BE8A36;
  letter-spacing: 1px;
  text-align: left;
}
td {
  color: #F6F3EB;
}
strong, b {
  font-weight: 700;
  color: #BE8A36;
}
/* === BRAND COLOR VARIABLES === */
:root {
  --color-primary: #204127;
  --color-secondary: #F6F3EB;
  --color-secondary-dark: #171B23;
  --color-accent: #BE8A36;
  --color-accent-bright: #FFD580;
  --color-black: #171B23;
  --color-white: #fff;
  --color-gray: #384552;
  --color-focus: #00FFFF;
  --shadow-base: 0 4px 32px rgba(32, 65, 39, 0.10), 0 1.5px 3px rgba(25, 76, 47, 0.08);
}

/* === TYPOGRAPHY === */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Merriweather', Georgia, serif;
  font-weight: 700;
  color: #BE8A36;
  margin-bottom: 18px;
  line-height: 1.15;
  letter-spacing: 0.01em;
}
h1 { font-size: 2.4rem; margin-bottom: 24px; }
h2 { font-size: 1.8rem; margin-bottom: 18px; }
h3 { font-size: 1.4rem; margin-bottom: 12px; }
h4 { font-size: 1.1rem; margin-bottom: 10px; }
.text-section h2 {
  color: #BE8A36;
}

p, li, td, th {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  color: #F6F3EB;
}
p { margin-bottom: 18px; }
.small, .note {
  font-size: 0.95rem;
  color: #C5BDAF;
}

/* === CONTAINER & LAYOUT === */
.container {
  max-width: 1140px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
  width: 100%;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.content-wrapper {
  margin-bottom: 0;
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.card-container, .card-grid, .feature-grid, .service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 20px;
}
.card {
  background: #212D24;
  border-radius: 18px;
  box-shadow: var(--shadow-base);
  padding: 28px 20px;
  position: relative;
  margin-bottom: 20px;
  flex: 1 1 320px;
  min-width: 220px;
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
}
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}

.text-section {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* === NAVIGATION HEADER (DESKTOP) === */
header {
  width: 100%;
  background: #171B23;
  box-shadow: 0 3px 15px 0 rgba(32, 65, 39, 0.14);
  position: relative;
  z-index: 20;
}
.nav-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 16px 0;
}
.nav-bar img {
  height: 44px;
  filter: drop-shadow(0 0 4px #0ff8  );
}
.nav-bar nav {
  display: flex;
  gap: 24px;
  align-items: center;
}
.nav-bar nav a {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 0.97rem;
  color: #F6F3EB;
  padding: 8px 10px;
  border-radius: 6px;
  transition: background 0.2s, color 0.2s, box-shadow .2s;
  position: relative;
}
.nav-bar nav a:hover, .nav-bar nav a.active {
  background: #204127;
  color: #BE8A36;
}
.cta-primary {
  background: linear-gradient(90deg,#BE8A36 60%,#FFD580);
  box-shadow: 0 2px 12px 0 #BE8A3660;
  color: #171B23;
  font-weight: 700;
  padding: 12px 23px;
  border: none;
  border-radius: 32px;
  font-size: 1.05rem;
  cursor: pointer;
  margin-left: 18px;
  transition: background 0.22s, color 0.18s, box-shadow .22s,transform 0.18s;
  letter-spacing: 1px;
  text-shadow: 0 0 4px #ffe6b986;
}
.cta-primary:focus {
  outline: 2px solid #00FFFF;
  outline-offset: 3px;
}
.cta-primary:hover {
  background: #1ba888;
  color: #fff;
  transform: translateY(-1px) scale(1.03);
  box-shadow: 0 3px 30px 0 #00FFF880;
  text-shadow: 0 0 6px #00FFF9;
}

/* === HERO === */
.hero {
  background: linear-gradient(130deg, #1a2d18 45%, #294f35 77%, #222839 100%); 
  min-height: 340px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  box-shadow: 0 8px 24px 0 #0006;
  margin-bottom: 40px;
}
.hero .content-wrapper {
  align-items: flex-start;
  gap: 18px;
}
.hero h1 {
  color: #FFD580;
  text-shadow: 0 6px 22px #20412760,0 1.5px 2px #A37100bb;
  font-size: 2.7rem;
}
.hero p {
  font-size: 1.2rem;
  color: #d9c194;
  margin-bottom: 14px;
}

/* === FEATURES, SERVICES === */
.feature-grid, .service-list {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-top: 24px;
  margin-bottom: 0;
}
.feature-grid > div, .service-list > div {
  background: #212D24;
  border-radius: 19px;
  padding: 28px 22px 23px 22px;
  box-shadow: 0 4px 32px #18432022;
  flex: 1 1 210px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: box-shadow 0.22s, transform 0.19s;
  min-width: 210px;
  max-width: 320px;
  gap: 9px;
}
.feature-grid > div:hover, .service-list > div:hover {
  box-shadow: 0 8px 36px 2px #00FFF933, 0 2px 12px 0 #BE8A3620;
  transform: translateY(-3px) scale(1.025);
}
.feature-grid img, .service-list img {
  height: 48px;
  width: 48px;
  margin-bottom: 4px;
  filter: drop-shadow(0 0 16px #00FFF660);
}
.feature-grid h3, .service-list h2 {
  color: #FFD580;
  font-size: 1.25rem;
  font-family: 'Merriweather', Georgia, serif;
  margin-bottom: 6px;
}
.feature-grid p, .service-list p {
  font-size: 1rem;
  color: #F6F3EB;
}

/* === TESTIMONIALS === */
.testimonial-card {
  background: #fff;
  color: #171B23;
  border-radius: 20px;
  box-shadow: 0 6px 34px 0 #20412726, 0 1.5px 7px #20412719;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 20px 24px;
  margin-bottom: 28px;
  min-width: 220px;
  max-width: 640px;
  width: 100%;
  transition: box-shadow .16s, transform .16s;
}
.testimonial-card:hover {
  box-shadow: 0 12px 42px 0 #00FFF933, 0 6px 20px #BE8A3628;
  transform: scale(1.021) translateY(-2px);
}
.testimonial-card p {
  color: #27281D;
  font-size: 1.13rem;
  margin-bottom: 0;
  font-style: italic;
}
.testimonial-card strong {
  color: #204127;
}
.stars {
  color: #FDB834;
  font-size: 1.2em;
  padding-left: 6px;
  letter-spacing: 1.2px;
  filter: drop-shadow(0px 0px 8px #a05d00cc);
}

/* === FOOTER === */
footer {
  background: #181E21;
  padding: 32px 0 24px 0;
  font-size: 1rem;
}
footer .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}
footer img {
  height: 36px;
  margin-bottom: 6px;
  filter: drop-shadow(0 0 7px #00fff9a9);
}
footer nav {
  color: #BE8A36;
  font-size: 1rem;
  display: flex;
  flex-direction: row;
  gap: 12px;
}
footer nav a {
  color: #FFD580;
  font-weight: 400;
  margin: 0 4px;
  opacity: 0.87;
  transition: color 0.2s, opacity .16s;
}
footer nav a:hover {
  color: #00FFF9;
  opacity: 1;
}
footer p {
  color:#F6F3EB;
  opacity: .79;
  font-size: 0.96em;
}

/* === MAP PLACEHOLDER === */
.map-placeholder {
  background: #2f3542;
  border-radius: 14px;
  border: 1.5px dashed #BE8A3690;
  padding: 18px 16px;
  margin-top: 24px;
  display: flex;
  align-items: center;
  gap: 18px;
  color: #FFD580;
  font-size: 1rem;
}

/* === RESPONSIVE FLEX LAYOUTS (MOBILE FIRST) === */
@media (max-width: 1100px) {
  .container { max-width: 98vw; }
}
@media (max-width: 900px) {
  .feature-grid, .service-list {
    flex-direction: column;
    align-items: stretch;
    gap: 24px;
  }
}
@media (max-width: 768px) {
  .nav-bar nav { display: none; }
  .cta-primary { margin-left: 0; }
  .hero h1 { font-size: 2rem; }
  h1 { font-size: 1.55rem; }
  h2 { font-size: 1.26rem; }
  .feature-grid, .service-list, .card-grid {
    flex-direction: column;
    gap: 18px;
    align-items: stretch;
  }
  .testimonial-card { padding: 16px 10px; max-width: 98vw; }
  .text-image-section { flex-direction: column; gap: 16px; }
  .map-placeholder { flex-direction: column; gap: 8px; }
  .nav-bar { flex-direction: row; }
}

/* === FLEX GAP/ALIGNMENT HELPERS === */
.gap-16 { gap: 16px; }
.gap-24 { gap: 24px; }
.gap-32 { gap: 32px; }
.items-center { align-items: center; }
.justify-start { justify-content: flex-start; }
.justify-center { justify-content: center; }
.w-full { width: 100%; }

/* === BUTTONS & INTERACTIVE ELEMENTS === */
button, .cta-primary, .mobile-menu-close, .mobile-menu-toggle {
  font-family: 'Roboto', Arial, sans-serif;
  border: none;
  cursor: pointer;
  outline: none;
}
button:focus, .mobile-menu-close:focus, .mobile-menu-toggle:focus {
  outline: 2px solid #00FFFF;
  outline-offset: 2px;
}

/* === MOBILE MENU === */
.mobile-menu-toggle {
  position: absolute;
  right: 22px;
  top: 23px;
  display: none;
  z-index: 101;
  background: #212D24;
  border-radius: 8px;
  border: 1px solid #BE8A36;
  width: 44px;
  height: 44px;
  font-size: 2rem;
  color: #FFD580;
  align-items: center;
  justify-content: center;
  transition: background 0.18s,border .14s,box-shadow .17s, color 0.18s;
}
.mobile-menu-toggle:hover {
  background: #00FFF9;
  color: #171B23;
  border-color: #00FFF9;
}
.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(23, 27, 35, 0.97);
  box-shadow: 0 9px 42px #20412733;
  z-index: 200;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  transform: translateX(-100vw);
  transition: transform .38s cubic-bezier(.78,.09,.23,.93);
  opacity: 1;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: transparent;
  color: #FFD580;
  font-size: 2.2rem;
  position: absolute;
  top: 27px;
  right: 26px;
  border: none;
  z-index: 220;
  width: 42px; height: 42px;
  line-height: 1;
  border-radius: 5px;
  transition: background 0.17s;
}
.mobile-menu-close:hover {
  background: #BE8A36;
  color: #181E21;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  margin-top: 95px;
  gap: 12px;
  align-items: center;
}
.mobile-nav a {
  padding: 13px 12px;
  color: #fff;
  font-size: 1.21rem;
  border-radius: 6px;
  font-family: 'Roboto', Arial, sans-serif;
  width: 84vw;
  text-align: center;
  margin: 0 auto;
  background: transparent;
  transition: background 0.18s, color 0.18s, box-shadow .17s;
}
.mobile-nav a:hover {
  background: #00FFF922;
  color: #00FFF9;
  box-shadow: 0 2px 16px #00FFF911;
}

@media (max-width: 980px) {
  .mobile-menu-toggle { display: flex; }
  .nav-bar nav { display: none; }
  .cta-primary { margin-left: 0; }
}
@media (min-width: 981px) {
  .mobile-menu,
  .mobile-menu-toggle,
  .mobile-menu-close { display: none !important; }
  .nav-bar nav { display: flex !important; }
}

/* === COOKIE BANNER === */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0; right: 0;
  width: 100vw;
  background: #171B23;
  color: #FFD580;
  border-top: 2.5px solid #00FFF9;
  box-shadow: 0 -2px 28px #20412733;
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 9001;
  padding: 24px 12px 18px 12px;
  font-size: 1.07rem;
  gap: 14px;
  transition: transform .32s cubic-bezier(.67,.19,.24,.9), opacity .16s;
}
.cookie-banner.hide {
  transform: translateY(220px);
  opacity: 0;
  pointer-events: none;
}
.cookie-banner .cookie-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
}
.cookie-banner button {
  background: linear-gradient(89deg,#00FFF9 36%, #BE8A36 80%);
  color: #171B23;
  font-weight: 700;
  border-radius: 999px;
  padding: 8px 18px;
  border: none;
  font-size: 1rem;
  margin-bottom: 4px;
  box-shadow: 0 1.5px 13px #00FFF911;
  transition: background 0.17s, color 0.18s, box-shadow .17s, transform .16s;
}
.cookie-banner button:hover {
  background: #904200;
  color: #fff;
  transform: scale(1.03);
}
.cookie-banner .cookie-settings-btn {
  background: #212D24;
  color: #FFD580;
  border: 1px solid #BE8A36;
}
.cookie-banner .cookie-settings-btn:hover {
  background: #BE8A36;
  color: #171B23;
}

/* === COOKIE MODAL === */
.cookie-modal-backdrop {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100vw; height: 100vh;
  background: rgba(32, 65, 39, 0.93);
  z-index: 9100;
  display: none;
  align-items: center;
  justify-content: center;
}
.cookie-modal-backdrop.active {
  display: flex;
  animation: fadeIn .3s;
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
.cookie-modal {
  background: #181e21;
  color: #FFD580;
  max-width: 480px;
  width: 90vw;
  border-radius: 21px;
  padding: 38px 22px 28px 22px;
  box-shadow: 0 9px 42px #20412790;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 22px;
  z-index: 9300;
  opacity: 1;
  animation: slideUp .26s;
}
@keyframes slideUp {
  from { transform: translateY(80px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.cookie-modal h2 {
  color: #00FFF9;
  font-size: 1.26rem;
}
.cookie-modal-close {
  position: absolute;
  top: 17px;
  right: 20px;
  background: transparent;
  color: #FFD580;
  font-size: 1.82rem;
  border: none;
  border-radius: 50%;
  width: 36px; height: 36px;
  cursor: pointer;
  transition: background 0.14s, color 0.14s;
}
.cookie-modal-close:hover { background: #00FFF9; color: #181e21; }
.cookie-category {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin: 12px 0;
  border-bottom: 1px solid #294f3560;
  padding-bottom: 8px;
}
.cookie-category label {
  font-size: 1.08rem;
  color: #FFD580;
}
.cookie-category input[type='checkbox'] {
  appearance: none;
  background: #212D24;
  border: 2px solid #00FFF9;
  width: 28px;
  height: 28px;
  border-radius: 7px;
  position: relative;
  cursor: pointer;
  outline: none;
  margin-left: 0;
  transition: background 0.12s, border .12s;
}
.cookie-category input[type='checkbox']:checked {
  background: #00FFF9;
  border-color: #BE8A36;
}
.cookie-category input[type='checkbox']:checked:before {
  content: '';
  position: absolute; left: 7px; top: 7px;
  width: 13px; height: 13px;
  background: #204127;
  border-radius: 2.5px;
}
.cookie-category input[type='checkbox'][disabled] {
  opacity: 0.6;
  cursor: not-allowed;
}
.cookie-save-btn {
  background: linear-gradient(89deg,#00FFF9 16%, #BE8A36 80%);
  color: #181e21;
  font-weight: 700;
  border-radius: 999px;
  padding: 8px 20px;
  font-size: 1.11rem;
  margin-top: 18px;
  border:none;
  float:right;
  align-self: flex-end;
  box-shadow: 0 1.5px 13px #00FFF911;
  transition: background 0.19s, color 0.18s, box-shadow .17s, transform .151s;
}
.cookie-save-btn:hover {
  background: #BE8A36;
  color: #fff;
  transform: scale(1.03);
}

/* === LIST STYLES WITH NEON BULLET === */
ul li {
  margin-bottom: 12px;
  position: relative;
  padding-left: 24px;
  color: #F6F3EB;
}
ul li:before {
  content: '';
  position: absolute; left: 0; top: 12px;
  width: 8px; height: 8px;
  border-radius: 99px;
  background: #00fff9dd;
  box-shadow: 0 2px 12px #00fff991;
  display: inline-block;
  transform: translateY(-50%);
}
.text-section ul li img {
  width: 22px; height: 22px;
  margin-right: 10px;
  vertical-align: middle;
  filter: drop-shadow(0 0 6px #00FFF694);
}

/* === ACCENT LINES, NEON DECOR === */
h2, h3, h4 {
  position: relative;
}
h2:after, h3:after {
  content: '';
  display: block;
  margin-top: 6px;
  width: 46px;
  height: 3px;
  background: linear-gradient(90deg,#00FFF9 0%, #BE8A36 88%);
  border-radius: 2px;
  box-shadow: 0px 2px 16px #00fff940;
}
/* Do not apply on footer/nav etc */
footer h2:after, footer h3:after { display: none; }

/* === INTERACTIVE & EFFECTS === */
button, .cta-primary {
  transition: background 0.19s, color 0.18s, box-shadow .17s, transform .15s;
}
button:active, .cta-primary:active {
  transform: scale(0.97);
}
.card, .testimonial-card, .feature-grid > div, .service-list > div {
  transition: box-shadow 0.22s, transform 0.19s;
}
.card:hover, .service-list > div:hover, .feature-grid > div:hover {
  box-shadow: 0 7px 34px #00fff933;
  transform: translateY(-3px) scale(1.024);
}

/* === CUSTOM SCROLLBAR === */
::-webkit-scrollbar {
  width: 10px;
  background: #171B23;
}
::-webkit-scrollbar-thumb {
  background: #204127;
  border-radius: 6px;
  box-shadow: 0 2px 10px #004b36bb;
}

/* === SELECTION === */
::selection {
  background: #00FFF961;
  color: #171B23;
}

/* === OVERLAYS/Z-INDEX SAFETY === */
header, .mobile-menu, .cookie-banner, .cookie-modal-backdrop, .cookie-modal {
  z-index: 900 !important;
}

/* === END === */
