/* Modern Blog Post Styles */

body {
    background: #fafbfc !important;
}

.blog-post-header {
    background: #ffffff;
    padding: 60px 0 50px;
    margin-top: 70px;
    text-align: left;
    color: #333;
    border-bottom: none;
}

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

.blog-post-header h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 25px;
    line-height: 1.2;
    text-shadow: none;
    color: #1a1a1a;
    letter-spacing: -0.5px;
}

.blog-post-meta {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 25px;
    flex-wrap: wrap;
    font-size: 0.95rem;
    color: #777;
    padding-bottom: 20px;
}

.blog-post-meta .meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #777;
}

.blog-post-meta .meta-item i {
    font-size: 1rem;
    color: #2185c5;
}

.blog-post-meta a {
    color: #2185c5;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.blog-post-meta a:hover {
    color: #1666a0;
}

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

.blog-post-content {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 60px;
    align-items: start;
}

.blog-post-article {
    background: white;
    border-radius: 20px;
    padding: 50px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.blog-featured-image {
    width: 100%;
    border-radius: 8px;
    margin-bottom: 35px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.blog-post-article p {
    font-size: 16px;
    line-height: 26px;
    color: #444444;
    margin-bottom: 22px;
}

.blog-post-article h3 {
    font-size: 20px;
    font-weight: 700;
    color: #1a1a1a;
    margin-top: 40px;
    margin-bottom: 18px;
    line-height: 1.3;
    position: relative;
    padding-left: 15px;
}

.blog-post-article h3::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 70%;
    background: #2185c5;
    border-radius: 2px;
}

.blog-post-article h3:first-of-type {
    margin-top: 20px;
}

/* Blog Sidebar */
.blog-sidebar {
    position: sticky;
    top: 90px;
}

.sidebar-widget {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
    margin-bottom: 30px;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.sidebar-widget h3 {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 8px;
}

/* Modern Contact Form in Sidebar */
.modern-contact-form .form-subtitle {
    font-size: 16px;
    color: #666;
    margin-bottom: 32px;
    line-height: 1.5;
}

.modern-contact-form .form-group {
    margin-bottom: 20px;
    position: relative;
}

.modern-contact-form input,
.modern-contact-form textarea {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    font-size: 15px;
    color: #1a1a1a;
    transition: all 0.3s ease;
    background: #f8f9fa;
    font-family: inherit;
}

.modern-contact-form input:focus,
.modern-contact-form textarea:focus {
    outline: none;
    border-color: #2185c5;
    background: #ffffff;
    box-shadow: 0 0 0 4px rgba(33, 133, 197, 0.1);
}

.modern-contact-form textarea {
    resize: vertical;
    min-height: 150px;
}

.modern-contact-form .btn-submit {
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, #2185c5 0%, #1666a0 100%);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 16px rgba(33, 133, 197, 0.3);
}

.modern-contact-form .btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(33, 133, 197, 0.4);
}

.modern-contact-form .error-message,
.modern-contact-form .empty-message {
    display: none;
    color: #dc3545;
    font-size: 13px;
    margin-top: 6px;
    font-weight: 500;
}

.modern-contact-form .form-group.error input,
.modern-contact-form .form-group.error textarea {
    border-color: #dc3545;
    background: #fff5f5;
}

.modern-contact-form .success-message {
    display: none;
    padding: 16px 20px;
    background: #d4edda;
    border: 1px solid #c3e6cb;
    border-radius: 12px;
    color: #155724;
    margin-bottom: 20px;
    font-weight: 500;
}

.modern-contact-form .success-message.active {
    display: block;
}

/* Business Info Widget */
.business-info {
    font-size: 16px;
    line-height: 1.6;
    color: #1a1a1a;
}

.business-info .info-item {
    display: flex;
    gap: 16px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 12px;
    margin-bottom: 16px;
    transition: all 0.3s ease;
}

.business-info .info-item:hover {
    background: #e9ecef;
    transform: translateX(4px);
}

.business-info .info-item i {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #2185c5 0%, #1666a0 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 20px;
}

.business-info a {
    color: #1a1a1a;
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 500;
}

.business-info a:hover {
    color: #2185c5;
}
/* Blog Post Footer - Author Info */
.blog-post-footer {
    margin-top: 50px;
    padding: 25px;
    border-top: 3px solid #e8e8e8;
    font-size: 16px;
    color: #777;
    line-height: 1.9;
    background: #f9fafb;
    border-radius: 12px;
}

.blog-post-footer a {
    color: #2185c5;
    text-decoration: none;
    font-weight: 500;
}

.blog-post-footer a:hover {
    color: #7ecefd;
}

/* Responsive Design */
@media (max-width: 991px) {
    .blog-post-content {
        grid-template-columns: 1fr;
    }
    
    .blog-sidebar {
        position: static;
    }
    
    .blog-post-header h1 {
        font-size: 2.2rem;
    }
    
    .blog-post-article {
        padding: 30px 25px;
    }
}

@media (max-width: 767px) {
    .blog-post-header {
        padding: 60px 20px 40px;
    }
    
    .blog-post-header h1 {
        font-size: 1.8rem;
    }
    
    .blog-post-meta {
        font-size: 0.9rem;
    }
    
    .blog-post-container {
        padding: 40px 15px;
    }
    
    .blog-post-article {
        padding: 25px 20px;
    }
    
    .blog-post-article p {
        font-size: 1rem;
    }
    
    .blog-post-article h3 {
        font-size: 1.3rem;
    }
    
    .sidebar-widget {
        padding: 28px;
        border-radius: 16px;
    }
}
