/* Reset and Base Styles */
:root {
    --dark-bg: #121212;
    --dark-surface: #1e1e1e;
    --primary: #8A2BE2;
    --primary-light: #9370DB;
    --accent: #00E5FF;
    --text-primary: #ffffff;
    --text-secondary: #b0b0b0;
    --gradient: linear-gradient(135deg, #8A2BE2, #00E5FF);
}

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

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

h1, h2, h3, h4, h5, h6 {
    color: var(--text-primary);
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

h1 {
    font-size: 3.5rem;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

h3 {
    font-size: 1.75rem;
}

p {
    margin-bottom: 1.5rem;
}

a {
    color: var(--accent);
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    opacity: 0.8;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-primary {
    background: var(--gradient);
    color: var(--text-primary);
    border: none;
    box-shadow: 0 4px 15px rgba(138, 43, 226, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(138, 43, 226, 0.4);
}

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

.btn-outline:hover {
    background-color: var(--accent);
    color: var(--dark-bg);
}

.section {
    padding: 6rem 0;
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--gradient);
    border-radius: 2px;
}

/* Header Styles */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(18, 18, 18, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--text-primary);
    letter-spacing: -1px;
}

.logo span {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li {
    margin-left: 2.5rem;
}

.nav-links a {
    color: var(--text-secondary);
    font-weight: 500;
    position: relative;
}

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

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -4px;
    left: 0;
    background: var(--gradient);
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

.menu-toggle {
    display: none;
    cursor: pointer;
    font-size: 1.5rem;
    color: var(--text-primary);
}

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

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(138, 43, 226, 0.1), transparent 70%);
    z-index: -1;
}

.hero-content {
    max-width: 700px;
}

.hero h1 {
    margin-bottom: 1.5rem;
}

.hero p {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
}

/* Services Section */
.services {
    background-color: var(--dark-surface);
    position: relative;
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: var(--gradient);
}

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

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

.service-card {
    background-color: var(--dark-bg);
    border-radius: 16px;
    padding: 2.5rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    height: 100%;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 0;
    background: var(--gradient);
    transition: height 0.3s ease;
}

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

.service-card:hover::before {
    height: 100%;
}

.service-icon {
    font-size: 2.5rem;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1.5rem;
}

/* Certifications Section */
.certifications {
    text-align: center;
}

.cert-badges {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
    margin-top: 3rem;
}

.cert-badge {
    width: 180px;
    height: 180px;
    background-color: var(--dark-surface);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--text-primary);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.cert-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient);
}

.cert-badge div {
    font-size: 2rem;
    font-weight: 800;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.cert-badge:hover {
    transform: translateY(-10px) rotate(3deg);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

/* Blog Section */
.blog {
    background-color: var(--dark-surface);
    position: relative;
}

.blog::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at bottom left, rgba(0, 229, 255, 0.05), transparent 70%);
    z-index: -1;
}

.section-description {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 3rem;
    color: var(--text-secondary);
    font-size: 1.1rem;
}

.blog-posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.blog-post-card {
    background-color: var(--dark-bg);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.blog-post-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(138, 43, 226, 0.1), rgba(0, 229, 255, 0.1));
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.blog-post-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    border-color: var(--accent);
}

.blog-post-card:hover::before {
    opacity: 1;
}

.blog-post-thumbnail {
    position: relative;
    overflow: hidden;
    height: 200px;
}

.blog-post-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.blog-post-card:hover .blog-post-thumbnail img {
    transform: scale(1.05);
}

.blog-post-content {
    padding: 1.5rem;
}

.blog-post-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.blog-post-date {
    color: var(--accent);
}

.blog-post-category a {
    color: var(--primary-light);
    text-decoration: none;
}

.blog-post-category a:hover {
    color: var(--accent);
}

.blog-post-title {
    margin-bottom: 1rem;
    font-size: 1.25rem;
    line-height: 1.3;
}

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

.blog-post-title a:hover {
    color: var(--accent);
}

.blog-post-excerpt {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

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

.no-posts-message {
    text-align: center;
    grid-column: 1 / -1;
    padding: 3rem;
    color: var(--text-secondary);
}

/* Booking Section */
.booking {
    background-color: var(--dark-surface);
    text-align: center;
    position: relative;
}

.booking::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: var(--gradient);
}

.calendly-container {
    margin-top: 3rem;
}

.calendly-embed {
    background-color: var(--dark-bg);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
    min-height: 600px;
}

.calendly-embed::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient);
}

.calendly-embed iframe {
    width: 100%;
    height: 600px;
    border: none;
    border-radius: 8px;
}

.calendly-placeholder {
    background-color: var(--dark-bg);
    border-radius: 16px;
    padding: 4rem 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
    text-align: center;
}

.calendly-placeholder::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient);
}

.calendly-placeholder h3 {
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.calendly-placeholder p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
}

/* Contact Form 7 Styles */
.wpcf7 {
    width: 100%;
}

.wpcf7-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.wpcf7-form p {
    margin: 0;
}

.wpcf7-form label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
    font-weight: 500;
}

.wpcf7-form input[type="text"],
.wpcf7-form input[type="email"],
.wpcf7-form input[type="tel"],
.wpcf7-form input[type="url"],
.wpcf7-form textarea,
.wpcf7-form select {
    width: 100%;
    padding: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    background-color: var(--dark-bg);
    color: var(--text-primary);
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.wpcf7-form input[type="text"]:focus,
.wpcf7-form input[type="email"]:focus,
.wpcf7-form input[type="tel"]:focus,
.wpcf7-form input[type="url"]:focus,
.wpcf7-form textarea:focus,
.wpcf7-form select:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(138, 43, 226, 0.2);
}

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

.wpcf7-form input[type="submit"] {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    background: var(--gradient);
    color: var(--text-primary);
    border: none;
    box-shadow: 0 4px 15px rgba(138, 43, 226, 0.3);
    font-family: inherit;
    font-size: 1rem;
}

.wpcf7-form input[type="submit"]:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(138, 43, 226, 0.4);
}

.wpcf7-form input[type="submit"]:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

/* Contact Form 7 Messages */
.wpcf7-response-output {
    margin: 1rem 0 0 0 !important;
    padding: 1rem !important;
    border-radius: 8px !important;
    border: none !important;
    font-weight: 500;
}

.wpcf7-mail-sent-ok {
    background-color: rgba(34, 197, 94, 0.1) !important;
    color: #22c55e !important;
    border: 1px solid rgba(34, 197, 94, 0.2) !important;
}

.wpcf7-validation-errors {
    background-color: rgba(239, 68, 68, 0.1) !important;
    color: #ef4444 !important;
    border: 1px solid rgba(239, 68, 68, 0.2) !important;
}

.wpcf7-spam-blocked {
    background-color: rgba(245, 158, 11, 0.1) !important;
    color: #f59e0b !important;
    border: 1px solid rgba(245, 158, 11, 0.2) !important;
}

.wpcf7-not-valid-tip {
    color: #ef4444 !important;
    font-size: 0.875rem !important;
    margin-top: 0.25rem !important;
    font-weight: 500;
}

.wpcf7-form-control-wrap {
    position: relative;
}

/* Loading Spinner */
.wpcf7-spinner {
    position: absolute !important;
    right: 0.5rem !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    margin: 0 !important;
    width: 20px !important;
    height: 20px !important;
}

.wpcf7-spinner::before {
    content: '';
    width: 20px;
    height: 20px;
    border: 2px solid var(--accent);
    border-top: 2px solid transparent;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Contact Section */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 4rem;
}

.contact-form {
    background-color: var(--dark-surface);
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.contact-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient);
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.form-control {
    width: 100%;
    padding: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    background-color: var(--dark-bg);
    color: var(--text-primary);
    font-family: inherit;
    transition: all 0.3s ease;
}

.form-control:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(138, 43, 226, 0.2);
}

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

.contact-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 2rem;
}

.contact-icon {
    margin-right: 1.5rem;
    font-size: 1.5rem;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--dark-surface);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

/* Footer */
footer {
    background-color: var(--dark-surface);
    padding: 4rem 0 2rem;
    text-align: center;
    position: relative;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: var(--gradient);
}

.footer-logo {
    margin-bottom: 2rem;
}

.footer-links {
    display: flex;
    justify-content: center;
    list-style: none;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.footer-links li {
    margin: 0 1.5rem;
}

.footer-links a {
    color: var(--text-secondary);
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--accent);
}

.copyright {
    color: var(--text-secondary);
    font-size: 0.875rem;
    opacity: 0.7;
}

/* Responsive Styles */
@media screen and (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 2rem;
    }

    .section {
        padding: 4rem 0;
    }

    .menu-toggle {
        display: block;
    }

    .nav-links {
        position: fixed;
        top: 70px;
        right: -100%;
        width: 80%;
        height: calc(100vh - 70px);
        background-color: var(--dark-surface);
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        padding-top: 2rem;
        transition: right 0.3s ease;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.3);
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links li {
        margin: 1.5rem 0;
    }

    .cert-badges {
        gap: 1.5rem;
    }

    .cert-badge {
        width: 150px;
        height: 150px;
    }

    .blog-posts-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .blog-post-card {
        max-width: 500px;
        margin: 0 auto;
    }

    .calendly-embed {
        padding: 1rem;
        min-height: 500px;
    }

    .calendly-embed iframe {
        height: 500px;
    }

    .wpcf7-form {
        gap: 1rem;
    }

    .wpcf7-form input[type="text"],
    .wpcf7-form input[type="email"],
    .wpcf7-form input[type="tel"],
    .wpcf7-form input[type="url"],
    .wpcf7-form textarea,
    .wpcf7-form select {
        padding: 0.875rem;
        font-size: 0.95rem;
    }
}

@media screen and (max-width: 480px) {
    .section {
        padding: 3rem 0;
    }

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.75rem;
    }

    .hero {
        min-height: 80vh;
    }

    .cert-badge {
        width: 120px;
        height: 120px;
    }

    .cert-badge div {
        font-size: 1.5rem;
    }
}

/* Blog Page Styles */
.blog-section {
    padding: 6rem 0;
    background-color: var(--dark-bg);
    position: relative;
}

.blog-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(138, 43, 226, 0.05), rgba(0, 229, 255, 0.05));
    pointer-events: none;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.blog-posts-container {
    position: relative;
    z-index: 1;
}

.blog-posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.blog-post-card {
    background: var(--dark-surface);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.blog-post-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(138, 43, 226, 0.1), rgba(0, 229, 255, 0.1));
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.blog-post-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(138, 43, 226, 0.2);
}

.blog-post-card:hover::before {
    opacity: 1;
}

.blog-post-header {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem 1.5rem 0 1.5rem;
    position: relative;
    z-index: 1;
}

.blog-post-thumbnail-small {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
    border: 2px solid rgba(138, 43, 226, 0.2);
}

.blog-post-thumbnail-small img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.blog-post-card:hover .blog-post-thumbnail-small img {
    transform: scale(1.05);
}

.blog-post-title-author {
    flex: 1;
    min-width: 0;
}

.blog-post-content {
    padding: 0 1.5rem 1.5rem 1.5rem;
    position: relative;
    z-index: 1;
}

/* Default Thumbnail */
.default-thumbnail {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(138, 43, 226, 0.1), rgba(0, 229, 255, 0.1));
    color: var(--accent);
    font-size: 2rem;
}

.default-thumbnail svg {
    width: 60%;
    height: 60%;
    opacity: 0.8;
}

/* Front Page Blog Cards - Large Image Layout */
.blog .blog-post-card {
    max-width: 400px;
    display: flex;
    flex-direction: column;
}

.blog .blog-post-thumbnail-large {
    position: relative;
    overflow: hidden;
    height: 200px;
    border-radius: 15px 15px 0 0;
}

.blog .blog-post-thumbnail-large img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.blog .blog-post-card:hover .blog-post-thumbnail-large img {
    transform: scale(1.05);
}

.blog .default-thumbnail-large {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(138, 43, 226, 0.1), rgba(0, 229, 255, 0.1));
    color: var(--accent);
    font-size: 3rem;
}

.blog .default-thumbnail-large svg {
    width: 50%;
    height: 50%;
    opacity: 0.8;
}

.blog .blog-post-info {
    padding: 1.5rem 1.5rem 0 1.5rem;
}

.blog .blog-post-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.75rem;
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.blog .blog-post-date {
    color: var(--accent);
}

.blog .blog-post-category a {
    color: var(--primary-light);
    text-decoration: none;
    font-weight: 500;
}

.blog .blog-post-category a:hover {
    color: var(--accent);
}

.blog .blog-post-title {
    margin-bottom: 0.75rem;
}

.blog .blog-post-title a {
    font-size: 1.25rem;
    line-height: 1.3;
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.blog .blog-post-title a:hover {
    color: var(--accent);
}

.blog .blog-post-author {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.blog .blog-post-author a {
    color: var(--accent);
    font-weight: 500;
}

.blog .blog-post-content {
    padding: 0 1.5rem 1.5rem 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.blog .blog-post-excerpt {
    font-size: 0.9rem;
    line-height: 1.6;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    flex: 1;
}

.blog .blog-post-cta {
    text-align: center;
}

.blog-post-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.blog-post-date {
    color: var(--accent);
}

.blog-post-category a {
    color: var(--primary-light);
    text-decoration: none;
    font-weight: 500;
}

.blog-post-category a:hover {
    color: var(--accent);
}

.blog-post-title {
    margin-bottom: 1rem;
    line-height: 1.3;
}

.blog-post-title a {
    color: var(--text-primary);
    text-decoration: none;
    font-size: 1.25rem;
    font-weight: 600;
    transition: color 0.3s ease;
}

.blog-post-title a:hover {
    color: var(--accent);
}

.blog-post-excerpt {
    color: var(--text-secondary);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.blog-post-author {
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.blog-post-author a {
    color: var(--accent);
    font-weight: 500;
}

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

.blog-pagination {
    text-align: center;
    margin-top: 3rem;
}

.blog-pagination .page-numbers {
    display: inline-block;
    padding: 0.75rem 1rem;
    margin: 0 0.25rem;
    background: var(--dark-surface);
    color: var(--text-secondary);
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    border: 1px solid rgba(138, 43, 226, 0.2);
}

.blog-pagination .page-numbers:hover,
.blog-pagination .page-numbers.current {
    background: var(--gradient);
    color: var(--text-primary);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(138, 43, 226, 0.3);
}

.blog-pagination .prev,
.blog-pagination .next {
    font-weight: 600;
}

.no-posts-message {
    text-align: center;
    padding: 3rem;
    background: var(--dark-surface);
    border-radius: 15px;
    border: 1px solid rgba(138, 43, 226, 0.2);
}

.no-posts-message h3 {
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.no-posts-message p {
    color: var(--text-secondary);
}

/* Responsive Blog Styles */
@media screen and (max-width: 768px) {
    .blog-section {
        padding: 4rem 0;
    }
    
    .blog-posts-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .blog-post-card {
        max-width: 500px;
        margin: 0 auto;
    }
    
    .blog-post-header {
        flex-direction: column;
        gap: 0.75rem;
        padding: 1.25rem 1.25rem 0 1.25rem;
    }
    
    .blog-post-thumbnail-small {
        width: 60px;
        height: 60px;
        align-self: center;
    }
    
    .blog-post-content {
        padding: 0 1.25rem 1.25rem 1.25rem;
    }
    
    .blog-post-title a {
        font-size: 1.1rem;
    }
    
    /* Front Page Blog Cards - Mobile */
    .blog .blog-post-card {
        max-width: 350px;
    }
    
    .blog .blog-post-thumbnail-large {
        height: 180px;
    }
    
    .blog .blog-post-title a {
        font-size: 1.1rem;
    }
    
    .blog .blog-post-info {
        padding: 1.25rem 1.25rem 0 1.25rem;
    }
    
    .blog .blog-post-content {
        padding: 0 1.25rem 1.25rem 1.25rem;
    }
}

@media screen and (max-width: 480px) {
    .blog-section {
        padding: 3rem 0;
    }
    
    .blog-post-content {
        padding: 1rem;
    }
    
    .blog-post-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .blog-post-thumbnail-small {
        width: 50px;
        height: 50px;
    }
    
    /* Front Page Blog Cards - Small Mobile */
    .blog .blog-post-card {
        max-width: 300px;
    }
    
    .blog .blog-post-thumbnail-large {
        height: 160px;
    }
    
    .blog .blog-post-title a {
        font-size: 1rem;
    }
    
    .blog .blog-post-info {
        padding: 1rem 1rem 0 1rem;
    }
    
    .blog .blog-post-content {
        padding: 0 1rem 1rem 1rem;
    }
    
    .blog-pagination .page-numbers {
        padding: 0.5rem 0.75rem;
        margin: 0 0.125rem;
        font-size: 0.9rem;
    }
}

/* Single Post Styles */
.single-post {
    background: var(--dark-surface);
    border-radius: 15px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    position: relative;
}

.single-post::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(138, 43, 226, 0.05), rgba(0, 229, 255, 0.05));
    border-radius: 15px;
    pointer-events: none;
}

.single-post .entry-header {
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

.single-post .post-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.single-post .post-date {
    color: var(--accent);
}

.single-post .post-category a {
    color: var(--primary-light);
    text-decoration: none;
    font-weight: 500;
}

.single-post .post-category a:hover {
    color: var(--accent);
}

.single-post .post-header-content {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
}

.single-post .post-thumbnail-small {
    flex-shrink: 0;
    width: 120px;
    height: 120px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    border: 2px solid rgba(138, 43, 226, 0.2);
}

.single-post .post-thumbnail-small img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.single-post .post-title-author {
    flex: 1;
    min-width: 0;
}

.single-post .entry-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    line-height: 1.2;
    color: var(--text-primary);
}

.single-post .post-author {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.single-post .post-author a {
    color: var(--accent);
    font-weight: 500;
}

.single-post .entry-content {
    position: relative;
    z-index: 1;
    line-height: 1.8;
    color: var(--text-secondary);
}

.single-post .entry-content h1,
.single-post .entry-content h2,
.single-post .entry-content h3,
.single-post .entry-content h4,
.single-post .entry-content h5,
.single-post .entry-content h6 {
    color: var(--text-primary);
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.single-post .entry-content p {
    margin-bottom: 1.5rem;
}

.single-post .entry-content a {
    color: var(--accent);
    text-decoration: underline;
}

.single-post .entry-content a:hover {
    opacity: 0.8;
}

.single-post .entry-content blockquote {
    border-left: 4px solid var(--accent);
    padding-left: 1.5rem;
    margin: 2rem 0;
    font-style: italic;
    color: var(--text-secondary);
}

.single-post .entry-content ul,
.single-post .entry-content ol {
    margin: 1.5rem 0;
    padding-left: 2rem;
}

.single-post .entry-content li {
    margin-bottom: 0.5rem;
}

.single-post .entry-content img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 1.5rem 0;
}

.single-post .entry-footer {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(138, 43, 226, 0.2);
    position: relative;
    z-index: 1;
}

.single-post .post-tags,
.single-post .post-categories {
    margin-bottom: 1.5rem;
}

.single-post .post-tags h4,
.single-post .post-categories h4 {
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.single-post .tag-links,
.single-post .category-links {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.single-post .tag-links a,
.single-post .category-links a {
    background: var(--dark-bg);
    color: var(--accent);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.85rem;
    text-decoration: none;
    border: 1px solid rgba(0, 229, 255, 0.3);
    transition: all 0.3s ease;
}

.single-post .tag-links a:hover,
.single-post .category-links a:hover {
    background: var(--accent);
    color: var(--dark-bg);
    transform: translateY(-2px);
}

/* Post Navigation */
.post-navigation {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(138, 43, 226, 0.2);
}

.post-navigation .nav-links {
    display: flex;
    justify-content: space-between;
    gap: 2rem;
}

.post-navigation .nav-previous,
.post-navigation .nav-next {
    flex: 1;
}

.post-navigation .nav-subtitle {
    display: block;
    font-size: 0.8rem;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
}

.post-navigation .nav-title {
    color: var(--text-primary);
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
}

.post-navigation a:hover .nav-title {
    color: var(--accent);
}

/* Comments */
.comments-area {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(138, 43, 226, 0.2);
}

.comments-area h3 {
    color: var(--text-primary);
    margin-bottom: 1.5rem;
}

.comment-list {
    list-style: none;
    padding: 0;
}

.comment {
    background: var(--dark-surface);
    border-radius: 10px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(138, 43, 226, 0.2);
}

.comment .comment-author {
    color: var(--text-primary);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.comment .comment-meta {
    font-size: 0.8rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.comment .comment-content {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Override Calendly's default margins for this specific element */
._cUP1np9gMvFQrcPftuf.xahN8AEzyAvQtVj17TPv {
    margin-top: 5px !important;
    margin-bottom: 10px !important;
}

/* Stronger override for Calendly margins */
div._cUP1np9gMvFQrcPftuf.xahN8AEzyAvQtVj17TPv {
    margin-top: 5px !important;
    margin-bottom: 10px !important;
}

/* Even stronger override */
body ._cUP1np9gMvFQrcPftuf.xahN8AEzyAvQtVj17TPv {
    margin-top: 5px !important;
    margin-bottom: 10px !important;
}

/* Responsive Single Post */
@media screen and (max-width: 768px) {
    .single-post {
        padding: 1.5rem;
    }
    
    .single-post .entry-title {
        font-size: 2rem;
    }
    
    .single-post .post-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .single-post .post-header-content {
        flex-direction: column;
        gap: 1rem;
    }
    
    .single-post .post-thumbnail-small {
        width: 100px;
        height: 100px;
        align-self: center;
    }
    
    .post-navigation .nav-links {
        flex-direction: column;
        gap: 1rem;
    }
}

@media screen and (max-width: 480px) {
    .single-post {
        padding: 1rem;
    }
    
    .single-post .entry-title {
        font-size: 1.75rem;
    }
    
    .single-post .post-thumbnail-small {
        width: 80px;
        height: 80px;
    }
    
    .single-post .tag-links,
    .single-post .category-links {
        gap: 0.25rem;
    }
    
    .single-post .tag-links a,
    .single-post .category-links a {
        padding: 0.2rem 0.5rem;
        font-size: 0.8rem;
    }
} 