/* === CSS RESET & NORMALIZE (modern, minimal) === */
html {
  box-sizing: border-box;
  font-size: 16px;
  scroll-behavior: smooth;
}
*, *::before, *::after {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
}
body {
  font-family: 'Roboto', Arial, sans-serif;
  color: #162050;
  background: #F3F3F7;
  min-height: 100vh;
  line-height: 1.6;
  letter-spacing: 0.02em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img {
  max-width: 100%;
  display: block;
  height: auto;
}
a {
  color: #162050;
  text-decoration: none;
  transition: color 0.2s;
}
ul, ol {
  padding-left: 24px;
  margin-bottom: 16px;
}
li { margin-bottom: 10px; }

/* === FONTS === */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', 'Georgia', serif;
  font-weight: 700;
  margin-bottom: 16px;
  letter-spacing: 0.01em;
  color: #162050;
}
h1 {
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 16px;
}
h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 14px;
}
h3 {
  font-size: 1.375rem;
  margin-bottom: 12px;
}
p, li, label, span, em {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  color: #162050;
}
strong {
  font-weight: bold;
  color: #E5AC38;
}
em {
  color: #162050;
}

/* === GENERAL CONTAINER & WRAPPER === */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 16px;
  padding-right: 16px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 28px;
  box-shadow: 0 4px 20px rgba(22,32,80,0.09);
  position: relative;
}
.text-section {
  align-items: center;
  text-align: center;
  margin-bottom: 0;
  background: none;
  box-shadow: none;
  border-radius: 0;
}

/* === NAVIGATION === */
header {
  width: 100%;
  background: #fff;
  position: sticky;
  top: 0;
  z-index: 30;
  box-shadow: 0 2px 10px rgba(22,32,80,0.08);
}
.main-nav {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 28px;
  padding: 0 20px;
  height: 74px;
}
.main-nav a {
  font-family: 'Roboto', Arial, sans-serif;
  font-weight: 500;
  color: #162050;
  font-size: 1.05rem;
  padding: 8px 12px;
  border-radius: 8px;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
}
.main-nav a.cta-btn {
  background: #E5AC38;
  color: #fff;
  font-weight: bold;
  border-radius: 120px;
  padding: 8px 26px;
  margin-left: 16px;
  letter-spacing: 0.04em;
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  box-shadow: 0 2px 8px rgba(229,172,56,0.10);
  border: none;
  transition: background 0.25s, color 0.25s, box-shadow 0.25s;
}
.main-nav a:hover, .main-nav a:focus {
  background: #E5AC38;
  color: #fff;
}
.main-nav a.cta-btn:hover, .main-nav a.cta-btn:focus {
  background: #162050;
  color: #E5AC38;
  box-shadow: 0 4px 16px rgba(22,32,80,0.11);
}
.main-nav img {
  height: 38px;
  margin-right: 14px;
}

/* === BURGER MENU MOBILE === */
.mobile-menu-toggle {
  display: none;
  background: #E5AC38;
  color: #fff;
  border: none;
  font-size: 2rem;
  border-radius: 50%;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 14px;
  right: 16px;
  z-index: 50;
  box-shadow: 0 2px 8px rgba(22,32,80,0.05);
  cursor: pointer;
  transition: background 0.2s;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: #162050;
  color: #E5AC38;
}

.mobile-menu {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100vw;
  background: #162050;
  z-index: 200;
  transform: translateX(100vw);
  transition: transform 0.4s cubic-bezier(0.84,0,0.16,1);
  box-shadow: 0 0 0 9999px rgba(22,32,80,0.35);
  padding-left: 0;
  overscroll-behavior: contain;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: none;
  border: none;
  color: #fff;
  font-size: 2rem;
  margin-top: 14px;
  margin-left: auto;
  margin-right: 24px;
  cursor: pointer;
  border-radius: 50%;
  width: 42px; height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.25s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #E5AC38;
  color: #162050;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100vw;
  padding: 40px 32px 0 36px;
}
.mobile-nav a {
  color: #fff;
  font-size: 1.25rem;
  font-family: 'Roboto', Arial, sans-serif;
  font-weight: bold;
  padding: 14px 8px;
  border-radius: 14px;
  background: none;
  transition: background 0.25s, color 0.25s;
  letter-spacing: 0.03em;
  margin-right: 20px;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #E5AC38;
  color: #162050;
}

/* --- HIDE MAIN NAV ON MOBILE --- */
@media (max-width: 950px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
}
@media (min-width: 951px) {
  .mobile-menu,
  .mobile-menu-toggle {
    display: none !important;
  }
}

/* === HERO, SECTION, LAYOUTS === */
section {
  margin-bottom: 60px;
  padding: 0;
  background: transparent;
  border-radius: 0;
  box-shadow: none;
}
.section {
  background: #fff;
  margin-bottom: 60px;
  padding: 40px 20px;
  border-radius: 28px;
  box-shadow: 0 4px 20px rgba(22,32,80,0.08);
  position: relative;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
  flex-direction: row;
}
@media (max-width: 768px){
  .content-wrapper { gap: 18px; }
  .section { padding: 28px 8px; }
  .container { padding-left: 8px; padding-right: 8px; }
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }
}

/* === FEATURES CARDS === */
.features-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}
.feature {
  background: #162050;
  color: #fff;
  border-radius: 18px;
  padding: 28px 24px;
  flex: 1 1 230px;
  min-width: 220px;
  max-width: 310px;
  box-shadow: 0 4px 18px rgba(22,32,80,0.14);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
  position: relative;
  transition: transform 0.18s, box-shadow 0.18s;
}
.feature img {
  width: 38px;
  margin-bottom: 6px;
  filter: drop-shadow(0 2px 6px #E5AC38AA);
}
.feature h3 {
  color: #E5AC38;
}
.feature p {
  color: #fff;
  line-height: 1.5;
}
.feature:hover, .feature:focus-within {
  transform: translateY(-6px) scale(1.04) rotate(-1deg);
  box-shadow: 0 6px 28px rgba(229,172,56,0.26);
  background: #192B6B;
}

/* === CTA BUTTON === */
.cta-btn {
  display: inline-block;
  background: #E5AC38;
  color: #fff;
  font-family: 'Playfair Display', serif;
  font-weight: bold;
  font-size: 1.15rem;
  padding: 12px 38px;
  border-radius: 120px;
  border: none;
  box-shadow: 0 2px 10px rgba(229,172,56,0.12),0 1.5px 4px rgba(22,32,80,0.07);
  cursor: pointer;
  margin: 14px 0 8px 0;
  letter-spacing: 0.03em;
  transition: background 0.21s, color 0.21s, box-shadow 0.2s, transform 0.13s;
}
.cta-btn:hover, .cta-btn:focus {
  background: #162050;
  color: #E5AC38;
  box-shadow: 0 8px 32px rgba(22,32,80,0.17),0 3px 9px rgba(229,172,56,0.18);
  transform: scale(1.045);
}

/* === CARD CONTAINER & CARD === */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 3px 12px rgba(22,32,80,0.06);
  margin-bottom: 20px;
  padding: 32px 20px;
  position: relative;
  transition: box-shadow 0.2s, transform 0.18s;
}
.card:hover, .card:focus-within {
  box-shadow: 0 6px 26px 2px #E5AC3844;
  transform: translateY(-4px) scale(1.02);
}

/* === GRID/FLEX LAYOUTS === */
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (max-width: 900px) {
  .content-grid {
    flex-direction: column;
    gap: 14px;
  }
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* === TESTIMONIALS === */
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  margin-bottom: 20px;
  background: #FAF7EE;
  border-radius: 16px;
  box-shadow: 0 2px 8px rgba(229,172,56,0.09);
  border-left: 6px solid #E5AC38;
  color: #162050;
  font-size: 1.12rem;
  transition: box-shadow 0.18s, transform 0.18s;
}
.testimonial-card span {
  font-size: 0.98rem;
  color: #444;
  font-weight: 500;
  margin-left: 14px;
}
.testimonial-card:hover {
  box-shadow: 0 4px 22px 2px #E5AC3834;
  transform: scale(1.023);
}
.testimonial-overview {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 18px;
  color: #162050;
  font-family: 'Roboto', sans-serif;
  font-size: 1.08rem;
  font-weight: bold;
}
.testimonial-overview img {
  width: 98px;
}

/* === FOOTER === */
footer {
  background: #162050;
  color: #fff;
  width: 100%;
  margin-top: 40px;
  font-size: 0.98rem;
  letter-spacing: 0.02em;
}
.footer-main {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 32px;
  padding: 40px 16px 18px 16px;
  max-width: 1240px;
  margin: 0 auto;
  width: 100%;
}
.footer-brand {
  flex: 1 1 250px;
  min-width: 220px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-start;
}
.footer-brand img {
  width: 46px;
  margin-bottom: 10px;
}
.footer-brand p, .footer-brand a {
  color: #fff;
}
.footer-links, .footer-legal {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-links a, .footer-legal a {
  color: #E5AC38;
  font-weight: 500;
  font-size: 1.04rem;
  padding: 6px 0;
  transition: color 0.18s;
}
.footer-links a:hover, .footer-legal a:hover { color: #fff; }

.footer-social {
  display: flex;
  gap: 16px;
  margin-top: 10px;
}
.footer-social a img {
  width: 32px;
  height: 32px;
  filter: drop-shadow(0 2px 7px #E5AC3855);
  transition: filter 0.2s, transform 0.16s;
}
.footer-social a:hover img, .footer-social a:focus img {
  filter: brightness(1.05) drop-shadow(0 1px 14px #E5AC3899);
  transform: scale(1.08);
}
.footer-bottom {
  border-top: 1.5px solid #E5AC3810;
  text-align: center;
  padding: 14px 0 22px 0;
  font-size: 0.95rem;
  color: #E5AC38;
}

@media (max-width: 900px) {
  .footer-main {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
    padding: 30px 8px 12px 8px;
  }
}

/* === REPORT SAMPLE & MAP-NOTE CARDS === */
.report-sample, .map-note {
  background: #E5AC3813;
  border-left: 4px solid #E5AC38;
  border-radius: 10px;
  padding: 18px 18px 14px 18px;
  margin: 14px 0 8px 0;
  font-style: italic;
  font-size: 1.05rem;
  color: #162050;
  box-shadow: 0 2px 14px rgba(229,172,56,0.09);
}
.map-note strong {
  color: #E5AC38;
  font-weight: bold;
  margin-bottom: 6px;
  display: inline-block;
}

/* === LISTS & MISC === */
ul li::marker {
  color: #E5AC38;
  font-size: 1.1em;
}

/* === SCROLLBAR === */
::-webkit-scrollbar {
  width: 10px;
  background: #F3F3F7;
}
::-webkit-scrollbar-thumb {
  background: #E5AC3833;
  border-radius: 8px;
}

/* === RESPONSIVE BREAKPOINTS === */
@media (max-width: 600px) {
  html { font-size: 15px; }
  h1 { font-size: 1.54rem; }
  h2 { font-size: 1.24rem; }
  h3 { font-size: 1.02rem; }
  .footer-main { padding: 20px 0 10px 0; }
  .feature {
    min-width: 160px;
    padding: 20px 10px;
  }
  .cta-btn { padding: 10px 18px; font-size: 1rem; }
}

/* === FOCUS STATES FOR ACCESSIBILITY === */
a:focus, button:focus, .cta-btn:focus, .mobile-menu-toggle:focus {
  outline: 2.5px solid #E5AC38;
  outline-offset: 2.5px;
}

/* === MICRO-INTERACTIONS & ANIMATION KEYFRAMES === */
@keyframes fadeInUp {
  0% { opacity: 0; transform: translateY(40px); }
  100% { opacity: 1; transform: none; }
}
.section, .feature, .card, .testimonial-card {
  animation: fadeInUp 0.8s cubic-bezier(0.42,0,0.23,1) both;
}

/* === COOKIE CONSENT BANNER & COOKIE MODAL === */
.cookie-banner {
  position: fixed;
  left: 20px; right: 20px; bottom: 16px;
  background: #fff;
  border: 2px solid #E5AC386d;
  border-radius: 16px;
  box-shadow: 0 8px 36px #16205033;
  z-index: 3000;
  padding: 20px 24px 18px 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 410px;
  font-size: 1rem;
  color: #162050;
  animation: fadeInUp 0.7s;
}
.cookie-banner strong {
  color: #E5AC38;
  font-weight: bolder;
}
.cookie-actions {
  display: flex;
  gap: 18px;
  margin-top: 8px;
}
.cookie-actions .cookie-btn {
  background: #E5AC38;
  color: #fff;
  border: none;
  border-radius: 10px;
  font-size: 1rem;
  padding: 8px 18px;
  font-family: 'Roboto', Arial, sans-serif;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.22s, color 0.22s;
  box-shadow: 0 2px 10px #E5AC3855;
}
.cookie-actions .cookie-btn.reject {
  background: #162050;
  color: #fff;
}
.cookie-actions .cookie-btn.settings {
  background: #fff;
  color: #E5AC38;
  border: 1.5px solid #E5AC38;
}
.cookie-actions .cookie-btn:hover, .cookie-actions .cookie-btn:focus {
  background: #192B6B;
  color: #E5AC38;
}
.cookie-actions .cookie-btn.settings:hover, .cookie-actions .cookie-btn.settings:focus {
  background: #E5AC38;
  color: #fff;
}

/* Cookie Modal */
.cookie-modal-backdrop {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(22,32,80,0.63);
  z-index: 4000;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeInUp 0.7s;
}
.cookie-modal {
  background: #fff;
  padding: 36px 34px 22px 34px;
  border-radius: 16px;
  border: 2.5px solid #E5AC3850;
  box-shadow: 0 12px 32px #16205033;
  max-width: 395px;
  width: 90vw;
  color: #162050;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
}
.cookie-modal h3 {
  margin-bottom: 8px;
  font-size: 1.17rem;
  color: #E5AC38;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 14px;
}
.cookie-category label {
  font-size: 1.01rem;
  color: #162050;
  font-weight: 500;
}
.cookie-category input[type="checkbox"] {
  accent-color: #E5AC38;
  width: 18px; height: 18px;
}
.cookie-modal .essential {
  color: #888;
  font-style: italic;
  font-size: 0.96rem;
  margin-left: 2px;
}
.cookie-modal .cookie-actions { margin-top: 0; }

@media (max-width: 600px) {
  .cookie-banner {
    max-width: 97vw;
    left: 4vw; right: 4vw;
    padding: 15px 5vw 12px 6vw;
  }
  .cookie-modal {
    padding: 18px 10px 12px 14px;
  }
}

/* === VIBRANT ENERGETIC EFFECTS === */
body {
  /* subtle gradient effect on background for energetic feel */
  background: linear-gradient(162deg,#F3F3F7 60%,#E5AC38 180%);
}
.section {
  /* electric accent border as an energy effect */
  border: 2.5px solid #E5AC3822;
  position: relative;
  overflow: visible;
}
.section::after {
  content: '';
  display: block;
  position: absolute;
  left: -16px; top: -12px;
  width: 36px; height: 36px;
  background: #E5AC3822;
  border-radius: 50%;
  z-index: 0;
  filter: blur(13px);
}
.section:hover::after {
  background: #E5AC3855;
}

/* Electric color "shimmer" lines for energetic touch (only decoration, never grid) */
.section::before {
  content: '';
  display: block;
  position: absolute;
  right: -15px; bottom: -10px;
  width: 38px; height: 8px;
  border-radius: 8px;
  background: linear-gradient(90deg,#E5AC38,#ffffff44 80%);
  filter: blur(2.5px);
  opacity: 0.28;
  z-index: 0;
}

/* --- End vibrant decoration --- */

/* === PRINT === */
@media print {
  header, footer, .cookie-banner, .mobile-menu { display: none !important; }
  main, .container { box-shadow: none !important; background: #fff !important; }
}
