/* ---------------------------------------------------------------------- */
/* --- The CORSET Collective: Global Styles and Design System (CSS) --- */
/* ---------------------------------------------------------------------- */

/* 1. Root Variables (Color Palette & Typography) */
:root {
  /* Brand Colors (from Style Guide) */
  --c-charcoal: #1A1A1A;    /* Headers, main text, dark backgrounds */
  --c-offwhite: #FAF9F6;    /* Main background areas */
  --c-cool-grey: #B0B0B0;   /* Secondary text, borders */
  --c-gold: #C08A2B;        /* Primary CTAs, luxury highlight */
  --c-warmwhite: #FFFFFF;   /* Text on dark backgrounds */
  --c-soft-beige: #EDE6DD;  /* Background section alternates */
  --c-slate: #5A5A5A;       /* Muted heading/subheading tone */
  --header-bg: rgba(26, 26, 26, 0.7); /* Semi-transparent dark for header */
  --header-bg-scrolled: rgba(26, 26, 26, 0.9); /* More opaque when scrolled */

  /* Typography Variables */
  --font-heading: '/* Playfair */ Display', serif;
  --font-body: 'Montserrat', sans-serif;
  --line-height-body: 1.7;
  
  /* Layout */
  --header-height: 80px;
  --header-scrolled-height: 70px;
  --transition-base: all 0.3s ease;
  
  /* Glassmorphism Effect */
  --glass-blur: blur(16px);
  --glass-border: 1px solid rgba(255, 255, 255, 0.15);
  --glass-shadow: 0 8px 40px rgba(0, 0, 0, 0.2);
  --backdrop-brightness: brightness(0.9);
  --backdrop-saturation: saturate(180%);
}

 /* Background Classes */
        .bg-charcoal-dark { background-color: var(--c-charcoal); }
        .bg-soft-beige { background-color: var(--c-soft-beige); }

/* 2. Global Typography & Body Reset */

/* Apply body font, color, and background */
body {
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--c-charcoal);
  background-color: var(--c-offwhite);
  line-height: var(--line-height-body);
}

/* Smooth scrolling and header spacing */
html {
  scroll-behavior: smooth;
}

/* Ensure content is not hidden behind fixed header */
body { 
  padding-top: var(--header-height);
  transition: var(--transition-base);
}

/* Professional spacing between sections */
.site-section { padding-top: 4.5rem; padding-bottom: 4.5rem; }
@media (max-width: 767.98px) {
  :root { --header-height: 64px; }
  .site-section { padding-top: 3rem; padding-bottom: 3rem; }
}

/* Solution section: Two pillar/* Header Styles with Glassmorphism */
.pillar-card h3 {
  font-family: var(--font-heading);
    font-size: 1.25rem;
  }
  
  .navbar-brand img {
    height: 28px;
  }
  
  .btn-gold {
    padding: 0.5rem 1.25rem !important;
    font-size: 0.8rem;
  }


/* Pillar card styles */
.pillar-card p {
  color: var(--c-slate);
}

@media (max-width: 575.98px) {
  .pillar-card { padding: 1rem; }
}

/* Reusable site card used across sections (applies global typography to headings inside) */
.site-card {
  /* background-color: var(--c-offwhite); */
  /* border: 1px dashed rgba(0,0,0,0.06); */
  /* border-radius: 10px; */
  /* padding: 1.25rem; */
  /* box-shadow: 0 6px 18px rgba(8,8,8,0.04); */

  background-color: var(--c-warmwhite);
            border-radius: 12px;
            padding: 2rem;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
            transition: transform 0.3s, box-shadow 0.3s;
}
.site-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
        }

/* Site icon wrapper: consistent, reusable icon style for inline SVGs */
.site-icon {
  display: inline-grid;
  place-items: center;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background-color: rgba(192,138,43,0.08); /* subtle gold tint */
  color: var(--c-gold); /* SVGs use currentColor */
  box-shadow: 0 6px 12px rgba(12,12,12,0.06);
}
.site-icon svg { width: 56%; height: 56%; display: block; }

/* Modifier when icon needs a denser, filled look */
.site-icon--filled { background-color: var(--c-gold); color: var(--c-warmwhite); }

@media (max-width: 575.98px) {
  .site-icon { width: 52px; height: 52px; }
}

/* Site-card heading & body defaults (reusable across all cards) */
.site-card h3 {
  font-family: var(--font-heading);
  color: var(--c-charcoal);
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}
.site-card p {
  color: var(--c-slate);
  line-height: 1.6;
}



/* Headings (H1, H2, H3) - Playfair Display */
h1, h2, h3 {
  font-family: var(--font-heading);
  color: var(--c-charcoal);
  letter-spacing: -0.01em; /* Tighter spacing for premium look */
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
}

h1 { font-size: 2.5rem; font-weight: 700; } /* Bold for H1 */
h2 { font-size: 2rem; font-weight: 600; } /* Semi-bold for H2 */
h3 { font-size: 1.75rem; font-weight: 600; } /* Semi-bold for H3 */

/* Subheadings (H4, H5) - Montserrat, Slate Grey */
h4, h5 {
  font-family: var(--font-body);
  color: var(--c-slate);
  font-weight: 500;
}

/* Links (General) */
a {
    color: var(--c-gold);
    transition: color 0.3s;
}
a:hover {
    color: #9B6D20; /* Darker bronze hover */
}

/* Primary CTA Button (Apply to Join) */
.btn-gold {
  background-color: var(--c-gold);
  color: var(--c-warmwhite);
  border: none;
  font-family: var(--font-body);
  font-weight: 700;
  padding: 0.75rem 1.5rem;
  /* border-radius: 0; */
  transition: background-color 0.3s, transform 0.1s;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.btn-gold:hover {
  background-color: #9B6D20;
  color: var(--c-warmwhite);
  transform: translateY(-1px);
  box-shadow: 0 6px 8px rgba(0, 0, 0, 0.15);
}

@media (max-width: 320px) {
  .btn-gold {
    background-color: var(--c-gold);
    color: var(--c-warmwhite);
    border: none;
    font-family: var(--font-body);
    font-weight: 700;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    transition: background-color 0.3s, transform 0.1s;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
}

/* 3. Component-Specific Styling (Header & Navigation) */

/* Main Header Bar */
.navbar-brand-custom {
  font-size: 1.5rem;
  color: var(--c-offwhite) !important;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.brand-logo {
  height: 70px;
  width: auto;
  margin-right: 0.5rem;
}
.navbar-brand img {
    height: 58px;
}
.navbar li a{
  color: var(--c-offwhite);
}
.navbar li a:hover{
  color: var(--c-gold) !important;
}
.navbar li a:active{
  color: var(--c-gold) !important;
}
.navbar li a:focus{
  color: var(--c-gold) !important;
}
/* Main Navigation Bar Color */
.bg-charcoal {
  background-color: var(--c-charcoal) !important;
}

/* Offcanvas (Sidebar) Styling */
.offcanvas-custom {
  background-color: var(--c-charcoal);
  color: var(--c-offwhite);
  max-width: 80vw;
}

.offcanvas-header .btn-close {
  filter: invert(1); /* Makes the close button white */
}

.offcanvas-body .nav-link {
  font-family: var(--font-body);
  color: var(--c-offwhite);
  font-size: 1.1rem;
  padding: 0.75rem 0;
  transition: color 0.3s;
}

.offcanvas-body .nav-link:hover, .offcanvas-body .nav-link.active {
  color: var(--c-gold);
}
/* Hamburger Menu Icon Styling */
.navbar-toggler-custom {
  border-color: var(--c-offwhite);
}

.navbar-toggler-icon-custom {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%23FAF9F6' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Dropdown Menu Styling for Desktop */
.dropdown-menu {
    background-color: var(--c-charcoal);
    border: none;
    border-radius: 0.5rem;
    padding: 0.5rem 0;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4);
}
.dropdown-menu .dropdown-item {
    color: var(--c-offwhite);
    transition: background-color 0.3s, color 0.3s;
    font-family: var(--font-body);
    font-size: 0.95rem;
    padding: 0.5rem 1rem;
}

.dropdown-menu .dropdown-item:hover,
.dropdown-menu .dropdown-item:focus {
    background-color: #333333;
    color: var(--c-gold);
}

/* Placeholder Content Styling */
.placeholder-content {
    min-height: 80vh; 
    border: 1px dashed var(--c-slate); 
    background-color: var(--c-offwhite);
}
.placeholder-content p:last-child {
    color: var(--c-slate);
}

/* 4. Responsive Rules */

/* Desktop Navigation */
.nav-desktop-links {
  display: none !important;
}

@media (min-width: 992px) { /* Bootstrap 'lg' breakpoint */
  .navbar-toggler {
    display: none;
  }
  .nav-desktop-links {
    display: flex !important;
  }
  .navbar-brand-custom {
      margin-right: auto;
  }
  .offcanvas-toggle-btn {
      display: none !important;
  }
}

/* ----------------------------- */
/* Homepage Hero Section Styles  */
/* ----------------------------- */

html { scroll-behavior: smooth; }

.hero-section {
  min-height: 85vh;
  display: flex;
  align-items: center;
  padding: 4.5rem 0;
  background-color: var(--c-charcoal);
  background-image: linear-gradient(rgba(26,26,26,0.55), rgba(26,26,26,0.55));
  background-size: cover;
  background-position: center;
  color: var(--c-warmwhite);
  position: relative;
}

.hero-wireframe {
  border: 2px dashed rgba(255,255,255,0.12);
  padding: 2rem;
  background: rgba(0,0,0,0.18);
  border-radius: 10px;
}

.hero-topline {
  color: var(--c-gold);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.85rem;
}

.hero-section .display-4 {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--c-warmwhite);
  line-height: 1.05;
}

.hero-section .lead {
  color: rgba(255,255,255,0.92);
  margin-top: 1rem;
  font-size: 1.05rem;
}

.hero-image-placeholder {
  height: 320px;
  border-radius: 8px;
  background-image: linear-gradient(135deg, rgba(255,255,255,0.04), rgba(0,0,0,0.06));
  border: 1px dashed rgba(255,255,255,0.12);
}

@media (max-width: 991.98px){
  .hero-section { padding: 3rem 0; }
  .hero-image-placeholder { height: 220px; }
  .hero-wireframe { padding: 1.25rem; }
}

/* Small accessibility tweak for focus outlines on hero CTAs */
.hero-section .btn:focus {
  outline: 3px solid rgba(192,138,43,0.18);
  outline-offset: 3px;
}

/* ===================================
   PRICING SECTION STYLES
   =================================== */

.pricing-section {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #f9f9f9 0%, #f0f0f0 100%);
  padding: 5rem 0;
}

.pricing-card {
  background: white;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  height: 100%;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.05);
  transform-style: preserve-3d;
  perspective: 1000px;
  will-change: transform, box-shadow;
  background-image: 
    radial-gradient(circle at 1px 1px, rgba(0, 0, 0, 0.02) 1px, transparent 1px);
  background-size: 20px 20px;
}

.pricing-card.featured {
  border: 1px solid var(--c-gold);
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 20px 50px rgba(192, 138, 43, 0.2);
  position: relative;
  z-index: 2;
  background: linear-gradient(145deg, #ffffff 0%, #fffbf5 100%);
  border-top: 4px solid var(--c-gold);
}

.popular-badge {
  position: absolute;
  top: 20px;
  right: -40px;
  background: linear-gradient(135deg, var(--c-gold) 0%, #e6b84e 100%);
  color: white;
  padding: 0.35rem 2.5rem;
  transform: rotate(45deg);
  font-size: 0.8rem;
  font-weight: 700;
  text-align: center;
  width: 200px;
  box-shadow: 0 4px 15px rgba(192, 138, 43, 0.3);
  text-transform: uppercase;
  letter-spacing: 1px;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
  z-index: 10;
  animation: pulse 2s infinite;
}

.pricing-header {
  padding: 2.5rem 2rem;
  text-align: center;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  background: linear-gradient(135deg, #ffffff 0%, #fafafa 100%);
  position: relative;
  z-index: 1;
  transition: all 0.3s ease;
  overflow: hidden;
}

.pricing-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--c-gold), #f8d7a3);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.pricing-card:hover .pricing-header::before {
  opacity: 1;
}

.pricing-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--c-charcoal);
  margin-bottom: 1rem;
  font-family: var(--font-heading);
}

.price {
  margin: 1.5rem 0;
  line-height: 1;
}

.price .amount {
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--c-charcoal);
  font-family: var(--font-heading);
  background: linear-gradient(135deg, #2c3e50 0%, #4a6b8a 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
  line-height: 1;
  position: relative;
  margin: 0.5rem 0;
}

.pricing-card.featured .price .amount {
  background: linear-gradient(135deg, var(--c-gold) 0%, #e6b84e 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.price .currency {
  font-size: 1.5rem;
  vertical-align: top;
  margin-right: 2px;
  color: var(--c-gold);
  font-weight: 600;
}

.price .period {
  font-size: 1rem;
  color: var(--c-slate);
  font-weight: 400;
  margin-left: 4px;
}

.pricing-features {
  padding: 1.5rem 2rem 2.5rem;
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.feature-item {
  padding: 0.85rem 1rem;
  display: flex;
  align-items: center;
  color: var(--c-charcoal);
  border-bottom: 1px dashed rgba(0, 0, 0, 0.05);
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.5, 1);
  position: relative;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.7);
  border-radius: 6px;
  margin: 0.25rem 0;
}

.feature-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 3px;
  background: var(--c-gold);
  transform: scaleY(0);
  transition: transform 0.3s ease;
}

.feature-item:hover {
  transform: translateX(5px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  background: white;
}

.feature-item:hover::before {
  transform: scaleY(1);
}

.feature-item:last-child {
  border-bottom: none;
}

.feature-item i {
  font-size: 1.1rem;
  min-width: 24px;
  text-align: center;
  margin-right: 0.75rem;
  color: var(--c-gold);
}

/* Billing Toggle */
#billingToggle {
  cursor: pointer;
  width: 3.5em;
  height: 1.8em;
}

#billingToggle:checked {
  background-color: var(--c-gold);
  border-color: var(--c-gold);
}

.form-switch .form-check-input:focus {
  border-color: rgba(192, 138, 43, 0.25);
  box-shadow: 0 0 0 0.25rem rgba(192, 138, 43, 0.25);
}

/* Button Styles */
.btn-outline-gold {
  color: var(--c-gold);
  border: 2px solid var(--c-gold);
  background: transparent;
  position: relative;
  overflow: hidden;
  z-index: 1;
  transition: all 0.4s cubic-bezier(0.19, 1, 0.22, 1);
  font-weight: 600;
  letter-spacing: 0.5px;
  padding: 0.75rem 2rem;
  border-radius: 50px;
}

.btn-outline-gold::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--c-gold);
  z-index: -1;
  transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
}

.btn-outline-gold:hover {
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(192, 138, 43, 0.3);
}

.btn-outline-gold:hover::before {
  left: 0;
}

.btn-gold {
  background: linear-gradient(135deg, var(--c-gold) 0%, #e6b84e 100%);
  color: white;
  border: none;
  position: relative;
  overflow: hidden;
  z-index: 1;
  font-weight: 600;
  letter-spacing: 0.5px;
  padding: 0.75rem 2rem;
  border-radius: 50px;
  box-shadow: 0 4px 15px rgba(192, 138, 43, 0.3);
  transition: all 0.3s ease;
}

.btn-gold::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background: linear-gradient(135deg, #e6b84e 0%, var(--c-gold) 100%);
  z-index: -1;
  transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
  opacity: 0;
}

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(192, 138, 43, 0.4);
}

.btn-gold:hover::before {
  width: 100%;
  opacity: 1;
}

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

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(192, 138, 43, 0.4);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(192, 138, 43, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(192, 138, 43, 0);
  }
}

@keyframes float {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0px);
  }
}

.pricing-card {
  animation: fadeInUp 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
  opacity: 0;
  transform-origin: center bottom;
}

.pricing-card.featured {
  animation: fadeInUp 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) forwards, float 6s ease-in-out infinite;
  animation-delay: 0.2s, 1s;
}

.pricing-card:nth-child(1) { animation-delay: 0.1s; }
.pricing-card:nth-child(2) { animation-delay: 0.2s; }
.pricing-card:nth-child(3) { animation-delay: 0.3s; }

/* Problem section styling (The End of the Fragmented Path) */
.wireframe-box {
  border: 2px dashed rgba(26,26,26,0.08);
  background-color: var(--c-offwhite);
  border-radius: 8px;
}
.wireframe-box h3 {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  color: var(--c-charcoal);
}
.wireframe-box p.lead {
  color: var(--c-slate);
  font-size: 1.05rem;
  line-height: 1.8;
}

@media (max-width: 767.98px) {
  .wireframe-box { padding: 2rem 1rem; }
}

/* Apex Protocol spotlight section */
.apex-section {
  background-color: var(--c-soft-beige);
}
.apex-section h2 { font-family: var(--font-heading); }
.apex-section h4 { font-family: var(--font-body); color: var(--c-slate); font-weight: 500; }
.apex-section p { color: var(--c-charcoal); max-width: 70ch; margin: 0 auto 1.5rem; }

/* Membership Section Styling */
.membership-section {
  background-color: var(--c-offwhite);
}

.tier-card {
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.tier-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 24px rgba(8,8,8,0.08);
}

.tier-card--featured {
  border-color: var(--c-gold);
  border-style: solid;
  border-width: 2px;
}

.tier-heading {
  margin-bottom: 1.5rem;
}

.tier-line {
  width: 40px;
  height: 2px;
  background-color: var(--c-gold);
  margin-top: 0.75rem;
}

.tier-card .btn {
  width: 100%;
}

.tier-card .card-button {
  margin-top: auto;
  padding-top: 1.5rem;
}

.tier-benefits {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
}

.tier-benefits li {
  position: relative;
  padding-left: 1.75rem;
  margin-bottom: 0.75rem;
  color: var(--c-slate);
  font-size: 0.95rem;
}

.tier-benefits li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--c-gold);
  font-weight: bold;
}

.tier-price {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--c-charcoal);
  margin: 1rem 0;
}

.tier-price small {
  font-size: 1rem;
  font-weight: normal;
  color: var(--c-slate);
}

.preview-section {
  position: relative;
  padding: 4rem 0;
  margin-top: 3rem;
  background-color: var(--c-soft-beige);
  overflow: hidden;
}

.preview-content {
  filter: blur(4px);
  pointer-events: none;
  -webkit-user-select: none;
  user-select: none;
  opacity: 0.7;
}

.preview-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom, transparent 0%, var(--c-soft-beige) 90%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  padding: 2rem;
}

/* About Page Styles */
.about-hero {
  min-height: 60vh;
  background-image: linear-gradient(rgba(26,26,26,0.75), rgba(26,26,26,0.75));
}

.about-hero .display-3 {
  font-family: var(--font-heading);
  color: var(--c-warmwhite);
  font-weight: 700;
  line-height: 1.2;
}

.section-title {
  font-family: var(--font-heading);
  color: var(--c-charcoal);
  font-size: 2.5rem;
  margin-bottom: 2rem;
}

.section-content {
  max-width: 800px;
  margin: 0 auto;
}

.text-gold {
  color: var(--c-gold) !important;
}

.principles-section {
  background-color: var(--c-offwhite);
}

.principles-list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-top: 3rem;
}

.principle-item {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.principle-icon {
  flex-shrink: 0;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background-color: var(--c-gold);
  color: var(--c-warmwhite);
  display: grid;
  place-items: center;
  font-size: 1.5rem;
}

.principle-item p {
  font-size: 1.25rem;
  margin: 0;
  color: var(--c-charcoal);
}

.vision-section {
  background-color: var(--c-charcoal);
  position: relative;
}

.vision-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(192,138,43,0.15), transparent 50%);
  pointer-events: none;
}

.vision-section .section-title {
  color: var(--c-warmwhite);
}

.vision-section .display-6 {
  font-family: var(--font-heading);
  margin-top: 3rem;
}
/* Additional About page utilities */
.about-media img { display: block; width: 100%; height: 100%; object-fit: cover; }

.callout-card {
  background: linear-gradient(180deg, rgba(240,238,234,0.9), rgba(240,238,234,0.95));
  border: 1px solid rgba(0,0,0,0.04);
}

.founder-card img { width: 120px; height: 120px; object-fit: cover; }
.founder-card h4 { margin-bottom: 0.25rem; }

.principle-card { background-color: var(--c-offwhite); }
.principle-card .principle-icon { width: 72px; height: 72px; border-radius: 50%; background-color: var(--c-gold); color: var(--c-warmwhite); display: grid; place-items: center; font-size: 1.5rem; margin: 0 auto; }
.principle-card h5 { margin-top: 1rem; margin-bottom:0.5rem; }
.principle-card p { color: var(--c-slate); }

/* small screens: stack principle cards */

@media (max-width: 767.98px) {
     .principles-grid-section .row { gap: 1.5rem; }
  .principle-card .principle-icon { width: 56px; height: 56px; font-size: 1.25rem; }

  .about-hero .display-3 {
    font-size: 2.5rem;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .principle-icon {
    width: 48px;
    height: 48px;
    font-size: 1.25rem;
  }
  
  .principle-item p {
    font-size: 1.1rem;
  }
}

/* Final CTA Section */
.final-cta {
  background-color: var(--c-charcoal);
  color: var(--c-warmwhite);
  position: relative;
  overflow: hidden;
}

.final-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(192,138,43,0.15), transparent 50%);
  pointer-events: none;
}

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

.final-cta h2 {
  color: var(--c-warmwhite);
  font-size: 3.5rem;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.final-cta .lead {
  color: rgba(255,255,255,0.9);
  font-size: 1.25rem;
  line-height: 1.8;
  margin-bottom: 2.5rem;
  max-width: 800px;
}

.final-cta .btn-gold {
  padding: 1rem 3rem;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

@media (max-width: 767.98px) {
  .final-cta h2 {
    font-size: 2.5rem;
  }
  .final-cta .lead {
    font-size: 1.1rem;
  }
}



  /* Membership Tiers Page */
 


  /* Feature Explanations Styles */
.feature-explanations {
  background: var(--c-warmwhite);
  padding: 3rem 0;
}

.feature-category {
  margin-bottom: 3rem;
}

.feature-category h2 {
  color: var(--c-charcoal);
  font-family: var(--font-heading);
  margin-bottom: 2rem;
  position: relative;
  padding-bottom: 1rem;
}

.feature-category h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 3px;
  background: var(--c-gold);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.feature-card.hidden {
  display: none;
}

.show-more-btn {
  display: block;
  width: fit-content;
  margin: 2rem auto 0;
  padding: 0.75rem 2.5rem;
  background: transparent;
  border: 2px solid var(--c-gold);
  color: var(--c-gold);
  font-family: var(--font-body);
  font-weight: 600;
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.show-more-btn:hover {
  background: var(--c-gold);
  color: var(--c-warmwhite);
  transform: translateY(-2px);
}

.show-more-btn i {
  margin-left: 0.5rem;
  transition: transform 0.3s ease;
}

.show-more-btn.active i {
  transform: rotate(180deg);
}

/* Feature List Styles */
.feature-list {
  margin-top: 1rem;
  background: rgba(192, 138, 43, 0.03);
  border-radius: 8px;
  padding: 1rem 1rem 1rem 2rem;
}

.feature-list ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
}

.feature-list li {
  position: relative;
  padding: 0.5rem 0;
  color: var(--c-slate);
  font-size: 0.9rem;
}

.feature-list li::before {
  content: "•";
  color: var(--c-gold);
  position: absolute;
  left: -1rem;
}

/* Section Background Alternation */
.feature-explanations.bg-light {
  background-color: var(--c-offwhite);
}

/* Enhanced Card Styles */
.feature-card {
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 0;
  background: var(--c-gold);
  transition: height 0.3s ease;
}

.feature-card:hover::before {
  height: 100%;
}

.feature-card:hover {
  border-color: rgba(192, 138, 43, 0.2);
}

.feature-card {
  background: var(--c-offwhite);
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.feature-card h3 {
  color: var(--c-charcoal);
  font-family: var(--font-heading);
  font-size: 1.25rem;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.feature-card h3 i {
  color: var(--c-gold);
  font-size: 1.5rem;
}

.feature-card p {
  color: var(--c-slate);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 0;
}

.feature-tag {
  display: inline-flex;
  align-items: center;
  padding: 0.25rem 0.75rem;
  background: rgba(192, 138, 43, 0.1);
  color: var(--c-gold);
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-top: 1rem;
}

/* Enhanced Membership Table Styles */
.membership-table {
  border-collapse: separate;
  border-spacing: 0;
  background: var(--c-warmwhite);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
}

.membership-table th {
  background: var(--c-charcoal);
  color: var(--c-warmwhite);
  padding: 1.5rem;
  font-family: var(--font-heading);
  font-weight: 600;
  text-align: center;
}

.membership-table th:first-child {
  text-align: left;
  background: var(--c-charcoal);
}

.membership-table td {
  padding: 1rem 1.5rem;
  border-bottom: 1px solid rgba(176, 176, 176, 0.1);
}

.membership-table td.feature {
  font-weight: 500;
  color: var(--c-charcoal);
}

.membership-table td.center {
  text-align: center;
}

.membership-table .section-divider td {
  background: rgba(26, 26, 26, 0.7);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: white;
  font-family: var(--font-heading);
  font-weight: 600;
  padding: 1.25rem 1.5rem;
  font-size: 1.1rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.membership-table .section-divider:hover td {
  background: rgba(192, 138, 43, 0.8);
  transform: translateY(-1px);
  box-shadow: 0 6px 25px rgba(192, 138, 43, 0.2);
}

.membership-table .section-divider td::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  transform: translateX(-100%);
  transition: transform 0.6s ease;
}

.membership-table .section-divider:hover td::before {
  transform: translateX(100%);
}

.membership-table tr:hover:not(.section-divider):not(.cta-row) {
  background: rgba(192, 138, 43, 0.02);
}

.membership-table .cta-row td {
  padding: 2rem 1.5rem;
  background: var(--c-offwhite);
}

.membership-table .btn-outline-dark {
  transition: all 0.3s ease;
  border-color: var(--c-gold);
  color: var(--c-gold);
  padding: 0.75rem 2rem;
}

.membership-table .btn-outline-dark:hover {
  background: var(--c-gold);
  color: var(--c-warmwhite);
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .membership-table {
    display: block;
    box-shadow: none;
  }
  
  .membership-table thead {
    display: none;
  }
  
  .membership-table tbody {
    display: block;
  }
  
  .membership-table tr {
    display: block;
    margin-bottom: 1rem;
    background: var(--c-warmwhite);
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
  }
  
  .membership-table td {
    display: block;
    text-align: right;
    padding: 0.75rem 1rem;
  }
  
  .membership-table td:before {
    content: attr(data-label);
    float: left;
    font-weight: 600;
    color: var(--c-charcoal);
  }
  
  .membership-table .section-divider td {
    text-align: center;
    background: var(--c-charcoal);
    color: var(--c-warmwhite);
    border-radius: 8px 8px 0 0;
  }
  
  .membership-table .cta-row td {
    text-align: center;
  }
  
  .membership-table .btn-outline-dark {
    width: 100%;
  }
}

  /* Responsive: stack columns into rows on small screens */
  /* @media (max-width: 767.98px) {
    .membership-table, .membership-table thead, .membership-table tbody, .membership-table th, .membership-table td, .membership-table tr { display: block; }
    .membership-table thead { display: none; }
    .membership-table tr { margin-bottom: 1rem; border: 1px solid rgba(0,0,0,0.04); border-radius: 8px; overflow: hidden; }
    .membership-table td { display: flex; justify-content: space-between; padding: 0.75rem 1rem; }
    .membership-table td::before { content: attr(data-label); font-weight: 700; color: var(--c-charcoal); }
    .membership-table .feature { width: 60%; }
    .membership-table .center a.btn { width: 100%; display: inline-block; }
  } */

.feature-card:hover::before {
  height: 100%;
}

.feature-card:hover {
  border-color: rgba(192, 138, 43, 0.2);
}

.feature-card {
  background: var(--c-offwhite);
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 24px rg  ba(0, 0, 0, 0.1);
}

.feature-card h3 {
  color: var  (--c-charcoal);
  font-family: var(--font-heading);
  font-size: 1.25rem;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.feature-card h3 i {
  color: var(--c-gold);
  font-size: 1.5rem;
}

.feature-card p {
  color: var(--c-slate);
  text-align: start;
}

/* Billing Toggle */
#billingToggle {
  cursor: pointer;
}

#billingToggle:checked {
  background-color: var(--c-gold);
  border-color: var(--c-gold);
}

.form-switch .form-check-input:focus {
  border-color: rgba(192, 138, 43, 0.25);
  box-shadow: 0 0 0 0.25rem rgba(192, 138, 43, 0.25);
}

/* Feature Comparison Table */
.feature-comparison .table {
  --bs-table-bg: transparent;
  --bs-table-striped-bg: rgba(0, 0, 0, 0.02);
  --bs-table-hover-bg: rgba(192, 138, 43, 0.05);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 30px rgba(0, 0, 0, 0.05);
}

.feature-comparison th {
  font-weight: 600;
  text-transform: uppercase;
  font-family: var(--font-heading);
}

/* // footer style  */
.site-footer {
  background-color: var(--c-charcoal);
  color: var(--c-warmwhite);
  /* padding: 2rem 0; */   
}
.site-footer h5::after{
  content: "";
  display: block;
  width: 50px;
  height: 2px;
  background-color: var(--c-gold);
  margin: 1rem 0;
}
.site-footer a {
  color: var(--c-warmwhite);
}
.site-footer a:hover {
  color: var(--c-gold) !important;
}



/* Pagination */
    /* Pagination */
    .pagination .page-link {
      color: var(--c-charcoal);
    }

    .pagination .page-item.active .page-link {
      background-color: var(--c-gold);
      border-color: var(--c-gold);
      color: var(--c-charcoal);
    }