:root {
    /* Warm Color Palette - Torch-inspired */
    --primary: #D97706;
    --primary-light: #F59E0B;
    --primary-dark: #B45309;
    --secondary: #1E293B;
    --secondary-light: #334155;
    --accent: #EA580C;
    
    /* Neutrals */
    --bg-primary: #FEFDFB;
    --bg-secondary: #F9F7F4;
    --bg-dark: #1E293B;
    --text-primary: #1E293B;
    --text-secondary: #64748B;
    --text-light: #94A3B8;
    --border: #E2E8F0;
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #D97706 0%, #EA580C 100%);
    --gradient-overlay: linear-gradient(135deg, rgba(217, 119, 6, 0.1) 0%, rgba(234, 88, 12, 0.05) 100%);
    
    /* Typography */
    --font-display: 'Cormorant Garamond', serif;
    --font-body: 'Manrope', sans-serif;
    
    /* Spacing */
    --section-padding: 120px;
    --container-width: 1200px;
    
    /* Effects */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.12);
    --shadow-glow: 0 0 40px rgba(217, 119, 6, 0.15);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--text-primary);
    background: var(--bg-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
}

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

/* Navigation */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(254, 253, 251, 0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav-container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 20px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-image {
    height: 50px;
    width: auto;
    display: block;
    background: white;
    padding: 4px 8px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.logo-torch-simple {
    font-size: 32px;
    line-height: 1;
    filter: drop-shadow(0 2px 4px rgba(217, 119, 6, 0.3));
}

.logo-icon {
    width: 32px;
    height: 32px;
    color: var(--primary);
}

.logo-text {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 600;
    color: var(--text-primary);
}

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

.nav-links a {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--primary);
}

.nav-cta {
    background: var(--gradient-primary);
    color: white !important;
    padding: 10px 24px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-menu-toggle span {
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 24px 80px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-gradient {
    position: absolute;
    inset: 0;
    background: var(--gradient-overlay);
}

.hero-pattern {
    position: absolute;
    inset: 0;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(217, 119, 6, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(234, 88, 12, 0.06) 0%, transparent 50%),
        url('https://images.unsplash.com/photo-1531206715517-5c0ba140b2b8?w=1600&q=80&auto=format&fit=crop&blend=FEFDFB&blend-mode=overlay&blend-alpha=85');
    background-size: cover;
    background-position: center;
    opacity: 0.3;
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 900px;
    animation: fadeInUp 1s ease;
}

.hero-badge {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(217, 119, 6, 0.1);
    border: 1px solid rgba(217, 119, 6, 0.2);
    border-radius: 100px;
    color: var(--primary-dark);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 32px;
    animation: fadeIn 1s ease 0.2s both;
}

.hero-title {
    font-size: clamp(48px, 6vw, 72px);
    margin-bottom: 24px;
    color: var(--text-primary);
    animation: fadeInUp 1s ease 0.3s both;
}

.hero-highlight {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: clamp(18px, 2vw, 22px);
    color: var(--text-primary);
    max-width: 700px;
    margin: 0 auto 48px;
    line-height: 1.7;
    animation: fadeInUp 1s ease 0.4s both;
    background: rgba(255, 255, 255, 0.95);
    padding: 20px 32px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    font-weight: 500;
}

.hero-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease 0.5s both;
}

.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--text-light);
    font-size: 14px;
    animation: bounce 2s ease infinite;
}

.hero-scroll svg {
    width: 24px;
    height: 24px;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

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

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

.btn-secondary {
    background: white;
    color: var(--primary);
    border: 2px solid var(--primary);
}

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

.btn-outline {
    background: transparent;
    color: var(--text-primary);
    border: 2px solid var(--border);
}

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

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-title {
    font-size: clamp(36px, 5vw, 56px);
    margin-bottom: 16px;
    color: var(--text-primary);
}

.section-subtitle {
    font-size: 20px;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

/* Services Section */
.services {
    padding: var(--section-padding) 0;
    background: var(--bg-secondary);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
}

.service-card {
    background: white;
    padding: 40px;
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

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

.service-icon {
    width: 64px;
    height: 64px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.service-icon svg {
    width: 32px;
    height: 32px;
}

.service-icon.mental-health {
    background: rgba(59, 130, 246, 0.1);
    color: #3B82F6;
}

.service-icon.criminal-justice {
    background: rgba(139, 92, 246, 0.1);
    color: #8B5CF6;
}

.service-icon.elder-care {
    background: rgba(217, 119, 6, 0.1);
    color: var(--primary);
}

.service-title {
    font-size: 28px;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.service-list {
    list-style: none;
    margin-bottom: 24px;
}

.service-list li {
    padding: 12px 0;
    padding-left: 28px;
    position: relative;
    color: var(--text-secondary);
}

.service-list li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: 600;
}

.service-link {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.service-link:hover {
    gap: 8px;
}

/* Professional Services Section */
.professional-services {
    padding: var(--section-padding) 0;
    background: white;
}

.section-label {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(217, 119, 6, 0.1);
    color: var(--primary-dark);
    border-radius: 100px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.professional-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
    margin-bottom: 64px;
}

.professional-card {
    background: var(--bg-secondary);
    padding: 40px;
    border-radius: 12px;
    border: 2px solid var(--border);
    transition: all 0.3s ease;
}

.professional-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary);
}

.professional-icon {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.professional-icon svg {
    width: 28px;
    height: 28px;
}

.professional-title {
    font-size: 22px;
    margin-bottom: 16px;
    color: var(--text-primary);
    font-family: var(--font-display);
}

.professional-description {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-secondary);
}

.professional-cta {
    text-align: center;
    padding: 48px;
    background: var(--gradient-overlay);
    border-radius: 16px;
    border: 2px solid rgba(217, 119, 6, 0.2);
}

.professional-cta h3 {
    font-family: var(--font-display);
    font-size: 32px;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.professional-cta p {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 24px;
}

/* About Section */
.about {
    padding: var(--section-padding) 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: start;
}

.about-label {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(217, 119, 6, 0.1);
    color: var(--primary-dark);
    border-radius: 100px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 24px;
}

.about-title {
    font-size: clamp(36px, 4vw, 48px);
    margin-bottom: 32px;
    color: var(--text-primary);
}

.about-text p {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 24px;
}

.about-mission {
    padding: 24px;
    background: rgba(217, 119, 6, 0.05);
    border-left: 4px solid var(--primary);
    border-radius: 8px;
    font-weight: 500;
    color: var(--text-primary);
}

.about-values {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 48px;
}

.value-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.value-number {
    font-family: var(--font-display);
    font-size: 48px;
    font-weight: 700;
    color: var(--primary);
}

.value-label {
    font-size: 14px;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.about-visual {
    position: relative;
    display: flex;
    justify-content: center;
}

.about-image-container {
    position: relative;
    width: 280px;
    height: 280px;
    margin: 0 auto;
}

.about-image {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 50%;
    box-shadow: var(--shadow-lg);
    border: 4px solid white;
}

/* Process Section */
.process {
    padding: var(--section-padding) 0;
    background: var(--bg-secondary);
}

.process-steps {
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr;
    gap: 40px;
    align-items: center;
}

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

.step-number {
    font-family: var(--font-display);
    font-size: 64px;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 16px;
}

.step-title {
    font-size: 24px;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.step-description {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.7;
}

.process-connector {
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, var(--primary) 0%, var(--accent) 100%);
    position: relative;
}

.process-connector:after {
    content: "";
    position: absolute;
    right: -6px;
    top: -4px;
    width: 0;
    height: 0;
    border-left: 8px solid var(--accent);
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
}

/* Pricing Section */
.pricing {
    padding: var(--section-padding) 0;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    margin-bottom: 48px;
}

.pricing-card {
    background: white;
    padding: 40px;
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    border: 2px solid var(--border);
    transition: all 0.3s ease;
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.pricing-card.featured {
    border-color: var(--primary);
    box-shadow: var(--shadow-glow);
}

.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-primary);
    color: white;
    padding: 6px 20px;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.pricing-header {
    text-align: center;
    margin-bottom: 32px;
    padding-bottom: 32px;
    border-bottom: 1px solid var(--border);
}

.pricing-title {
    font-size: 24px;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.pricing-price {
    font-family: var(--font-display);
    font-size: 48px;
    font-weight: 700;
    color: var(--primary);
}

.pricing-description {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 32px;
}

.pricing-features {
    list-style: none;
    margin-bottom: 32px;
}

.pricing-features li {
    padding: 12px 0;
    padding-left: 32px;
    position: relative;
    color: var(--text-secondary);
}

.pricing-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: 700;
    font-size: 18px;
}

.pricing-note {
    display: flex;
    gap: 16px;
    align-items: start;
    padding: 24px;
    background: rgba(217, 119, 6, 0.05);
    border-radius: 12px;
    border-left: 4px solid var(--primary);
}

.pricing-note svg {
    width: 24px;
    height: 24px;
    color: var(--primary);
    flex-shrink: 0;
}

.pricing-note p {
    color: var(--text-secondary);
    line-height: 1.7;
}

/* Contact Section */
.contact {
    padding: var(--section-padding) 0;
    background: var(--bg-secondary);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.contact-title {
    font-size: clamp(36px, 4vw, 48px);
    margin-bottom: 16px;
    color: var(--text-primary);
}

.contact-subtitle {
    font-size: 18px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 48px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.contact-item {
    display: flex;
    gap: 20px;
    align-items: start;
}

.contact-item svg {
    width: 24px;
    height: 24px;
    color: var(--primary);
    flex-shrink: 0;
}

.contact-label {
    font-size: 12px;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}

.contact-item a {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: var(--primary);
}

/* Contact Form */
.contact-form-container {
    background: white;
    padding: 48px;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--text-primary);
    font-size: 14px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid var(--border);
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 16px;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(217, 119, 6, 0.1);
}

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

.contact-form button[type="submit"] {
    width: 100%;
}

/* Footer */
.footer {
    background: var(--bg-dark);
    color: white;
    padding: 80px 0 40px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 80px;
    margin-bottom: 48px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.footer-logo .logo-icon {
    color: var(--primary-light);
}

.footer-logo span {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 600;
}

.footer-tagline {
    color: var(--text-light);
    font-size: 16px;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.footer-column h4 {
    font-size: 16px;
    margin-bottom: 16px;
    color: white;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 12px;
}

.footer-column ul li a {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 15px;
}

.footer-column ul li a:hover {
    color: var(--primary-light);
}

.footer-bottom {
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    color: var(--text-light);
    font-size: 14px;
}

.footer-disclaimer {
    margin-top: 12px;
    font-size: 13px;
    opacity: 0.7;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

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

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

/* Responsive Design */
@media (max-width: 968px) {
    :root {
        --section-padding: 80px;
    }
    
    .about-image-container {
        width: 220px;
        height: 220px;
        margin: 0 auto;
    }
    
    .nav-links {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .about-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .about-image-container {
        width: 220px;
        margin: 0 auto;
    }
    
    .about-values {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .process-steps {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .process-connector {
        width: 2px;
        height: 40px;
        margin: 0 auto;
    }
    
    .process-connector:after {
        right: auto;
        left: -4px;
        bottom: -8px;
        top: auto;
        border-left: 5px solid transparent;
        border-right: 5px solid transparent;
        border-top: 8px solid var(--accent);
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 48px;
    }
}

@media (max-width: 640px) {
    .logo-image {
        height: 40px;
    }
    
    .about-image-container {
        width: 200px;
        height: 200px;
    }
    
    .hero-actions {
        flex-direction: column;
        width: 100%;
    }
    
    .hero-actions .btn {
        width: 100%;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .about-values {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .contact-form-container {
        padding: 32px 24px;
    }
}

/* =====================================
   BLOG STYLES
   ===================================== */

/* Blog Header */
.blog-header {
    padding: 120px 0 60px;
    background: linear-gradient(135deg, var(--primary) 0%, #F59E0B 100%);
    color: white;
    text-align: center;
}

.blog-header-title {
    font-family: var(--font-display);
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 16px;
}

.blog-header-subtitle {
    font-size: 20px;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

/* Blog Section */
.blog-section {
    padding: var(--section-padding) 0;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 32px;
}

/* Blog Card */
.blog-card {
    background: white;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

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

.blog-card-placeholder {
    opacity: 0.6;
    border: 2px dashed var(--border);
}

.blog-card-meta {
    display: flex;
    gap: 12px;
    align-items: center;
    padding: 24px 24px 0;
    font-size: 14px;
}

.blog-card-category {
    background: var(--accent);
    color: var(--primary);
    padding: 4px 12px;
    border-radius: 20px;
    font-weight: 600;
}

.blog-card-date {
    color: var(--text-secondary);
}

.blog-card-title {
    padding: 16px 24px 0;
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 700;
    line-height: 1.3;
}

.blog-card-title a {
    color: var(--text-primary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.blog-card-title a:hover {
    color: var(--primary);
}

.blog-card-excerpt {
    padding: 12px 24px;
    color: var(--text-secondary);
    line-height: 1.6;
    flex-grow: 1;
}

.blog-card-footer {
    padding: 0 24px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.blog-card-readtime {
    font-size: 14px;
    color: var(--text-secondary);
}

.blog-card-link {
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
    transition: gap 0.3s ease;
    display: flex;
    align-items: center;
    gap: 4px;
}

.blog-card-link:hover {
    gap: 8px;
}

/* Blog Post Page */
.blog-post {
    padding: 120px 0 60px;
    background: var(--bg);
}

.blog-post-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 24px;
}

.blog-post-header {
    margin-bottom: 48px;
}

.blog-post-meta {
    display: flex;
    gap: 16px;
    align-items: center;
    margin-bottom: 24px;
    font-size: 14px;
    flex-wrap: wrap;
}

.blog-post-category {
    background: var(--accent);
    color: var(--primary);
    padding: 6px 16px;
    border-radius: 20px;
    font-weight: 600;
}

.blog-post-date,
.blog-post-readtime {
    color: var(--text-secondary);
}

.blog-post-title {
    font-family: var(--font-display);
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.blog-post-subtitle {
    font-size: 20px;
    color: var(--text-secondary);
    line-height: 1.5;
    margin-bottom: 32px;
}

.blog-post-author {
    display: flex;
    align-items: center;
    gap: 16px;
    padding-top: 24px;
    border-top: 1px solid var(--border);
}

.blog-post-author-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.blog-post-author-name {
    font-weight: 600;
    color: var(--text-primary);
}

.blog-post-author-title {
    font-size: 14px;
    color: var(--text-secondary);
}

/* Blog Post Content */
.blog-post-content {
    background: white;
    padding: 48px;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    margin-bottom: 48px;
}

.blog-post-content p {
    margin-bottom: 20px;
    line-height: 1.8;
    color: var(--text-primary);
    font-size: 18px;
}

.blog-post-content h2 {
    font-family: var(--font-display);
    font-size: 32px;
    font-weight: 700;
    margin-top: 48px;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.blog-post-content h3 {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 600;
    margin-top: 32px;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.blog-post-content ul,
.blog-post-content ol {
    margin-bottom: 20px;
    padding-left: 28px;
}

.blog-post-content li {
    margin-bottom: 12px;
    line-height: 1.7;
    color: var(--text-primary);
    font-size: 18px;
}

.blog-post-content strong {
    color: var(--primary);
    font-weight: 600;
}

.blog-post-content a {
    color: var(--primary);
    text-decoration: underline;
}

.blog-post-content a:hover {
    color: #B45309;
}

/* Blog Post Footer */
.blog-post-footer {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.blog-post-author-bio {
    background: var(--bg);
    padding: 32px;
    border-radius: 12px;
    border-left: 4px solid var(--primary);
}

.blog-post-author-bio h3 {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 16px;
}

.blog-post-author-bio p {
    line-height: 1.7;
    margin-bottom: 12px;
}

.blog-post-author-bio a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
}

.blog-post-author-bio a:hover {
    text-decoration: underline;
}

.blog-post-cta {
    background: linear-gradient(135deg, var(--primary) 0%, #F59E0B 100%);
    color: white;
    padding: 40px;
    border-radius: 12px;
    text-align: center;
}

.blog-post-cta h3 {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 12px;
}

.blog-post-cta p {
    margin-bottom: 24px;
    opacity: 0.95;
}

.blog-post-share {
    padding: 24px;
    background: var(--bg);
    border-radius: 12px;
    text-align: center;
}

.blog-post-share h4 {
    margin-bottom: 16px;
    font-weight: 600;
}

.share-buttons {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

.share-btn {
    padding: 10px 20px;
    background: white;
    border: 2px solid var(--border);
    border-radius: 8px;
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

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

.blog-post-back {
    margin-top: 48px;
    text-align: center;
}

/* CTA Section (for blog pages) */
.cta-section {
    padding: 80px 0;
    background: var(--bg);
}

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

.cta-title {
    font-family: var(--font-display);
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 16px;
}

.cta-text {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 32px;
}

/* Responsive Blog Styles */
@media (max-width: 968px) {
    .blog-header-title {
        font-size: 36px;
    }
    
    .blog-post-title {
        font-size: 36px;
    }
    
    .blog-post-content {
        padding: 32px 24px;
    }
    
    .blog-post-content h2 {
        font-size: 28px;
    }
    
    .blog-post-content h3 {
        font-size: 22px;
    }
}

@media (max-width: 640px) {
    .blog-header {
        padding: 100px 24px 40px;
    }
    
    .blog-header-title {
        font-size: 28px;
    }
    
    .blog-grid {
        grid-template-columns: 1fr;
    }
    
    .blog-post-title {
        font-size: 28px;
    }
    
    .blog-post-content {
        padding: 24px 16px;
    }
    
    .blog-post-content p,
    .blog-post-content li {
        font-size: 16px;
    }
    
    .blog-post-cta {
        padding: 32px 24px;
    }
}

