/* CSS Custom Properties for NMcDonough Consulting */
:root {
    /* Professional Color Palette */
    --primary-blue: #1e40af;           /* Deep blue for primary elements */
    --secondary-blue: #3b82f6;         /* Medium blue for accents */
    --light-blue: #60a5fa;             /* Light blue for highlights */
    --dark-grey: #1f2937;              /* Dark grey for text */
    --medium-grey: #6b7280;            /* Medium grey for secondary text */
    --light-grey: #f3f4f6;             /* Light grey for backgrounds */
    --white: #ffffff;                  /* Pure white */
    --accent-green: #10b981;           /* Success/accent color */
    --accent-orange: #f59e0b;          /* Warning/highlight color */
    
    /* Typography */
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Open Sans', sans-serif;
    
    /* Spacing and Layout */
    --container-max-width: 1200px;
    --section-padding: 5rem 0;
    --border-radius: 8px;
    --border-radius-lg: 16px;
    
    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    
    /* Transitions */
    --transition-fast: all 0.2s ease;
    --transition-normal: all 0.3s ease;
    --transition-slow: all 0.5s ease;
}

/* Reset and Base Styles */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--dark-grey);
    background-color: var(--white);
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 { font-size: 3.5rem; font-weight: 800; }
h2 { font-size: 2.5rem; font-weight: 700; }
h3 { font-size: 1.75rem; font-weight: 600; }
h4 { font-size: 1.25rem; font-weight: 600; }

p {
    margin-bottom: 1rem;
    color: var(--medium-grey);
}

/* Container */
.container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 2rem;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: var(--transition-normal);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
}

.nav-brand {
    display: flex;
    align-items: center;
}

.nav-logo {
    height: 50px;
    width: auto;
    transition: var(--transition-fast);
}

.nav-logo:hover {
    transform: scale(1.05);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    font-family: var(--font-heading);
    font-weight: 500;
    color: var(--dark-grey);
    text-decoration: none;
    transition: var(--transition-fast);
    padding: 0.5rem 1rem;
    border-radius: var(--border-radius);
}

.nav-link:hover {
    color: var(--primary-blue);
    background-color: var(--light-grey);
}

/* Mobile Navigation Toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 0.5rem;
}

.nav-toggle .bar {
    width: 25px;
    height: 3px;
    background-color: var(--dark-grey);
    margin: 3px 0;
    transition: var(--transition-fast);
    border-radius: 3px;
}

.nav-toggle.active .bar:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active .bar:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active .bar:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Button Styles */
.btn {
    display: inline-block;
    padding: 1rem 2rem;
    font-family: var(--font-heading);
    font-weight: 600;
    text-decoration: none;
    text-align: center;
    border-radius: var(--border-radius);
    transition: var(--transition-normal);
    cursor: pointer;
    border: 2px solid transparent;
    font-size: 1rem;
}

.btn-primary {
    background-color: var(--primary-blue);
    color: var(--white);
    border-color: var(--primary-blue);
}

.btn-primary:hover {
    background-color: var(--secondary-blue);
    border-color: var(--secondary-blue);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background-color: transparent;
    color: var(--primary-blue);
    border-color: var(--primary-blue);
}

.btn-secondary:hover {
    background-color: var(--primary-blue);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-full {
    width: 100%;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, var(--white) 0%, var(--light-grey) 100%);
    padding: 8rem 0 6rem;
    margin-top: 80px;
    text-align: center;
}

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

.hero-headline {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--dark-grey);
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.highlight {
    color: var(--primary-blue);
    position: relative;
    background-image: linear-gradient(90deg, var(--secondary-blue), var(--light-blue));
    background-repeat: no-repeat;
    background-position: 0 100%;
    background-size: 100% 4px;
    padding-bottom: 2px;
}

.hero-subheadline {
    font-size: 1.25rem;
    color: var(--medium-grey);
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Section Styles */
.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-blue);
    text-align: center;
    margin-bottom: 3rem;
}

/* Why Section */
.why-section {
    padding: var(--section-padding);
    background-color: var(--white);
}

.why-intro {
    font-size: 1.125rem;
    text-align: center;
    max-width: 600px;
    margin: 0 auto 3rem;
    color: var(--medium-grey);
}

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

.benefit-card {
    background-color: var(--white);
    padding: 2.5rem 2rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: var(--transition-normal);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.benefit-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: block;
}

.benefit-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

.benefit-description {
    color: var(--medium-grey);
    line-height: 1.6;
}

/* Founder Section */
.founder-section {
    padding: var(--section-padding);
    background-color: var(--light-grey);
}

.founder-content {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 4rem;
    align-items: center;
}

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

.founder-photo {
    width: 250px;
    height: 250px;
    border-radius: 50%;
    object-fit: cover;
    border: 6px solid var(--primary-blue);
    box-shadow: var(--shadow-lg);
    transition: var(--transition-normal);
}

.founder-photo:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-xl);
}

.founder-bio .section-title {
    text-align: left;
    margin-bottom: 2rem;
}

.highlight-list {
    list-style: none;
    margin-bottom: 2rem;
}

.highlight-list li {
    padding: 0.5rem 0;
    color: var(--medium-grey);
    font-weight: 500;
    position: relative;
    padding-left: 1.5rem;
}

.highlight-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-green);
    font-weight: bold;
}

.founder-quote {
    font-size: 1.25rem;
    font-style: italic;
    color: var(--primary-blue);
    border-left: 4px solid var(--primary-blue);
    padding-left: 1.5rem;
    margin: 2rem 0 1rem;
    line-height: 1.6;
}

.founder-signature {
    font-weight: 600;
    color: var(--dark-grey);
    margin-bottom: 0;
}

/* Process Section */
.process-section {
    padding: var(--section-padding);
    background-color: var(--white);
}

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

.process-step {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 2rem;
    background-color: var(--light-grey);
    border-radius: var(--border-radius-lg);
    transition: var(--transition-normal);
}

.process-step:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.step-number {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background-color: var(--primary-blue);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.25rem;
}

.step-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary-blue);
    margin-bottom: 0.5rem;
}

.step-description {
    color: var(--medium-grey);
    line-height: 1.6;
}

/* Engagement Section */
.engagement-section {
    padding: var(--section-padding);
    background-color: var(--light-grey);
}

.engagement-intro {
    font-size: 1.125rem;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    color: var(--medium-grey);
    line-height: 1.7;
}

/* Contact Section */
.contact-section {
    padding: var(--section-padding);
    background-color: var(--white);
}

.contact-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-form {
    background-color: var(--light-grey);
    padding: 2.5rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--dark-grey);
    margin-bottom: 0.5rem;
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid rgba(0, 0, 0, 0.1);
    border-radius: var(--border-radius);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: var(--transition-fast);
    background-color: var(--white);
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 3px rgba(30, 64, 175, 0.1);
}

.form-textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.qr-code-container {
    background-color: var(--light-grey);
    padding: 2rem;
    border-radius: var(--border-radius-lg);
    text-align: center;
    box-shadow: var(--shadow-md);
}

.qr-code {
    width: 150px;
    height: 150px;
    border-radius: var(--border-radius);
    margin-bottom: 1rem;
}

.qr-label {
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--primary-blue);
    margin: 0;
}

.direct-contact {
    background-color: var(--light-grey);
    padding: 2rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
}

.contact-title {
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

.contact-detail {
    margin-bottom: 0.5rem;
    color: var(--medium-grey);
}

.contact-detail strong {
    color: var(--dark-grey);
}

/* Footer */
.footer {
    background-color: var(--dark-grey);
    color: var(--white);
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-logo {
    height: 60px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.footer-description {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin: 0;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-title {
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--white);
    margin-bottom: 1rem;
}

.footer-detail {
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1rem;
    text-align: center;
}

.footer-text {
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .container {
        padding: 0 1.5rem;
    }
    
    .hero-headline {
        font-size: 2.75rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .founder-content {
        grid-template-columns: 250px 1fr;
        gap: 2rem;
    }
    
    .founder-photo {
        width: 200px;
        height: 200px;
    }
}

@media (max-width: 768px) {
    /* Navigation */
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background-color: var(--white);
        width: 100%;
        text-align: center;
        transition: var(--transition-normal);
        box-shadow: var(--shadow-lg);
        padding: 2rem 0;
        gap: 1rem;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    /* Typography */
    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }
    
    .hero-headline {
        font-size: 2.5rem;
    }
    
    .hero-subheadline {
        font-size: 1.125rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
    
    /* Layout adjustments */
    .founder-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .founder-bio .section-title {
        text-align: center;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }
    
    .hero-section {
        padding: 6rem 0 4rem;
    }
    
    .hero-headline {
        font-size: 2rem;
        line-height: 1.2;
    }
    
    .hero-subheadline {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .founder-photo {
        width: 180px;
        height: 180px;
    }
    
    .qr-code {
        width: 120px;
        height: 120px;
    }
    
    .contact-form {
        padding: 1.5rem;
    }
    
    .process-step {
        flex-direction: column;
        text-align: center;
    }
    
    .step-number {
        align-self: center;
    }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* Focus styles */
.nav-link:focus,
.btn:focus,
.form-input:focus,
.form-textarea:focus {
    outline: 2px solid var(--primary-blue);
    outline-offset: 2px;
}

/* Services Page Styles */
.services-hero {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
    padding: 8rem 0 6rem;
    margin-top: 80px;
    text-align: center;
    color: var(--white);
}

.services-hero .hero-headline {
    color: var(--white);
}

.services-hero .highlight::after {
    background: linear-gradient(90deg, var(--light-blue), var(--white));
}

.services-hero .hero-subheadline {
    color: rgba(255, 255, 255, 0.9);
}

.services-intro {
    padding: 4rem 0;
    background-color: var(--light-grey);
}

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

.intro-text {
    font-size: 1.125rem;
    color: var(--medium-grey);
    line-height: 1.7;
}

.main-services {
    padding: var(--section-padding);
    background-color: var(--white);
}

.service-card-detailed {
    background-color: var(--white);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
    padding: 2.5rem;
    margin-bottom: 2rem;
    transition: var(--transition-normal);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.service-card-detailed:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl);
}

.service-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.service-card-detailed .service-icon {
    font-size: 2.5rem;
    background-color: var(--light-grey);
    padding: 1rem;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.service-card-detailed .service-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-blue);
    margin: 0;
}

.service-features {
    list-style: none;
    margin-top: 1.5rem;
}

.service-features li {
    padding: 0.5rem 0;
    color: var(--medium-grey);
    position: relative;
    padding-left: 1.5rem;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-green);
    font-weight: bold;
}

.engagement-models {
    padding: var(--section-padding);
    background-color: var(--light-grey);
}

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

.engagement-card {
    background-color: var(--white);
    padding: 2.5rem 2rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
    transition: var(--transition-normal);
}

.engagement-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl);
}

.engagement-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

.engagement-description {
    color: var(--medium-grey);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.engagement-features {
    list-style: none;
}

.engagement-features li {
    padding: 0.25rem 0;
    color: var(--medium-grey);
    position: relative;
    padding-left: 1.5rem;
    font-size: 0.95rem;
}

.engagement-features li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary-blue);
    font-weight: bold;
}

.testimonials {
    padding: var(--section-padding);
    background-color: var(--white);
}

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

.testimonial-card {
    background-color: var(--light-grey);
    padding: 2rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
    transition: var(--transition-normal);
}

.testimonial-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.testimonial-text {
    font-style: italic;
    color: var(--medium-grey);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.client-logo {
    background-color: var(--primary-blue);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: var(--border-radius);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.9rem;
}

.author-name {
    font-weight: 600;
    color: var(--dark-grey);
    margin: 0;
}

.author-title {
    font-size: 0.9rem;
    color: var(--medium-grey);
    margin: 0;
}

.cta-section {
    padding: var(--section-padding);
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
    text-align: center;
    color: var(--white);
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1.5rem;
}

.cta-description {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin: 0 auto 2rem;
    line-height: 1.6;
}

.btn-large {
    padding: 1.25rem 2.5rem;
    font-size: 1.125rem;
}

/* Blog Page Styles */
.blog-hero {
    background: linear-gradient(135deg, var(--white) 0%, var(--light-grey) 100%);
    padding: 8rem 0 6rem;
    margin-top: 80px;
    text-align: center;
}

.blog-intro {
    padding: 3rem 0;
    background-color: var(--white);
}

.blog-filters {
    padding: 2rem 0;
    background-color: var(--light-grey);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.filters-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.search-container {
    display: flex;
    gap: 0.5rem;
    flex: 1;
    max-width: 400px;
}

.search-input {
    flex: 1;
    padding: 0.75rem 1rem;
    border: 2px solid rgba(0, 0, 0, 0.1);
    border-radius: var(--border-radius);
    font-family: var(--font-body);
    font-size: 1rem;
}

.search-btn {
    padding: 0.75rem 1rem;
    background-color: var(--primary-blue);
    color: var(--white);
    border: none;
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: var(--transition-fast);
}

.search-btn:hover {
    background-color: var(--secondary-blue);
}

.categories-container {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.filter-label {
    font-family: var(--font-heading);
    font-weight: 500;
    color: var(--dark-grey);
}

.category-filter {
    padding: 0.75rem 1rem;
    border: 2px solid rgba(0, 0, 0, 0.1);
    border-radius: var(--border-radius);
    font-family: var(--font-body);
    background-color: var(--white);
}

.blog-posts {
    padding: var(--section-padding);
    background-color: var(--white);
}

.posts-grid {
    display: grid;
    gap: 2rem;
}

.blog-post {
    background-color: var(--light-grey);
    border-radius: var(--border-radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow-md);
    transition: var(--transition-normal);
}

.blog-post:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.blog-post.featured {
    background: linear-gradient(135deg, var(--white) 0%, var(--light-grey) 100%);
    border: 2px solid var(--primary-blue);
    padding: 3rem;
    margin-bottom: 3rem;
}

.post-image {
    position: relative;
    margin-bottom: 1.5rem;
}

.post-tag {
    background-color: var(--accent-orange);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: var(--border-radius);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-block;
}

.post-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-blue);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.featured .post-title {
    font-size: 2rem;
    font-weight: 700;
}

.post-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.post-date,
.post-author,
.post-category {
    font-size: 0.9rem;
    color: var(--medium-grey);
}

.post-category {
    background-color: var(--primary-blue);
    color: var(--white);
    padding: 0.25rem 0.5rem;
    border-radius: var(--border-radius);
    font-weight: 500;
}

.post-excerpt {
    color: var(--medium-grey);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.post-text {
    color: var(--medium-grey);
    line-height: 1.7;
    margin-top: 1.5rem;
}

.post-text h3 {
    color: var(--primary-blue);
    font-size: 1.25rem;
    margin: 2rem 0 1rem;
}

.post-text p {
    margin-bottom: 1.5rem;
}

.post-video {
    margin-top: 2rem;
    padding: 1.5rem;
    background-color: var(--white);
    border-radius: var(--border-radius);
    border-left: 4px solid var(--primary-blue);
}

.video-placeholder p {
    margin-bottom: 0.5rem;
    color: var(--medium-grey);
}

.video-link {
    color: var(--primary-blue);
    text-decoration: none;
    font-weight: 500;
}

.video-link:hover {
    text-decoration: underline;
}

.btn-small {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
}

.load-more-container {
    text-align: center;
    margin-top: 3rem;
}

.newsletter-signup {
    padding: var(--section-padding);
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
    color: var(--white);
    text-align: center;
}

.newsletter-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1rem;
}

.newsletter-description {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin: 0 auto 2rem;
    line-height: 1.6;
}

.newsletter-form {
    max-width: 500px;
    margin: 0 auto;
}

.form-group-inline {
    display: flex;
    gap: 1rem;
}

.form-group-inline .form-input {
    flex: 1;
    border-color: rgba(255, 255, 255, 0.3);
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--white);
}

.form-group-inline .form-input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.form-group-inline .form-input:focus {
    border-color: var(--white);
    background-color: rgba(255, 255, 255, 0.15);
}

/* Active Navigation State */
.nav-link.active {
    color: var(--primary-blue);
    background-color: var(--light-grey);
}

/* Avatar CTA Section Styles */
.avatar-section {
    padding: var(--section-padding);
    background-color: #f8fafc;
    text-align: center;
}

.avatar-container {
    max-width: 800px;
    margin: 0 auto;
}

.avatar-cta-container {
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(30, 64, 175, 0.2);
    color: white;
    position: relative;
    overflow: hidden;
}

.avatar-cta-container::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
    0%, 100% { transform: translate(-50%, -50%) rotate(0deg); }
    50% { transform: translate(-50%, -50%) rotate(180deg); }
}

.avatar-content {
    position: relative;
    z-index: 2;
    max-width: 500px;
    margin: 0 auto;
}

.avatar-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: block;
}

.avatar-title {
    font-size: 2rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
}

.avatar-description {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.6;
    margin-bottom: 2.5rem;
}

.btn-avatar {
    background: white;
    color: #1e40af;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn-avatar:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    background: #f8fafc;
    color: #1e40af;
}

.btn-icon {
    font-size: 1.2rem;
}

.avatar-note {
    margin-top: 1.5rem;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    font-style: italic;
}

/* No Posts Message Styles */
.no-posts-message {
    text-align: center;
    padding: 4rem 2rem;
    background-color: var(--light-grey);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
}

.no-posts-content {
    max-width: 500px;
    margin: 0 auto;
}

.no-posts-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    display: block;
}

.no-posts-title {
    font-size: 2rem;
    font-weight: 600;
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

.no-posts-text {
    font-size: 1.125rem;
    color: var(--medium-grey);
    line-height: 1.6;
    margin: 0;
}

/* Video Styling for Blog Posts */
.video-container {
    margin-top: 2rem;
    padding: 1.5rem;
    background-color: var(--light-grey);
    border-radius: var(--border-radius-lg);
    text-align: center;
}

.video-container h4 {
    color: var(--primary-blue);
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
    font-weight: 600;
}

.video-container p {
    color: var(--medium-grey);
    margin-bottom: 1.5rem;
}

.video-container video {
    width: 100%;
    max-width: 560px;
    height: auto;
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-md);
    background-color: var(--dark-grey);
}

.video-container iframe {
    width: 100%;
    max-width: 560px;
    height: 315px;
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-md);
}

/* Button styling for blog posts */
.btn-small {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
}

/* Additional Responsive Styles */
@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .service-header {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .founder-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .filters-container {
        flex-direction: column;
        align-items: stretch;
        gap: 1rem;
    }
    
    .search-container {
        max-width: none;
    }
    
    .categories-container {
        justify-content: space-between;
    }
    
    .form-group-inline {
        flex-direction: column;
    }
    
    .cta-title {
        font-size: 2rem;
    }
    
    .newsletter-title {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .service-card-detailed {
        padding: 1.5rem;
    }
    
    .engagement-card {
        padding: 1.5rem;
    }
    
    .testimonial-card {
        padding: 1.5rem;
    }
    
    .blog-post {
        padding: 1.5rem;
    }
    
    .blog-post.featured {
        padding: 2rem;
    }
    
    .post-meta {
        flex-direction: column;
        gap: 0.5rem;
    }
}

/* Success Message Styles */
.success-message {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    margin-top: 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.success-message h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: white;
}

.success-message p {
    margin-bottom: 0.5rem;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.6;
}

/* Thank You Page Styles */
.thank-you-section {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 0;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-accent) 100%);
    color: white;
}

.thank-you-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.thank-you-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: white;
}

.thank-you-message {
    margin-bottom: 3rem;
}

.thank-you-message h2 {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: white;
}

.thank-you-message p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.9);
}

.thank-you-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.thank-you-actions .btn {
    min-width: 150px;
}

.btn-outline {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-outline:hover {
    background: white;
    color: var(--color-primary);
}

.thank-you-content .direct-contact {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 10px;
    backdrop-filter: blur(10px);
}

.thank-you-content .direct-contact h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: white;
}

.thank-you-content .direct-contact p {
    margin-bottom: 0.5rem;
    color: rgba(255, 255, 255, 0.9);
}

/* Print styles */
@media print {
    .navbar,
    .footer {
        display: none;
    }
    
    .hero-section,
    .services-hero,
    .blog-hero {
        margin-top: 0;
    }
    
    * {
        background: white !important;
        color: black !important;
        box-shadow: none !important;
    }
}