/*
Theme Name: Seasoned Cyborgs (formerly LYNX)
Description: Custom WordPress theme for the Seasoned Cyborgs brand.
Author: LYNX Technology Development
Version: 2.0
*/

/* =================================================================
   BASE & LAYOUT
================================================================= */
* {
    margin: 0;F
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Outfit', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #FFFFFF; /* Changed to white for a cleaner look */
    padding-top: 138px;
    margin: 0;
}

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

.row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}

.justify-content-center {
	justify-content: center;
}

.col { padding: 0 15px; }
.col-12 { flex: 0 0 100%; }
.col-8 { flex: 0 0 66.666%; }
.col-6 { flex: 0 0 50%; }
.col-4 { flex: 0 0 33.333%; }
.col-3 { flex: 0 0 25%; }

.text-center { text-align: center; }

/* --- Center the Main Desktop Navigation Menu --- */
.main-navigation .nav-menu {
    justify-content: center;
}

/* =================================================================
   HEADER
================================================================= */
.site-header {
    background: #23282d;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    height: 170px;
}

.site-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: #00AFE1;
}

.header-grid {
    display: grid;
    grid-template-columns: auto 1fr;
    grid-template-rows: 75px 75px;
    height: 160px;
    padding: 5px 0;
}

.logo-column {
    grid-row: 1 / 3;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5px 20px 5px 0;
    width: 170px;
}

.logo-icon {
    height: 150px;
    width: 150px;
    object-fit: contain;
    transition: all 0.3s ease;
}
.logo-icon:hover { transform: scale(1.05); }

.content-column {
    display: grid;
    grid-template-rows: 75px 75px;
}

.nav-row {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 0 0 0 20px;
    height: 75px;
}

.main-navigation { flex: 1; }
.nav-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 25px;
}
.nav-menu li { margin: 0; }
.nav-menu a {
    color: #FF6B35;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}
.nav-menu a:hover { color: #E55A2B; }

.company-row {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 0 0 0 20px;
    height: 75px;
}

.company-logo-image {
    height: 70px;
    width: auto;
    max-width: 100%;
    object-fit: contain;
}

/* =================================================================
   NAVIGATION DROPDOWN STYLES
================================================================= */

/* --- Main Menu Item Container --- */
.main-navigation .nav-menu li {
    position: relative; /* Required for positioning the dropdown */
}

/* --- Sub-Menu (The Dropdown Itself) --- */
.main-navigation .sub-menu {
    display: none; /* Hide the dropdown by default */
    position: absolute;
    top: 100%; /* Position it right below the parent item */
    left: 0;
    background-color: #23282d; /* Same as header background */
    list-style: none;
    padding: 10px 0;
    margin: 0;
    min-width: 220px; /* Give it a decent width */
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
    z-index: 1001; /* Ensure it's above other content */
}

/* --- Dropdown Links --- */
.main-navigation .sub-menu li {
    width: 100%;
}

.main-navigation .sub-menu a {
    padding: 10px 20px;
    display: block; /* Make the whole area clickable */
    width: 100%;
    color: #FF6B35;
    font-size: 0.9rem;
    white-space: nowrap; /* Prevent long names from wrapping */
}

.main-navigation .sub-menu a:hover {
    background-color: #333; /* Add a hover effect */
    color: #E55A2B;
}

/* --- Show the dropdown on hover --- */
.main-navigation li:hover > .sub-menu {
    display: block;
}



/* =================================================================
   DUAL HEADER RESPONSIVE STYLES
================================================================= */

/* --- 1. Default Visibility --- */
/* By default, show the desktop header and hide the mobile one */
.header-desktop { display: block; }
.header-mobile { display: none; }
.mobile-nav-container { display: none; } /* Hide mobile menu dropdown by default */

/* --- 2. Mobile Screen Styles (screens 768px or smaller) --- */
@media (max-width: 768px) {

    /* --- Visibility Switch --- */
    .header-desktop { display: none; } /* Hide desktop header */
    .header-mobile { display: block; } /* Show mobile header */

    /* --- Body Padding --- */
    /* Set padding to match the new, smaller mobile header height */
    body {
        /* We need to ensure this matches the actual height of the mobile header */
        /* Based on .mobile-header-flex height, it should be 70px */
		padding-top: 40px !important; /* Re-adding !important for certainty */
    }
	/* --- Mobile Hero Spacing Fix --- */
    /* This removes the top padding/margin from ALL hero variations on mobile */
    .hero-only-image,
    .hero-section-sub {
        padding-top: 0 !important;
        margin-top: 0 !important;
    }
    .site-header {
        height: auto; /* Let the header size itself */
    }

    /* ... rest of mobile styles ... */

    /* NEW ADDITION: Adjust hero section if it has its own top padding/margin */
    /* This targets the hero section directly below the header on mobile */
    .hero-only-image, .hero-section-sub { /* Add other hero classes if applicable */
        margin-top: 0 !important;
        padding-top: 0 !important;
    }
	.home .hero-only-image {
		height: 250px; /* A more landscape-friendly height */
		min-height: auto; /* Override any other min-height rules */
	}
    .site-header {
        height: auto; /* Let the header size itself */
    }

    /* --- Mobile Header Layout --- */
    .mobile-header-flex {
        display: flex;
        justify-content: space-between;
        align-items: center;
        height: 70px; /* Set a fixed height for the mobile header bar */
    }
    .mobile-logo img {
        height: 50px; /* Adjust size of your mobile logo */
        width: auto;
    }

    /* --- Hamburger Menu Button --- */
    .mobile-menu-toggle button {
        background: none;
        border: none;
        padding: 10px;
        cursor: pointer;
    }
    .hamburger-icon,
    .hamburger-icon::before,
    .hamburger-icon::after {
        content: '';
        display: block;
        background-color: #FF6B35; /* Orange color for the lines */
        height: 3px;
        width: 25px;
        border-radius: 3px;
        transition: all 0.3s ease-in-out;
    }
    .hamburger-icon::before {
        transform: translateY(-8px);
    }
    .hamburger-icon::after {
        transform: translateY(8px);
    }

    /* --- Hamburger "X" state (when menu is open) --- */
    .mobile-menu-toggle button.is-active .hamburger-icon {
        background-color: transparent; /* Middle line disappears */
    }
    .mobile-menu-toggle button.is-active .hamburger-icon::before {
        transform: rotate(45deg);
    }
    .mobile-menu-toggle button.is-active .hamburger-icon::after {
        transform: rotate(-45deg);
        transform-origin: center;
        position: relative;
        top: -11px;
    }

    /* --- Mobile Menu Dropdown Container --- */
    .mobile-nav-container {
        background-color: #23282d;
        padding: 20px 0;
		 z-index: 999;
    }
    .mobile-nav-container.is-active {
        display: block; /* Show the menu when active */
    }
    .mobile-navigation .nav-menu {
        flex-direction: column;
        align-items: flex-start; /* Aligns all items to the left */
        gap: 15px;
        width: 100%; /* Ensure the container takes full width */
        padding-left: 20px; /* Add some padding for a clean edge */
    }
    .mobile-navigation .nav-menu a {
        font-size: 1.2rem;
        padding: 10px;
    }
	
	/* --- Mobile Menu Sub-Item Styling --- */
    /* Ensure the sub-menu is always visible on mobile */
    .mobile-navigation .sub-menu {
        display: block !important;
        position: static; /* Override absolute positioning from desktop */
        background-color: transparent;
        box-shadow: none;
        padding: 0;
        margin-left: 20px; /* This creates the indentation */
        min-width: auto;
    }

    /* Style the sub-menu items */
    .mobile-navigation .sub-menu li {
        padding-top: 10px; /* Add some space above the first sub-item */
    }

    .mobile-navigation .sub-menu a {
        font-size: 1rem; /* Make sub-item font size slightly smaller */
        padding: 5px 10px; /* Adjust padding for a tighter list */
    }

}


/* =================================================================
   HOMEPAGE HERO IMAGE SWAP FOR MOBILE
================================================================= */

/* --- 1. Default (Desktop): Use the original wide image --- */
/* We assume this is already being set by your PHP/page settings, so no new code is needed here. */


/* --- 2. Mobile (768px or smaller): Swap to the new, taller image --- */
@media (max-width: 768px) {
    /* This targets the hero image container ONLY on the homepage */
    .home .hero-only-image {
        background-image: url('https://seasonedcyborgs.com/wp-content/uploads/2025/10/smallHomePageHero.png' ) !important;
        
        /* You can adjust the height to best fit the new image's composition */
        /* Let's start with a height that respects a portrait aspect ratio. */
        height: 300px; 
        min-height: auto; /* Override other min-height rules */
    }
}


/* =================================================================
   GENERAL CONTENT & TYPOGRAPHY
================================================================= */
.main-content {
    margin-top: 0;
    padding-top: 0;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.3;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 60px;
    color: #23282d;
}

p {
    color: #333;
    line-height: 1.8;
}

a {
    color: #FF6B35;
    text-decoration: none;
    transition: color 0.3s ease;
}
a:hover { color: #E55A2B; }

.quote-section {
    border-left: 4px solid #ff6b35; /* Adjust color to match your brand */
    padding-left: 20px;
    margin: 25px 0;
    background-color: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 4px;
}

.quote-text {
    font-style: italic;
    font-size: 1.1em;
    color: #333;
    margin-bottom: 10px;
    line-height: 1.4;
}

.quote-attribution {
    font-size: 0.9em;
    color: #666;
    font-weight: 500;
    text-align: left;
}

/* Add space between the main image and the details column */
.case-study-sidebar {
    padding-left: 40px; /* Adjust this value as needed */
}

/* --- Icon Styles for Homepage "My Approach" Section --- */
.approach-icon {
    font-size: 2.5rem;      /* Adjust size as needed */
    margin-bottom: 20px;  /* Space between icon and title */
    line-height: 1;       /* Ensures consistent vertical alignment */
    text-align: center;     /* Aligns the icon with the text below it */
}

/* =================================================================
   BUTTONS
================================================================= */
.cta-button {
    display: inline-block;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
}
.cta-button:hover {
    transform: translateY(-2px);
    text-decoration: none;
}

/* Orange Solid Button */
.cta-orange,
.cta-button-solid {
    background-color: #FF6B35;
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}
.cta-orange:hover,
.cta-button-solid:hover {
    background-color: #E55A2B;
    color: #ffffff;
}

/* Cyan Outline Button */
.cta-button-outline {
    background-color: transparent;
    color: #00BCD4;
    border-color: #00BCD4;
}
.cta-button-outline:hover {
    background-color: rgba(0, 188, 212, 0.1);
    color: #00BCD4;
}

/* Dark Outline Button (for Bio) */
.cta-outline-dark {
    background-color: transparent;
    color: #23282d;
    border-color: #23282d;
}
.cta-outline-dark:hover {
    background-color: #23282d;
    color: #ffffff;
}

/* =================================================================
   FOOTER
================================================================= */
.site-footer {
    background: #23282d;
    color: #e8e3d9;
    padding: 60px 0 30px;
}

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

.footer-section {
    flex: 1;
    margin-right: 40px;
    margin-bottom: 30px;
}
.footer-section h3 {
    margin-bottom: 20px;
    color: #FF6B35;
}
.footer-section p,
.footer-section a {
    color: #ccc;
    text-decoration: none;
    line-height: 1.8;
}
.footer-section a:hover { color: #FF6B35; }

.footer-logo {
    height: 220px;
    width: auto;
    margin-bottom: 20px;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}
.footer-logo:hover { opacity: 1; }

.footer-bottom {
    border-top: 1px solid #444;
    padding-top: 20px;
    text-align: center;
    color: #999;
}


/* =================================================================
   HERO SECTIONS
================================================================= */

.page-hero {
    position: relative;
    background-color: #23282d;
    background-size: cover;
    background-position: center center;
    padding: 120px 0; /* Increased from 80px */
    color: #ffffff;
}

/* =================================================================
   NEW HOMEPAGE SECTIONS
================================================================= */

/* 1. Hero Section */
.hero-section {
    background: #23282d;
	background-size: cover;
    background-position: center center;
    color: white;
    padding: 100px 0;
    text-align: center;
/* 	min-height: 60vh; /* Adjust height as needed */ */
}
.hero-content .hero-title {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
    color: #ffffff;
	text-shadow: 0px 2px 8px rgba(0, 0, 0, 0.8);
}
.hero-content .hero-subtitle {
    font-size: 1.5rem;
    max-width: 800px;
    margin: 20px auto 0;
	
	text-shadow: none; /* Remove the muddy shadow */
    position: relative; /* Needed for stacking */
    z-index: 2; /* Keep the text in front */
	color: #FFFFFF; 
	
/*     color: #e8e3d9;
	text-shadow: 0px 2px 8px rgba(0, 0, 0, 0.8); */
	
/*     opacity: 0.9; */
}
.hero-content .hero-paragraph {
    font-size: 1.1rem;
    max-width: 750px;
    margin: 30px auto;
    line-height: 1.7;
	
	text-shadow: none; /* Remove the muddy shadow */
    position: relative; /* Needed for stacking */
    z-index: 2; /* Keep the text in front */
	color: #FFFFFF; 
	
/*     color: #ccc;
	text-shadow: 0px 2px 8px rgba(0, 0, 0, 0.8); */
}
.text-background-gradient {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1; /* Place it behind the text */
    border-radius: 10px; /* Optional: soften the corners */

    /* The Magic Gradient */
    background: linear-gradient(
        to left, 
        rgba(0, 0, 0, 0.5) 0%,   /* 50% black on the far right */
        rgba(0, 0, 0, 0.4) 50%,  /* 40% black in the middle */
        rgba(0, 0, 0, 0.0) 100%  /* 0% black (transparent) on the far left */
    );
}
.hero-content .cta-button {
    background-color: #FF6B35;
    color: #ffffff;
}

/* =================================================================
   HERO SECTIONS (REVISED)
================================================================= */

/* This is the container for the image ONLY */
.hero-only-image {
    height: 60vh; /* 60% of the viewport height */
    min-height: 400px;
    max-height: 700px;
    position: relative;
    background-color: #23282d;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

.hero-only-image .hero-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    z-index: 1;
}

.hero-process-page {
    height: 400px; /* A fixed, reasonable height */
    min-height: auto; /* Override the default min-height */
}

/* This is the new content block that appears BELOW the image */
.hero-content-below {
    background-color: #f8f9fa; /* A light, clean gray */
    padding: 60px 0; /* Reduced padding for a tighter feel */
    text-align: center;
    border-bottom: 1px solid #e9ecef; /* A subtle line to separate it */
}

.hero-content-below .hero-title {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
    color: #23282d; /* Dark text for white background */
}

.hero-content-below .hero-subtitle {
    font-size: 1.5rem;
    max-width: 800px;
    margin: 20px auto 0;
    color: #333;
}

.hero-content-below .hero-paragraph {
    font-size: 1.1rem;
    max-width: 750px;
    margin: 30px auto;
    line-height: 1.7;
    color: #555;
}

.hero-content-below .cta-button {
    margin-top: 20px;
}

/* =================================================================
   SCROLL ANIMATION STYLES
================================================================= */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.animate-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* 2. Sections */

.section-bg-gray {
    background-color: #e9ecef; /* Our new, more noticeable cool gray */
	padding: 80px 0;
}

.pain-section {
    padding: 80px 0;
    text-align: center;
}
.pain-checklist {
    max-width: 700px;
    margin: 0 auto;
    text-align: left;
}
.pain-checklist ul {
    list-style: none;
    padding: 0;
    font-size: 1.1rem;
    line-height: 1.8;
}
.pain-checklist li {
    position: relative;
    padding-left: 35px;
    margin-bottom: 20px;
}
.pain-checklist li::before {
    content: '✔';
    position: absolute;
    left: 0;
    color: #d94f4f;
    font-size: 1.5rem;
    font-weight: 700;
}
.pain-conclusion {
    font-size: 1.2rem;
    font-weight: 600;
    max-width: 600px;
    margin: 40px auto 30px;
    color: #23282d;
}

/* 3. Philosophy Section */
.philosophy-section {
    padding: 80px 0;
/*     background-color: #f8f9fa; */
}
.philosophy-card {
    background: #ffffff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    height: 100%;
}
.philosophy-card h3 {
    color: #2c3e50;
    margin-bottom: 15px;
    font-size: 1.3rem;
}
.philosophy-card p {
    font-size: 0.95rem;
}

/* 4. Bio Section */
.bio-section {
    padding: 80px 0;
}
.bio-section .row {
    align-items: center;
}
.bio-section h2 {
    color: #23282d;
    font-size: 2.5rem;
    margin-bottom: 20px;
}
.bio-section p {
    margin-bottom: 20px;
    max-width: 90%;
}
.bio-logo {
    max-width: 100%;
    height: auto;
    padding-right: 30px;
}

/* 5. Final CTA Block */
.cta-primary-block {
    background-color: #2c3e50;
    color: #e8e3d9;
    padding: 60px 40px;
    text-align: center;
    margin: 0; /* No margin as it's the last element */
}
.cta-primary-block h2 {
    font-size: 2.5rem;
    margin-top: 0;
    margin-bottom: 20px;
    color: #ffffff;
}
.cta-primary-block p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: rgba(232, 227, 217, 0.9);
    line-height: 1.6;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}
.cta-primary-block .button-group {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* =================================================================
   FOOTER NEWSLETTER (from previous work)
================================================================= */
/* .newsletter-signup-box {
    background-color: #d94f4f;
    color: #ffffff;
    padding: 20px 30px;
    border-radius: 15px;
    margin-bottom: 40px;
    text-align: center;
}
.newsletter-signup-box h3 {
    color: #ffffff;
    margin-bottom: 15px;
    font-size: 1.8rem;
}
.newsletter-signup-box p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
    font-size: 1.1rem;
}
.newsletter-signup-box form {
    max-width: 900px; /* Increased width to allow for single line */
/*    margin: 0 auto;
    display: flex;
    gap: 15px; */
    /* flex-wrap: wrap; --- REMOVED */
/*     justify-content: center;
    align-items: center; /* ADDED to vertically align items */
/* }
.newsletter-signup-box input[type="email"],
.newsletter-signup-box input[type="text"] {
    flex: 1 1 40%; */ 
/*     min-width: 250px; */
/*     padding: 15px;
    border: 2px solid #ffffff;
    border-radius: 5px;
    font-size: 1rem;
    background-color: rgba(0, 0, 0, 0.2);
    color: #ffffff;
}
.newsletter-signup-box input::placeholder {
  color: rgba(255, 255, 255, 0.7);
}
.newsletter-signup-box button[type="submit"] {
	flex: 00 auto;
    background-color: #ffffff;
    color: #d94f4f;
    padding: 15px 30px;
    border: none;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}
.newsletter-signup-box button[type="submit"]:hover {
    background-color: #e8e3d9;
    color: #d94f4f;
} */
/* .newsletter-signup-box .privacy-text {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    margin-top: 15px;
} */ 

/* =================================================================
   NEWSLETTER FORM (FULLY RESPONSIVE)
================================================================= */

/* --- 1. Base styles for the entire box (no changes here) --- */
.newsletter-signup-box {
    background-color: #d94f4f;
    color: #ffffff;
    padding: 20px 30px;
    border-radius: 15px;
    margin-bottom: 40px;
    text-align: center;
}
.newsletter-signup-box h3 {
    color: #ffffff;
    margin-bottom: 15px;
    font-size: 1.8rem;
}
.newsletter-signup-box p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
    font-size: 1.1rem;
}
.newsletter-signup-box .privacy-text {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    margin-top: 15px;
}

/* --- 2. Form styles for MOBILE (default) --- */
/* This is what mobile devices will see first */
.newsletter-signup-box form {
    display: flex;
    flex-direction: column; /* Stack the items vertically */
    gap: 15px;
    max-width: 500px; /* A reasonable width for mobile */
    margin: 0 auto;
}

.newsletter-signup-box input[type="email"],
.newsletter-signup-box input[type="text"],
.newsletter-signup-box button[type="submit"] {
    width: 100%; /* Make each element take up the full width */
}

/* --- 3. Form styles for DESKTOP (using a media query) --- */
/* This will override the mobile styles on screens larger than 768px */
@media (min-width: 768px) {
    .newsletter-signup-box form {
        flex-direction: row; /* Go back to a horizontal layout */
        align-items: center; /* Vertically align items */
        max-width: 900px;
    }

    .newsletter-signup-box input[type="email"],
    .newsletter-signup-box input[type="text"] {
        flex: 1 1 40%; /* Allow inputs to grow */
        width: auto; /* Reset the width from mobile */
    }

    .newsletter-signup-box button[type="submit"] {
        flex: 0 0 auto; /* Button takes only the space it needs */
        width: auto; /* Reset the width from mobile */
    }
}

/* --- 4. Input and Button styling (no changes here) --- */
.newsletter-signup-box input::placeholder {
  color: rgba(255, 255, 255, 0.7);
}
.newsletter-signup-box input[type="email"],
.newsletter-signup-box input[type="text"] {
    padding: 15px;
    border: 2px solid #ffffff;
    border-radius: 5px;
    font-size: 1rem;
    background-color: rgba(0, 0, 0, 0.2);
    color: #ffffff;
}
.newsletter-signup-box button[type="submit"] {
    padding: 15px 30px;
    border: none;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    background-color: #ffffff;
    color: #d94f4f;
}
.newsletter-signup-box button[type="submit"]:hover {
    background-color: #e8e3d9;
    color: #d94f4f;
}


/* =================================================================
   RESPONSIVE STYLES
================================================================= */
@media (max-width: 992px) {
    .col-lg-3 { flex: 0 0 50%; margin-bottom: 30px; }
    .bio-section .row { flex-direction: column; text-align: center; }
    .bio-logo { padding-right: 0; margin-bottom: 30px; max-width: 250px; }
    .bio-section p { max-width: 100%; }
}

@media (max-width: 768px) {
    body { padding-top: 100px; } /* Adjust for smaller header */
    .site-header, .header-grid { height: auto; }
    .header-grid { grid-template-columns: 1fr; grid-template-rows: auto auto auto; }
    .logo-column { width: 100%; padding: 10px 0; grid-row: 1; }
    .logo-icon { height: 80px; }
    .company-row { grid-row: 2; justify-content: center; }
    .nav-row { grid-row: 3; justify-content: center; }
    
    .col-12, .col-8, .col-6, .col-4, .col-3 {
        flex: 0 0 100%;
        margin-bottom: 30px;
    }
    .philosophy-card { margin-bottom: 30px; }
    
    .hero-content .hero-title { font-size: 2.2rem; }
    .hero-content .hero-subtitle { font-size: 1.2rem; }
    .section-title { font-size: 2rem; }
}

/* =================================================================
   SOLUTIONS PAGE STYLES
================================================================= */

.solution-card {
    background: #ffffff;
    border: 1px solid #e9ecef;
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    height: 100%;
    display: flex;
    flex-direction: column;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    
    /* Spacing fix */
    margin-bottom: 30px; 
    
    /* Style enhancements */
    position: relative; 
    overflow: hidden;   
}

.solution-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* Create the colored top border */
.solution-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background-color: #2c3e50; /* Default color */
}

/* Give each card in a row a unique color */
.row .col-4:nth-child(3n+1) .solution-card::before {
    background-color: #FF6B35; /* Accent Orange */
}
.row .col-4:nth-child(3n+2) .solution-card::before {
    background-color: #00BCD4; /* Accent Cyan */
}
.row .col-4:nth-child(3n+3) .solution-card::before {
    background-color: #d94f4f; /* Accent Red */
}

/* Make the price stand out more */
.solution-price {
    font-size: 2.8rem;
    font-weight: 700;
    color: #23282d;
    margin-bottom: 10px;
}

.solution-price .price-term {
    font-size: 1rem;
    font-weight: 500;
    color: #666;
}

/* Other existing styles for the solutions page */
.solutions-intro {
    padding: 80px 0;
    background: #ffffff;
}

.solutions-grid {
    padding: 80px 0;
    background: #f8f9fa;
}

.solutions-grid .col-4 {
	margin-bottom: 30px;
}

.solution-card h3 {
    font-size: 1.5rem;
    color: #23282d;
    margin-bottom: 15px;
}

.solution-card p {
    font-size: 1rem;
    color: #555;
    flex-grow: 1;
    margin-bottom: 30px;
}

.solution-icon {
    font-size: 2.5rem; /* Size of the icon */
    margin-bottom: 20px;
    color: #2c3e50; /* Brand Blue */
}





/* Enhanced Digital Keychain Page Styles */

/* CSS Variables for Brand Colors */
:root {
    --primary-orange: #ff6b35;
    --dark-blue: #2c3e50;
    --light-gray: #f8f9fa;
    --accent-teal: #17a2b8;
    --text-dark: #333;
    --text-light: #666;
    --white: #ffffff;
    --warning-bg: #fff3cd;
    --warning-border: #ffeaa7;
    --success-bg: #d4edda;
    --box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    --box-shadow-hover: 0 6px 20px rgba(255, 107, 53, 0.4);
}

/* Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.bg-white{background: var(--white) !important;}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--white);
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    margin-bottom: 1rem;
    font-weight: 700;
    line-height: 1.2;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

h4 {
    font-size: 1.25rem;
}

p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
    line-height: 1.7;
}

/* Section Spacing */
section {
    padding: 60px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--dark-blue);
    position: relative;
}

.section-title::after, .secondary-text::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: var(--primary-orange);
    margin: 20px auto 0;
    border-radius: 2px;
}

/* Hero Section */
.hero-section-sub {
    background: linear-gradient(135deg, var(--dark-blue), #34495e);
    color: var(--white);
    text-align: center;
    padding: 80px 0;
	background-position: center bottom;
    background-size: cover;
    min-height: 40vh; /* Adjust height as needed */
}

.hero-title {
    font-size: 3rem;
    margin-bottom: 2rem;
    font-weight: 800;
}

.hero-subheadline {
    font-size: 1.3rem;
	max-width: 800px;
    margin: 0 auto; 
}

.highlight-text {
    color: var(--primary-orange);
    font-weight: bold;
    font-size: 1.2em;
	z-index: 2;
}

.secondary-text {
    opacity: 0.9;
    font-weight: 400;
	z-index: 2;
}

/* Problem Section */
.problem-section {
    background-color: var(--light-gray);
}

.intro-text {
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--dark-blue);
    margin-bottom: 2rem;
}

.problem-highlight {
    background-color: var(--warning-bg);
    border-left: 5px solid var(--primary-orange);
    padding: 25px;
    margin: 30px 0;
    border-radius: 8px;
    font-size: 1.2rem;
    box-shadow: var(--box-shadow);
}

.stat-callout {
    background: linear-gradient(135deg, var(--primary-orange), #ff8c42);
    color: var(--white);
    padding: 40px;
    border-radius: 15px;
    text-align: center;
    margin: 40px 0;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
    transform: translateY(0);
    transition: transform 0.3s ease;
}

.stat-callout:hover {
    transform: translateY(-5px);
}

.stat-number {
    font-size: 4rem;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 10px;
}

.stat-text {
    font-size: 1.2rem;
    font-weight: 500;
    opacity: 0.95;
}

/* Solution Section */
.solution-section {
    background-color: var(--white);
}

.solution-highlight {
    background: linear-gradient(135deg, var(--success-bg), #c3e6cb);
    border: 2px solid var(--primary-orange);
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    margin: 30px 0;
    box-shadow: var(--box-shadow);
}

.solution-highlight h3 {
    color: var(--dark-blue);
    font-size: 1.4rem;
    margin-bottom: 0;
}

/* Benefits Section */
.benefits-section {
    background-color: var(--light-gray);
}

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

.benefit-card {
    background: var(--white);
    padding: 35px;
    border-radius: 12px;
    box-shadow: var(--box-shadow);
    text-align: center;
    transition: all 0.3s ease;
    border-top: 4px solid var(--primary-orange);
	flex: 0 1 350px;
    max-width: 450px;
}

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

.benefit-icon {
    font-size: 3.5rem;
    margin-bottom: 20px;
    display: block;
}

.benefit-card h4 {
    color: var(--dark-blue);
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.benefit-card p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-light);
}

/* Personas Section */
.personas-section {
    background-color: var(--white);
	padding-bottom: 20px;
}

.personas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin: 40px 0;
}

.persona-card {
	background: var(--light-gray);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.persona-card:hover {
    border-color: var(--primary-orange);
    transform: translateY(-3px);
}

.persona-emoji {
    font-size: 3rem;
    margin-bottom: 20px;
    display: block;
}

.persona-card h4 {
    color: var(--dark-blue);
    margin-bottom: 15px;
}

.persona-card p {
    font-size: 0.95rem;
    color: var(--text-light);
}

/* Timing Section */
.timing-section {
    background-color: var(--light-gray);
}

.timing-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.timing-text p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

/* Investment Section */
.investment-section {
    background-color: var(--white);
	padding: 60px 0;
}

.investment-highlight {
    background: linear-gradient(135deg, var(--dark-blue), #34495e);
    color: var(--white);
    padding: 50px;
    border-radius: 20px;
    text-align: center;
    margin: 40px 0;
    box-shadow: 0 8px 30px rgba(44, 62, 80, 0.3);
}

.price-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.currency-keychain {
    font-size: 2.5rem;
    font-weight: 600;
    vertical-align: top;
    opacity: 0.8;
}

.price-keychain {
    font-size: 5rem;
    font-weight: 900;
    line-height: 1;
    color: var(--primary-orange);
}

.price-details-keychain {
    display: flex;
    flex-direction: column;
    font-size: 1.2rem;
    opacity: 0.9;
    text-align: left;
}

.duration-keychain, .time-keychain {
    font-weight: 500;
}

/* CTA Sections */
.cta-section, .final-cta-section {
    background-color: var(--light-gray);
    text-align: center;
}

.cta-description {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: var(--text-light);
}

.cta-container {
    margin: 30px 0;
}

.cta-primary {
    background: linear-gradient(135deg, var(--primary-orange), #e55a2b);
    color: var(--white);
    padding: 20px 40px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.3rem;
    display: inline-flex;
    align-items: center;
    gap: 20px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
    border: none;
    cursor: pointer;
}

.cta-primary:hover {
    background: linear-gradient(135deg, #e55a2b, #d14d20);
    transform: translateY(-3px);
    box-shadow: var(--box-shadow-hover);
    text-decoration: none;
    color: var(--white);
}

.cta-secondary {
    background: var(--dark-blue);
    color: var(--white);
    padding: 18px 35px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    display: inline-block;
    transition: all 0.3s ease;
    border: 2px solid var(--dark-blue);
}

.cta-secondary:hover {
    background: transparent;
    color: var(--dark-blue);
    transform: translateY(-2px);
    text-decoration: none;
}

.cta-text {
    font-size: 1.1rem;
}

.cta-price {
    background: rgba(255, 255, 255, 0.2);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 1rem;
    font-weight: 700;
}

/* FAQ Section */
.faq-section {
    background-color: var(--white);
}

/* .faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 40px 0;
	justify-content: center;
    justify-items: center;
}

.faq-item {
    background: var(--light-gray);
    padding: 25px;
    border-radius: 10px;
    border-left: 4px solid var(--primary-orange);
} */

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

.faq-item {
    flex: 0 1 300px;
    max-width: 400px;
	    background: var(--light-gray);
    padding: 25px;
    border-radius: 10px;
    border-left: 4px solid var(--primary-orange);
}

.faq-question {
    color: var(--dark-blue);
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.faq-answer {
    color: var(--text-light);
    margin-bottom: 0;
    font-size: 1rem;
}

/* .benefits-grid,
.faq-grid {
    justify-items: center;
} */

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subheadline {
        font-size: 1.1rem;
    }
    
    .stat-number {
        font-size: 3rem;
    }
    
    .price {
        font-size: 3.5rem;
    }
    
    .price-container {
        flex-direction: column;
        gap: 10px;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .personas-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    section {
        padding: 40px 0;
    }
    
    .container {
        padding: 0 15px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.8rem;
    }
    
    .cta-primary {
        flex-direction: column;
        gap: 10px;
        padding: 18px 30px;
    }
    
    .benefit-card, .persona-card {
        padding: 25px;
    }
    
    .investment-highlight {
        padding: 30px 20px;
    }
}

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

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.mb-0 {
    margin-bottom: 0;
}

.mt-2 {
    margin-top: 2rem;
}

.mb-2 {
    margin-bottom: 2rem;
}

.pricing-structure {
    margin: 40px 0;
}

.pricing-cards-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
    margin-bottom: 50px;
}

.pricing-card {
    background: var(--white);
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
    text-align: center;
    flex: 1;
    min-width: 300px;
    max-width: 400px;
    transition: transform 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-5px);
}

.base-package {
    border-top: 5px solid var(--primary-orange);
}

.team-addons {
    border-top: 5px solid var(--dark-blue);
}

.pricing-header h3 {
    color: var(--dark-blue);
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.pricing-amount {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 20px 0;
}

.currency {
    font-size: 2rem;
    font-weight: 600;
    color: var(--text-light);
    vertical-align: top;
}

.price {
    font-size: 4rem;
    font-weight: 900;
    color: var(--primary-orange);
    line-height: 1;
}

.pricing-details {
    color: var(--text-light);
    font-size: 1.1rem;
}

.pricing-details p {
    margin-bottom: 10px;
}

/* Team Add-Ons Specific Styles */
.addon-options {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
}

.addon-option {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: var(--light-gray);
    border-radius: 10px;
    width: 100%;
}

.addon-price {
    font-size: 1.8rem;
    font-weight: bold;
    color: var(--primary-orange);
    min-width: 80px;
}

.addon-details {
    text-align: left;
    font-size: 0.95rem;
    line-height: 1.4;
}

.addon-details strong {
    color: var(--dark-blue);
}

.addon-details em {
    color: var(--text-light);
    font-size: 0.9rem;
}

.addon-divider {
    font-weight: bold;
    color: var(--text-light);
    font-size: 1.1rem;
    padding: 10px 0;
}

/* Example Pricing Styles */
.example-pricing {
    background: var(--light-gray);
    padding: 40px;
    border-radius: 15px;
    margin-top: 40px;
}

.example-pricing h3 {
    text-align: center;
    color: var(--dark-blue);
    margin-bottom: 30px;
    font-size: 1.5rem;
}

.pricing-examples-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.example-item {
    background: var(--white);
    padding: 25px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.example-scenario {
    font-weight: 600;
    color: var(--dark-blue);
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.example-price {
    font-size: 1.3rem;
    font-weight: bold;
    color: var(--primary-orange);
}

.example-note {
    font-size: 0.9rem;
    color: var(--text-light);
    font-weight: normal;
}

/* What's Not Included Section Styles */
.exclusions-section {
    background-color: var(--light-gray);
    padding: 60px 0;
}

.exclusions-intro {
    text-align: center;
    margin-bottom: 40px;
}

.exclusions-intro p {
    font-size: 1.2rem;
    color: var(--text-dark);
}

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

.exclusion-item {
    background: var(--white);
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    display: flex;
    align-items: flex-start;
    gap: 20px;
    flex: 0 1 350px;
    max-width: 400px;
    transition: transform 0.3s ease;
}

.exclusion-item:hover {
    transform: translateY(-3px);
}

.exclusion-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
    margin-top: 5px;
}

.exclusion-content h4 {
    color: var(--dark-blue);
    font-size: 1.2rem;
    margin-bottom: 8px;
}

.exclusion-content p {
    color: var(--text-light);
    font-size: 1rem;
    line-height: 1.5;
    margin-bottom: 0;
}

.exclusions-footer {
    text-align: center;
    margin-top: 40px;
    padding: 30px;
    background: rgba(255, 107, 53, 0.1);
    border-radius: 10px;
    border-left: 4px solid var(--primary-orange);
}

.exclusions-footer p {
    font-size: 1.1rem;
    color: var(--text-dark);
    font-style: italic;
    margin-bottom: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .pricing-cards-grid {
        flex-direction: column;
        align-items: center;
    }
    
    .pricing-card {
        min-width: 280px;
        max-width: 100%;
    }
    
    .addon-option {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    .addon-details {
        text-align: center;
    }
    
    .pricing-examples-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .exclusions-grid {
        flex-direction: column;
        align-items: center;
    }
    
    .exclusion-item {
        max-width: 100%;
        flex: none;
    }
    
    .price {
        font-size: 3rem;
    }
    
    .addon-price {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .pricing-card {
        padding: 30px 20px;
    }
    
    .example-pricing {
        padding: 30px 20px;
    }
    
    .exclusion-item {
        padding: 25px 20px;
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .exclusion-icon {
        margin-top: 0;
    }
}

/* Enhanced Timing Section Styles */
.timing-section {
    background-color: var(--light-gray);
    padding: 60px 0;
}

.timing-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.timing-intro {
    margin-bottom: 40px;
}

.timing-intro p {
    font-size: 1.2rem;
    line-height: 1.7;
    color: var(--text-dark);
}

.timing-list-container {
    background: var(--white);
    border-radius: 15px;
    padding: 40px;
    margin: 40px auto;
    max-width: 75%; /* 3/4 of the container width */
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    border-left: 5px solid var(--primary-orange);
}

.list-header {
    color: var(--dark-blue);
    font-size: 1.4rem;
    margin-bottom: 25px;
    text-align: center;
    font-weight: 600;
}

.timing-list {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.timing-list li {
    padding: 12px 0;
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--text-dark);
    position: relative;
    padding-left: 30px;
}

.timing-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 12px;
    color: var(--primary-orange);
    font-weight: bold;
    font-size: 1.2rem;
}

.timing-conclusion {
    margin-top: 40px;
}

.timing-conclusion p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-dark);
    font-style: italic;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .timing-list-container {
        max-width: 90%;
        padding: 30px 25px;
    }
    
    .timing-intro p,
    .timing-conclusion p {
        font-size: 1.1rem;
    }
    
    .list-header {
        font-size: 1.2rem;
    }
    
    .timing-list li {
        font-size: 1rem;
        padding-left: 25px;
    }
}

@media (max-width: 480px) {
    .timing-list-container {
        max-width: 95%;
        padding: 25px 20px;
    }
    
    .timing-list li {
        padding: 10px 0 10px 25px;
    }
}


/* Enhanced Team Add-On Section */
.team-addons-section {
    background-color: var(--white);
    padding: 60px 0;
}

.team-intro {
    text-align: center;
    margin-bottom: 40px;
}

.team-intro p {
    font-size: 1.2rem;
    color: var(--text-dark);
    max-width: 800px;
    margin: 0 auto;
}

.team-options-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
    margin: 40px 0;
}

.team-option-card {
    background: var(--white);
    padding: 35px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    text-align: center;
    transition: all 0.3s ease;
    border-top: 4px solid var(--primary-orange);
    flex: 0 1 320px;
    max-width: 380px;
}

.team-option-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.team-option-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    display: block;
}

.team-option-card h4 {
    color: var(--dark-blue);
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.team-option-card p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-light);
    margin-bottom: 20px;
}

.price-highlight {
    background: linear-gradient(135deg, var(--primary-orange), #ff8c42);
    color: var(--white);
    padding: 12px 20px;
    border-radius: 25px;
    font-weight: bold;
    font-size: 1.1rem;
    display: inline-block;
    margin-top: 10px;
}

/* Enhanced Pricing Examples Card */
.pricing-examples-card {
    border-top-color: var(--dark-blue);
}

.pricing-examples-container {
    background: var(--light-gray);
    border-radius: 10px;
    padding: 25px;
    margin-top: 20px;
    border-left: 4px solid var(--dark-blue);
}

.pricing-examples-list {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.pricing-examples-list li {
    padding: 10px 0;
    border-bottom: 1px solid rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.pricing-examples-list li:last-child {
    border-bottom: none;
}

.scenario {
    font-weight: 600;
    color: var(--dark-blue);
    font-size: 1rem;
}

.price {
    color: var(--primary-orange);
    font-weight: bold;
    font-size: 1.1rem;
}

.note {
    color: var(--text-light);
    font-size: 0.9rem;
    font-style: italic;
}

/* Responsive Design */
@media (max-width: 768px) {
    .team-options-grid {
        flex-direction: column;
        align-items: center;
    }
    
    .team-option-card {
        max-width: 100%;
        flex: none;
    }
    
    .pricing-examples-list li {
        flex-direction: column;
        gap: 3px;
    }
    
    .pricing-examples-container {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .team-option-card {
        padding: 25px 20px;
    }
    
    .pricing-examples-container {
        padding: 18px;
    }
    
    .scenario,
    .price {
        font-size: 0.95rem;
    }
}

/* =================================================================
   NEW OUR PROCESS PAGE STYLES
================================================================= */

/* --- Style for Split Intro Section --- */
.process-intro-heading-split {
    font-size: 2.5rem;
    color: #2c3e50;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 15px;
}

.process-intro-subheading-split {
    font-size: 1.2rem;
    color: #666;
}

.process-intro-cta {
    margin-top: 60px;
    font-size: 1.8rem;
    font-weight: 700;
    color: #FF6B35; /* Accent Orange */
}

/* Responsive adjustment for the split layout */
@media (max-width: 768px) {
    .process-intro-heading-split {
        text-align: center;
    }
    .process-intro-subheading-split {
        text-align: center;
        margin-bottom: 30px;
    }
}


.process-steps-section {
    padding: 80px 0;
}

.process-step-card {
    background-color: #ffffff;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.07);
    margin-bottom: 60px;
    overflow: hidden; /* Ensures child elements respect the border radius */
}

.process-step-card .row {
    align-items: center;
}

/* Reverse column order for even-numbered cards */
.process-step-card:nth-child(even) .row {
    flex-direction: row-reverse;
}

.process-step-content {
    padding: 50px;
}

.process-step-number {
    font-size: 1rem;
    font-weight: 700;
    color: #FF6B35;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 5px;
}

.process-step-title {
    font-size: 2.2rem;
    color: #2c3e50;
    margin-bottom: 20px;
}

.process-step-content p {
    font-size: 1.1rem;
    color: #333;
    line-height: 1.8;
    margin-bottom: 25px;
}

.process-step-deliverable {
    background-color: #f8f9fa; /* Light gray background */
    border-left: 4px solid #00AFE1; /* Using the header accent blue */
    padding: 20px;
    border-radius: 5px;
    font-size: 1rem;
    line-height: 1.6;
    color: #333;
}

.process-step-comic {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #e9ecef; /* A slightly darker gray for contrast */
    padding: 40px;
    min-height: 400px;
}

.process-step-comic img {
    max-width: 100%;
    height: auto;
    max-height: 300px;
}

/* Responsive adjustments for the process page */
@media (max-width: 992px) {
    .process-step-content {
        padding: 40px;
    }
    .process-step-title {
        font-size: 1.8rem;
    }
}

@media (max-width: 768px) {
    /* Stack columns on mobile */
    .process-step-card .row,
    .process-step-card:nth-child(even) .row {
        flex-direction: column;
    }

    .process-step-card .col-6 {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .process-step-comic {
        min-height: auto;
        padding: 50px 30px;
    }
}

/* =================================================================
   NEW ABOUT US PAGE STYLES
================================================================= */

/* --- 1. Hero Bio Section --- */
.about-main-headline {
    font-size: 2.8rem;
    font-weight: 700;
    color: #2c3e50;
    line-height: 1.3;
    margin-bottom: 20px;
}
.about-intro-text {
    font-size: 1.1rem;
    line-height: 1.8;
}




.about-photo-placeholder {
    position: relative;
}
.photo-caption {
    position: absolute;
    bottom: 15px;
    left: 15px;
    background: rgba(44, 62, 80, 0.8); /* Dark Blue with transparency */
    color: #ffffff;
    padding: 8px 15px;
    border-radius: 5px;
    font-size: 0.9rem;
    font-weight: 500;
}

/* --- 2. Philosophy Section --- */
.about-quote-highlight {
    max-width: 600px;
    margin: 40px auto;
    border-color: #FF6B35; /* Orange accent */
    background-color: #ffffff;
    box-shadow: 0 5px 20px rgba(0,0,0,0.07);
}

/* --- 3. Founder Section --- */
.about-featured-quote {
    margin-top: 60px;
    padding: 40px;
    background-color: #f8f9fa;
    border-radius: 10px;
    border-left: 5px solid #FF6B35;
}
.about-featured-quote p {
    font-size: 1.5rem;
    font-weight: 600;
    color: #2c3e50;
    font-style: italic;
    line-height: 1.5;
    margin: 0;
}



/* --- 5. Final CTA Section --- */
.about-final-snark {
    font-family: monospace;
    font-size: 1.1rem;
    color: #FF6B35; /* Orange */
    background-color: rgba(0,0,0,0.2);
    padding: 10px 15px;
    border-radius: 5px;
    display: inline-block;
    margin-top: 20px;
}

/* =================================================================
   CORRECTED LAYOUT SPACING FOR ABOUT PAGE
================================================================= */

/* --- 1. Fix for Three-Column Card Layout --- */
.about-expertise-section .row {
    /* This creates space BETWEEN the columns */
    justify-content: space-between; 
}

.about-expertise-section .col-4 {
    /* Adjust width to account for spacing. 
       33.33% is the base, and we subtract a small amount for the gap.
       20px is 10px from each side of the middle card. */
    flex-basis: calc(33.333% - 20px); 
}

/* --- 2. Fix for Two-Column Image/Text Layouts --- */
.about-hero-section .row,
.about-founder-section .row {
    /* This also creates space BETWEEN the columns */
    justify-content: space-between;
    align-items: center;
}

.about-hero-section .col-6,
.about-founder-section .col-6 {
    /* Adjust width to account for a 4% gap (approx 40-50px) */
    flex-basis: 48%; 
}


/* --- 3. Responsive Reset --- */
/* On mobile, everything should stack naturally */
@media (max-width: 768px) {
    .about-expertise-section .col-4,
    .about-hero-section .col-6,
    .about-founder-section .col-6 {
        /* Reset to full width when stacking */
        flex-basis: 100%; 
    }

    .about-hero-section .row,
    .about-founder-section .row {
        /* Revert to default stacking behavior */
        justify-content: flex-start;
    }
}


/* --- Responsive Adjustments --- */
@media (max-width: 768px) {
    .about-hero-section .row,
    .about-founder-section .row {
        flex-direction: column-reverse; /* Puts text above image on mobile */
    }
    .about-hero-section .col-6,
    .about-founder-section .col-6 {
        text-align: center;
    }
    .about-photo-placeholder,
    .about-grandson-photo {
        margin-bottom: 40px;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }
    .about-main-headline {
        font-size: 2.2rem;
    }
    .about-featured-quote {
        padding: 30px;
    }
    .about-featured-quote p {
        font-size: 1.2rem;
    }
}


/* =================================================================
   BLOG POST & CONTENT RESPONSIVENESS
================================================================= */

/* --- 1. Basic Content Area --- */
/* This ensures the main content area can shrink */
.entry-content,
.post-content,
.content-area {
    width: 100%;
    max-width: 100%; /* Prevents overflow */
}

/* --- 2. Responsive Images --- */
/* This is the most important rule. It makes images scale down. */
.entry-content img,
.post-content img {
    max-width: 100%;
    height: auto; /* Maintains aspect ratio */
    box-sizing: border-box;
}

/* --- 3. Responsive Videos & Iframes --- */
/* Ensures embedded videos (YouTube, etc.) scale correctly */
.entry-content iframe,
.post-content iframe {
    max-width: 100%;
}

/* --- 4. Handling Pre-formatted Text & Code Blocks --- */
/* Prevents long lines of code from breaking the layout */
.entry-content pre,
.post-content pre {
    white-space: pre-wrap;       /* Allows wrapping */
    word-wrap: break-word;     /* Breaks long words/strings */
    overflow-x: auto;          /* Adds a scrollbar if it still overflows */
    max-width: 100%;
}

@media (max-width: 768px) {
    /*
      Center-align all images within single blog posts on mobile devices
      for a cleaner, more symmetrical look.
    */
    .alignleft,
    .alignright {
        display: block;      /* Treat the image as a block-level element */
        float: none !important;  /* Remove any float alignment */
        margin-left: auto;   /* Auto margin on the left */
        margin-right: auto;  /* Auto margin on the right */
        max-width: 100%;     /* Ensure image is never wider than the screen */
        height: auto;        /* Maintain aspect ratio */
    }
}

/* --- 5. WordPress Image Alignments on Mobile --- */
/* On small screens, force aligned images to become full-width blocks */
@media (max-width: 600px) {
    .alignleft,
    .alignright {
        float: none;
        display: block;
        margin-left: auto;
        margin-right: auto;
        width: 100%;
        max-width: 100%;
    }
}

/* =================================================================
   FINAL, BULLETPROOF RESPONSIVE CODE WELL
================================================================= */

/* 
  This is the main container. We are making it a flexbox container
  to give us absolute control over the child elements.
*/
.wp-block-code.code-well {
    display: flex;           /* Use Flexbox for robust control */
    max-width: 100%;         /* Ensure the container itself is responsive */
    box-sizing: border-box;
    
    /* Your "Well" Styling */
    background-color: #23282d;
    color: #e8e3d9;
    border-radius: 10px;
    padding: 25px;
    margin: 20px 0;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* 
  This targets the <pre> tag directly inside our well.
  This is the most critical part of the fix.
*/
.wp-block-code.code-well pre {
    flex: 1;                 /* Allow the <pre> tag to grow and shrink */
    min-width: 0;            /* CRITICAL: This allows the flex item to shrink below its content size */
    margin: 0;
    padding: 0;
    
    /* The Responsive Magic */
    white-space: pre-wrap;
    word-wrap: break-word;
    overflow-x: auto;
}

/* 
  This targets the <code> tag inside to ensure it has the
  correct font and no conflicting styles.
*/
.wp-block-code.code-well code {
    font-family: monospace;
    font-size: 14px;         /* Set an explicit, pixel-based font size */
    line-height: 1.5;        /* Set an explicit line height */
    color: inherit;
    background: none;
    padding: 0;
}




</style>



