/* Import Google Font Space Mono */
@import url('https://fonts.googleapis.com/css2?family=Space+Mono&display=swap');

/* Base styles */
body {
    font-family: 'Space Mono', monospace;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    background-color: #efeeea;
    color: #333;
    padding-top: 30px;
}

/* Fixed header container - Desktop defaults */
.fixed-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 100px;
    background-color: #efeeea;
    z-index: 998;
    padding: 10px 5px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Logo styling */
.logo {
    margin-left: 20px;
    text-decoration: none;
}

.logo img {
    height: 120px;
    width: auto;
}

/* Nav toggle - Desktop */
.nav-toggle {
    display: block;
    background: none;
    border: none;
    font-size: 36px;
    color: #000;
    padding: 10px;
    margin-right: 20px;
    cursor: pointer;
    z-index: 999;
}

.nav-toggle::before {
    content: '☰';
}

/* Tablet adjustments */
@media screen and (max-width: 768px) {
    .fixed-header {
        height: 80px;
    }
    
    .logo-image {
        width: 130px;
    }
    
    .logo img {
        height: 120px;
    }
    
    .nav-toggle {
        font-size: 32px;
    }
    
    .logo {
        margin-left: 15px;
    }
    
    .nav-toggle {
        margin-right: 15px;
    }
}

/* Mobile adjustments */
@media screen and (max-width: 480px) {
    .fixed-header {
        height: 70px;
    }
    
    .logo-image {
        width: 110px;
    }
    
    .logo img {
        height: 100px;
    }
    
    .nav-toggle {
        font-size: 28px;
    }
    
    .logo {
        margin-left: 10px;
    }
    
    .nav-toggle {
        margin-right: 10px;
    }
}

/* Navigation Menu */
.nav-menu {
    position: fixed;
    top: 0;
    right: 0;
    width: 300px;
    max-width: 80vw;
    height: 100%;
    background: #f8f9fa;
    padding: 80px 20px 20px;
    transform: translateX(100%);
    transition: transform 0.3s ease-in-out;
    z-index: 999;
    overflow-y: auto;
}

.nav-menu.active {
    transform: translateX(0);
}

/* Navigation links - main menu items */
.nav-menu a {
    display: block;
    padding: 2px;
    margin-bottom: 5px;
    color: #333;
    text-decoration: none;
    font-size: 1.4em;
    white-space: nowrap;
}

/* Contact section links */
.nav-contact a {
    font-size: 0.9em;
    color: #111;
    margin: 3px 0;
    text-decoration: none;
    display: block;
}

/* Hover effects */
.nav-menu > a:hover {
    text-decoration: underline;
}

.nav-contact a:hover {
    text-decoration: underline;
}

/* Keep the contact section styling */
.nav-menu > .nav-contact {
    text-decoration: none !important;
    margin-top: 20px;
    padding-top: 10px;
    border-top: 1px solid #eee;
}

.nav-menu > .nav-contact:hover {
    text-decoration: none !important;
}

/* Mobile adjustments */
@media screen and (max-width: 480px) {
    .nav-menu a {
        font-size: 1.2em;
    }
    
    .nav-contact a {
        font-size: 0.8em;
    }
}

/* Nav close button */
.nav-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    font-size: 2em;
    cursor: pointer;
    color: #333;
    padding: 10px;
    z-index: 1000;
}

.nav-close:hover {
    color: #666;
}

/* Main content */
.main-content {
    max-width: 800px;
    margin: 0 auto;
    padding-top: 140px;
    padding-left: 20px;
    padding-right: 20px;
    padding-bottom: 40px;
}

/* Typography */
h1 {
    font-size: 2.5em;
    margin-bottom: 0.5em;
    line-height: 1.2;
}

h2 {
    font-size: 2em;
    margin-bottom: 0.5em;
    line-height: 1.2;
}

h3 {
    font-size: 1.75em;
    margin-bottom: 0.5em;
    line-height: 1.2;
}

h4 {
    font-size: 1.5em;
    margin-bottom: 0.5em;
    line-height: 1.2;
}

h5 {
    font-size: 1.25em;
    margin-bottom: 0.5em;
    line-height: 1.2;
}

h6 {
    font-size: 1.1em;
    margin-bottom: 0.5em;
    line-height: 1.2;
}

p {
    font-size: 1.1em;
    margin-bottom: 1em;
}

/* Lists */
.client-list {
    margin: 2rem 0;
}

.client-list ul {
    list-style: none;
    padding: 0;
}

.client-list li {
    font-size: 1.1em;
    line-height: 1.6;
    margin-bottom: 1em;
    padding-left: 25px;
    position: relative;
}

.client-list li::before {
    content: "✓";
    color: #28a745;
    left: 5px;
    font-size: 1.2em;
    top: -1px;
    position: absolute;
}

.work-options {
    margin: 2rem 0;
}

.work-options ul {
    list-style: none;
    padding: 0;
}

.work-options li {
    font-size: 1.1em;
    line-height: 1.6;
    margin-bottom: 1em;
    padding-left: 25px;
    position: relative;
}

.work-options li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #333;
}

.why-work {
    margin: 2rem 0;
}

.why-work ul {
    list-style: none;
    padding: 0;
}

.why-work li {
    font-size: 1.1em;
    line-height: 1.6;
    margin-bottom: 1em;
    padding-left: 25px;
    position: relative;
}

.why-work li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #333;
}

/* Accordion */
.accordion {
    margin-bottom: 10px;
}

.accordion-header {
    background: #f8f9fa;
    padding: 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.accordion-content {
    padding: 10px 20px 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    background: white;
}

.accordion.active .accordion-content {
    max-height: 500px;
}

.accordion-icon {
    width: 20px;
    height: 20px;
    position: relative;
}

.accordion-icon::before,
.accordion-icon::after {
    content: '';
    position: absolute;
    background: #333;
    transition: transform 0.3s ease;
}

.accordion-icon::before {
    width: 2px;
    height: 20px;
    left: 9px;
    top: 0;
}

.accordion-icon::after {
    width: 20px;
    height: 2px;
    left: 0;
    top: 9px;
}

.accordion.active .accordion-icon::before {
    transform: rotate(90deg);
}

/* Prevent body scrolling when menu is open */
body.nav-open {
    overflow: hidden;
}

.contact-links {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-links a {
    color: #333;
    text-decoration: none;
    font-size: 1.5em;
}

.contact-links a:hover {
    text-decoration: underline;
}

/* Source citation styles */
.source-citation {
    margin-top: 1rem;
    color: #666;
}

.source-citation a {
    color: inherit;
    text-decoration: none;
    border-bottom: 1px dotted #666;
}

.source-citation a:hover {
    color: #333;
    border-bottom: 1px solid #333;
}

.accordion-description {
    margin-top: -20px;
    margin-bottom: 10px;
    font-style: italic;
    text-align: left;
    padding-left: 20px;
    font-size: 0.9em;
    color: #666;
}

/* Link styles */
a {
    color: #0066cc;
    text-decoration: none;
}

a:visited {
    color: #0066cc;
}

a:hover {
    text-decoration: underline;
}

/* Navigation menu links should stay neutral */
.nav-menu a,
.nav-contact a {
    color: #333;
}

.nav-menu a:visited,
.nav-contact a:visited {
    color: #333;
}

/* Arrow links (→) styling */
a[class*="-link"]::after {
    color: #0066cc;
}

.primary-link {
    color: #0066cc;
}

.primary-link:visited {
    color: #0066cc;
}

/* Ensure consistent section spacing */
section {
    margin-bottom: 40px;
}

/* Table of Contents */
.table-of-contents {
    background-color: #f5f5f5;
    border-left: 4px solid #333;
    padding: 20px 25px;
    margin: 30px 0 40px 0;
}

.table-of-contents h2 {
    font-size: 1.5em;
    margin-bottom: 15px;
    margin-top: 0;
}

.table-of-contents ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.table-of-contents li {
    margin-bottom: 10px;
    padding-left: 0;
}

.table-of-contents li:before {
    content: none;
}

.table-of-contents a {
    color: #0066cc;
    text-decoration: none;
    font-size: 1em;
    line-height: 1.6;
    transition: color 0.2s ease;
}

.table-of-contents a:hover {
    color: #004499;
    text-decoration: underline;
}

/* Remove media queries for header elements to maintain consistent spacing */
@media screen and (max-width: 768px) {
    .nav-menu {
        width: 250px;
    }
}

@media screen and (max-width: 480px) {
    .nav-menu {
        width: 220px;
    }
}

/* Services Page Specific Styles */
.service-cards {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin: 2rem 0;
}

.service-card {
    margin-bottom: 10px;
    background: none;
    border-radius: 0;
    font-weight: normal;
    overflow: hidden;
}

.service-card .accordion-header {
    background: #f8f9fa;
    padding: 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0;
}

.service-card .accordion-header h3 {
    margin: 0;
    font-size: 1.1em;
    font-weight: normal;
    line-height: 1.6;
}

.service-card .accordion-content {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    background: white;
}

.service-card.active .accordion-content {
    max-height: 500px;
    padding: 20px;
}

.service-card .subtitle {
    margin-top: 1rem;
    color: #666;
    font-style: italic;
    font-size: 0.9em;
    margin: 0 0 1rem 0;
}

.service-card .accordion-content ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-card .accordion-content li {
    font-size: 1.1em;
    line-height: 1.6;
    margin-bottom: 1em;
    padding-left: 25px;
    position: relative;
}

.service-card .accordion-content li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #333;
}

/* Standardized bullet list styling for ALL lists across the site */
.work-options ul,
.client-list ul,
.why-work ul,
.service-card .accordion-content ul,
.main-content ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.work-options li,
.client-list li,
.why-work li,
.service-card .accordion-content li,
.main-content li {
    font-size: 1.1em;
    line-height: 1.6;
    margin-bottom: 0.5em;
    padding-left: 20px;
    position: relative;
}

.work-options li:before,
.client-list li:before,
.why-work li:before,
.service-card .accordion-content li:before,
.main-content li:before {
    content: "•";
    position: absolute;
    left: 5px;
    color: #333;
}

/* Remove any specific background/padding styles */
.client-list,
.work-options,
.why-work {
    margin: 2rem 0;
}

/* Update the general bullet styling to be more specific */
.work-options li:before,
.why-work li:before,
.service-card .accordion-content li:before,
.main-content li:not(.client-list):not(.non-client-list):before {
    content: "•";
    position: absolute;
    left: 5px;
    color: #333;
}

/* Make client-list styling more specific */
.about-section.client-list li::before {
    content: "✓";
    color: #28a745;
    left: 5px;
    font-size: 1.2em;
    top: -1px;
    position: absolute;
}

/* Make non-client-list styling more specific */
.about-section.non-client-list li::before {
    content: "×";
    color: #dc3545;
    left: 5px;
    font-size: 1.2em;
    top: -1px;
    position: absolute;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .service-cards {
        grid-template-columns: 1fr;
    }

    .problem-section,
    .service-card {
        padding: 1.5rem;
    }

    .service-card {
        padding: 0;
    }
}

/* Add bold text styling */
strong, b {
    font-weight: bold;
    color: #333;  /* Matches your site's text color */
}

/* FAQ CTA Styling */
.faq-cta {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 20px;
    font-size: 1.1em;
    line-height: 1.6;
}

.faq-cta a {
    color: #0066cc;
    text-decoration: none;
}

.faq-cta a:hover {
    text-decoration: underline;
}

/* Pricing Card Layout - Stacked (Single Column) */
.pricing-grid {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 20px;
}
  
  .pricing-card {
    border: 1px solid #e1e1e1;
    border-radius: 8px;
    padding: 24px;
    background-color: #fff;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.04);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: box-shadow 0.2s ease;
  }
  
  .pricing-card:hover {
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
  }
  
  .pricing-card h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: #000;
  }
  
  .pricing-description {
    font-size: 0.95rem;
    color: #444;
    margin-bottom: 16px;
    line-height: 1.5;
  }
  
  .pricing-price {
    font-size: 1.1rem;
    font-weight: bold;
    color: #000;
    margin-top: auto;
  }
  
  .small-text {
    font-size: 0.85rem;
    color: #666;
  }
  
  @media screen and (max-width: 768px) {
    .pricing-card {
      padding: 20px;
    }
  }

/* Main title styling */
.glass-card h3 {
    font-family: 'Space Mono', monospace;
    font-size: 1.8rem;
    margin: 0;
    color: #000;
    line-height: 1.2;
}

/* Subtitle styling */
.subtitle {
    font-size: 0.875rem;
    color: #666;
    margin: 0.5rem 0 1.5rem 0;
    line-height: 1.4;
}

/* Section headings */
.glass-card h4 {
    font-size: 1rem;
    color: #666;
    margin-top: 1.5rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Price styling */
.pricing-detail {
    text-align: right;
    margin-top: 2rem;
    border-top: 1px solid #e1e1e1;
    padding-top: 1.5rem;
}

.pricing-detail strong {
    display: block;
    font-size: 1.4rem;
    color: #000;
    margin-bottom: 0.25rem;
}

.pricing-detail strong + br + strong {
    color: #666;
    font-size: 1.2rem;
}

/* Update Optional Add-on Modules styling to match main pricing cards */
.strategic-reality {
    margin-top: 4rem;
}

.strategic-reality h2 {
    font-size: 1.8rem;
    color: #000;
    margin-bottom: 2rem;
}

.strategic-reality .glass-card {
    padding: 2.5rem;
    display: block;   /* Explicitly set to block */
}

.strategic-reality .glass-card h3 {
    font-size: 1.8rem;  /* Match main cards title size */
    margin-bottom: 0.25rem;
    color: #000;
    line-height: 1.2;
}

.strategic-reality .glass-card .pricing-detail {
    text-align: right;
    margin-top: 2rem;
    border-top: 1px solid #e1e1e1;
    padding-top: 1.5rem;
}

.strategic-reality .glass-card .pricing-detail strong {
    display: block;
    font-size: 1.4rem;
    color: #000;
    margin-bottom: 0.25rem;
}

/* Remove ALL hover animations */
.glass-card,
.glass-card:hover,
.value-proposition .glass-card:hover,
.strategic-reality .glass-card:hover,
.expertise-card:hover,
.experience-item:hover {
    transform: none !important;
    transition: none !important;
    box-shadow: 0 4px 16px rgba(31, 38, 135, 0.05) !important;
}

/* Remove any existing hover rules */
.glass-card:hover {
    transform: none;
    transition: none;
}

.strategic-reality .glass-card:hover {
    transform: none;
    transition: none;
}

.expertise-card:hover {
    transform: none;
}

.experience-item:hover {
    transform: none;
}

/* Update the note styling */
.note-text {
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
    color: #666;  /* Consistent gray color */
    font-size: 0.875rem;  /* Exact size from reference */
    line-height: 1.6;
    font-style: italic;
}

.note-text strong {
    color: #666;  /* Make strong text same color */
    font-weight: bold;
}

/* List styling */
.glass-card ul {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
}

.glass-card ul li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
    color: #444;
}

.glass-card ul li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #333;
}

/* Hover effect */
.glass-card:hover {
    transform: translateY(-2px);
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(31, 38, 135, 0.08);
}

.problem-section {
    margin: 2rem 0;
}

.problem-section h2 {
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    color: #000;
}

.problem-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.problem-section li {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.problem-section li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #666;
}

.problem-section .inline-link {
    color: #000;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
}

.problem-section .inline-link:hover {
    color: #666;
}

/* Remove the previous membership-terms styles */
.membership-terms {
    margin-top: 1.5rem;
}

/* Single note text styling for consistency */
.note-text {
    color: #666 !important;
    font-size: 0.875rem !important;
    line-height: 1.6 !important;
    font-style: italic !important;
    margin-top: 1.5rem !important;
    margin-bottom: 1rem !important;
}

/* Make sure strong tags within notes are consistent */
.note-text strong {
    color: #666 !important;
    font-weight: bold !important;
}

/* Remove any previous styles that might be interfering */
.membership-terms,
.strategic-reality .glass-card p {
    /* Reset any specific styles */
    font-size: inherit;
    color: inherit;
    font-style: inherit;
}

.expertise-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.expertise-card {
    background-color: #ffffff;
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: rgba(31, 38, 135, 0.05) 0px 4px 16px 0px;
    transition: transform 0.2s ease-in-out;
}

.expertise-card:hover {
    transform: translateY(-4px);
}

.expertise-card h4 {
    font-size: 1.2rem;
    margin: 0 0 1rem 0;
    color: #000;
    line-height: 1.4;
}

.expertise-card p {
    font-size: 0.875rem;
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.card-link {
    color: #000;
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
    transition: color 0.2s ease;
}

.card-link:hover {
    color: #666;
}

.experience-item {
    background-color: #ffffff;
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: rgba(31, 38, 135, 0.05) 0px 4px 16px 0px;
    margin-bottom: 2rem;
    transition: transform 0.2s ease-in-out;
}

.experience-item:hover {
    transform: translateY(-4px);
}

.experience-item h3 {
    font-size: 1.2rem;
    margin: 0 0 1.5rem 0;
    color: #000;
    line-height: 1.4;
}

.experience-item ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.experience-item li {
    font-size: 0.875rem;
    color: #666;
    margin-bottom: 0.75rem;
    line-height: 1.6;
    position: relative;
    padding-left: 1.5rem;
}

.experience-item li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #666;
}

.experience-summary {
    font-size: 0.875rem;
    color: #666;
    font-style: italic;
    margin-top: 2rem;
    padding: 0 1rem;
}

:root {
  --radius: 12px;
}


.strategic-reality .glass-card .pricing-detail {
    text-align: right;
    white-space: nowrap;
}

/* Table Styling */
.table-style {
    width: 100%;
    border-collapse: collapse;
    margin: 30px 0;
    font-size: 16px;
    text-align: left;
}

.table-style th, .table-style td {
    padding: 12px 15px;
    border: 1px solid #ddd;
}

.table-style th {
    background-color: #f4f4f4;
    font-weight: bold;
    text-align: center;
}

.table-style tbody tr:nth-child(even) {
    background-color: #f9f9f9;
}

.table-style tbody tr:hover {
    background-color: #f1f1f1;
}

/* Improvement List Styling */
.improvement-list {
    margin-left: 20px;
    padding-left: 0;
}

.improvement-list li {
    margin-bottom: 8px;
}

/* Note Box Styling */
.note-box {
    background-color: #f8f8f8;
    border-left: 4px solid #ccc;
    padding: 12px;
    margin-top: 15px;
    font-size: 14px;
    color: #666;
    font-style: italic;
}

/* Pricing Container and Elements */
.pricing-container {
    text-align: right;
    margin-top: 20px;
    padding-top: 10px;
    border-top: 1px solid #e1e1e1;
}

.pricing-detail {
    font-size: 18px;
    font-weight: bold;
    margin: 0;
}

.pricing-subtext {
    font-size: 14px;
    color: #666;
    margin: 5px 0 0 0;
}

.site-footer .footer-divider {
    width: 30%;
    margin: 0 auto;
}

.site-footer .footer-inner {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}

/* Center align footer text */
.site-footer {
  text-align: center;
}

/* Refined table styling for pricing sections */
.glass-card table {
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0;
  font-size: 1rem;
  table-layout: fixed;
  border: 1px solid #ddd;
}

.glass-card thead {
  background-color: #f8f9fa;
}

.glass-card th, 
.glass-card td {
  padding: 14px 18px;
  border: 1px solid #e1e1e1;
  text-align: left;
  vertical-align: middle;
  word-wrap: break-word;
  overflow-wrap: break-word;
  white-space: normal;
}

.glass-card th {
  font-weight: 600;
  color: #000;
}

.glass-card td:last-child {
  width: 160px;
  text-align: right;
  font-weight: 600;
  color: #000;
  white-space: nowrap;
}

.glass-card tbody tr:nth-child(even) {
  background-color: #fafafa;
}

.glass-card tbody tr:hover {
  background-color: #f3f3f3;
}

@media screen and (max-width: 768px) {
  .glass-card table,
  .glass-card th,
  .glass-card td {
    font-size: 0.9rem;
  }

  .glass-card td:last-child {
    width: auto;
    text-align: left;
  }
}
/* Ensure footer bottom text is centered */
.footer-bottom {
  text-align: center;
  margin-top: 10px;
}

.footer-bottom p {
  margin: 0;
  text-align: center;
}