/* ============================================
   LEGENDCRYPT VITAL - MODERN BOLD DESIGN
   Design Style: Bold modern with strong typography
   ============================================ */

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

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

body {
  font-family: 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  line-height: 1.6;
  color: #1a1a1a;
  background-color: #ffffff;
  overflow-x: hidden;
}

/* TYPOGRAPHY - BOLD & STRONG */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 20px;
  color: #000000;
  text-transform: uppercase;
  letter-spacing: -0.5px;
}

h1 {
  font-size: 48px;
  margin-bottom: 24px;
}

h2 {
  font-size: 36px;
  margin-bottom: 20px;
}

h3 {
  font-size: 24px;
  margin-bottom: 16px;
}

h4 {
  font-size: 20px;
  margin-bottom: 16px;
}

p {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 16px;
  color: #333333;
}

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

li {
  margin-bottom: 12px;
  line-height: 1.8;
}

strong {
  font-weight: 700;
  color: #000000;
}

a {
  color: #2D5F3F;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

a:hover {
  color: #8B4513;
  transform: translateY(-2px);
}

/* CONTAINER & LAYOUT */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
}

/* HEADER - BOLD & PROMINENT */
header {
  background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

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

header img {
  height: 50px;
  width: auto;
  filter: brightness(0) invert(1);
  transition: transform 0.3s ease;
}

header img:hover {
  transform: scale(1.1);
}

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

.main-nav a {
  color: #ffffff;
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 8px 0;
  position: relative;
  transition: all 0.3s ease;
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: #F0E68C;
  transition: width 0.3s ease;
}

.main-nav a:hover {
  color: #F0E68C;
  transform: translateY(-2px);
}

.main-nav a:hover::after {
  width: 100%;
}

/* MOBILE MENU BUTTON */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 24px;
  z-index: 2000;
  background: #F0E68C;
  border: 3px solid #000000;
  color: #000000;
  font-size: 28px;
  font-weight: 900;
  width: 56px;
  height: 56px;
  border-radius: 8px;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
  background: #000000;
  color: #F0E68C;
  transform: scale(1.1);
}

/* MOBILE MENU OVERLAY */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  max-width: 400px;
  height: 100vh;
  background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
  z-index: 1999;
  display: flex;
  flex-direction: column;
  padding: 80px 32px 32px;
  box-shadow: -5px 0 30px rgba(0, 0, 0, 0.5);
  transition: right 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

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

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 24px;
  background: #F0E68C;
  border: 3px solid #ffffff;
  color: #000000;
  font-size: 32px;
  font-weight: 900;
  width: 56px;
  height: 56px;
  border-radius: 8px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.mobile-menu-close:hover {
  background: #ffffff;
  transform: rotate(90deg) scale(1.1);
}

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

.mobile-nav a {
  color: #ffffff;
  font-size: 20px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 16px 20px;
  background: rgba(255, 255, 255, 0.1);
  border-left: 5px solid #F0E68C;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.mobile-nav a:hover {
  background: #F0E68C;
  color: #000000;
  transform: translateX(10px);
  border-left-color: #8B4513;
}

/* HERO SECTION - BOLD & IMPACTFUL */
.hero {
  background: linear-gradient(135deg, #2D5F3F 0%, #1a4d2e 50%, #000000 100%);
  padding: 80px 20px;
  text-align: center;
  color: #ffffff;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 10px,
    rgba(240, 230, 140, 0.03) 10px,
    rgba(240, 230, 140, 0.03) 20px
  );
  pointer-events: none;
}

.hero .container {
  position: relative;
  z-index: 1;
}

.hero h1 {
  color: #ffffff;
  font-size: 56px;
  margin-bottom: 24px;
  text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.5);
  animation: fadeInUp 0.8s ease;
}

.hero p {
  font-size: 20px;
  color: #F0E68C;
  font-weight: 600;
  margin-bottom: 32px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  animation: fadeInUp 0.8s ease 0.2s backwards;
}

.hero .tagline {
  font-size: 18px;
  color: #ffffff;
  font-style: italic;
  margin-top: 16px;
}

/* BUTTONS - BOLD & HIGH CONTRAST */
.btn-primary,
.btn-secondary {
  display: inline-block;
  padding: 16px 40px;
  font-size: 16px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 3px solid transparent;
  text-align: center;
  min-width: 200px;
}

.btn-primary {
  background: #F0E68C;
  color: #000000;
  border-color: #000000;
  box-shadow: 0 6px 20px rgba(240, 230, 140, 0.4);
}

.btn-primary:hover {
  background: #000000;
  color: #F0E68C;
  border-color: #F0E68C;
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.btn-secondary {
  background: transparent;
  color: #ffffff;
  border-color: #F0E68C;
}

.btn-secondary:hover {
  background: #F0E68C;
  color: #000000;
  transform: translateY(-4px);
  box-shadow: 0 6px 20px rgba(240, 230, 140, 0.4);
}

.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 32px;
  animation: fadeInUp 0.8s ease 0.4s backwards;
}

/* SECTIONS - CONSISTENT SPACING */
section {
  margin-bottom: 60px;
  padding: 60px 20px;
}

section:nth-child(even) {
  background: #f8f8f8;
}

/* TRUST BADGES & SOCIAL PROOF */
.trust-badge,
.social-proof,
.guarantee,
.guarantee-badge {
  display: inline-block;
  padding: 12px 24px;
  background: rgba(240, 230, 140, 0.2);
  border: 2px solid #F0E68C;
  border-radius: 50px;
  font-weight: 700;
  font-size: 14px;
  color: #000000;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 16px;
}

/* VALUE PROPOSITION */
.value-proposition {
  text-align: center;
  background: #ffffff;
}

.value-proposition h2 {
  font-size: 42px;
  margin-bottom: 20px;
}

.value-proposition > p {
  font-size: 18px;
  color: #666666;
  max-width: 700px;
  margin: 0 auto 40px;
}

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

.benefit-card {
  flex: 1 1 calc(50% - 24px);
  min-width: 250px;
  max-width: 300px;
  padding: 32px 24px;
  background: #000000;
  color: #ffffff;
  border: 4px solid #F0E68C;
  border-radius: 12px;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
}

.benefit-card::before {
  content: '';
  position: absolute;
  top: -4px;
  left: -4px;
  right: -4px;
  bottom: -4px;
  background: linear-gradient(135deg, #F0E68C, #8B4513);
  border-radius: 12px;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.benefit-card:hover::before {
  opacity: 1;
}

.benefit-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
}

.benefit-card h3 {
  color: #F0E68C;
  font-size: 20px;
  margin-bottom: 16px;
}

.benefit-card p {
  color: #ffffff;
  font-size: 15px;
}

/* SERVICES GRID */
.services-overview,
.services-grid {
  text-align: center;
}

.services-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
  margin-top: 40px;
  margin-bottom: 40px;
}

.service-card {
  flex: 1 1 calc(33.333% - 32px);
  min-width: 280px;
  max-width: 380px;
  padding: 40px 32px;
  background: #ffffff;
  border: 4px solid #000000;
  border-radius: 16px;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  margin-bottom: 20px;
}

.service-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, #2D5F3F, #8B4513);
  border-radius: 16px;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
}

.service-card:hover::after {
  opacity: 1;
}

.service-card:hover {
  transform: translateY(-10px);
  border-color: #F0E68C;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.service-card:hover h3,
.service-card:hover p,
.service-card:hover .price {
  color: #ffffff;
}

.service-card h3 {
  font-size: 22px;
  margin-bottom: 16px;
  color: #000000;
  transition: color 0.3s ease;
}

.service-card p {
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 24px;
  color: #333333;
  transition: color 0.3s ease;
}

.service-card .price {
  display: block;
  font-size: 28px;
  font-weight: 900;
  color: #2D5F3F;
  margin-top: 16px;
  transition: color 0.3s ease;
}

/* TESTIMONIALS - HIGH CONTRAST */
.testimonials {
  background: linear-gradient(135deg, #1a1a1a 0%, #000000 100%);
  color: #ffffff;
  text-align: center;
}

.testimonials h2 {
  color: #F0E68C;
  margin-bottom: 40px;
}

.testimonials-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
  margin-top: 40px;
}

.testimonial-card {
  flex: 1 1 calc(50% - 32px);
  min-width: 300px;
  max-width: 500px;
  padding: 32px;
  background: #ffffff;
  border: 4px solid #F0E68C;
  border-radius: 16px;
  text-align: left;
  position: relative;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-start;
}

.testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: -20px;
  left: 20px;
  font-size: 80px;
  color: #F0E68C;
  font-weight: 900;
  line-height: 1;
}

.testimonial-card p {
  color: #000000;
  font-size: 16px;
  font-style: italic;
  line-height: 1.8;
  margin-bottom: 16px;
}

.testimonial-card .author {
  color: #2D5F3F;
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: block;
  margin-top: auto;
}

.social-proof {
  background: #F0E68C;
  color: #000000;
  margin-top: 32px;
}

/* STATS SECTION */
.stats {
  background: #F0E68C;
  text-align: center;
}

.stats-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: center;
  margin-top: 40px;
}

.stat-item {
  flex: 1 1 calc(25% - 40px);
  min-width: 200px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.stat-number {
  font-size: 56px;
  font-weight: 900;
  color: #000000;
  line-height: 1;
}

.stat-label {
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #333333;
}

/* CTA BANNER - BOLD CALL TO ACTION */
.cta-banner {
  background: linear-gradient(135deg, #2D5F3F 0%, #000000 100%);
  color: #ffffff;
  text-align: center;
  padding: 80px 20px;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: repeating-linear-gradient(
    -45deg,
    transparent,
    transparent 20px,
    rgba(240, 230, 140, 0.05) 20px,
    rgba(240, 230, 140, 0.05) 40px
  );
  pointer-events: none;
}

.cta-banner .container {
  position: relative;
  z-index: 1;
}

.cta-banner h2 {
  color: #F0E68C;
  font-size: 42px;
  margin-bottom: 20px;
}

.cta-banner p {
  font-size: 18px;
  color: #ffffff;
  margin-bottom: 32px;
}

/* PROGRAMME SECTIONS */
.programme-overview,
.programme-grid,
.featured-programme {
  text-align: center;
}

.categories-grid,
.programmes {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin-top: 40px;
}

.category-card {
  flex: 1 1 calc(33.333% - 24px);
  min-width: 220px;
  max-width: 300px;
  padding: 40px 24px;
  background: #000000;
  color: #F0E68C;
  border: 4px solid #F0E68C;
  border-radius: 12px;
  font-weight: 800;
  font-size: 18px;
  text-transform: uppercase;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-bottom: 20px;
}

.category-card:hover {
  background: #F0E68C;
  color: #000000;
  transform: translateY(-6px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.featured-programme {
  background: linear-gradient(135deg, #F0E68C 0%, #ffffff 100%);
  padding: 60px 20px;
}

.featured-programme .badge {
  display: inline-block;
  padding: 8px 20px;
  background: #000000;
  color: #F0E68C;
  font-weight: 800;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 50px;
  margin-bottom: 20px;
}

.featured-programme h2 {
  font-size: 38px;
  margin-bottom: 16px;
}

.featured-programme .duration {
  font-size: 16px;
  font-weight: 700;
  color: #8B4513;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.featured-programme ul {
  text-align: left;
  max-width: 600px;
  margin: 32px auto;
  background: #ffffff;
  padding: 32px;
  border: 3px solid #000000;
  border-radius: 12px;
}

.featured-programme li {
  font-size: 15px;
  font-weight: 600;
  color: #333333;
  margin-bottom: 16px;
  padding-left: 24px;
  position: relative;
}

.featured-programme li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #2D5F3F;
  font-weight: 900;
  font-size: 18px;
}

.featured-programme .results {
  font-size: 16px;
  font-weight: 700;
  color: #2D5F3F;
  background: #ffffff;
  padding: 20px 32px;
  border-radius: 8px;
  border: 3px solid #2D5F3F;
  margin: 24px auto;
  max-width: 700px;
}

.featured-programme .price {
  font-size: 48px;
  font-weight: 900;
  color: #000000;
  margin: 24px 0;
}

.programme-card {
  flex: 1 1 calc(33.333% - 24px);
  min-width: 260px;
  max-width: 350px;
  padding: 32px 24px;
  background: #ffffff;
  border: 4px solid #000000;
  border-radius: 12px;
  text-align: center;
  transition: all 0.3s ease;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.programme-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
  border-color: #F0E68C;
  background: #000000;
}

.programme-card:hover h3,
.programme-card:hover p,
.programme-card:hover .duration,
.programme-card:hover .price {
  color: #ffffff;
}

.programme-card h3 {
  font-size: 20px;
  margin-bottom: 12px;
  color: #000000;
  transition: color 0.3s ease;
}

.programme-card .duration {
  font-size: 14px;
  font-weight: 700;
  color: #8B4513;
  text-transform: uppercase;
  margin-bottom: 16px;
  transition: color 0.3s ease;
}

.programme-card p {
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 20px;
  color: #666666;
  transition: color 0.3s ease;
}

.programme-card .price {
  font-size: 32px;
  font-weight: 900;
  color: #2D5F3F;
  margin-top: auto;
  transition: color 0.3s ease;
}

.programme-benefits {
  background: #f8f8f8;
  text-align: center;
}

.programme-benefits ul {
  max-width: 700px;
  margin: 32px auto;
  text-align: left;
}

.programme-benefits li {
  font-size: 16px;
  font-weight: 600;
  padding-left: 32px;
  position: relative;
  margin-bottom: 16px;
}

.programme-benefits li::before {
  content: '●';
  position: absolute;
  left: 0;
  color: #F0E68C;
  font-size: 24px;
  line-height: 1;
}

/* SERVICE DETAILED PAGES */
.service-detailed,
.services-intro {
  max-width: 900px;
  margin: 0 auto;
  padding: 60px 20px;
}

.service-detailed h2 {
  font-size: 36px;
  margin-bottom: 20px;
}

.service-detailed .price {
  display: inline-block;
  font-size: 32px;
  font-weight: 900;
  color: #2D5F3F;
  background: #F0E68C;
  padding: 12px 32px;
  border-radius: 8px;
  border: 3px solid #000000;
  margin: 20px 0;
}

.service-detailed h3 {
  font-size: 24px;
  margin: 32px 0 20px;
  color: #000000;
}

.service-detailed ul {
  margin: 24px 0;
}

.service-detailed li {
  font-size: 16px;
  margin-bottom: 12px;
  padding-left: 28px;
  position: relative;
}

.service-detailed li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #2D5F3F;
  font-weight: 900;
  font-size: 18px;
}

.service-detailed strong {
  color: #8B4513;
}

/* PRICING PAGES */
.pricing-philosophy,
.pricing-tiers,
.pricing-table,
.payment-options,
.money-back-guarantee {
  text-align: center;
}

.tiers-grid,
.packages-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
  margin-top: 40px;
}

.tier-card,
.package-card {
  flex: 1 1 calc(33.333% - 32px);
  min-width: 280px;
  max-width: 380px;
  padding: 40px 32px;
  background: #ffffff;
  border: 4px solid #000000;
  border-radius: 16px;
  text-align: center;
  transition: all 0.3s ease;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.tier-card:hover,
.package-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
  border-color: #F0E68C;
}

.package-card.featured {
  background: linear-gradient(135deg, #F0E68C 0%, #ffffff 100%);
  border-color: #2D5F3F;
  border-width: 5px;
  transform: scale(1.05);
}

.package-card.featured:hover {
  transform: scale(1.1) translateY(-10px);
}

.package-card .badge {
  display: inline-block;
  padding: 8px 20px;
  background: #000000;
  color: #F0E68C;
  font-weight: 800;
  font-size: 12px;
  text-transform: uppercase;
  border-radius: 50px;
  margin-bottom: 16px;
}

.tier-card h3,
.package-card h3 {
  font-size: 24px;
  margin-bottom: 16px;
}

.tier-card .range,
.package-card .price {
  font-size: 36px;
  font-weight: 900;
  color: #2D5F3F;
  margin: 16px 0;
}

.tier-card .duration {
  font-size: 14px;
  font-weight: 700;
  color: #8B4513;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.package-card .savings {
  font-size: 14px;
  font-weight: 700;
  color: #8B4513;
  background: rgba(139, 69, 19, 0.1);
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 16px;
}

.tier-card .examples,
.package-card .ideal {
  font-size: 13px;
  color: #666666;
  font-style: italic;
  margin-top: 16px;
}

.pricing-table ul {
  max-width: 700px;
  margin: 32px auto;
  text-align: left;
}

.pricing-table li {
  font-size: 16px;
  font-weight: 600;
  padding: 16px 24px;
  background: #ffffff;
  border: 2px solid #000000;
  border-radius: 8px;
  margin-bottom: 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  transition: all 0.3s ease;
}

.pricing-table li:hover {
  background: #F0E68C;
  transform: translateX(8px);
}

.pricing-table .note {
  font-size: 14px;
  color: #666666;
  font-style: italic;
  margin-top: 24px;
}

.payment-options ul {
  max-width: 600px;
  margin: 32px auto;
}

.payment-options li {
  font-size: 16px;
  font-weight: 600;
  padding-left: 32px;
  position: relative;
  margin-bottom: 16px;
}

.payment-options li::before {
  content: '●';
  position: absolute;
  left: 0;
  color: #2D5F3F;
  font-size: 20px;
}

.money-back-guarantee {
  background: linear-gradient(135deg, #F0E68C 0%, #ffffff 100%);
}

.money-back-guarantee h2 {
  color: #000000;
}

.money-back-guarantee ul {
  max-width: 600px;
  margin: 32px auto;
  text-align: left;
}

/* BLOG SECTIONS */
.blog-categories {
  text-align: center;
}

.featured-posts,
.blog-grid {
  text-align: center;
}

.posts-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
  margin-top: 40px;
}

.post-card {
  flex: 1 1 calc(33.333% - 32px);
  min-width: 280px;
  max-width: 380px;
  padding: 32px 24px;
  background: #ffffff;
  border: 4px solid #000000;
  border-radius: 12px;
  text-align: left;
  transition: all 0.3s ease;
  margin-bottom: 20px;
  cursor: pointer;
}

.post-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
  border-color: #F0E68C;
}

.post-card .category {
  display: inline-block;
  padding: 6px 16px;
  background: #F0E68C;
  color: #000000;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  border-radius: 50px;
  margin-bottom: 16px;
}

.post-card h3 {
  font-size: 20px;
  margin-bottom: 16px;
  line-height: 1.4;
}

.post-card .read-time,
.post-card .date {
  font-size: 13px;
  color: #666666;
  font-weight: 600;
  margin-top: 12px;
}

.newsletter-signup {
  background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
  color: #ffffff;
  text-align: center;
}

.newsletter-signup h2 {
  color: #F0E68C;
}

.newsletter-signup ul {
  max-width: 600px;
  margin: 32px auto;
  text-align: left;
}

.newsletter-signup li {
  font-size: 15px;
  color: #ffffff;
  padding-left: 28px;
  position: relative;
  margin-bottom: 16px;
}

.newsletter-signup li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #F0E68C;
  font-weight: 900;
  font-size: 18px;
}

.privacy-note {
  font-size: 13px;
  color: #cccccc;
  font-style: italic;
  margin-top: 24px;
}

/* CONTACT PAGES */
.contact-methods,
.location-info,
.opening-hours {
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.methods-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
  margin-top: 40px;
}

.method-card {
  flex: 1 1 calc(50% - 32px);
  min-width: 280px;
  max-width: 450px;
  padding: 40px 32px;
  background: #000000;
  color: #ffffff;
  border: 4px solid #F0E68C;
  border-radius: 16px;
  text-align: center;
  transition: all 0.3s ease;
  margin-bottom: 20px;
}

.method-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
  background: #F0E68C;
  color: #000000;
}

.method-card h3 {
  font-size: 24px;
  margin-bottom: 20px;
  color: inherit;
}

.method-card p {
  font-size: 16px;
  margin-bottom: 12px;
  color: inherit;
}

.location-info h3 {
  font-size: 28px;
  margin: 32px 0 20px;
}

.location-info ul {
  max-width: 600px;
  margin: 24px auto;
  text-align: left;
}

.opening-hours ul {
  max-width: 500px;
  margin: 32px auto;
  text-align: left;
}

.opening-hours li {
  font-size: 16px;
  font-weight: 600;
  padding: 12px 20px;
  background: #ffffff;
  border: 2px solid #000000;
  border-radius: 8px;
  margin-bottom: 12px;
  display: flex;
  justify-content: space-between;
}

.response-time {
  display: inline-block;
  padding: 10px 24px;
  background: #F0E68C;
  color: #000000;
  font-weight: 700;
  border-radius: 50px;
  margin-top: 16px;
}

/* ABOUT US PAGE */
.story,
.team,
.credentials,
.philosophy,
.location {
  max-width: 900px;
  margin: 0 auto;
}

.story h3 {
  font-size: 28px;
  margin: 40px 0 20px;
}

.story ul {
  margin: 24px 0;
}

.story li {
  font-size: 16px;
  margin-bottom: 16px;
  padding-left: 32px;
  position: relative;
}

.story li::before {
  content: '●';
  position: absolute;
  left: 0;
  color: #F0E68C;
  font-size: 24px;
  line-height: 1;
}

.credentials ul {
  max-width: 700px;
  margin: 32px auto;
}

.credentials li {
  font-size: 16px;
  font-weight: 600;
  padding: 16px 24px;
  background: #F0E68C;
  border: 3px solid #000000;
  border-radius: 8px;
  margin-bottom: 16px;
  text-align: center;
  transition: all 0.3s ease;
}

.credentials li:hover {
  background: #000000;
  color: #F0E68C;
  transform: translateX(8px);
}

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

.principle-card {
  flex: 1 1 calc(50% - 24px);
  min-width: 260px;
  max-width: 450px;
  padding: 32px 24px;
  background: #ffffff;
  border: 4px solid #000000;
  border-radius: 12px;
  text-align: center;
  transition: all 0.3s ease;
  margin-bottom: 20px;
}

.principle-card:hover {
  background: #000000;
  color: #ffffff;
  transform: translateY(-6px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.principle-card:hover h3 {
  color: #F0E68C;
}

.principle-card:hover p {
  color: #ffffff;
}

.principle-card h3 {
  font-size: 20px;
  margin-bottom: 16px;
  transition: color 0.3s ease;
}

/* LEGAL PAGES */
.legal-content {
  max-width: 900px;
  margin: 0 auto;
  padding: 60px 20px;
}

.legal-content h1 {
  font-size: 42px;
  margin-bottom: 32px;
}

.legal-content h2 {
  font-size: 28px;
  margin: 40px 0 20px;
  color: #2D5F3F;
}

.legal-content h3 {
  font-size: 20px;
  margin: 24px 0 16px;
  color: #8B4513;
}

.legal-content p {
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 16px;
}

.legal-content ul {
  margin: 20px 0 20px 24px;
}

.legal-content li {
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 12px;
}

.legal-content a {
  color: #2D5F3F;
  text-decoration: underline;
}

.legal-content a:hover {
  color: #8B4513;
}

/* THANK YOU PAGE */
.thank-you {
  text-align: center;
  padding: 80px 20px;
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.thank-you h1 {
  font-size: 56px;
  color: #2D5F3F;
  margin-bottom: 24px;
}

.thank-you p {
  font-size: 18px;
  margin-bottom: 24px;
}

.thank-you ul {
  max-width: 500px;
  margin: 32px auto;
  text-align: left;
}

.thank-you li {
  font-size: 16px;
  margin-bottom: 16px;
  padding-left: 32px;
  position: relative;
}

.thank-you li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: #F0E68C;
  font-weight: 900;
  font-size: 20px;
}

/* FOOTER - BOLD & STRUCTURED */
footer {
  background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
  color: #ffffff;
  padding: 60px 20px 20px;
  margin-top: 60px;
}

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

.footer-section {
  flex: 1 1 calc(25% - 40px);
  min-width: 220px;
}

.footer-section img {
  height: 40px;
  width: auto;
  margin-bottom: 16px;
  filter: brightness(0) invert(1);
}

.footer-section h4 {
  font-size: 18px;
  color: #F0E68C;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-section p {
  font-size: 14px;
  line-height: 1.8;
  color: #cccccc;
  margin-bottom: 12px;
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-nav a {
  color: #cccccc;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.3s ease;
  padding: 4px 0;
}

.footer-nav a:hover {
  color: #F0E68C;
  transform: translateX(8px);
}

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

.footer-bottom p {
  font-size: 13px;
  color: #999999;
}

/* COOKIE CONSENT BANNER */
.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #000000;
  color: #ffffff;
  padding: 24px 20px;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.4);
  z-index: 1998;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  border-top: 4px solid #F0E68C;
}

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

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

.cookie-consent-text {
  flex: 1 1 400px;
}

.cookie-consent-text p {
  font-size: 14px;
  line-height: 1.6;
  color: #cccccc;
  margin-bottom: 8px;
}

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

.cookie-btn {
  padding: 12px 24px;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  white-space: nowrap;
}

.cookie-btn-accept {
  background: #F0E68C;
  color: #000000;
  border-color: #F0E68C;
}

.cookie-btn-accept:hover {
  background: #000000;
  color: #F0E68C;
  transform: translateY(-2px);
}

.cookie-btn-reject {
  background: transparent;
  color: #ffffff;
  border-color: #666666;
}

.cookie-btn-reject:hover {
  background: #666666;
  border-color: #ffffff;
  transform: translateY(-2px);
}

.cookie-btn-settings {
  background: transparent;
  color: #F0E68C;
  border-color: #F0E68C;
}

.cookie-btn-settings:hover {
  background: #F0E68C;
  color: #000000;
  transform: translateY(-2px);
}

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

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

.cookie-modal-content {
  background: #ffffff;
  max-width: 600px;
  width: 100%;
  border-radius: 16px;
  padding: 40px 32px;
  position: relative;
  max-height: 90vh;
  overflow-y: auto;
  border: 4px solid #F0E68C;
}

.cookie-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: #000000;
  color: #F0E68C;
  border: none;
  font-size: 28px;
  font-weight: 900;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.cookie-modal-close:hover {
  background: #F0E68C;
  color: #000000;
  transform: rotate(90deg);
}

.cookie-modal h2 {
  font-size: 28px;
  margin-bottom: 24px;
  color: #000000;
}

.cookie-category {
  margin-bottom: 24px;
  padding: 20px;
  background: #f8f8f8;
  border-radius: 8px;
  border: 2px solid #000000;
}

.cookie-category h3 {
  font-size: 18px;
  margin-bottom: 12px;
  color: #000000;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cookie-category p {
  font-size: 14px;
  color: #666666;
  line-height: 1.6;
}

.cookie-toggle {
  position: relative;
  display: inline-block;
  width: 50px;
  height: 26px;
}

.cookie-toggle input {
  opacity: 0;
  width: 0;
  height: 0;
}

.cookie-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #cccccc;
  transition: 0.3s;
  border-radius: 26px;
  border: 2px solid #000000;
}

.cookie-slider:before {
  position: absolute;
  content: '';
  height: 18px;
  width: 18px;
  left: 2px;
  bottom: 2px;
  background-color: #000000;
  transition: 0.3s;
  border-radius: 50%;
}

input:checked + .cookie-slider {
  background-color: #F0E68C;
}

input:checked + .cookie-slider:before {
  transform: translateX(24px);
}

.cookie-slider.disabled {
  cursor: not-allowed;
  opacity: 0.5;
}

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

/* ANIMATIONS */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

/* RESPONSIVE DESIGN - MOBILE FIRST */
@media (max-width: 768px) {
  /* SHOW MOBILE MENU BUTTON */
  .mobile-menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  /* HIDE DESKTOP NAVIGATION */
  .main-nav {
    display: none;
  }

  /* TYPOGRAPHY ADJUSTMENTS */
  h1 {
    font-size: 36px;
  }

  h2 {
    font-size: 28px;
  }

  h3 {
    font-size: 20px;
  }

  .hero h1 {
    font-size: 40px;
  }

  .hero p {
    font-size: 16px;
  }

  /* FLEXBOX LAYOUTS FOR MOBILE */
  .header-content {
    flex-direction: column;
    gap: 16px;
  }

  .benefits-grid,
  .services-grid,
  .testimonials-grid,
  .stats-grid,
  .categories-grid,
  .programmes,
  .posts-grid,
  .tiers-grid,
  .packages-grid,
  .methods-grid,
  .principles-grid {
    flex-direction: column;
    gap: 20px;
  }

  .benefit-card,
  .service-card,
  .testimonial-card,
  .stat-item,
  .category-card,
  .programme-card,
  .post-card,
  .tier-card,
  .package-card,
  .method-card,
  .principle-card {
    flex: 1 1 100%;
    max-width: 100%;
  }

  /* BUTTONS */
  .cta-buttons {
    flex-direction: column;
    align-items: stretch;
  }

  .btn-primary,
  .btn-secondary {
    width: 100%;
    min-width: auto;
  }

  /* SECTIONS */
  section {
    padding: 40px 16px;
    margin-bottom: 40px;
  }

  .hero {
    padding: 60px 16px;
  }

  /* FEATURED PROGRAMME */
  .featured-programme ul {
    padding: 24px;
  }

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

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

  /* COOKIE CONSENT */
  .cookie-consent-content {
    flex-direction: column;
    align-items: stretch;
  }

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

  .cookie-btn {
    width: 100%;
  }

  /* MODAL */
  .cookie-modal-content {
    padding: 32px 20px;
    margin: 20px;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  /* TABLET ADJUSTMENTS */
  .benefit-card,
  .service-card,
  .programme-card,
  .post-card,
  .tier-card,
  .package-card {
    flex: 1 1 calc(50% - 24px);
  }

  h1 {
    font-size: 42px;
  }

  h2 {
    font-size: 32px;
  }

  .hero h1 {
    font-size: 48px;
  }
}

/* PRINT STYLES */
@media print {
  .mobile-menu-toggle,
  .mobile-menu,
  .cookie-consent,
  .cookie-modal,
  .cta-banner,
  header,
  footer {
    display: none;
  }

  body {
    font-size: 12pt;
    line-height: 1.5;
    color: #000000;
  }

  h1, h2, h3, h4, h5, h6 {
    page-break-after: avoid;
  }

  img {
    max-width: 100%;
  }
}

/* ACCESSIBILITY IMPROVEMENTS */
:focus {
  outline: 3px solid #F0E68C;
  outline-offset: 2px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

/* PREVENT OVERLAP - CRITICAL SPACING */
.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;
}

@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
  }
}

/* HIGH CONTRAST FOR READABILITY */
body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ENSURE PROPER Z-INDEX STACKING */
header { z-index: 1000; }
.cookie-consent { z-index: 1998; }
.cookie-modal { z-index: 1999; }
.mobile-menu-toggle { z-index: 2000; }
.mobile-menu { z-index: 1999; }

/* END OF STYLESHEET */