/*
Theme Name: AutoFlowLabs
Theme URI: https://autoflowlabs.ca
Author: AutoFlowLabs
Author URI: https://autoflowlabs.ca
Description: Custom WordPress theme for AutoFlowLabs - AI Automation & AI Implementations in Hamilton, ON
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: autoflowlabs
Tags: business, one-page, custom-colors, featured-images
*/

/* ==========================================================================
   Base Styles & Variables
   ========================================================================== */

:root {
    --pantone-serenity: #92A8D1;
    --pantone-rose: #F7CAC9;
    --material-purple: #673AB7;
    --material-blue: #2196F3;
    --purple-50: #faf5ff;
    --purple-100: #f3e8ff;
    --purple-200: #e9d5ff;
    --purple-500: #a855f7;
    --purple-600: #9333ea;
    --purple-700: #7c3aed;
    --pink-400: #f472b6;
    --pink-500: #ec4899;
    --blue-400: #60a5fa;
    --indigo-400: #818cf8;
    --indigo-700: #4338ca;
    --slate-50: #f8fafc;
    --slate-600: #475569;
    --slate-700: #334155;
    --slate-800: #1e293b;
    --slate-900: #0f172a;
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-400: #9ca3af;
    --gray-500: #6b7280;
    --gray-600: #4b5563;
    --gray-800: #1f2937;
    --gray-900: #111827;
}

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

body {
    font-family: 'Open Sans', sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    color: #1f2937;
    background-color: #f9fafb;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    height: auto;
}

.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* ==========================================================================
   Utility Classes (Tailwind-inspired)
   ========================================================================== */

.text-center { text-align: center; }
.text-left { text-align: left; }
.font-bold { font-weight: 700; }
.font-semibold { font-weight: 600; }
.font-light { font-weight: 300; }
.uppercase { text-transform: uppercase; }
.tracking-wide { letter-spacing: 0.025em; }
.tracking-wider { letter-spacing: 0.05em; }
.tracking-widest { letter-spacing: 0.1em; }
.leading-tight { line-height: 1.25; }
.leading-relaxed { line-height: 1.625; }
.italic { font-style: italic; }
.relative { position: relative; }
.absolute { position: absolute; }
.fixed { position: fixed; }
.overflow-hidden { overflow: hidden; }
.z-10 { z-index: 10; }
.z-20 { z-index: 20; }
.z-50 { z-index: 50; }

.flex { display: flex; }
.flex-col { flex-direction: column; }
.flex-row { flex-direction: row; }
.items-center { align-items: center; }
.items-start { align-items: flex-start; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.gap-2 { gap: 0.5rem; }
.gap-3 { gap: 0.75rem; }
.gap-4 { gap: 1rem; }
.gap-6 { gap: 1.5rem; }
.gap-8 { gap: 2rem; }
.flex-grow { flex-grow: 1; }
.shrink-0 { flex-shrink: 0; }

.grid { display: grid; }
.grid-cols-1 { grid-template-columns: repeat(1, minmax(0, 1fr)); }
.grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }

.w-full { width: 100%; }
.max-w-2xl { max-width: 42rem; }
.max-w-3xl { max-width: 48rem; }
.max-w-4xl { max-width: 56rem; }
.max-w-5xl { max-width: 64rem; }
.mx-auto { margin-left: auto; margin-right: auto; }

.rounded-full { border-radius: 9999px; }
.rounded-lg { border-radius: 0.5rem; }
.rounded-xl { border-radius: 0.75rem; }
.rounded-2xl { border-radius: 1rem; }
.rounded-3xl { border-radius: 1.5rem; }

.shadow-sm { box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05); }
.shadow-lg { box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05); }
.shadow-xl { box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04); }
.shadow-2xl { box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25); }

.transition-all { transition: all 0.3s ease; }
.transition-colors { transition: color 0.3s ease, background-color 0.3s ease, border-color 0.3s ease; }
.transition-transform { transition: transform 0.3s ease; }

/* ==========================================================================
   Header / Navigation
   ========================================================================== */

.site-header {
    position: fixed;
    width: 100%;
    z-index: 50;
    transition: all 0.3s ease;
    padding: 1.25rem 0;
}

.site-header.scrolled {
    background: white;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    padding: 0.75rem 0;
}

.site-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.site-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.site-logo .logo-icon {
    padding: 0.5rem;
    border-radius: 0.5rem;
    background: white;
    color: #9333ea;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
}

.site-header.scrolled .site-logo .logo-icon {
    background: linear-gradient(to top right, #9333ea, #ec4899);
    color: white;
}

.site-logo .logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: -0.025em;
    color: var(--slate-800);
}

.main-navigation {
    display: none;
    align-items: center;
    gap: 2rem;
}

.main-navigation a {
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.025em;
    color: var(--slate-700);
    transition: color 0.3s ease;
}

.main-navigation a:hover {
    color: #9333ea;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.5rem;
    border-radius: 9999px;
    font-weight: 700;
    font-size: 0.875rem;
    background: var(--slate-800);
    color: white !important;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background: var(--slate-700);
    color: white !important;
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.site-header.scrolled .cta-button {
    background: linear-gradient(to right, #9333ea, #ec4899);
    color: white !important;
}

.mobile-menu-toggle {
    display: block;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    color: var(--slate-800);
}

.mobile-menu-toggle svg {
    width: 24px;
    height: 24px;
}

.mobile-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: white;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    padding: 1.5rem;
    border-top: 1px solid var(--gray-100);
}

.mobile-menu.active {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.mobile-menu a {
    font-size: 1.125rem;
    font-weight: 600;
    padding: 0.5rem 0;
    color: var(--gray-800);
}

.mobile-menu .cta-button {
    text-align: center;
    justify-content: center;
    padding: 0.75rem;
    background: #9333ea;
    margin-top: 0.5rem;
}

@media (min-width: 768px) {
    .main-navigation {
        display: flex;
    }
    .mobile-menu-toggle {
        display: none;
    }
}

/* ==========================================================================
   Hero Section
   ========================================================================== */

.hero-section {
    position: relative;
    padding: 8rem 0 5rem;
    overflow: hidden;
}

.hero-section .hero-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom right, var(--pantone-serenity), #e8daef, var(--pantone-rose));
    transform: skewY(-2deg);
    transform-origin: top left;
    z-index: -1;
    height: 85%;
    border-bottom-left-radius: 50px;
    border-bottom-right-radius: 50px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    padding: 0.375rem 1rem;
    border-radius: 9999px;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    color: var(--slate-700);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.025em;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}

.hero-badge svg {
    width: 12px;
    height: 12px;
    color: #9333ea;
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--slate-800);
    line-height: 1.25;
    margin-bottom: 1.5rem;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.hero-title .gradient-text {
    background: linear-gradient(to right, #9333ea, #ec4899);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 1.125rem;
    color: var(--slate-600);
    margin-bottom: 2.5rem;
    max-width: 42rem;
    margin-left: auto;
    margin-right: auto;
    font-weight: 300;
}

.hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: var(--slate-800);
    color: white;
    border-radius: 9999px;
    font-weight: 700;
    font-size: 1.125rem;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.hero-cta:hover {
    background: var(--slate-700);
    transform: scale(1.05);
}

.hero-cta svg {
    transition: transform 0.3s ease;
}

.hero-cta:hover svg {
    transform: translateX(4px);
}

/* Floating elements */
.floating-circle {
    position: absolute;
    background: white;
    border-radius: 9999px;
    opacity: 0.4;
    animation: bounce 3s infinite;
}

.floating-circle.circle-1 {
    top: 10rem;
    left: 2.5rem;
    width: 4rem;
    height: 4rem;
    animation-duration: 3s;
}

.floating-circle.circle-2 {
    bottom: 10rem;
    right: 2.5rem;
    width: 6rem;
    height: 6rem;
    animation-duration: 4s;
}

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

/* Workflow Simulation */
.workflow-demo {
    margin-top: 4rem;
}

.workflow-card {
    background: white;
    border-radius: 0.75rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    max-width: 64rem;
    margin: 0 auto;
    padding: 0.5rem;
    transform: rotate(-1deg);
    transition: transform 0.5s ease;
}

.workflow-card:hover {
    transform: rotate(0);
}

.workflow-canvas {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    background: #1e1e2e;
    border-radius: 0.5rem;
    overflow: hidden;
    box-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(51, 65, 85, 0.5);
}

.workflow-canvas .grid-bg {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(#3b3b4f 1.5px, transparent 1.5px);
    background-size: 24px 24px;
}

.workflow-node {
    position: absolute;
    width: 8rem;
    background: #2d2d3b;
    border-radius: 0.375rem;
    border: 1px solid #475569;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    padding: 0.75rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    transition: all 0.3s ease;
    cursor: pointer;
}

.workflow-node:hover {
    border-color: var(--node-color, #9333ea);
}

.workflow-node .node-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.workflow-node .node-icon {
    padding: 0.375rem;
    border-radius: 0.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.workflow-node .node-title {
    font-size: 0.625rem;
    color: #e2e8f0;
    font-weight: 700;
}

.workflow-node .node-bar {
    height: 0.375rem;
    background: #475569;
    border-radius: 9999px;
    transition: background 0.3s ease;
}

.workflow-node:hover .node-bar {
    background: var(--node-color, #9333ea);
    opacity: 0.5;
}

.workflow-node .node-code {
    font-size: 0.5rem;
    color: #64748b;
    font-family: monospace;
}

/* Node positions */
.node-trigger { --node-color: #f97316; top: 50%; left: 15%; transform: translate(-50%, -50%); }
.node-router { --node-color: #eab308; top: 50%; left: 40%; transform: translate(-50%, -50%); }
.node-ai { --node-color: #22c55e; top: 25%; left: 65%; transform: translate(-50%, -50%); }
.node-db { --node-color: #3b82f6; top: 25%; left: 85%; transform: translate(-50%, -50%); }
.node-slack { --node-color: #a855f7; top: 75%; left: 65%; transform: translate(-50%, -50%); }
.node-email { --node-color: #ef4444; top: 75%; left: 85%; transform: translate(-50%, -50%); }

/* Node icon colors */
.node-trigger .node-icon { background: rgba(249, 115, 22, 0.2); color: #f97316; }
.node-router .node-icon { background: rgba(234, 179, 8, 0.2); color: #eab308; }
.node-ai .node-icon { background: rgba(34, 197, 94, 0.2); color: #22c55e; }
.node-db .node-icon { background: rgba(59, 130, 246, 0.2); color: #3b82f6; }
.node-slack .node-icon { background: rgba(168, 85, 247, 0.2); color: #a855f7; }
.node-email .node-icon { background: rgba(239, 68, 68, 0.2); color: #ef4444; }

/* Window controls */
.window-controls {
    position: absolute;
    top: 1rem;
    right: 1rem;
    display: flex;
    gap: 0.375rem;
}

.window-controls span {
    width: 0.625rem;
    height: 0.625rem;
    border-radius: 9999px;
}

.window-controls .red { background: rgba(239, 68, 68, 0.8); }
.window-controls .yellow { background: rgba(234, 179, 8, 0.8); }
.window-controls .green { background: rgba(34, 197, 94, 0.8); }

.status-badge {
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    background: #2d2d3b;
    border: 1px solid #475569;
    padding: 0.25rem 0.75rem;
    border-radius: 0.25rem;
    font-size: 0.625rem;
    color: #94a3b8;
    font-family: monospace;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.status-badge .pulse {
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 9999px;
    background: #22c55e;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

@media (min-width: 768px) {
    .hero-section {
        padding: 12rem 0 8rem;
    }
    
    .hero-title {
        font-size: 3.75rem;
    }
    
    .hero-description {
        font-size: 1.5rem;
    }
    
    .workflow-card {
        padding: 1rem;
    }
    
    .workflow-node {
        width: 9rem;
    }
    
    .workflow-node .node-title {
        font-size: 0.75rem;
    }
}

@media (min-width: 1024px) {
    .hero-title {
        font-size: 4.5rem;
    }
}

/* ==========================================================================
   Services Section
   ========================================================================== */

.services-section {
    padding: 5rem 0;
    background: white;
}

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

.section-title {
    font-size: 1.875rem;
    font-weight: 700;
    color: var(--gray-800);
    margin-bottom: 1rem;
}

.section-subtitle {
    color: var(--gray-600);
    max-width: 42rem;
    margin: 0 auto;
    font-size: 1.125rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 2rem;
}

.service-card {
    padding: 1.5rem;
    background: white;
    border-radius: 1rem;
    border: 1px solid var(--gray-100);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    cursor: default;
}

.service-card:hover {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    transform: translateY(-4px);
}

.service-icon {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(6deg);
}

.service-icon svg {
    width: 2rem;
    height: 2rem;
    color: white;
}

.service-icon.blue { background: #60a5fa; }
.service-icon.pink { background: #f472b6; }
.service-icon.purple { background: #a855f7; }
.service-icon.indigo { background: #818cf8; }

.service-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--gray-800);
    margin-bottom: 0.75rem;
    transition: color 0.3s ease;
}

.service-card:hover .service-title {
    color: #9333ea;
}

.service-description {
    color: var(--gray-500);
    line-height: 1.625;
}

@media (min-width: 768px) {
    .services-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    
    .section-title {
        font-size: 2.25rem;
    }
}

@media (min-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

/* ==========================================================================
   About Section
   ========================================================================== */

.about-section {
    padding: 6rem 0;
    background: var(--slate-50);
    position: relative;
    overflow: hidden;
}

.about-section .decorative-bg {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: white;
    transform: skewX(12deg);
    transform-origin: top;
    margin-right: -5rem;
    z-index: 0;
}

.about-content {
    display: flex;
    flex-direction: column;
    gap: 4rem;
    position: relative;
    z-index: 10;
}

.about-image-wrapper {
    position: relative;
    order: 2;
}

.about-image-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top right, #9333ea, var(--pantone-rose));
    border-radius: 1rem;
    transform: rotate(-3deg);
    opacity: 0.3;
}

.about-image {
    position: relative;
    z-index: 10;
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 1rem;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.about-badge {
    position: absolute;
    bottom: -1.5rem;
    left: -1.5rem;
    background: white;
    padding: 1.5rem;
    border-radius: 0.75rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    z-index: 20;
    display: none;
    border: 1px solid var(--gray-100);
}

.about-badge .badge-number {
    font-size: 2.25rem;
    font-weight: 700;
    color: #9333ea;
}

.about-badge .badge-text {
    color: var(--gray-500);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.025em;
    margin-top: 0.25rem;
}

.about-text-content {
    order: 1;
}

.about-label {
    color: #a855f7;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.75rem;
    margin-bottom: 0.5rem;
    display: block;
}

.about-title {
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--gray-800);
    margin-bottom: 1.5rem;
    line-height: 1.25;
}

.about-title .gradient-text {
    background: linear-gradient(to right, #9333ea, var(--pantone-serenity));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-description {
    color: var(--gray-600);
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
    line-height: 1.625;
    font-weight: 300;
}

/* Stats Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
    border-top: 1px solid var(--gray-200);
    border-bottom: 1px solid var(--gray-200);
    padding: 1.5rem 0;
    margin-bottom: 2.5rem;
}

.stat-item {
    text-align: center;
    cursor: default;
}

.stat-number {
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(to right, #9333ea, #ec4899);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.25rem;
    transition: transform 0.3s ease;
}

.stat-item:hover .stat-number {
    transform: scale(1.1);
}

.stat-label {
    font-size: 0.625rem;
    font-weight: 700;
    color: var(--gray-400);
    text-transform: uppercase;
    letter-spacing: 0.025em;
}

/* Values Grid */
.values-grid {
    display: grid;
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 1.5rem;
}

.value-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.value-icon {
    padding: 0.5rem;
    border-radius: 0.5rem;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.value-icon svg {
    width: 1.25rem;
    height: 1.25rem;
}

.value-icon.blue { background: #dbeafe; color: #2563eb; }
.value-icon.pink { background: #fce7f3; color: #ec4899; }
.value-icon.purple { background: #f3e8ff; color: #a855f7; }

.value-title {
    font-weight: 700;
    color: var(--gray-800);
    margin-bottom: 0.25rem;
}

.value-description {
    font-size: 0.875rem;
    color: var(--gray-500);
}

@media (min-width: 768px) {
    .about-badge {
        display: block;
    }
    
    .stat-number {
        font-size: 1.875rem;
    }
    
    .stat-label {
        font-size: 0.75rem;
    }
}

@media (min-width: 1024px) {
    .about-content {
        flex-direction: row;
        align-items: center;
    }
    
    .about-image-wrapper {
        width: 50%;
        order: 1;
    }
    
    .about-text-content {
        width: 50%;
        order: 2;
    }
    
    .about-image {
        height: 500px;
    }
    
    .values-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

/* ==========================================================================
   Testimonials Section
   ========================================================================== */

.testimonials-section {
    padding: 5rem 0;
    background: var(--gray-50);
    border-top: 1px solid var(--gray-100);
}

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

.testimonials-label {
    color: #a855f7;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.75rem;
    margin-bottom: 0.5rem;
    display: block;
}

.testimonials-title {
    font-size: 1.875rem;
    font-weight: 700;
    color: var(--gray-800);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    border-bottom: 4px solid #e9d5ff;
    position: relative;
}

.testimonial-quote-icon {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    width: 2.5rem;
    height: 2.5rem;
    color: #f3e8ff;
}

.testimonial-text {
    color: var(--gray-600);
    font-style: italic;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 10;
    line-height: 1.625;
}

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

.testimonial-avatar {
    width: 3rem;
    height: 3rem;
    border-radius: 9999px;
    object-fit: cover;
    border: 2px solid #f3e8ff;
}

.testimonial-name {
    font-weight: 700;
    color: var(--gray-800);
    font-size: 0.875rem;
}

.testimonial-role {
    color: var(--gray-400);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

@media (min-width: 768px) {
    .testimonials-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
    
    .testimonials-title {
        font-size: 2.25rem;
    }
}

/* ==========================================================================
   Insights / Blog Section
   ========================================================================== */

.insights-section {
    padding: 6rem 0;
    background: white;
    border-top: 1px solid var(--gray-100);
}

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

.insights-label {
    color: #a855f7;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.75rem;
    margin-bottom: 0.5rem;
    display: block;
}

.insights-title {
    font-size: 1.875rem;
    font-weight: 700;
    color: var(--gray-800);
    margin-bottom: 1rem;
}

.insights-subtitle {
    color: var(--gray-600);
    max-width: 42rem;
    margin: 0 auto;
    font-size: 1.125rem;
}

.insights-grid {
    display: grid;
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 2rem;
}

.insight-card {
    background: white;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--gray-100);
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: all 0.3s ease;
}

.insight-card:hover {
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    transform: translateY(-8px);
}

.insight-image-wrapper {
    position: relative;
    height: 12rem;
    overflow: hidden;
}

.insight-image-overlay {
    position: absolute;
    inset: 0;
    background: rgba(88, 28, 135, 0.2);
    transition: background 0.3s ease;
    z-index: 10;
}

.insight-card:hover .insight-image-overlay {
    background: transparent;
}

.insight-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.insight-card:hover .insight-image {
    transform: scale(1.1);
}

.insight-category {
    position: absolute;
    top: 1rem;
    left: 1rem;
    z-index: 20;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(4px);
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    display: flex;
    align-items: center;
    gap: 0.375rem;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}

.insight-category svg {
    width: 0.75rem;
    height: 0.75rem;
    color: #9333ea;
}

.insight-category span {
    font-size: 0.75rem;
    font-weight: 700;
    color: #581c87;
    text-transform: uppercase;
    letter-spacing: 0.025em;
}

.insight-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.insight-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.75rem;
    color: var(--gray-400);
    margin-bottom: 0.75rem;
    font-weight: 500;
}

.insight-meta-item {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.insight-meta-item svg {
    width: 0.875rem;
    height: 0.875rem;
}

.insight-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--gray-800);
    margin-bottom: 0.75rem;
    transition: color 0.3s ease;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.insight-card:hover .insight-title {
    color: #9333ea;
}

.insight-excerpt {
    color: var(--gray-500);
    font-size: 0.875rem;
    line-height: 1.625;
    margin-bottom: 1rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    flex-grow: 1;
}

.insight-link {
    color: #9333ea;
    font-weight: 700;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.025em;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: auto;
    transition: gap 0.3s ease;
}

.insight-card:hover .insight-link {
    gap: 0.75rem;
}

.insight-link svg {
    width: 1rem;
    height: 1rem;
}

@media (min-width: 768px) {
    .insights-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
    
    .insights-title {
        font-size: 2.25rem;
    }
}

/* ==========================================================================
   Contact Section
   ========================================================================== */

.contact-section {
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.contact-blob {
    position: absolute;
    width: 16rem;
    height: 16rem;
    border-radius: 9999px;
    mix-blend-mode: multiply;
    filter: blur(40px);
    opacity: 0.7;
    animation: blob 7s infinite;
}

.contact-blob.blob-1 {
    left: -5rem;
    top: 5rem;
    background: #dbeafe;
}

.contact-blob.blob-2 {
    right: -5rem;
    bottom: 5rem;
    background: #fce7f3;
    animation-delay: 2s;
}

@keyframes blob {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    33% {
        transform: translate(30px, -50px) scale(1.1);
    }
    66% {
        transform: translate(-20px, 20px) scale(0.9);
    }
}

.contact-card {
    max-width: 56rem;
    margin: 0 auto;
    background: white;
    border-radius: 1.5rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 10;
}

.contact-info {
    background: linear-gradient(to bottom right, #9333ea, var(--indigo-700));
    padding: 2.5rem;
    color: white;
}

.contact-info-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.contact-info-text {
    color: rgba(243, 232, 255, 0.8);
    font-size: 0.875rem;
    line-height: 1.625;
    margin-bottom: 1.5rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    font-size: 0.875rem;
}

.contact-detail-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.contact-detail-icon {
    width: 2rem;
    height: 2rem;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 9999px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.contact-detail-item a:hover {
    text-decoration: underline;
}

.contact-form-wrapper {
    padding: 2.5rem;
    background: white;
}

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

.form-group {
    position: relative;
}

.form-label {
    display: block;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--gray-500);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.25rem;
    margin-left: 0.25rem;
}

.form-label .optional {
    color: var(--gray-300);
    font-weight: 400;
    text-transform: lowercase;
}

.form-input,
.form-textarea {
    width: 100%;
    border: none;
    border-bottom: 2px solid var(--gray-200);
    padding: 0.75rem;
    font-size: 1rem;
    color: var(--gray-800);
    background: transparent;
    border-top-left-radius: 0.375rem;
    border-top-right-radius: 0.375rem;
    transition: all 0.3s ease;
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-bottom-color: #9333ea;
    background: rgba(147, 51, 234, 0.05);
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: var(--gray-400);
}

.form-textarea {
    resize: none;
    min-height: 80px;
}

.submit-button {
    width: 100%;
    margin-top: 1rem;
    background: #9333ea;
    color: white;
    font-weight: 700;
    padding: 1rem;
    border-radius: 0.5rem;
    border: none;
    cursor: pointer;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.submit-button:hover {
    background: #7c3aed;
    transform: translateY(-2px);
}

.submit-button svg {
    width: 1.125rem;
    height: 1.125rem;
}

.submit-button:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.submit-button .button-loading {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.submit-button .spinner {
    animation: spin 1s linear infinite;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.form-error {
    display: none;
    color: #ef4444;
    font-size: 0.75rem;
    margin-top: 0.25rem;
}

.form-input.has-error,
.form-textarea.has-error {
    border-bottom-color: #ef4444;
}

.form-input.has-error:focus,
.form-textarea.has-error:focus {
    border-bottom-color: #ef4444;
    background: rgba(239, 68, 68, 0.05);
}

.form-message {
    margin-top: 1rem;
    padding: 1rem;
    border-radius: 0.5rem;
    text-align: center;
    font-weight: 600;
}

.form-message.success {
    background: #dcfce7;
    color: #166534;
    border: 1px solid #86efac;
}

.form-message.error {
    background: #fef2f2;
    color: #991b1b;
    border: 1px solid #fecaca;
}

/* Form Row - Two columns */
.form-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 480px) {
    .form-row {
        grid-template-columns: 1fr 1fr;
    }
}

/* Select Styling - Enhanced */
.form-select {
    width: 100%;
    border: 2px solid var(--gray-200);
    padding: 0.875rem 1rem;
    padding-right: 3rem;
    font-size: 1rem;
    color: var(--gray-800);
    background: white;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='%239333ea' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 1.25rem;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}

.form-select:hover {
    border-color: #c4b5fd;
    background-color: #faf5ff;
}

.form-select:focus {
    outline: none;
    border-color: #9333ea;
    background-color: white;
    box-shadow: 0 0 0 3px rgba(147, 51, 234, 0.15);
}

.form-select option {
    padding: 0.75rem;
    background: white;
    color: var(--gray-800);
}

.form-select option:checked {
    background: linear-gradient(to right, #f3e8ff, #fdf4ff);
}

/* Placeholder style for select */
.form-select option[value=""] {
    color: var(--gray-400);
}

/* Style the select when it has the default/placeholder selected */
.form-select:invalid,
.form-select option[value=""]:checked {
    color: var(--gray-400);
}

.form-select:not(:invalid) {
    color: var(--gray-800);
}

/* Required asterisk */
.form-label .required {
    color: #ef4444;
    margin-left: 0.125rem;
}

/* Form Disclaimer */
.form-disclaimer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1rem;
    font-size: 0.75rem;
    color: var(--gray-500);
}

.form-disclaimer svg {
    color: #22c55e;
    flex-shrink: 0;
}

@media (min-width: 768px) {
    .contact-card {
        flex-direction: row;
    }
    
    .contact-info {
        width: 40%;
    }
    
    .contact-form-wrapper {
        width: 60%;
    }
}

/* ==========================================================================
   Footer
   ========================================================================== */

.site-footer {
    background: var(--gray-900);
    color: white;
    padding: 3rem 0;
}

.footer-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 2rem;
}

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

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-logo .logo-icon {
    background: #9333ea;
    padding: 0.375rem;
    border-radius: 0.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-logo .logo-icon svg {
    width: 1.25rem;
    height: 1.25rem;
    color: white;
}

.footer-logo .logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: -0.025em;
}

.footer-location {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--gray-400);
    font-size: 0.875rem;
}

.footer-location svg {
    width: 1rem;
    height: 1rem;
}

.social-links {
    display: flex;
    gap: 1.5rem;
}

.social-link {
    color: var(--gray-400);
    transition: all 0.3s ease;
}

.social-link:hover {
    transform: scale(1.1);
}

.social-link.facebook:hover { color: #1877F2; }
.social-link.twitter:hover { color: #1DA1F2; }
.social-link.instagram:hover { color: #E1306C; }
.social-link.linkedin:hover { color: #0A66C2; }

.social-link svg {
    width: 1.5rem;
    height: 1.5rem;
}

.footer-bottom {
    border-top: 1px solid var(--gray-800);
    padding-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    font-size: 0.875rem;
    color: var(--gray-500);
}

.footer-links {
    display: flex;
    gap: 1.5rem;
}

.footer-links a {
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: white;
}

@media (min-width: 768px) {
    .footer-content {
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-start;
    }
    
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
}

/* ==========================================================================
   Single Post Styles
   ========================================================================== */

.single-post-hero {
    position: relative;
    height: 40vh;
    min-height: 300px;
}

.single-post-hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.single-post-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, var(--slate-900), rgba(15, 23, 42, 0.4), transparent);
    opacity: 0.9;
}

.single-post-hero-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 1.5rem;
}

.single-post-category {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    border-radius: 0.25rem;
    background: #a855f7;
    color: white;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.025em;
    margin-bottom: 1rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.single-post-title {
    font-size: 1.875rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1.5rem;
    line-height: 1.25;
    text-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.single-post-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1.5rem;
    color: #cbd5e1;
    font-size: 0.875rem;
    font-weight: 500;
}

.single-post-meta-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.single-post-meta-item svg {
    width: 1rem;
    height: 1rem;
}

.single-post-author-avatar {
    width: 2rem;
    height: 2rem;
    border-radius: 9999px;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.single-post-author-avatar svg {
    width: 0.875rem;
    height: 0.875rem;
}

.single-post-content-wrapper {
    padding: 3rem 1.5rem;
    background: var(--slate-50);
}

.single-post-content {
    background: white;
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    margin-top: -5rem;
    position: relative;
    z-index: 10;
    font-size: 1.125rem;
    line-height: 1.75;
    color: var(--gray-700);
}

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

.single-post-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gray-900);
    margin: 2rem 0 1rem;
}

.single-post-content ul,
.single-post-content ol {
    margin-bottom: 1.5rem;
    padding-left: 1.25rem;
}

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

.single-post-content blockquote {
    background: #fefce8;
    border: 1px solid #fef08a;
    padding: 1rem;
    border-radius: 0.5rem;
    color: #854d0e;
    font-style: italic;
    margin: 1.5rem 0;
}

.single-post-content .callout {
    padding: 1.5rem;
    border-radius: 0.5rem;
    margin: 1.5rem 0;
}

.single-post-content .callout-purple {
    background: var(--purple-50);
    border-left: 4px solid #a855f7;
}

.single-post-content .callout-purple h4 {
    color: #581c87;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.single-post-content .callout-purple p {
    color: #6b21a8;
    font-size: 0.875rem;
    margin-bottom: 0;
}

.single-post-content .callout-blue {
    background: #eff6ff;
    border-left: 4px solid #3b82f6;
}

.single-post-content .callout-blue h4 {
    color: #1e40af;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.single-post-content .callout-blue p {
    color: #1e3a8a;
    font-size: 0.875rem;
    margin-bottom: 0;
}

.single-post-content .result-box {
    padding: 1.5rem;
    background: var(--slate-800);
    color: white;
    border-radius: 0.75rem;
    margin: 2rem 0;
}

.single-post-content .result-box h4 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.single-post-content .result-box p {
    color: #cbd5e1;
    margin-bottom: 0;
}

/* Author Bio */
.author-bio {
    background: var(--slate-50);
    border-radius: 0.75rem;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1.5rem;
    border: 1px solid var(--gray-100);
    margin-top: 3rem;
}

.author-avatar {
    width: 5rem;
    height: 5rem;
    border-radius: 9999px;
    background: #f3e8ff;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #9333ea;
    font-size: 1.5rem;
    font-weight: 700;
    font-family: 'Montserrat', sans-serif;
}

.author-name {
    font-weight: 700;
    color: var(--gray-800);
    margin-bottom: 0.25rem;
}

.author-description {
    font-size: 0.875rem;
    color: var(--gray-500);
    margin-bottom: 0.75rem;
}

.author-link {
    color: #9333ea;
    font-size: 0.875rem;
    font-weight: 700;
}

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

/* Newsletter CTA */
.newsletter-cta {
    margin-top: 3rem;
    background: linear-gradient(to bottom right, var(--slate-800), var(--slate-900));
    border-radius: 1rem;
    padding: 2rem;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.newsletter-cta .blob {
    position: absolute;
    width: 16rem;
    height: 16rem;
    border-radius: 9999px;
    mix-blend-mode: overlay;
    filter: blur(48px);
    opacity: 0.2;
}

.newsletter-cta .blob-purple {
    top: 0;
    right: 0;
    background: #a855f7;
}

.newsletter-cta .blob-blue {
    bottom: 0;
    left: 0;
    background: #3b82f6;
}

.newsletter-content {
    position: relative;
    z-index: 10;
    max-width: 32rem;
    margin: 0 auto;
}

.newsletter-icon {
    width: 3rem;
    height: 3rem;
    margin: 0 auto 1rem;
    color: #c4b5fd;
}

.newsletter-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.newsletter-text {
    color: #cbd5e1;
    margin-bottom: 2rem;
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.newsletter-input {
    flex: 1;
    padding: 0.75rem 1rem;
    border-radius: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    font-size: 1rem;
}

.newsletter-input::placeholder {
    color: #94a3b8;
}

.newsletter-input:focus {
    outline: none;
    border-color: #a855f7;
}

.newsletter-button {
    padding: 0.75rem 1.5rem;
    background: #9333ea;
    color: white;
    font-weight: 700;
    border: none;
    border-radius: 0.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: background 0.3s ease;
}

.newsletter-button:hover {
    background: #a855f7;
}

.newsletter-button svg {
    width: 1rem;
    height: 1rem;
}

.newsletter-disclaimer {
    font-size: 0.75rem;
    color: #64748b;
    margin-top: 1rem;
}

@media (min-width: 768px) {
    .single-post-hero {
        height: 50vh;
    }
    
    .single-post-hero-content {
        padding: 3rem;
    }
    
    .single-post-title {
        font-size: 3rem;
    }
    
    .single-post-content {
        padding: 3rem;
    }
    
    .author-bio {
        flex-direction: row;
        text-align: left;
    }
    
    .newsletter-form {
        flex-direction: row;
    }
}

/* ==========================================================================
   WordPress Specific
   ========================================================================== */

.screen-reader-text {
    border: 0;
    clip: rect(1px, 1px, 1px, 1px);
    clip-path: inset(50%);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
    word-wrap: normal !important;
}

.alignleft {
    float: left;
    margin-right: 1.5rem;
    margin-bottom: 1rem;
}

.alignright {
    float: right;
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

.aligncenter {
    display: block;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 1rem;
}

.wp-caption {
    max-width: 100%;
}

.wp-caption-text {
    font-size: 0.875rem;
    color: var(--gray-500);
    text-align: center;
    margin-top: 0.5rem;
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 3rem;
}

.pagination .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 2.5rem;
    height: 2.5rem;
    padding: 0 0.75rem;
    border-radius: 0.5rem;
    background: white;
    border: 1px solid var(--gray-200);
    color: var(--gray-600);
    font-weight: 600;
    transition: all 0.3s ease;
}

.pagination .page-numbers:hover,
.pagination .page-numbers.current {
    background: #9333ea;
    border-color: #9333ea;
    color: white;
}
