/* =======================================================
   CSS RESET & NORMALIZATION
   ======================================================= */
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;
}
html {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}
body {
  min-height: 100vh;
  background: #202730;
  color: #E6ECE8;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  letter-spacing: 0.02em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
*, *:before, *:after {
  box-sizing: inherit;
}
img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
  height: auto;
}
input, button, textarea, select {
  font: inherit;
}
a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s cubic-bezier(.4,0,.2,1);
}
ul, ol {
  list-style: none;
}
button {
  border: none;
  background: none;
  cursor: pointer;
}

/* ==============
   BRAND COLORS
   ============== */
:root {
  --primary: #28313A;
  --secondary: #E6ECE8;
  --secondary-dark: #B8BFC4;
  --accent: #94703A;
  --accent-neon: #FFD75A;
  --dark-bg: #202730;
  --card-bg: #273040;
  --shadow: rgba(38, 58, 96, 0.15);
  --header-glow: 0 0 14px 0 #FFD75A80;
  --font-display: 'Montserrat', Arial, Helvetica, sans-serif;
  --font-body: 'Roboto', Arial, Helvetica, sans-serif;
}

/* ===========================================
   LAYOUT BASICS & CONTAINER
   =========================================== */
.container {
  max-width: 1140px;
  width: 100%;
  margin: 0 auto;
  padding-left: 18px;
  padding-right: 18px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* =============================
   TYPOGRAPHY
   ============================= */
h1,
h2,
h3,
h4,
h5 {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 0.01em;
  line-height: 1.15;
  color: #FFD75A;
  margin-bottom: 16px;
}
h1 {
  font-size: 36px;
  text-shadow: 0 0 6px var(--accent-neon), 0 2px 32px #0002;
}
h2 {
  font-size: 28px;
  color: var(--accent);
}
h3 {
  font-size: 21px;
  color: var(--secondary);
  margin-bottom: 14px;
  font-weight: 600;
}
h4, h5 {
  font-size: 18px;
}
p,
li,
span,
ul, ol, label {
  font-family: var(--font-body);
  color: var(--secondary);
  font-size: 16px;
  line-height: 1.65;
  margin-bottom: 8px;
}
strong {
  color: var(--accent);
  font-weight: 700;
}
.text-section h3,
.content-wrapper h3,
.content-wrapper h2 {
  margin-top: 0;
}

/* ===============================================
   HEADER & NAVIGATION (Desktop)
   =============================================== */
header {
  width: 100%;
  background: #232833;
  box-shadow: 0 8px 24px -8px #13172288;
  z-index: 20;
  position: relative;
}
header .container {
  height: 70px;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
header a img {
  height: 40px;
  width: auto;
  margin-right: 24px;
}
header nav {
  display: flex;
  flex-direction: row;
  gap: 24px;
  align-items: center;
}
header nav a {
  font-family: var(--font-display);
  color: var(--secondary);
  font-size: 15px;
  letter-spacing: 0.03em;
  opacity: 0.88;
  transition: color 0.2s, text-shadow 0.2s;
  padding: 4px 10px;
  border-radius: 6px;
  position: relative;
}
header nav a:hover, header nav a:focus {
  color: var(--accent-neon);
  text-shadow: var(--header-glow);
  background: rgba(255,215,90,0.04);
  outline: none;
}
.cta-button {
  font-family: var(--font-display);
  background: linear-gradient(96deg, var(--accent-neon) 58%, var(--accent) 100%);
  color: #202730;
  font-weight: bold;
  font-size: 16px;
  letter-spacing: 0.06em;
  border-radius: 999px;
  box-shadow: 0 2px 18px -2px #FFD75A88, 0 2px 6px #28313A44;
  padding: 12px 28px;
  margin-left: 12px;
  outline: none;
  border: none;
  cursor: pointer;
  transition: transform 0.17s cubic-bezier(.4,0,.2,1), background 0.22s cubic-bezier(.4,0,.2,1), box-shadow 0.22s;
  text-shadow: none;
}
.cta-button:hover, .cta-button:focus {
  background: linear-gradient(98deg, #FFD75A 85%, #94703A 100%);
  transform: translateY(-3px) scale(1.045);
  box-shadow: 0 6px 20px -6px #FFD75Aaa, 0 2px 12px #28313A55;
  color: #111;
}

/* ================================================
   MOBILE MENU (Drawer)
   ================================================ */
.mobile-menu-toggle {
  display: none;
  background: none;
  color: var(--accent-neon);
  font-size: 30px;
  padding: 7px 14px;
  border-radius: 7px;
  transition: background 0.2s, color 0.2s;
  z-index: 501;
  outline: none;
  border: none;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: #242E49;
  color: #FFD75A;
}
.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 340px;
  max-width: 95vw;
  height: 100vh;
  background: #222831;
  box-shadow: -8px 0 30px -6px #11191dD0, 0 4px 48px -10px #FFD75A20;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  transform: translateX(105%);
  transition: transform 0.36s cubic-bezier(.68,-0.01,.38,1.02);
  padding: 32px 30px 24px 30px;
  opacity: 0.98;
}
.mobile-menu.active {
  transform: translateX(0);
  box-shadow: -8px 0 40px 0 #FFD75A30, 0 4px 64px -18px #FFD75A18;
}
.mobile-menu-close {
  align-self: flex-end;
  color: var(--accent-neon);
  font-size: 27px;
  background: transparent;
  padding: 8px 14px;
  border-radius: 6px;
  margin-bottom: 12px;
  transition: background 0.2s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #202730;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.mobile-nav a {
  font-family: var(--font-display);
  font-size: 18px;
  letter-spacing: 0.01em;
  color: #FFD75A;
  padding: 12px 2px;
  border-radius: 7px;
  transition: background 0.15s, color 0.17s;
}
.mobile-nav a:hover,
.mobile-nav a:focus {
  background: rgba(255, 215, 90, 0.12);
  color: #94703A;
  outline: none;
}
.mobile-menu {
  visibility: hidden;
  pointer-events: none;
}
.mobile-menu.active {
  visibility: visible;
  pointer-events: auto;
}

@media (max-width: 991px) {
  header nav {
    display: none;
  }
  .cta-button {
    margin-left: 0;
    margin-right: 0;
  }
  .mobile-menu-toggle {
    display: block;
  }
}
@media (min-width: 992px) {
  .mobile-menu {
    display: none !important;
  }
}

/* ========================================
   MAIN LAYOUT, HERO, SECTION
   ======================================== */
main {
  margin-bottom: 60px;
}
.section, main section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: none;
  border-radius: 22px;
  position: relative;
  z-index: 1;
}
.hero {
  background: linear-gradient(100deg, #28313A 82%, #94703A 160%);
  border-radius: 0 0 28px 28px;
  box-shadow: 0 16px 58px -12px #FFD75A10, 0 2px 14px #23283333;
  margin-bottom: 52px;
  padding-top: 56px;
  padding-bottom: 56px;
}
.hero .container {
  align-items: flex-start;
  justify-content: center;
}
.hero h1 {
  color: #FFD75A;
  margin-bottom: 16px;
}
.hero p {
  color: var(--secondary-dark);
  font-size: 19px;
  max-width: 650px;
  margin-bottom: 28px;
}
.cta {
  background: linear-gradient(98deg, #28313A 80%, #94703A 180%);
  border-radius: 19px;
  box-shadow: 0 2px 12px -2px #FFD75A3f;
  margin-top: 30px;
  margin-bottom: 48px;
}
.cta .content-wrapper {
  align-items: center !important;
  text-align: center;
}

/* ========================================
   CONTENT WRAPPER & FLEXBOX RULES
   ======================================== */
.content-wrapper {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: space-between;
  align-items: flex-start;
}
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
.card-container,
.card-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: var(--card-bg);
  border-radius: 14px;
  box-shadow: 0 8px 38px -19px #FFD75A11, 0 2px 10px #28313A22;
  margin-bottom: 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 34px 22px 24px 22px;
  min-width: 250px;
  max-width: 400px;
  flex: 1 1 320px;
  transition: box-shadow 0.21s, transform 0.13s;
}
.card:hover {
  box-shadow: 0 12px 40px -10px #FFD75A37, 0 6px 20px #20273055;
  transform: translateY(-2px) scale(1.022);
}
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: transparent;
  color: var(--secondary);
  margin-bottom: 22px;
}

/* ======================
   FEATURES & LISTS
   ====================== */
.features ul, .services ul, .content-wrapper ul {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 24px;
}
.features li, .services li, .content-wrapper li {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 17px;
  color: var(--secondary-dark);
}
.features li img, .content-wrapper li img {
  width: 32px;
  height: 32px;
  filter: drop-shadow(0 0 6px #FFD75A44);
}
.services ol {
  margin-left: 22px;
  margin-bottom: 22px;
}
.services ol li {
  margin-bottom: 9px;
  position: relative;
}

/* ============
   TESTIMONIALS
   ============ */
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  background: #FFF;
  color: #232833;
  border-radius: 13px;
  box-shadow: 0 4px 20px -5px #FFD75A44, 0 1px 4px #28313A22;
  margin-bottom: 20px;
  max-width: 480px;
  width: 100%;
}
.testimonial-card p {
  color: #27313E;
  font-size: 16px;
  margin-bottom: 6px;
  line-height: 1.65;
}
.testimonial-card span {
  color: var(--accent);
  font-size: 15px;
  font-family: var(--font-display);
  font-weight: 700;
}

/* ===============
   FOOTER
   =============== */
footer {
  background: #232833;
  padding: 38px 0 22px 0;
  margin-top: 60px;
  border-radius: 18px 18px 0 0;
  box-shadow: 0 2px 22px #11161A40 inset;
}
footer .container {
  flex-direction: column;
  gap: 22px;
}
footer nav {
  display: flex;
  flex-direction: row;
  gap: 19px;
  margin-bottom: 8px;
}
footer nav a {
  color: var(--accent-neon);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15px;
  opacity: 0.94;
  padding: 3px 8px;
}
footer nav a:hover, footer nav a:focus {
  background: rgba(255,215,90,0.05);
  color: var(--accent);
  border-radius: 7px;
}
.footer-contact {
  display: flex;
  flex-direction: row;
  gap: 26px;
  align-items: center;
  flex-wrap: wrap;
}
.footer-contact img {
  width: 16px;
  height: 16px;
  margin-right: 6px;
  position: relative;
  top: 2px;
  opacity: 0.9;
}
.footer-contact span {
  color: #B8BFC4;
  font-size: 15px;
  display: flex;
  align-items: center;
  font-family: var(--font-body);
}
.footer-small {
  color: #C2C7CA;
  font-size: 14px;
  margin-top: 12px;
  font-family: var(--font-body);
}

/* ========================
   COOKIE CONSENT BANNER
   ======================== */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;
  background-color: #232833F1;
  color: #FFD75A;
  box-shadow: 0 -4px 22px #FFD75A21;
  z-index: 99999;
  padding: 20px 16px 18px 16px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 24px;
  justify-content: center;
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.4s, transform 0.4s;
  font-size: 16px;
}
.cookie-banner.hide {
  opacity: 0;
  pointer-events: none;
  transform: translateY(120%);
}
.cookie-banner .cookie-text {
  color: #FFD75A;
  max-width: 560px;
  font-size: 15px;
  line-height: 1.5;
}
.cookie-banner .cookie-btns {
  display: flex;
  flex-direction: row;
  gap: 16px;
}
.cookie-banner .cookie-btn {
  font-family: var(--font-display);
  font-size: 15px;
  border-radius: 999px;
  background: var(--accent-neon);
  color: #232833;
  border: none;
  padding: 9px 22px;
  margin: 0;
  min-width: 120px;
  font-weight: bold;
  outline: none;
  box-shadow: 0 2px 18px -3px #FFD75A99;
  cursor: pointer;
  transition: background 0.2s, color 0.17s, transform 0.14s;
}
.cookie-banner .cookie-btn.settings {
  background: transparent;
  color: var(--accent-neon);
  border: 1.5px solid var(--accent-neon);
}
.cookie-banner .cookie-btn:hover, .cookie-banner .cookie-btn:focus {
  background: #94703A;
  color: #FFD75A;
  transform: translateY(-1px);
}
.cookie-banner .cookie-btn.settings:hover, .cookie-banner .cookie-btn.settings:focus {
  background: #FFD75A22;
  color: #94703A;
}

/* Cookie Preferences Modal */
.cookie-modal {
  position: fixed;
  left: 50%;
  top: 50%;
  width: 96vw;
  max-width: 410px;
  background: #222831F6;
  box-shadow: 0 12px 70px -18px #FFD75A33, 0 1px 12px #23283388;
  border-radius: 17px;
  transform: translate(-50%, -50%) scale(1.0);
  z-index: 100040;
  padding: 32px 34px 24px 34px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  opacity: 1;
  transition: opacity 0.25s, transform 0.22s;
  color: #FFD75A;
}
.cookie-modal.hide {
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -40%) scale(0.96);
}
.cookie-modal h3 {
  color: #FFD75A;
  margin-bottom: 13px;
  font-size: 20px;
}
.cookie-modal label {
  font-size: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #FFD75A;
  margin-bottom: 10px;
  font-family: var(--font-body);
}
.cookie-switch {
  appearance: none;
  width: 38px;
  height: 21px;
  background: #202730;
  border-radius: 13px;
  position: relative;
  outline: none;
  transition: background 0.19s;
  box-shadow: 0 2px 11px #FFD75A18;
  margin-left: 7px;
}
.cookie-switch:checked {
  background: #FFD75Aaa;
}
.cookie-switch::before {
  content: '';
  display: block;
  position: absolute;
  width: 17px;
  height: 17px;
  background: #FFD75A;
  border-radius: 50%;
  left: 2px;
  top: 2px;
  transition: left 0.20s;
}
.cookie-switch:checked::before {
  left: 19px;
  background: #94703A;
}
.cookie-modal .cookie-buttons {
  display: flex;
  flex-direction: row;
  gap: 16px;
  margin-top: 18px;
}
.cookie-modal .cookie-btn {
  font-size: 15px;
  font-family: var(--font-display);
  background: var(--accent-neon);
  color: #232833;
  border-radius: 999px;
  border: none;
  padding: 9px 22px;
  font-weight: bold;
  min-width: 106px;
  margin: 0;
  outline: none;
  box-shadow: 0 2px 12px -3px #FFD75A66;
  cursor: pointer;
  transition: background 0.15s, color 0.15s, transform 0.12s;
}
.cookie-modal .cookie-btn:hover, .cookie-modal .cookie-btn:focus {
  background: #94703A;
  color: #FFD75A;
  transform: translateY(-1px);
}
.cookie-modal .cookie-close {
  position: absolute;
  top: 10px;
  right: 17px;
  color: #FFD75A;
  background: none;
  font-size: 22px;
  padding: 2px 7px;
  border-radius: 19px;
  border: none;
  opacity: 0.82;
  cursor: pointer;
}
.cookie-modal .cookie-close:hover, .cookie-modal .cookie-close:focus {
  background: #202730;
  opacity: 1;
}

/* =====================
   MISC, FORMS, HELP
   ===================== */
.text-section {
  display: flex;
  flex-direction: column;
  gap: 13px;
}

/* =====================
   UTILITIES
   ===================== */
.hide-mobile {
  display: block;
}
@media (max-width: 767px) {
  .hide-mobile {
    display: none !important;
  }
}

/* ================
   MEDIA QUERIES
   ================ */
@media (max-width: 1100px) {
  .container {
    max-width: 95vw;
    padding-left: 10px;
    padding-right: 10px;
  }
}
@media (max-width: 991px) {
  .hero .container {
    align-items: flex-start;
  }
  .footer-contact {
    flex-wrap: wrap;
    flex-direction: column;
    gap: 14px;
  }
  .footer-contact span {
    font-size: 14px;
  }
}
@media (max-width: 850px) {
  .content-wrapper,
  .text-image-section,
  .footer-contact {
    flex-direction: column;
    align-items: flex-start !important;
    gap: 18px;
  }
  .section, main section {
    padding: 24px 8px;
  }
  .card {
    min-width: 180px;
    padding: 19px 10px;
  }
}
@media (max-width: 768px) {
  .content-wrapper,
  .text-image-section,
  .card-container,
  .content-grid,
  .footer-contact {
    flex-direction: column;
    gap: 17px;
    align-items: stretch;
  }
  .section, main section {
    margin-bottom: 40px;
    padding: 15px 3vw;
    border-radius: 12px;
  }
  .hero {
    border-radius: 0 0 17px 17px;
    padding-top: 34px;
    padding-bottom: 38px;
  }
  h1 { font-size: 27px; }
  h2 { font-size: 20px; }
  .cta, .hero {
    margin-bottom: 30px;
  }  
}
@media (max-width: 600px) {
  .hero h1, .hero p {
    max-width: 98vw;
    font-size: 18.5px;
  }
  .container {
    padding-left: 0;
    padding-right: 0;
  }
  .cta-button,
  .cookie-modal .cookie-btn {
    font-size: 15px;
    padding: 10px 12px;
    min-width: 80px;
  }
  .cookie-banner .cookie-btn {
    min-width: 80px;
    padding: 7px 10px;
    font-size: 14px;
  }
}
@media (max-width: 440px) {
  .cookie-modal {
    padding: 12px 3vw 16px 3vw;
  }
  .hero h1 {
    font-size: 17.7px;
  }
}
/* === END === */
