/* ============================================
   LUNAR VEIL - VINTAGE RETRO DESIGN SYSTEM
   ============================================ */

/* CSS RESET & NORMALIZE */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: 'Courier New', Courier, monospace;
  line-height: 1.7;
  color: #3a2a1a;
  background-color: #f5ebe0;
  overflow-x: hidden;
}

/* ============================================
   VINTAGE RETRO TYPOGRAPHY
   ============================================ */

h1, h2, h3, h4, h5, h6 {
  font-family: 'Georgia', 'Times New Roman', serif;
  font-weight: 700;
  color: #2a1810;
  line-height: 1.3;
  margin-bottom: 20px;
}

h1 {
  font-size: 48px;
  text-shadow: 2px 2px 0px #d4af37;
  letter-spacing: -1px;
}

h2 {
  font-size: 36px;
  border-bottom: 3px solid #8b7355;
  padding-bottom: 12px;
  margin-bottom: 24px;
}

h3 {
  font-size: 28px;
  color: #2c5f7c;
}

h4 {
  font-size: 22px;
  color: #8b7355;
}

p {
  margin-bottom: 16px;
  font-size: 16px;
}

a {
  color: #2c5f7c;
  text-decoration: none;
  transition: all 0.3s ease;
}

a:hover {
  color: #d4af37;
  text-decoration: underline wavy;
}

ul, ol {
  margin-left: 24px;
  margin-bottom: 20px;
}

li {
  margin-bottom: 10px;
}

strong {
  color: #2a1810;
  font-weight: 700;
}

/* ============================================
   CONTAINER & LAYOUT
   ============================================ */

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.content-wrapper {
  width: 100%;
}

/* ============================================
   VINTAGE HEADER STYLES
   ============================================ */

header {
  background: linear-gradient(135deg, #2c5f7c 0%, #1a4259 100%);
  padding: 20px 0;
  border-bottom: 4px solid #d4af37;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.logo a {
  display: flex;
  align-items: center;
}

.logo img {
  height: 60px;
  width: auto;
  filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.3));
  transition: transform 0.3s ease;
}

.logo img:hover {
  transform: scale(1.05) rotate(-2deg);
}

.main-nav {
  display: flex;
  gap: 24px;
  align-items: center;
  flex-wrap: wrap;
}

.main-nav a {
  color: #f5ebe0;
  font-size: 16px;
  font-weight: 600;
  padding: 8px 16px;
  border: 2px solid transparent;
  border-radius: 4px;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-family: 'Georgia', serif;
}

.main-nav a:hover {
  background-color: #d4af37;
  color: #2a1810;
  border-color: #8b7355;
  text-decoration: none;
  transform: translateY(-2px);
}

/* ============================================
   MOBILE MENU STYLES
   ============================================ */

.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 2000;
  background: #d4af37;
  color: #2a1810;
  border: 3px solid #8b7355;
  padding: 12px 16px;
  font-size: 24px;
  cursor: pointer;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  font-family: 'Georgia', serif;
  font-weight: bold;
}

.mobile-menu-toggle:hover {
  background: #8b7355;
  color: #f5ebe0;
  transform: scale(1.1);
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  right: -100%;
  width: 300px;
  height: 100vh;
  background: linear-gradient(180deg, #2c5f7c 0%, #1a4259 100%);
  padding: 80px 30px 30px;
  z-index: 1999;
  transition: right 0.4s ease;
  overflow-y: auto;
  border-left: 5px solid #d4af37;
  box-shadow: -4px 0 12px rgba(0, 0, 0, 0.4);
}

.mobile-menu.active {
  right: 0;
}

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: #d4af37;
  color: #2a1810;
  border: 3px solid #8b7355;
  padding: 10px 16px;
  font-size: 24px;
  cursor: pointer;
  border-radius: 8px;
  font-family: 'Georgia', serif;
  font-weight: bold;
}

.mobile-menu-close:hover {
  background: #8b7355;
  color: #f5ebe0;
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.mobile-nav a {
  color: #f5ebe0;
  font-size: 18px;
  padding: 14px 20px;
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid #8b7355;
  border-radius: 6px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-family: 'Georgia', serif;
  font-weight: 600;
  transition: all 0.3s ease;
}

.mobile-nav a:hover {
  background: #d4af37;
  color: #2a1810;
  transform: translateX(10px);
  text-decoration: none;
}

/* ============================================
   VINTAGE HERO SECTION
   ============================================ */

.hero-section {
  background: linear-gradient(135deg, #8b7355 0%, #2c5f7c 100%);
  padding: 80px 20px;
  text-align: center;
  border-bottom: 6px double #d4af37;
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 10px,
    rgba(212, 175, 55, 0.1) 10px,
    rgba(212, 175, 55, 0.1) 20px
  );
  animation: vintage-pattern 60s linear infinite;
}

@keyframes vintage-pattern {
  0% { transform: translate(0, 0); }
  100% { transform: translate(50px, 50px); }
}

.hero-section h1 {
  color: #f5ebe0;
  text-shadow: 3px 3px 0px #2a1810, 5px 5px 0px #d4af37;
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}

.hero-subtitle {
  font-size: 20px;
  color: #f5ebe0;
  margin-bottom: 32px;
  font-family: 'Georgia', serif;
  font-style: italic;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  position: relative;
  z-index: 1;
}

.trust-badge {
  display: inline-block;
  background: #d4af37;
  color: #2a1810;
  padding: 12px 24px;
  border-radius: 50px;
  font-weight: 700;
  margin-bottom: 32px;
  border: 3px dashed #8b7355;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  position: relative;
  z-index: 1;
  font-family: 'Georgia', serif;
}

.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
  margin-top: 32px;
}

/* ============================================
   VINTAGE BUTTON STYLES
   ============================================ */

.btn-primary, .btn-secondary {
  display: inline-block;
  padding: 16px 32px;
  font-size: 18px;
  font-weight: 700;
  text-align: center;
  border-radius: 8px;
  transition: all 0.3s ease;
  cursor: pointer;
  border: 3px solid;
  font-family: 'Georgia', serif;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  overflow: hidden;
}

.btn-primary::before,
.btn-secondary::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.btn-primary:hover::before,
.btn-secondary:hover::before {
  width: 300px;
  height: 300px;
}

.btn-primary {
  background: #d4af37;
  color: #2a1810;
  border-color: #8b7355;
  box-shadow: 4px 4px 0px #2c5f7c;
}

.btn-primary:hover {
  background: #2c5f7c;
  color: #f5ebe0;
  transform: translate(2px, 2px);
  box-shadow: 2px 2px 0px #d4af37;
  text-decoration: none;
}

.btn-secondary {
  background: #8b7355;
  color: #f5ebe0;
  border-color: #d4af37;
  box-shadow: 4px 4px 0px #2a1810;
}

.btn-secondary:hover {
  background: #2a1810;
  color: #d4af37;
  transform: translate(2px, 2px);
  box-shadow: 2px 2px 0px #8b7355;
  text-decoration: none;
}

/* ============================================
   SECTION SPACING
   ============================================ */

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

section:nth-child(even) {
  background: rgba(212, 175, 55, 0.1);
  border-top: 2px dashed #8b7355;
  border-bottom: 2px dashed #8b7355;
}

/* ============================================
   VINTAGE CARD STYLES
   ============================================ */

.card-container,
.pillars-grid,
.services-grid,
.resources-grid,
.tools-grid,
.blog-grid,
.testimonials-grid,
.metrics-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 32px;
}

.card,
.pillar-card,
.service-card,
.resource-card,
.tool-card,
.post-card,
.testimonial-card,
.metric {
  background: #f5ebe0;
  border: 4px solid #8b7355;
  border-radius: 12px;
  padding: 28px;
  flex: 1 1 calc(33.333% - 24px);
  min-width: 280px;
  position: relative;
  margin-bottom: 20px;
  box-shadow: 6px 6px 0px #2c5f7c;
  transition: all 0.3s ease;
}

.card::before,
.pillar-card::before,
.service-card::before {
  content: '';
  position: absolute;
  top: -4px;
  left: -4px;
  right: -4px;
  bottom: -4px;
  border: 2px dashed #d4af37;
  border-radius: 12px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.card:hover::before,
.pillar-card:hover::before,
.service-card:hover::before {
  opacity: 1;
}

.card:hover,
.pillar-card:hover,
.service-card:hover,
.resource-card:hover,
.tool-card:hover,
.post-card:hover {
  transform: translate(-3px, -3px);
  box-shadow: 9px 9px 0px #d4af37;
}

.service-card.featured {
  border-color: #d4af37;
  background: linear-gradient(135deg, #f5ebe0 0%, #fffaf0 100%);
  border-width: 5px;
}

.service-card.featured::after {
  content: '★ BELIEBT ★';
  position: absolute;
  top: -15px;
  right: 20px;
  background: #d4af37;
  color: #2a1810;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  border: 2px solid #8b7355;
  font-family: 'Georgia', serif;
}

/* ============================================
   VINTAGE TESTIMONIAL CARDS
   ============================================ */

.testimonials-section {
  background: linear-gradient(135deg, #2c5f7c 0%, #1a4259 100%);
  padding: 60px 20px;
  border-top: 6px double #d4af37;
  border-bottom: 6px double #d4af37;
}

.testimonials-section h2 {
  color: #f5ebe0;
  border-bottom-color: #d4af37;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.testimonial-card {
  background: #f5ebe0;
  border: 4px solid #8b7355;
  padding: 28px;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  box-shadow: 6px 6px 0px #d4af37;
  position: relative;
}

.testimonial-card::before {
  content: '❝';
  position: absolute;
  top: -20px;
  left: 20px;
  font-size: 80px;
  color: #d4af37;
  font-family: Georgia, serif;
  line-height: 1;
}

.testimonial-card p {
  color: #2a1810;
  font-size: 17px;
  font-style: italic;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

.testimonial-author {
  display: flex;
  flex-direction: column;
  gap: 8px;
  border-top: 2px solid #8b7355;
  padding-top: 16px;
  width: 100%;
}

.testimonial-author strong {
  color: #2c5f7c;
  font-size: 18px;
  font-family: 'Georgia', serif;
}

.testimonial-author span {
  color: #8b7355;
  font-size: 14px;
}

/* ============================================
   TEXT-IMAGE SECTIONS
   ============================================ */

.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.text-image-section img {
  flex: 1 1 400px;
  max-width: 100%;
  border: 5px solid #8b7355;
  border-radius: 8px;
  box-shadow: 8px 8px 0px #2c5f7c;
}

.text-image-section .content {
  flex: 1 1 400px;
}

/* ============================================
   PILLAR DETAIL SECTIONS
   ============================================ */

.pillar-detail {
  background: #f5ebe0;
  padding: 50px 20px;
  margin-bottom: 40px;
  border: 4px solid #8b7355;
  border-radius: 12px;
  box-shadow: 8px 8px 0px #2c5f7c;
}

.benefit-box,
.framework-box {
  background: linear-gradient(135deg, #d4af37 0%, #b8941f 100%);
  padding: 24px;
  border-radius: 8px;
  border: 3px dashed #8b7355;
  margin: 24px 0;
  box-shadow: 4px 4px 0px #2c5f7c;
}

.benefit-box strong,
.framework-box h4 {
  color: #2a1810;
  font-size: 20px;
  display: block;
  margin-bottom: 12px;
  font-family: 'Georgia', serif;
}

.related-services {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 3px solid #8b7355;
}

/* ============================================
   VINTAGE METRICS & STATS
   ============================================ */

.metrics-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin: 40px 0;
}

.metric {
  text-align: center;
  flex: 1 1 200px;
  background: #d4af37;
  border: 4px solid #2a1810;
  padding: 28px;
  min-width: 180px;
}

.metric strong {
  display: block;
  font-size: 42px;
  color: #2a1810;
  margin-bottom: 12px;
  font-family: 'Georgia', serif;
  text-shadow: 2px 2px 0px rgba(255, 255, 255, 0.5);
}

.metric p {
  font-size: 16px;
  color: #3a2a1a;
  margin: 0;
  font-weight: 600;
}

/* ============================================
   VINTAGE SERVICE DETAILS
   ============================================ */

.service-details {
  margin: 20px 0;
  padding: 20px;
  background: rgba(139, 115, 85, 0.1);
  border-left: 4px solid #2c5f7c;
  border-radius: 4px;
}

.service-details strong {
  display: block;
  margin-bottom: 12px;
  color: #2c5f7c;
  font-family: 'Georgia', serif;
  font-size: 18px;
}

.service-details ul {
  margin-left: 0;
  list-style-type: none;
}

.service-details li::before {
  content: '▸ ';
  color: #d4af37;
  font-weight: bold;
  margin-right: 8px;
}

.price {
  display: block;
  font-size: 32px;
  color: #2c5f7c;
  font-weight: 700;
  margin: 20px 0;
  font-family: 'Georgia', serif;
  text-shadow: 2px 2px 0px rgba(212, 175, 55, 0.3);
}

/* ============================================
   PAIN POINTS & LISTS
   ============================================ */

.pain-points {
  list-style-type: none;
  margin: 24px 0;
}

.pain-points li {
  padding: 16px;
  margin-bottom: 12px;
  background: #fff;
  border-left: 5px solid #d4af37;
  border-radius: 4px;
  box-shadow: 3px 3px 0px #8b7355;
  transition: transform 0.3s ease;
}

.pain-points li:hover {
  transform: translateX(10px);
}

.pain-points li::before {
  content: '✗ ';
  color: #8b7355;
  font-weight: bold;
  font-size: 20px;
  margin-right: 8px;
}

/* ============================================
   GUARANTEE & CTA SECTIONS
   ============================================ */

.guarantee-section,
.cta-section {
  background: linear-gradient(135deg, #2c5f7c 0%, #1a4259 100%);
  padding: 60px 20px;
  text-align: center;
  border: 6px double #d4af37;
  border-radius: 12px;
  margin: 60px 0;
}

.guarantee-section h2,
.cta-section h2 {
  color: #f5ebe0;
  border-bottom-color: #d4af37;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.guarantee-section p,
.cta-section p {
  color: #f5ebe0;
  font-size: 18px;
  margin-bottom: 24px;
}

.guarantee {
  color: #d4af37;
  font-size: 14px;
  font-style: italic;
  margin-top: 16px;
}

.trust-elements,
.trust-item {
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
  margin-top: 32px;
}

.trust-item {
  flex-direction: column;
  align-items: center;
  background: rgba(212, 175, 55, 0.2);
  padding: 24px;
  border-radius: 8px;
  border: 3px solid #d4af37;
  min-width: 200px;
}

.trust-item strong {
  font-size: 36px;
  color: #d4af37;
  display: block;
  margin-bottom: 8px;
  font-family: 'Georgia', serif;
}

.trust-item p {
  color: #f5ebe0;
  margin: 0;
  font-size: 14px;
}

/* ============================================
   BLOG & RESOURCE CARDS
   ============================================ */

.post-featured {
  background: linear-gradient(135deg, #d4af37 0%, #b8941f 100%);
  padding: 40px;
  border-radius: 12px;
  border: 5px solid #8b7355;
  margin-bottom: 40px;
  box-shadow: 8px 8px 0px #2c5f7c;
  position: relative;
}

.post-featured h2 {
  color: #2a1810;
  border-bottom-color: #2a1810;
}

.post-featured p {
  color: #3a2a1a;
  font-size: 18px;
}

.badge {
  position: absolute;
  top: -12px;
  left: 30px;
  background: #2c5f7c;
  color: #f5ebe0;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  border: 2px solid #d4af37;
  font-family: 'Georgia', serif;
  text-transform: uppercase;
}

.post-meta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 16px;
  font-size: 14px;
  color: #8b7355;
}

.post-meta span {
  display: flex;
  align-items: center;
  gap: 6px;
}

.post-meta span::before {
  content: '●';
  color: #d4af37;
}

/* ============================================
   CONTACT & FORMS
   ============================================ */

.contact-methods,
.contact-card {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 32px;
}

.contact-card {
  flex: 1 1 calc(33.333% - 24px);
  flex-direction: column;
  min-width: 280px;
  background: #f5ebe0;
  border: 4px solid #8b7355;
  padding: 28px;
  border-radius: 12px;
  box-shadow: 6px 6px 0px #2c5f7c;
}

.contact-card h3 {
  color: #2c5f7c;
  margin-bottom: 16px;
  font-family: 'Georgia', serif;
}

.contact-link {
  display: inline-block;
  background: #d4af37;
  color: #2a1810;
  padding: 12px 24px;
  border-radius: 8px;
  margin-top: 16px;
  font-weight: 700;
  border: 2px solid #8b7355;
  transition: all 0.3s ease;
}

.contact-link:hover {
  background: #2c5f7c;
  color: #f5ebe0;
  text-decoration: none;
  transform: translateY(-2px);
}

.response-time {
  display: block;
  margin-top: 12px;
  font-size: 14px;
  color: #8b7355;
  font-style: italic;
}

.contact-info,
.contact-info-box {
  background: rgba(212, 175, 55, 0.2);
  padding: 24px;
  border-radius: 8px;
  border: 3px dashed #8b7355;
  margin: 24px 0;
}

.contact-info p,
.contact-info-box p {
  margin-bottom: 12px;
  color: #2a1810;
}

.address {
  line-height: 1.8;
  color: #3a2a1a;
}

.response-promise {
  background: #d4af37;
  color: #2a1810;
  padding: 16px 24px;
  border-radius: 8px;
  border: 3px solid #8b7355;
  margin-top: 24px;
  font-weight: 600;
  font-family: 'Georgia', serif;
  text-align: center;
}

/* ============================================
   FAQ & ACCORDIONS
   ============================================ */

.faq-list,
.faq-item {
  margin-top: 24px;
}

.faq-item {
  background: #f5ebe0;
  border: 3px solid #8b7355;
  border-radius: 8px;
  padding: 24px;
  margin-bottom: 16px;
  box-shadow: 4px 4px 0px #2c5f7c;
  transition: all 0.3s ease;
}

.faq-item:hover {
  transform: translateX(8px);
  box-shadow: 6px 6px 0px #d4af37;
}

.faq-item h3 {
  color: #2c5f7c;
  margin-bottom: 12px;
  font-family: 'Georgia', serif;
}

.faq-item p {
  color: #3a2a1a;
  line-height: 1.7;
}

/* ============================================
   EVENTS & CALENDARS
   ============================================ */

.events-list,
.event-card {
  margin-top: 24px;
}

.event-card {
  background: #f5ebe0;
  border: 4px solid #d4af37;
  padding: 24px;
  border-radius: 12px;
  margin-bottom: 20px;
  box-shadow: 6px 6px 0px #2c5f7c;
  position: relative;
  transition: all 0.3s ease;
}

.event-card:hover {
  transform: translateY(-4px);
  box-shadow: 8px 8px 0px #8b7355;
}

.event-date {
  position: absolute;
  top: -15px;
  right: 20px;
  background: #2c5f7c;
  color: #f5ebe0;
  padding: 8px 16px;
  border-radius: 8px;
  font-weight: 700;
  border: 2px solid #d4af37;
  font-family: 'Georgia', serif;
}

.event-status {
  display: inline-block;
  background: #d4af37;
  color: #2a1810;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
  margin-top: 12px;
  border: 2px solid #8b7355;
}

/* ============================================
   VINTAGE FOOTER
   ============================================ */

footer {
  background: linear-gradient(180deg, #2c5f7c 0%, #1a4259 100%);
  color: #f5ebe0;
  padding: 60px 20px 20px;
  border-top: 6px double #d4af37;
  margin-top: 60px;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-column {
  flex: 1 1 250px;
}

.footer-column h3,
.footer-column h4 {
  color: #d4af37;
  margin-bottom: 16px;
  font-family: 'Georgia', serif;
  border-bottom: 2px solid #8b7355;
  padding-bottom: 8px;
}

.footer-column p {
  color: #f5ebe0;
  line-height: 1.8;
  font-size: 14px;
}

.footer-column ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-column li {
  margin-bottom: 10px;
}

.footer-column a {
  color: #f5ebe0;
  transition: all 0.3s ease;
  display: inline-block;
}

.footer-column a:hover {
  color: #d4af37;
  transform: translateX(5px);
  text-decoration: none;
}

.footer-bottom {
  border-top: 2px solid #8b7355;
  padding-top: 24px;
  text-align: center;
}

.legal-links {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.legal-links a {
  color: #f5ebe0;
  font-size: 14px;
  padding: 4px 12px;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.legal-links a:hover {
  background: rgba(212, 175, 55, 0.2);
  color: #d4af37;
  text-decoration: none;
}

.footer-bottom p {
  color: #f5ebe0;
  font-size: 14px;
  margin: 0;
}

/* ============================================
   COOKIE CONSENT BANNER
   ============================================ */

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, #2a1810 0%, #1a0f08 100%);
  color: #f5ebe0;
  padding: 24px;
  border-top: 5px solid #d4af37;
  box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.4);
  z-index: 1998;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

.cookie-banner.active {
  transform: translateY(0);
}

.cookie-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.cookie-text {
  flex: 1 1 400px;
  font-size: 15px;
  line-height: 1.6;
}

.cookie-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.cookie-btn {
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 3px solid;
  font-family: 'Georgia', serif;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.cookie-btn.accept {
  background: #d4af37;
  color: #2a1810;
  border-color: #8b7355;
}

.cookie-btn.accept:hover {
  background: #b8941f;
  transform: scale(1.05);
}

.cookie-btn.reject {
  background: transparent;
  color: #f5ebe0;
  border-color: #8b7355;
}

.cookie-btn.reject:hover {
  background: #8b7355;
  transform: scale(1.05);
}

.cookie-btn.settings {
  background: #2c5f7c;
  color: #f5ebe0;
  border-color: #d4af37;
}

.cookie-btn.settings:hover {
  background: #1a4259;
  transform: scale(1.05);
}

/* ============================================
   COOKIE PREFERENCES MODAL
   ============================================ */

.cookie-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(42, 24, 16, 0.9);
  z-index: 1999;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.cookie-modal.active {
  display: flex;
}

.cookie-modal-content {
  background: #f5ebe0;
  border: 5px solid #8b7355;
  border-radius: 12px;
  padding: 40px;
  max-width: 600px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
  position: relative;
}

.cookie-modal h2 {
  color: #2c5f7c;
  margin-bottom: 24px;
  font-family: 'Georgia', serif;
  border-bottom: 3px solid #d4af37;
  padding-bottom: 12px;
}

.cookie-category {
  margin-bottom: 24px;
  padding: 20px;
  background: rgba(139, 115, 85, 0.1);
  border-left: 4px solid #2c5f7c;
  border-radius: 8px;
}

.cookie-category h3 {
  color: #2a1810;
  font-size: 18px;
  margin-bottom: 8px;
  font-family: 'Georgia', serif;
}

.cookie-category p {
  color: #3a2a1a;
  font-size: 14px;
  margin-bottom: 12px;
}

.cookie-toggle {
  display: flex;
  align-items: center;
  gap: 12px;
}

.cookie-toggle input[type="checkbox"] {
  width: 20px;
  height: 20px;
  cursor: pointer;
}

.cookie-modal-buttons {
  display: flex;
  gap: 12px;
  justify-content: flex-end;
  margin-top: 24px;
  flex-wrap: wrap;
}

.cookie-modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: #d4af37;
  color: #2a1810;
  border: 2px solid #8b7355;
  padding: 8px 16px;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 700;
  font-family: 'Georgia', serif;
  transition: all 0.3s ease;
}

.cookie-modal-close:hover {
  background: #2c5f7c;
  color: #f5ebe0;
}

/* ============================================
   LEGAL CONTENT PAGES
   ============================================ */

.legal-content {
  padding: 40px 20px;
}

.legal-content h2 {
  color: #2c5f7c;
  margin-top: 32px;
  font-family: 'Georgia', serif;
}

.legal-content h3 {
  color: #8b7355;
  margin-top: 24px;
}

.legal-content ul,
.legal-content ol {
  margin-left: 32px;
  margin-bottom: 20px;
}

.legal-content li {
  margin-bottom: 12px;
  line-height: 1.7;
}

/* ============================================
   MISC UTILITY CLASSES
   ============================================ */

.note,
.privacy-note {
  font-size: 14px;
  color: #8b7355;
  font-style: italic;
  margin-top: 16px;
  padding: 12px;
  background: rgba(139, 115, 85, 0.1);
  border-left: 3px solid #d4af37;
  border-radius: 4px;
}

.result {
  background: #d4af37;
  color: #2a1810;
  padding: 16px 24px;
  border-radius: 8px;
  border: 3px dashed #8b7355;
  margin-top: 20px;
  font-weight: 600;
  font-family: 'Georgia', serif;
}

.link-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 32px;
}

.link-card {
  flex: 1 1 calc(33.333% - 24px);
  min-width: 280px;
  background: #f5ebe0;
  border: 4px solid #8b7355;
  padding: 28px;
  border-radius: 12px;
  box-shadow: 6px 6px 0px #2c5f7c;
  transition: all 0.3s ease;
}

.link-card:hover {
  transform: translate(-3px, -3px);
  box-shadow: 9px 9px 0px #d4af37;
}

.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
  margin-top: 24px;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  flex: 1 1 calc(50% - 20px);
  min-width: 280px;
  padding: 20px;
  background: rgba(212, 175, 55, 0.1);
  border-left: 4px solid #d4af37;
  border-radius: 4px;
}

.knowledge-categories,
.category {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 32px;
}

.category {
  flex: 1 1 calc(50% - 24px);
  min-width: 280px;
  background: #f5ebe0;
  border: 3px solid #8b7355;
  padding: 24px;
  border-radius: 8px;
  flex-direction: column;
}

.category h3 {
  color: #2c5f7c;
  margin-bottom: 16px;
  font-family: 'Georgia', serif;
}

.category ul {
  list-style: none;
  margin: 0;
}

.category li {
  margin-bottom: 10px;
}

.category li::before {
  content: '→ ';
  color: #d4af37;
  font-weight: bold;
}

.categories-grid,
.category-card {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 32px;
}

.category-card {
  flex: 1 1 calc(50% - 24px);
  min-width: 280px;
  background: #f5ebe0;
  border: 4px solid #d4af37;
  padding: 28px;
  border-radius: 12px;
  box-shadow: 6px 6px 0px #2c5f7c;
  flex-direction: column;
  transition: all 0.3s ease;
}

.category-card:hover {
  transform: translateY(-4px);
  box-shadow: 8px 8px 0px #8b7355;
}

.category-card span {
  display: inline-block;
  background: #2c5f7c;
  color: #f5ebe0;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  margin-top: 12px;
  align-self: flex-start;
}

.newsletter-section {
  background: linear-gradient(135deg, #8b7355 0%, #6b5a45 100%);
  padding: 60px 20px;
  text-align: center;
  border: 6px double #d4af37;
  border-radius: 12px;
  margin: 60px 0;
}

.newsletter-section h2 {
  color: #f5ebe0;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.newsletter-section p {
  color: #f5ebe0;
  font-size: 18px;
}

.newsletter-benefits ul {
  list-style: none;
  margin: 24px auto;
  max-width: 600px;
  text-align: left;
}

.newsletter-benefits li {
  color: #f5ebe0;
  padding: 12px;
  margin-bottom: 10px;
  background: rgba(212, 175, 55, 0.2);
  border-left: 4px solid #d4af37;
  border-radius: 4px;
}

.newsletter-benefits li::before {
  content: '✓ ';
  color: #d4af37;
  font-weight: bold;
  margin-right: 8px;
}

.values-grid,
.value-card {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 32px;
}

.value-card {
  flex: 1 1 calc(50% - 24px);
  min-width: 280px;
  background: #f5ebe0;
  border: 4px solid #8b7355;
  padding: 28px;
  border-radius: 12px;
  box-shadow: 6px 6px 0px #2c5f7c;
  flex-direction: column;
  transition: all 0.3s ease;
}

.value-card:hover {
  transform: translate(-3px, -3px);
  box-shadow: 9px 9px 0px #d4af37;
}

.team-areas,
.area {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 32px;
}

.area {
  flex: 1 1 calc(50% - 24px);
  min-width: 280px;
  background: rgba(212, 175, 55, 0.2);
  padding: 24px;
  border-left: 5px solid #2c5f7c;
  border-radius: 8px;
  flex-direction: column;
}

.achievements-grid,
.achievement {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 32px;
}

.achievement {
  flex: 1 1 calc(50% - 24px);
  min-width: 280px;
  background: #f5ebe0;
  border: 4px solid #d4af37;
  padding: 28px;
  border-radius: 12px;
  box-shadow: 6px 6px 0px #2c5f7c;
  flex-direction: column;
  transition: all 0.3s ease;
}

.achievement:hover {
  transform: translateY(-4px);
  box-shadow: 8px 8px 0px #8b7355;
}

.achievement h3 {
  color: #2c5f7c;
  font-size: 32px;
  margin-bottom: 12px;
  font-family: 'Georgia', serif;
}

.stats-highlight {
  background: linear-gradient(135deg, #d4af37 0%, #b8941f 100%);
  padding: 32px;
  border-radius: 12px;
  border: 4px dashed #8b7355;
  margin-top: 40px;
}

.stats-highlight h3 {
  color: #2a1810;
  margin-bottom: 20px;
  font-family: 'Georgia', serif;
}

.stats-highlight ul {
  list-style: none;
  margin: 0;
}

.stats-highlight li {
  color: #2a1810;
  padding: 12px;
  margin-bottom: 10px;
  background: rgba(255, 255, 255, 0.5);
  border-left: 4px solid #2c5f7c;
  border-radius: 4px;
}

.process-list {
  list-style: none;
  margin: 24px 0;
  counter-reset: process-counter;
}

.process-list li {
  counter-increment: process-counter;
  padding: 20px;
  margin-bottom: 16px;
  background: #f5ebe0;
  border: 3px solid #8b7355;
  border-left-width: 6px;
  border-left-color: #d4af37;
  border-radius: 8px;
  position: relative;
  padding-left: 60px;
}

.process-list li::before {
  content: counter(process-counter);
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  background: #2c5f7c;
  color: #f5ebe0;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 18px;
  border: 3px solid #d4af37;
  font-family: 'Georgia', serif;
}

.synergy-example {
  background: #f5ebe0;
  border: 5px solid #8b7355;
  border-radius: 12px;
  padding: 32px;
  margin: 32px 0;
  box-shadow: 8px 8px 0px #2c5f7c;
}

.synergy-example h3 {
  color: #2c5f7c;
  margin-bottom: 20px;
  font-family: 'Georgia', serif;
}

.synergy-example ul {
  list-style: none;
  margin: 0;
}

.synergy-example li {
  padding: 12px;
  margin-bottom: 12px;
  background: rgba(212, 175, 55, 0.2);
  border-left: 4px solid #d4af37;
  border-radius: 4px;
}

.steps-grid,
.step {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 32px;
}

.step {
  flex: 1 1 calc(33.333% - 24px);
  min-width: 280px;
  background: #f5ebe0;
  border: 4px solid #2c5f7c;
  padding: 28px;
  border-radius: 12px;
  box-shadow: 6px 6px 0px #8b7355;
  flex-direction: column;
}

.step h3 {
  color: #2c5f7c;
  margin-bottom: 12px;
  font-family: 'Georgia', serif;
}

.resources-grid,
.resource {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 32px;
}

.resource {
  flex: 1 1 calc(33.333% - 24px);
  min-width: 280px;
  background: #f5ebe0;
  border: 4px solid #8b7355;
  padding: 28px;
  border-radius: 12px;
  box-shadow: 6px 6px 0px #2c5f7c;
  flex-direction: column;
}

.resource h3 {
  color: #2c5f7c;
  margin-bottom: 12px;
  font-family: 'Georgia', serif;
}

.benefits {
  list-style: none;
  margin: 24px 0;
}

.benefits li {
  padding: 12px;
  margin-bottom: 10px;
  background: rgba(212, 175, 55, 0.2);
  border-left: 4px solid #d4af37;
  border-radius: 4px;
}

.benefits li::before {
  content: '✓ ';
  color: #d4af37;
  font-weight: bold;
  margin-right: 8px;
}

.contact-section {
  background: rgba(212, 175, 55, 0.2);
  padding: 50px 20px;
  border-radius: 12px;
  border: 3px dashed #8b7355;
  margin: 40px 0;
}

.action-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 32px;
}

.location-section {
  background: rgba(139, 115, 85, 0.1);
  padding: 50px 20px;
  border-radius: 12px;
}

.location-details {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-top: 32px;
}

.location-details .detail {
  flex: 1 1 300px;
  background: #f5ebe0;
  border: 3px solid #8b7355;
  padding: 24px;
  border-radius: 8px;
}

.location-details .detail h3 {
  color: #2c5f7c;
  margin-bottom: 12px;
  font-family: 'Georgia', serif;
}

.tool-demo {
  background: rgba(212, 175, 55, 0.3);
  padding: 16px;
  border-radius: 6px;
  border-left: 4px solid #2c5f7c;
  margin-top: 16px;
}

.tool-demo p {
  color: #2a1810;
  font-size: 14px;
  margin: 0;
}

/* ============================================
   RESPONSIVE DESIGN - MOBILE FIRST
   ============================================ */

@media (max-width: 768px) {
  /* Typography adjustments */
  h1 { font-size: 32px; }
  h2 { font-size: 28px; }
  h3 { font-size: 22px; }
  h4 { font-size: 18px; }
  p { font-size: 15px; }

  /* Show mobile menu button */
  .mobile-menu-toggle { display: block; }
  .mobile-menu { display: block; }

  /* Hide desktop navigation */
  .main-nav { display: none; }

  /* Header adjustments */
  .header-content {
    flex-direction: column;
    align-items: center;
  }

  .logo img { height: 50px; }

  /* Hero section */
  .hero-section {
    padding: 60px 20px;
  }

  .cta-buttons {
    flex-direction: column;
    width: 100%;
  }

  .btn-primary,
  .btn-secondary {
    width: 100%;
    text-align: center;
  }

  /* Section spacing */
  section {
    padding: 30px 16px;
    margin-bottom: 40px;
  }

  /* Cards and grids */
  .card,
  .pillar-card,
  .service-card,
  .resource-card,
  .tool-card,
  .post-card,
  .link-card,
  .value-card,
  .achievement,
  .step,
  .resource {
    flex: 1 1 100%;
    min-width: 100%;
  }

  /* Text-image sections */
  .text-image-section {
    flex-direction: column;
  }

  .text-image-section img {
    flex: 1 1 100%;
  }

  /* Metrics grid */
  .metrics-grid,
  .trust-elements {
    flex-direction: column;
    align-items: stretch;
  }

  .metric,
  .trust-item {
    flex: 1 1 100%;
  }

  /* Testimonial cards */
  .testimonials-grid {
    flex-direction: column;
  }

  .testimonial-card {
    flex: 1 1 100%;
  }

  /* Footer */
  .footer-content {
    flex-direction: column;
    gap: 32px;
  }

  .footer-column {
    flex: 1 1 100%;
  }

  .legal-links {
    flex-direction: column;
    gap: 8px;
  }

  /* Cookie banner */
  .cookie-content {
    flex-direction: column;
    align-items: stretch;
  }

  .cookie-buttons {
    flex-direction: column;
  }

  .cookie-btn {
    width: 100%;
    text-align: center;
  }

  /* Modal adjustments */
  .cookie-modal-content {
    padding: 24px;
    max-width: 95%;
  }

  /* Contact methods */
  .contact-methods {
    flex-direction: column;
  }

  .contact-card {
    flex: 1 1 100%;
  }

  /* Categories */
  .category,
  .category-card {
    flex: 1 1 100%;
    min-width: 100%;
  }

  /* Location details */
  .location-details {
    flex-direction: column;
  }

  .location-details .detail {
    flex: 1 1 100%;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  /* Tablet adjustments */
  .card,
  .pillar-card,
  .service-card,
  .resource-card {
    flex: 1 1 calc(50% - 24px);
  }

  .container {
    padding: 0 30px;
  }
}

/* ============================================
   ANIMATIONS & TRANSITIONS
   ============================================ */

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-section,
section {
  animation: fadeIn 0.6s ease-out;
}

/* ============================================
   PRINT STYLES
   ============================================ */

@media print {
  .mobile-menu-toggle,
  .mobile-menu,
  .cookie-banner,
  .cookie-modal {
    display: none !important;
  }

  header {
    position: static;
  }

  a {
    color: #000;
    text-decoration: underline;
  }

  .btn-primary,
  .btn-secondary {
    border: 2px solid #000;
  }
}