﻿/*
Theme Name: TaxPro 2026
Theme URI: https://taxpro2026.com
Author: Financial Web Solutions
Author URI: https://taxpro2026.com
Description: Premium SEO-first WordPress theme for Tax Calculators, Financial Calculators, and Personal Finance tools. Built for Google SEO 2026 with Core Web Vitals optimization, Schema-rich architecture, E-E-A-T compliance, and AdSense integration. Features include calculator templates, mega menu, author profiles, FAQ schema, breadcrumbs, and mobile-first responsive design.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.4
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: taxpro2026
Tags: calculator, finance, tax, seo, schema, adsense, professional, responsive, accessibility-ready, custom-menu, featured-images, threaded-comments, translation-ready
*/
/* ============================================
   CSS RESET & BASE STYLES
   ============================================ */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
:root {
    /* Color Scheme - Professional Finance Brand */
    --primary-color: #0066cc;
    --primary-dark: #004c99;
    --primary-light: #3385d6;
    --secondary-color: #00cc88;
    --text-primary: #1a1a1a;
    --text-secondary: #4a4a4a;
    --text-muted: #767676;
    --bg-white: #ffffff;
    --bg-light: #f8f9fa;
    --bg-gray: #e9ecef;
    --border-color: #dee2e6;
    --success: #28a745;
    --warning: #ffc107;
    --error: #dc3545;
    --info: #17a2b8;
    /* Typography */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-heading: 'Poppins', 'Inter', sans-serif;
    --font-mono: 'Courier New', monospace;
    /* Spacing */
    --spacing-xs: 0.25rem;
    --spacing-sm: 0.5rem;
    --spacing-md: 1rem;
    --spacing-lg: 1.5rem;
    --spacing-xl: 2rem;
    --spacing-2xl: 3rem;
    --spacing-3xl: 4rem;
    /* Layout */
    --container-max: 1200px;
    --container-wide: 1400px;
    --header-height: 70px;
    /* Border Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 16px;
    /* Shadows */
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.06);
    --shadow-md: 0 4px 6px rgba(0,0,0,0.07);
    --shadow-lg: 0 10px 15px rgba(0,0,0,0.1);
    --shadow-xl: 0 20px 25px rgba(0,0,0,0.15);
    /* Transitions */
    --transition-fast: 150ms ease;
    --transition-base: 250ms ease;
    --transition-slow: 350ms ease;
}
/* ============================================
   TYPOGRAPHY
   ============================================ */
html {
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    scroll-behavior: smooth;
}
body {
    font-family: var(--font-primary);
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-primary);
    background-color: var(--bg-white);
    overflow-x: hidden;
}
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: var(--spacing-md);
    color: var(--text-primary);
}
h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.75rem; }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1.125rem; }
p {
    margin-bottom: var(--spacing-md);
    color: var(--text-secondary);
}
a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color var(--transition-fast);
}
a:hover,
a:focus {
    color: var(--primary-dark);
    text-decoration: underline;
}
strong, b {
    font-weight: 600;
}
em, i {
    font-style: italic;
}
/* ============================================
   LAYOUT CONTAINERS
   ============================================ */
.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--spacing-lg);
    overflow: visible;
}
.container-wide {
    max-width: var(--container-wide);
}
.container-fluid {
    max-width: 100%;
}
/* ============================================
   HEADER - STICKY NAVIGATION
   ============================================ */
.site-header {
    position: sticky;
    top: 0;
    background: var(--bg-white);
    border-bottom: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
    z-index: 1000;
    width: 100%;
    transition: box-shadow var(--transition-base);
    overflow: visible;
}
.site-header.scrolled {
    box-shadow: var(--shadow-md);
}
.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
    max-width: var(--container-wide);
    margin: 0 auto;
    padding: 0 var(--spacing-lg);
    overflow: visible;
}
/* Logo */
.site-logo {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
}
.site-logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
}
.site-logo img {
    max-height: 45px;
    width: auto;
}
.site-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 0;
}
/* Navigation Menu */
.main-navigation {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    height: 100%;
}
.nav-menu {
    display: flex;
    list-style: none;
    gap: var(--spacing-sm);
    margin: 0;
    height: 100%;
    align-items: center;
}
.nav-menu > li {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
}
.nav-menu > li > a {
    display: flex;
    align-items: center;
    padding: 0 var(--spacing-md);
    color: var(--text-primary);
    font-weight: 500;
    text-decoration: none;
    transition: color var(--transition-fast);
    height: 100%;
}
.nav-menu > li > a:hover {
    color: var(--primary-color);
    text-decoration: none;
}
/* CTA Button in Header */
.header-cta {
    padding: 0.65rem 1.5rem;
    background: var(--primary-color);
    color: var(--bg-white);
    border-radius: var(--radius-md);
    font-weight: 600;
    transition: all var(--transition-base);
}
.header-cta:hover {
    background: var(--primary-dark);
    color: var(--bg-white);
    text-decoration: none;
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}
/* Simple Dropdown Menu - Angular Style - Fixed Hover */
.nav-menu > li.menu-item-has-children {
    position: relative;
}
.nav-menu > li.menu-item-has-children > .sub-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    min-width: 200px;
    max-width: 90vw;
    padding: var(--spacing-xs);
    display: none;
    z-index: 99999;
    margin: 0;
    opacity: 0;
    visibility: hidden;
    transform: translateX(-50%) translateY(5px);
    transition: all 0.2s ease;
}
/* Improved hover behavior - keep menu open when hovering over submenu */
.nav-menu > li.menu-item-has-children:hover > .sub-menu,
.nav-menu > li.menu-item-has-children > .sub-menu:hover {
    display: block;
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}
/* Add hover area to prevent menu from disappearing */
.nav-menu > li.menu-item-has-children::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    height: 5px;
    background: transparent;
    z-index: 99998;
}
/* Adjust dropdown position for items near screen edges */
.nav-menu > li.menu-item-has-children:first-child > .sub-menu,
.nav-menu > li.menu-item-has-children:nth-child(1) > .sub-menu {
    left: 0;
    transform: translateY(5px);
}
.nav-menu > li.menu-item-has-children:last-child > .sub-menu,
.nav-menu > li.menu-item-has-children:nth-last-child(1) > .sub-menu {
    left: auto;
    right: 0;
    transform: translateY(5px);
}
.nav-menu > li.menu-item-has-children:first-child:hover > .sub-menu,
.nav-menu > li.menu-item-has-children:nth-child(1):hover > .sub-menu,
.nav-menu > li.menu-item-has-children:first-child > .sub-menu:hover,
.nav-menu > li.menu-item-has-children:nth-child(1) > .sub-menu:hover {
    transform: translateY(0);
}
.nav-menu > li.menu-item-has-children:last-child:hover > .sub-menu,
.nav-menu > li.menu-item-has-children:nth-last-child(1):hover > .sub-menu,
.nav-menu > li.menu-item-has-children:last-child > .sub-menu:hover,
.nav-menu > li.menu-item-has-children:nth-last-child(1) > .sub-menu:hover {
    transform: translateY(0);
}
.nav-menu .sub-menu {
    list-style: none;
    margin: 0;
}
.nav-menu .sub-menu li {
    margin: 0;
    transform: none;
    opacity: 1;
    animation: none;
}
.nav-menu .sub-menu a {
    padding: var(--spacing-sm) var(--spacing-md);
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    color: var(--text-primary);
    text-decoration: none;
    border-radius: var(--radius-xs);
    transition: all 0.15s ease;
    font-size: 0.9rem;
    border: none;
    position: relative;
    overflow: visible;
    background: transparent;
}
.nav-menu .sub-menu a:hover {
    background: var(--bg-light);
    color: var(--primary-color);
    border-color: transparent;
    transform: none;
    text-decoration: none;
    box-shadow: none;
}
/* Header Ad Container - Removed */
/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-primary);
    padding: 0.5rem;
}
/* Prevent dropdown menu cut-offs */
@media (min-width: 769px) {
    .nav-menu > li.menu-item-has-children > .sub-menu {
        max-width: calc(100vw - 20px);
    }
}
/* Mobile Menu Styles */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: block;
    }
    .main-navigation {
        position: fixed;
        top: var(--header-height);
        left: -100%;
        width: 100%;
        height: calc(100vh - var(--header-height));
        background: var(--bg-white);
        transition: left 0.3s ease;
        z-index: 9999;
        overflow-y: auto;
        box-shadow: var(--shadow-xl);
    }
    .main-navigation.mobile-open {
        left: 0;
    }
    .nav-menu {
        flex-direction: column;
        height: auto;
        padding: var(--spacing-lg);
        gap: 0;
    }
    .nav-menu > li {
        width: 100%;
        height: auto;
        border-bottom: 1px solid var(--border-color);
    }
    .nav-menu > li:last-child {
        border-bottom: none;
    }
    .nav-menu > li > a {
        width: 100%;
        height: auto;
        padding: var(--spacing-lg);
        justify-content: space-between;
        font-size: 1.125rem;
    }
    .nav-menu > li.menu-item-has-children > .sub-menu {
        position: static;
        width: 100%;
        max-width: 100%;
        background: var(--bg-light);
        box-shadow: none;
        border-radius: 0;
        padding: 0;
        margin-top: 0;
        transform: none !important;
        opacity: 1;
        visibility: visible;
        display: none;
        left: auto;
        right: auto;
    }
    .nav-menu > li.menu-item-has-children.mobile-submenu-open > .sub-menu {
        display: block;
    }
    .nav-menu .sub-menu li {
        animation: none;
        opacity: 1;
        transform: none;
        margin: 0;
    }
    .nav-menu .sub-menu a {
        padding: var(--spacing-md) var(--spacing-xl);
        border-radius: 0;
        font-size: 1rem;
    }
    .nav-menu .sub-menu a::before {
        display: none;
    }
}
/* ============================================
   404 ERROR PAGE STYLING
   ============================================ */
.error-404-page {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--spacing-3xl) 0;
}
.error-404-container {
    text-align: center;
    max-width: 600px;
}
.error-404-icon {
    margin-bottom: var(--spacing-2xl);
    position: relative;
}
.error-number {
    font-size: 8rem;
    font-weight: 900;
    color: var(--primary-color);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
    display: block;
    line-height: 1;
}
.error-emoji {
    font-size: 3rem;
    position: absolute;
    top: 20%;
    right: -20px;
    animation: bounce 2s infinite;
}
@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}
.error-title {
    font-size: 2.5rem;
    color: var(--text-primary);
    margin-bottom: var(--spacing-lg);
}
.error-description {
    font-size: 1.125rem;
    color: var(--text-secondary);
    margin-bottom: var(--spacing-2xl);
    line-height: 1.6;
}
.error-404-actions {
    display: flex;
    gap: var(--spacing-lg);
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: var(--spacing-3xl);
}
.btn-primary, .btn-secondary {
    padding: var(--spacing-lg) var(--spacing-2xl);
    border-radius: var(--radius-lg);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.125rem;
    transition: all var(--transition-base);
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-sm);
}
.btn-primary {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: var(--bg-white);
    box-shadow: 0 4px 15px rgba(0, 102, 204, 0.3);
}
.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 102, 204, 0.4);
    color: var(--bg-white);
    text-decoration: none;
}
.btn-secondary {
    background: var(--bg-light);
    color: var(--primary-color);
    border: 2px solid var(--border-color);
}
.btn-secondary:hover {
    background: var(--primary-color);
    color: var(--bg-white);
    border-color: var(--primary-color);
    transform: translateY(-2px);
    text-decoration: none;
}
.error-404-suggestions {
    background: var(--bg-light);
    padding: var(--spacing-2xl);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
}
.error-404-suggestions h3 {
    margin-bottom: var(--spacing-xl);
    color: var(--text-primary);
}
.error-suggestions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--spacing-md);
}
.suggestion-item {
    padding: var(--spacing-lg);
    background: var(--bg-white);
    border-radius: var(--radius-md);
    text-decoration: none;
    color: var(--text-primary);
    transition: all var(--transition-base);
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
}
.suggestion-item:hover {
    background: var(--primary-color);
    color: var(--bg-white);
    transform: translateY(-2px);
    text-decoration: none;
    box-shadow: var(--shadow-md);
}
/* Calculator Quick Links - Modern Angular Style Buttons */
.calculator-quick-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: var(--spacing-lg);
    margin-top: var(--spacing-lg);
}
.quick-link-card {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: var(--spacing-xl);
    background: linear-gradient(135deg, var(--bg-white) 0%, #f8f9fa 100%);
    border: 2px solid var(--border-color);
    border-radius: var(--radius-lg);
    text-decoration: none;
    color: var(--text-primary);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    min-height: 120px;
}
.quick-link-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 0;
}
.quick-link-card:hover::before {
    left: 0;
}
.quick-link-card .icon {
    position: relative;
    z-index: 1;
    font-size: 2.5rem;
    margin-bottom: var(--spacing-sm);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}
.quick-link-card .text {
    position: relative;
    z-index: 1;
    font-size: 0.95rem;
    font-weight: 600;
    text-align: center;
    transition: color 0.3s ease;
    line-height: 1.4;
}
.quick-link-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
    border-color: transparent;
    text-decoration: none;
}
.quick-link-card:hover .icon {
    transform: scale(1.2) rotate(10deg);
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
}
.quick-link-card:hover .text {
    color: var(--bg-white);
}
.quick-link-card:active {
    transform: translateY(-4px) scale(0.98);
}
/* Responsive adjustments for quick links */
@media (max-width: 768px) {
    .calculator-quick-links {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--spacing-md);
    }
    .quick-link-card {
        padding: var(--spacing-lg);
        min-height: 100px;
    }
    .quick-link-card .icon {
        font-size: 2rem;
    }
    .quick-link-card .text {
        font-size: 0.85rem;
    }
}
/* ============================================
   FAQS PAGE STYLING
   ============================================ */
.faqs-page {
    padding: var(--spacing-2xl) 0;
}
.faqs-header {
    text-align: center;
    margin-bottom: var(--spacing-3xl);
    padding: var(--spacing-2xl);
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: var(--bg-white);
    border-radius: var(--radius-xl);
}
.faqs-title {
    font-size: 2.5rem;
    color: var(--bg-white);
    margin-bottom: var(--spacing-md);
}
.faqs-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}
.faq-category {
    margin-bottom: var(--spacing-3xl);
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    padding: var(--spacing-2xl);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-color);
}
.category-title {
    font-size: 1.75rem;
    margin-bottom: var(--spacing-xl);
    padding-bottom: var(--spacing-md);
    border-bottom: 3px solid var(--primary-color);
    color: var(--text-primary);
}
.faq-item {
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    margin-bottom: var(--spacing-md);
    overflow: hidden;
    transition: all var(--transition-base);
}
.faq-item:hover {
    box-shadow: var(--shadow-md);
}
.faq-question {
    padding: var(--spacing-lg);
    background: var(--bg-light);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    font-size: 1.125rem;
    transition: all var(--transition-base);
}
.faq-question:hover {
    background: var(--bg-gray);
}
.faq-toggle {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    transition: transform var(--transition-base);
}
.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}
.faq-answer {
    padding: 0 var(--spacing-lg);
    background: var(--bg-white);
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}
.faq-item.active .faq-answer {
    padding: var(--spacing-lg);
    max-height: 300px;
}
.faq-answer p {
    margin: 0;
    color: var(--text-secondary);
    line-height: 1.7;
}
.faqs-contact {
    margin-top: var(--spacing-3xl);
    text-align: center;
}
.contact-box {
    background: linear-gradient(135deg, var(--bg-light) 0%, var(--bg-gray) 100%);
    padding: var(--spacing-2xl);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
}
.contact-box h3 {
    margin-bottom: var(--spacing-md);
    color: var(--text-primary);
}
.contact-box p {
    margin-bottom: var(--spacing-xl);
    color: var(--text-secondary);
}
.contact-btn {
    padding: var(--spacing-lg) var(--spacing-2xl);
    background: var(--primary-color);
    color: var(--bg-white);
    text-decoration: none;
    border-radius: var(--radius-lg);
    font-weight: 600;
    transition: all var(--transition-base);
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-sm);
}
.contact-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    text-decoration: none;
    color: var(--bg-white);
}
/* ============================================
   3D HERO SECTION
   ============================================ */
.hero-section-3d {
    position: relative;
    min-height: 100vh;
    background: linear-gradient(135deg, #0066cc 0%, #004c99 50%, #0066cc 100%);
    overflow: hidden;
    display: flex;
    align-items: center;
    padding: var(--spacing-xl) var(--spacing-lg);
}
.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
}
.hero-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
}
.shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    animation: float 6s ease-in-out infinite;
}
.shape-1 {
    width: 300px;
    height: 300px;
    top: 10%;
    right: -100px;
    animation-delay: 0s;
}
.shape-2 {
    width: 200px;
    height: 200px;
    bottom: 20%;
    left: -50px;
    animation-delay: 2s;
}
.shape-3 {
    width: 150px;
    height: 150px;
    top: 60%;
    right: 20%;
    animation-delay: 4s;
}
@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}
.floating-emoji {
    position: absolute;
    font-size: 2rem;
    animation: floatEmoji 8s ease-in-out infinite;
}
.emoji-1 { top: 15%; left: 10%; animation-delay: 0s; }
.emoji-2 { top: 25%; right: 15%; animation-delay: 2s; }
.emoji-3 { bottom: 30%; left: 20%; animation-delay: 4s; }
.emoji-4 { bottom: 15%; right: 25%; animation-delay: 6s; }
@keyframes floatEmoji {
    0%, 100% { transform: translateY(0) scale(1); }
    25% { transform: translateY(-10px) scale(1.1); }
    75% { transform: translateY(10px) scale(0.9); }
}
.hero-content-3d {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xl);
    align-items: center;
    position: relative;
    z-index: 2;
    padding: var(--spacing-md) var(--spacing-sm);
    max-width: var(--container-wide);
    margin: 0 auto;
    width: 100%;
}
/* Ensure container is responsive */
.hero-section-3d .container {
    width: 100%;
    max-width: 100%;
    padding: 0;
}
.hero-main-content {
    padding: var(--spacing-sm) var(--spacing-xs);
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-sm);
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: var(--spacing-sm) var(--spacing-lg);
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    margin-bottom: var(--spacing-xl);
    animation: slideInUp 0.8s ease;
}
.badge-text {
    color: var(--bg-white);
    font-weight: 600;
    font-size: 0.9rem;
}
.hero-title-3d {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: var(--spacing-xl);
    color: var(--bg-white);
}
.title-line-1, .title-line-3 {
    display: block;
    color: var(--bg-white);
    animation: slideInLeft 0.8s ease;
}
.title-line-2 {
    display: block;
    background: linear-gradient(45deg, #FFD700, #FFA500, #FF6347);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: slideInRight 0.8s ease;
    animation-delay: 0.2s;
    animation-fill-mode: both;
}
@keyframes slideInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes slideInLeft {
    from { opacity: 0; transform: translateX(-50px); }
    to { opacity: 1; transform: translateX(0); }
}
@keyframes slideInRight {
    from { opacity: 0; transform: translateX(50px); }
    to { opacity: 1; transform: translateX(0); }
}
.hero-description-3d {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    margin-bottom: var(--spacing-2xl);
    animation: fadeIn 1s ease;
    animation-delay: 0.4s;
    animation-fill-mode: both;
}
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}
.hero-stats {
    display: flex;
    gap: var(--spacing-2xl);
    margin-bottom: var(--spacing-2xl);
    animation: slideInUp 1s ease;
    animation-delay: 0.6s;
    animation-fill-mode: both;
}
.stat-item {
    text-align: center;
}
.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 900;
    color: #FFD700;
    margin-bottom: var(--spacing-xs);
}
.stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 1px;
}
.hero-actions-3d {
    display: flex;
    gap: var(--spacing-md);
    animation: slideInUp 1s ease;
    animation-delay: 0.8s;
    animation-fill-mode: both;
}
.hero-btn-primary, .hero-btn-secondary {
    padding: var(--spacing-md) var(--spacing-lg);
    border-radius: var(--radius-md);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all var(--transition-base);
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-xs);
    position: relative;
    overflow: hidden;
}
.hero-btn-primary {
    background: linear-gradient(45deg, #FFD700, #FFA500);
    color: var(--text-primary);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.3);
}
.hero-btn-primary:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 12px 35px rgba(255, 215, 0, 0.4);
    color: var(--text-primary);
    text-decoration: none;
}
.hero-btn-secondary {
    background: rgba(255, 255, 255, 0.2);
    color: var(--bg-white);
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}
.hero-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
    color: var(--bg-white);
    text-decoration: none;
}
.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    padding: var(--spacing-xl) var(--spacing-lg);
}
.calculator-preview {
    position: relative;
    animation: slideInRight 1s ease;
    animation-delay: 1s;
    animation-fill-mode: both;
}
.calculator-screen {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: var(--radius-xl);
    padding: var(--spacing-2xl);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.3);
    min-width: 300px;
    margin: var(--spacing-lg);
}
.screen-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: var(--spacing-lg);
    padding-bottom: var(--spacing-md);
    border-bottom: 1px solid var(--border-color);
}
.screen-dots {
    display: flex;
    gap: var(--spacing-xs);
}
.screen-dots span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--primary-color);
}
.screen-dots span:nth-child(2) { background: #FFA500; }
.screen-dots span:nth-child(3) { background: #FF6347; }
.screen-title {
    font-weight: 600;
    color: var(--text-primary);
}
.calc-display {
    display: flex;
    justify-content: space-between;
    margin-bottom: var(--spacing-md);
    padding: var(--spacing-sm) 0;
}
.calc-label {
    color: var(--text-secondary);
    font-size: 0.9rem;
}
.calc-value {
    font-weight: 700;
    color: var(--primary-color);
    font-size: 1.125rem;
}
.tax-savings {
    color: #00cc88;
}
.progress-bar {
    background: var(--bg-gray);
    height: 8px;
    border-radius: 4px;
    overflow: hidden;
    margin-top: var(--spacing-md);
}
.progress-fill {
    background: linear-gradient(45deg, var(--primary-color), #00cc88);
    height: 100%;
    width: 0%;
    animation: fillProgress 2s ease;
    animation-delay: 1.5s;
    animation-fill-mode: forwards;
}
@keyframes fillProgress {
    to { width: 75%; }
}
.floating-cards {
    position: absolute;
    width: 100%;
    height: 100%;
}
.mini-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    padding: var(--spacing-md);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    font-size: 0.8rem;
    font-weight: 600;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    animation: floatCard 4s ease-in-out infinite;
}
.card-1 {
    top: -20px;
    right: -40px;
    animation-delay: 0s;
}
.card-2 {
    bottom: 20px;
    left: -60px;
    animation-delay: 1.5s;
}
.card-3 {
    top: 50%;
    right: -80px;
    animation-delay: 3s;
}
@keyframes floatCard {
    0%, 100% { transform: translateY(0) rotate(-2deg); }
    50% { transform: translateY(-10px) rotate(2deg); }
}
/* Tablet Responsive (768px - 1024px) */
@media (min-width: 769px) and (max-width: 1024px) {
    .hero-section-3d {
        min-height: 85vh;
    }
    .hero-content-3d {
        grid-template-columns: 1fr 1fr;
        gap: var(--spacing-lg);
    }
    .hero-title-3d {
        font-size: 2.75rem;
    }
    .hero-description-3d {
        font-size: 1.125rem;
    }
    .calculator-screen {
        max-width: 320px;
    }
    .hero-stats {
        gap: var(--spacing-lg);
    }
    .stat-number {
        font-size: 1.75rem;
    }
    .mini-card {
        font-size: 0.75rem;
        padding: var(--spacing-sm);
    }
}
/* Mobile Responsive - Improved */
@media (max-width: 1024px) {
    .hero-section-3d {
        min-height: 80vh;
        padding: var(--spacing-lg) var(--spacing-md);
    }
    .hero-content-3d {
        gap: var(--spacing-md);
    }
    .hero-title-3d {
        font-size: 3rem;
    }
}
@media (max-width: 768px) {
    .hero-section-3d {
        padding: var(--spacing-md) var(--spacing-sm);
        min-height: auto;
    }
    .hero-content-3d {
        grid-template-columns: 1fr;
        text-align: center;
        gap: var(--spacing-lg);
        padding: var(--spacing-sm);
    }
    .hero-main-content {
        padding: 0;
    }
    .hero-visual {
        padding: 0;
    }
    .calculator-screen {
        padding: var(--spacing-lg);
        margin: 0 auto;
        max-width: 350px;
    }
    .hero-title-3d {
        font-size: 2.25rem;
    }
    .hero-description-3d {
        font-size: 1.125rem;
    }
    .hero-badge {
        justify-content: center;
    }
    .hero-actions-3d {
        flex-direction: column;
        align-items: stretch;
        width: 100%;
    }
    .hero-btn-primary, .hero-btn-secondary {
        width: 100%;
        justify-content: center;
    }
    .hero-stats {
        flex-wrap: wrap;
        justify-content: center;
        gap: var(--spacing-md);
    }
    .stat-item {
        flex: 0 0 calc(33.333% - var(--spacing-md));
        min-width: 80px;
    }
    .stat-number {
        font-size: 1.5rem;
    }
    .stat-label {
        font-size: 0.8rem;
    }
    .floating-cards .mini-card {
        display: none;
    }
    .floating-emoji {
        font-size: 1.5rem;
    }
    .shape-1, .shape-2, .shape-3 {
        opacity: 0.5;
    }
}
@media (max-width: 480px) {
    .hero-section-3d {
        padding: var(--spacing-sm) var(--spacing-xs);
    }
    .hero-content-3d {
        padding: var(--spacing-xs);
        gap: var(--spacing-md);
    }
    .hero-title-3d {
        font-size: 1.875rem;
    }
    .title-line-1, .title-line-2, .title-line-3 {
        font-size: 1.875rem;
    }
    .hero-description-3d {
        font-size: 1rem;
        line-height: 1.6;
    }
    .hero-badge {
        padding: var(--spacing-xs) var(--spacing-md);
        font-size: 0.85rem;
    }
    .badge-icon {
        font-size: 1rem;
    }
    .calculator-screen {
        padding: var(--spacing-md);
        min-width: 0;
        max-width: 100%;
    }
    .screen-title {
        font-size: 0.9rem;
    }
    .calc-display {
        flex-direction: column;
        align-items: flex-start;
        gap: var(--spacing-xs);
    }
    .calc-label {
        font-size: 0.85rem;
    }
    .calc-value {
        font-size: 1rem;
    }
    .hero-stats {
        gap: var(--spacing-sm);
    }
    .stat-item {
        flex: 0 0 calc(50% - var(--spacing-sm));
    }
    .stat-number {
        font-size: 1.25rem;
    }
    .stat-label {
        font-size: 0.75rem;
    }
    .hero-btn-primary, .hero-btn-secondary {
        padding: var(--spacing-sm) var(--spacing-md);
        font-size: 0.9rem;
    }
    .btn-icon {
        font-size: 1.125rem;
    }
    .floating-emoji {
        font-size: 1.25rem;
        opacity: 0.6;
    }
    .emoji-1 { top: 10%; left: 5%; }
    .emoji-2 { top: 20%; right: 5%; }
    .emoji-3 { bottom: 25%; left: 10%; }
    .emoji-4 { bottom: 10%; right: 10%; }
}
/* ============================================
   CALCULATOR GRID - FEATURED CALCULATORS
   ============================================ */
.calculator-grid-section {
    padding: var(--spacing-3xl) 0;
    background: var(--bg-white);
}
.section-header {
    text-align: center;
    margin-bottom: var(--spacing-2xl);
}
.section-title {
    font-size: 2.25rem;
    margin-bottom: var(--spacing-md);
}
.section-description {
    font-size: 1.125rem;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto;
}
.calculator-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: var(--spacing-xl);
}
.calculator-card {
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: var(--spacing-xl);
    transition: all var(--transition-base);
    cursor: pointer;
}
.calculator-card:hover {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}
.calculator-icon {
    width: 50px;
    height: 50px;
    background: var(--primary-light);
    color: var(--bg-white);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: var(--spacing-md);
}
.calculator-card h3 {
    font-size: 1.25rem;
    margin-bottom: var(--spacing-sm);
}
.calculator-card p {
    color: var(--text-muted);
    font-size: 0.9375rem;
    margin-bottom: var(--spacing-md);
}
.calculator-card .card-link {
    color: var(--primary-color);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-xs);
}
/* ============================================
   MODERN CALCULATOR LAYOUT - SIDE BY SIDE
   ============================================ */
.calculator-tool-modern {
    background: var(--bg-white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 102, 204, 0.1);
    border: 1px solid rgba(0, 102, 204, 0.1);
    margin-bottom: var(--spacing-2xl);
    margin-top: var(--spacing-2xl);
}
.calc-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: var(--bg-white);
    padding: var(--spacing-3xl) var(--spacing-2xl) var(--spacing-2xl);
    text-align: center;
}
.calc-header h1 {
    color: var(--bg-white);
    margin-bottom: var(--spacing-sm);
    font-size: 2rem;
}
.calc-header p {
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    font-size: 1.1rem;
}
.calc-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 500px;
}
.calc-form-section {
    padding: var(--spacing-3xl) var(--spacing-2xl) var(--spacing-2xl);
    background: var(--bg-white);
    border-right: 1px solid var(--border-color);
}
.calc-results-section {
    padding: var(--spacing-3xl) var(--spacing-2xl) var(--spacing-2xl);
    background: linear-gradient(135deg, #f8fafe 0%, #e8f4fd 100%);
    display: flex;
    flex-direction: column;
    position: relative;
    min-height: 500px;
}

/* Loading Animation */
.calc-results-section.loading::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.95);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10;
}

.calc-results-section.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    border: 8px solid #f3f3f3;
    border-top: 8px solid var(--primary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    z-index: 11;
}

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

.calc-results-section.loading .calculator-results-modern {
    opacity: 0.3;
    pointer-events: none;
}

.calc-results-section.show-results .calculator-results-modern {
    animation: fadeInUp 0.6s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.results-header {
    margin-bottom: var(--spacing-xl);
    text-align: center;
}
.results-header h3 {
    color: var(--primary-dark);
    font-size: 1.5rem;
    margin: 0;
}
/* Modern Form Styles */
.calculator-form-modern {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
    height: 100%;
}
.form-group-modern {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}
.form-group-modern label {
    font-weight: 600;
    color: var(--text-primary);
    font-size: 0.95rem;
}
.form-group-modern input,
.form-group-modern select {
    padding: 1rem;
    border: 2px solid var(--border-color);
    border-radius: var(--radius-lg);
    font-size: 1rem;
    transition: all var(--transition-base);
    background: var(--bg-white);
}
.form-group-modern input:focus,
.form-group-modern select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(0, 102, 204, 0.1);
    transform: translateY(-1px);
}
.calculate-button-modern {
    padding: 1.2rem 2rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: var(--bg-white);
    border: none;
    border-radius: var(--radius-lg);
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all var(--transition-base);
    margin-top: auto;
    box-shadow: 0 4px 16px rgba(0, 102, 204, 0.3);
}
.calculate-button-modern:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 102, 204, 0.4);
}
.calculate-button-modern:active {
    transform: translateY(0);
}
/* 3D Circular Progress Indicator */
.tax-rate-circle {
    display: flex;
    justify-content: center;
    margin-bottom: var(--spacing-2xl);
}
.circle-progress {
    position: relative;
    width: 120px;
    height: 120px;
}
.circle-fill {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: conic-gradient(
        from 0deg,
        var(--primary-color) 0deg,
        var(--primary-color) calc(var(--percentage, 0) * 3.6deg),
        #e9ecef calc(var(--percentage, 0) * 3.6deg),
        #e9ecef 360deg
    );
    box-shadow:
        0 0 20px rgba(0, 102, 204, 0.3),
        inset 0 0 20px rgba(0, 0, 0, 0.1);
    transition: all 1s ease-in-out;
}
.circle-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    background: var(--bg-white);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
.percentage {
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--primary-color);
    line-height: 1;
}
.label {
    font-size: 0.7rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 2px;
}
/* Modern Results Grid */
.calculator-results-modern {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
}
.results-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-md);
    flex: 1;
}
.result-card {
    background: var(--bg-white);
    padding: var(--spacing-lg);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--border-color);
    transition: all var(--transition-base);
}
.result-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}
.result-card.highlight {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: var(--bg-white);
    grid-column: 1 / -1;
    box-shadow: 0 4px 20px rgba(0, 102, 204, 0.3);
}
.result-card.highlight .result-label,
.result-card.highlight .result-value {
    color: var(--bg-white);
}
.result-icon {
    font-size: 2rem;
    opacity: 0.8;
}
.result-card.highlight .result-icon {
    opacity: 1;
}
.result-content {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xs);
    flex: 1;
}
.result-card .result-label {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 500;
    margin: 0;
}
.result-card .result-value {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 0;
}
/* Mobile Responsive */
@media (max-width: 768px) {
    .calc-container {
        grid-template-columns: 1fr;
    }
    .calc-form-section {
        border-right: none;
        border-bottom: 1px solid var(--border-color);
    }
    .results-grid {
        grid-template-columns: 1fr;
    }
    .result-card.highlight {
        grid-column: 1;
    }
    .circle-progress {
        width: 100px;
        height: 100px;
    }
    .circle-content {
        width: 70px;
        height: 70px;
    }
    .percentage {
        font-size: 1.2rem;
    }
}
/* ============================================
   CONTENT SECTIONS
   ============================================ */
.content-section {
    background: var(--bg-white);
    padding: var(--spacing-2xl);
    margin-bottom: var(--spacing-2xl);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
}
.content-section h2 {
    font-size: 1.75rem;
    margin-bottom: var(--spacing-lg);
    padding-bottom: var(--spacing-md);
    border-bottom: 2px solid var(--bg-gray);
}
.content-section h3 {
    font-size: 1.5rem;
    margin-top: var(--spacing-xl);
    margin-bottom: var(--spacing-md);
}
.content-section ul,
.content-section ol {
    margin-left: var(--spacing-xl);
    margin-bottom: var(--spacing-md);
}
.content-section li {
    margin-bottom: var(--spacing-sm);
    line-height: 1.7;
}
/* Formula Section */
.formula-section {
    background: var(--bg-light);
    padding: var(--spacing-xl);
    border-radius: var(--radius-md);
    margin: var(--spacing-xl) 0;
}
.formula-code {
    font-family: var(--font-mono);
    background: var(--bg-white);
    padding: var(--spacing-md);
    border-radius: var(--radius-sm);
    border-left: 4px solid var(--primary-color);
    font-size: 1.125rem;
    margin-top: var(--spacing-md);
}
/* ============================================
   BLOG POSTS & ARTICLE STYLING
   ============================================ */
/* Main Article Container */
.calculator-main-full {
    padding: var(--spacing-md);
}
/* Article Meta Information */
.article-meta {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-lg);
    background: linear-gradient(135deg, var(--bg-light) 0%, var(--bg-gray) 100%);
    padding: var(--spacing-md);
    margin: var(--spacing-sm);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--primary-color);
}
.meta-item {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    font-size: 0.9rem;
}
.meta-label {
    font-weight: 600;
    color: var(--text-primary);
}
.meta-item time,
.meta-item a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
}
.meta-item a:hover {
    text-decoration: underline;
}
/* Entry Header - Simplified */
.entry-header {
    margin: var(--spacing-sm);
    padding: var(--spacing-md);
    text-align: left;
}
.entry-title {
    color: var(--text-primary) !important;
    font-size: 2.25rem;
    margin: 0;
    line-height: 1.3;
    font-weight: 700;
    border-bottom: 3px solid var(--primary-color);
    padding-bottom: var(--spacing-md);
}
/* Featured Image */
.featured-image {
    margin: var(--spacing-sm);
    padding: 0;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}
.featured-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform var(--transition-base);
}
.featured-image:hover img {
    transform: scale(1.02);
}
/* Content Section */
.content-section {
    margin: var(--spacing-sm);
    padding: var(--spacing-md);
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}
/* Entry Content */
.entry-content {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--text-secondary);
    padding: var(--spacing-sm);
}
.entry-content h2,
.entry-content h3,
.entry-content h4 {
    color: var(--text-primary);
    margin-top: var(--spacing-md);
    margin-bottom: var(--spacing-sm);
    padding-bottom: var(--spacing-xs);
    border-bottom: 2px solid var(--bg-gray);
}
.entry-content h2 {
    font-size: 1.875rem;
}
.entry-content h3 {
    font-size: 1.625rem;
}
.entry-content h4 {
    font-size: 1.375rem;
}
.entry-content p {
    margin-bottom: var(--spacing-md);
    padding: 0;
}
.entry-content ul,
.entry-content ol {
    margin: var(--spacing-md) 0;
    padding-left: var(--spacing-lg);
}
.entry-content li {
    margin-bottom: var(--spacing-xs);
    padding: var(--spacing-xs) 0;
}
.entry-content blockquote {
    background: var(--bg-light);
    border-left: 4px solid var(--primary-color);
    padding: var(--spacing-md);
    margin: var(--spacing-md) 0;
    border-radius: var(--radius-md);
    font-style: italic;
    font-size: 1.125rem;
}
/* ============================================
   COMMENTS SECTION STYLING
   ============================================ */
.comments-area {
    margin: var(--spacing-sm);
    padding: var(--spacing-md);
    background: var(--bg-white);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-color);
}
.comments-title {
    font-size: 2rem;
    color: var(--text-primary);
    margin-bottom: var(--spacing-md);
    padding: var(--spacing-md);
    border-bottom: 3px solid var(--primary-color);
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
}
.comments-title::before {
    content: "ðŸ’¬";
    font-size: 1.5rem;
}
/* Comment sections removed - not used */
.comment-notes,
.form-allowed-tags {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin: var(--spacing-md) var(--spacing-sm);
    padding: var(--spacing-md);
    background: rgba(0, 102, 204, 0.05);
    border-radius: var(--radius-sm);
    border-left: 3px solid var(--primary-color);
}
/* No Comments Message */
.no-comments {
    text-align: center;
    padding: var(--spacing-md);
    margin: var(--spacing-sm);
    background: var(--bg-light);
    border-radius: var(--radius-md);
    color: var(--text-muted);
    font-style: italic;
}
/* Comment Navigation */
.comment-navigation {
    margin: var(--spacing-sm);
    padding: var(--spacing-md);
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.comment-navigation a {
    background: var(--bg-light);
    color: var(--primary-color);
    padding: var(--spacing-md) var(--spacing-lg);
    border-radius: var(--radius-md);
    text-decoration: none;
    font-weight: 600;
    transition: all var(--transition-base);
    border: 2px solid var(--border-color);
}
.comment-navigation a:hover {
    background: var(--primary-color);
    color: var(--bg-white);
    border-color: var(--primary-color);
    transform: translateY(-2px);
}
/* ============================================
   POST NAVIGATION
   ============================================ */
.post-navigation {
    margin: var(--spacing-md) 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-md);
}
.nav-previous,
.nav-next {
    background: var(--bg-light);
    border-radius: var(--radius-lg);
    padding: var(--spacing-md);
    transition: all var(--transition-base);
    border: 2px solid var(--border-color);
}
.nav-previous:hover,
.nav-next:hover {
    background: var(--bg-white);
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}
.nav-previous a,
.nav-next a {
    text-decoration: none;
    color: var(--text-primary);
    font-weight: 600;
}
.nav-previous a:hover,
.nav-next a:hover {
    color: var(--primary-color);
}
/* Mobile Responsive for Posts/Comments */
@media (max-width: 768px) {
    .calculator-main-full {
        padding: var(--spacing-sm);
    }
    .entry-title {
        font-size: 1.875rem;
    }
    .article-meta {
        flex-direction: column;
        gap: var(--spacing-xs);
        margin: var(--spacing-xs);
        padding: var(--spacing-sm);
    }
    .content-section {
        margin: var(--spacing-xs);
        padding: var(--spacing-sm);
    }
    .entry-content {
        padding: var(--spacing-xs);
    }
    .entry-header {
        margin: var(--spacing-xs);
        padding: var(--spacing-sm);
    }
    .featured-image {
        margin: var(--spacing-xs);
    }
    .comments-area {
        margin: var(--spacing-xs);
        padding: var(--spacing-sm);
    }
    .comments-title {
        padding: var(--spacing-sm);
        margin-bottom: var(--spacing-sm);
        font-size: 1.5rem;
    }

    .post-navigation {
        grid-template-columns: 1fr;
        margin: var(--spacing-xs);
    }
    .nav-previous,
    .nav-next {
        padding: var(--spacing-sm);
    }
}
/* Mobile Responsive */
@media (max-width: 768px) {
    .entry-title {
        font-size: 1.875rem;
    }
    .post-navigation {
        grid-template-columns: 1fr;
    }
    .article-meta {
        flex-direction: column;
        gap: var(--spacing-sm);
    }
}
/* Extra Small Mobile - Ultra Compact */
@media (max-width: 480px) {
    .calculator-main-full {
        padding: var(--spacing-xs);
    }
    .article-meta,
    .entry-header,
    .content-section,
    .entry-content,
    .featured-image,
    .comments-area,

    .entry-title {
        font-size: 1.5rem;
        padding-bottom: var(--spacing-xs);
    }
    .comments-title {
        font-size: 1.25rem;
        padding: var(--spacing-xs);
        margin-bottom: var(--spacing-xs);
    }


    .entry-content h2 {
        font-size: 1.5rem;
        margin-top: var(--spacing-md);
    }
    .entry-content h3 {
        font-size: 1.25rem;
    }
    .entry-content h4 {
        font-size: 1.125rem;
    }
    .entry-content p {
        margin-bottom: var(--spacing-sm);
    }
}
.table-of-contents {
    background: var(--bg-light);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: var(--spacing-xl);
    margin-bottom: var(--spacing-2xl);
}
.table-of-contents h3 {
    font-size: 1.125rem;
    margin-bottom: var(--spacing-md);
}
.toc-list {
    list-style: none;
    margin: 0;
}
.toc-list li {
    margin-bottom: var(--spacing-sm);
}
.toc-list a {
    color: var(--text-primary);
    padding: var(--spacing-sm) 0;
    display: block;
}
.toc-list a:hover {
    color: var(--primary-color);
}
/* ============================================
   FAQ SECTION
   ============================================ */
.faq-section {
    margin: var(--spacing-2xl) 0;
}
.faq-item {
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    margin-bottom: var(--spacing-md);
    overflow: hidden;
}
.faq-question {
    padding: var(--spacing-lg);
    font-weight: 600;
    font-size: 1.125rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--bg-light);
    transition: background var(--transition-fast);
}
.faq-question:hover {
    background: var(--bg-gray);
}
.faq-answer {
    padding: var(--spacing-lg);
    display: none;
}
.faq-item.active .faq-answer {
    display: block;
}
/* Ad Placement Slots - In-Content Only */
.ad-slot {
    background: var(--bg-light);
    border: 1px solid var(--border-color);
    min-height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    font-size: 0.875rem;
    border-radius: var(--radius-md);
    margin: var(--spacing-lg) auto;
    text-align: center;
}
.ad-slot ins {
    margin: 0 !important;
}
.ad-slot.in-content-ad {
    margin: var(--spacing-2xl) auto;
    max-width: 336px;
    min-height: 280px;
}
/* Sticky Mobile Ad - Removed */
.sticky-mobile-ad-close {
    position: absolute;
    top: 0;
    right: 0;
    background: var(--text-muted);
    color: var(--bg-white);
    border: none;
    padding: var(--spacing-xs) var(--spacing-sm);
    font-size: 0.75rem;
    cursor: pointer;
    border-radius: 0 0 0 var(--radius-sm);
}
/* ============================================
   AUTHOR BOX
   ============================================ */
.author-box {
    background: var(--bg-light);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: var(--spacing-xl);
    margin: var(--spacing-2xl) 0;
    display: flex;
    gap: var(--spacing-lg);
}
.author-avatar {
    flex-shrink: 0;
}
.author-avatar img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
}
.author-info h4 {
    margin-bottom: var(--spacing-sm);
}
.author-bio {
    color: var(--text-secondary);
    font-size: 0.9375rem;
    margin-bottom: var(--spacing-md);
}
.author-social {
    display: flex;
    gap: var(--spacing-md);
}
.author-social a {
    color: var(--text-muted);
    transition: color var(--transition-fast);
}
.author-social a:hover {
    color: var(--primary-color);
}
/* ============================================
   BLOG POSTS
   ============================================ */
.posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: var(--spacing-2xl);
    margin: var(--spacing-2xl) 0;
}
.post-card {
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all var(--transition-base);
}
.post-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}
.post-thumbnail {
    width: 100%;
    height: 200px;
    object-fit: cover;
}
.post-content {
    padding: var(--spacing-xl);
}
.post-meta {
    display: flex;
    gap: var(--spacing-md);
    font-size: 0.875rem;
    color: var(--text-muted);
    margin-bottom: var(--spacing-md);
}
.post-title {
    font-size: 1.5rem;
    margin-bottom: var(--spacing-md);
}
.post-title a {
    color: var(--text-primary);
    text-decoration: none;
}
.post-title a:hover {
    color: var(--primary-color);
}
.post-excerpt {
    color: var(--text-secondary);
    margin-bottom: var(--spacing-md);
}
.read-more {
    color: var(--primary-color);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-xs);
}
/* ============================================
   FOOTER - MINIMAL DESIGN
   ============================================ */
.site-footer-minimal {
    background: var(--text-primary);
    color: rgba(255, 255, 255, 0.9);
    padding: var(--spacing-xl) 0;
    margin-top: var(--spacing-3xl);
    border-top: 3px solid var(--primary-color);
}
.footer-minimal-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--spacing-md);
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--spacing-lg);
}
.footer-links-minimal {
    display: flex;
    gap: var(--spacing-lg);
}
.footer-links-minimal a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all var(--transition-fast);
    padding: var(--spacing-xs) var(--spacing-sm);
    border-radius: var(--radius-sm);
}
.footer-links-minimal a:hover {
    color: var(--bg-white);
    background: rgba(255, 255, 255, 0.1);
    text-decoration: none;
    transform: translateY(-1px);
}
.footer-copyright {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 400;
}
/* Mobile Footer */
@media (max-width: 768px) {
    .footer-minimal-content {
        flex-direction: column;
        text-align: center;
        gap: var(--spacing-md);
    }
    .footer-links-minimal {
        order: 2;
    }
    .footer-copyright {
        order: 1;
    }
}
/* ============================================
   EXAMPLES SECTION
   ============================================ */
.examples-section {
    margin: var(--spacing-2xl) 0;
}
.example-box {
    background: var(--bg-light);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: var(--spacing-xl);
    margin-bottom: var(--spacing-lg);
}
.example-box h4 {
    color: var(--primary-color);
    margin-bottom: var(--spacing-md);
}
/* ============================================
   RELATED CALCULATORS
   ============================================ */
.related-calculators {
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: var(--spacing-xl);
    margin: var(--spacing-2xl) 0;
}
.related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: var(--spacing-md);
    margin-top: var(--spacing-lg);
}
.related-item {
    padding: var(--spacing-md);
    background: var(--bg-light);
    border-radius: var(--radius-md);
    transition: all var(--transition-fast);
}
.related-item:hover {
    background: var(--bg-gray);
}
.related-item a {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    text-decoration: none;
    font-weight: 500;
}
/* ============================================
   UPDATE HISTORY & META INFO
   ============================================ */
.article-meta {
    background: var(--bg-light);
    border-radius: var(--radius-md);
    padding: var(--spacing-lg);
    margin-bottom: var(--spacing-xl);
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-lg);
    font-size: 0.875rem;
}
.meta-item {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
}
.meta-label {
    font-weight: 600;
}
/* ============================================
   REFERENCES & CITATIONS
   ============================================ */
.references-section {
    background: var(--bg-light);
    border-left: 4px solid var(--info);
    padding: var(--spacing-xl);
    margin: var(--spacing-2xl) 0;
    border-radius: var(--radius-md);
}
.references-section h3 {
    margin-bottom: var(--spacing-md);
}
.references-list {
    list-style: decimal;
    margin-left: var(--spacing-xl);
}
.references-list li {
    margin-bottom: var(--spacing-sm);
    color: var(--text-secondary);
}
.references-list a {
    color: var(--primary-color);
}
/* ============================================
   EDITORIAL REVIEW BLOCK
   ============================================ */
.editorial-review {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border: 2px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: var(--spacing-xl);
    margin: var(--spacing-2xl) 0;
}
.review-header {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-md);
}
.review-badge {
    background: var(--success);
    color: var(--bg-white);
    padding: var(--spacing-xs) var(--spacing-sm);
    border-radius: var(--radius-sm);
    font-size: 0.75rem;
    font-weight: 600;
}
/* ============================================
   TRENDING SECTION
   ============================================ */
.trending-section {
    background: var(--bg-light);
    padding: var(--spacing-3xl) 0;
}
.trending-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: var(--spacing-lg);
}
.trending-card {
    background: var(--bg-white);
    padding: var(--spacing-lg);
    border-radius: var(--radius-md);
    text-align: center;
    transition: all var(--transition-fast);
    border: 1px solid var(--border-color);
}
.trending-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}
.trending-card h4 {
    margin-bottom: var(--spacing-md);
}
/* ============================================
   TAX GUIDES SECTION
   ============================================ */
.tax-guides-section {
    padding: var(--spacing-3xl) 0;
}
.guides-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: var(--spacing-xl);
}
.guide-card {
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: var(--spacing-xl);
    transition: all var(--transition-fast);
}
.guide-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}
.guide-icon {
    font-size: 2rem;
    margin-bottom: var(--spacing-md);
    display: block;
}
.guide-card h3 {
    font-size: 1.25rem;
    margin-bottom: var(--spacing-sm);
}
.guide-card p {
    color: var(--text-muted);
    margin-bottom: var(--spacing-md);
    font-size: 0.9rem;
}
.guide-link {
    color: var(--primary-color);
    font-weight: 600;
}
/* ============================================
   EXPERTISE SECTION
   ============================================ */
.expertise-section {
    background: var(--bg-light);
    padding: var(--spacing-3xl) 0;
}
.expertise-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: var(--spacing-xl);
    margin-top: var(--spacing-2xl);
}
.expertise-card {
    background: var(--bg-white);
    padding: var(--spacing-xl);
    border-radius: var(--radius-lg);
    text-align: center;
    transition: all var(--transition-fast);
}
.expertise-card:hover {
    box-shadow: var(--shadow-md);
}
.expertise-icon {
    font-size: 3rem;
    margin-bottom: var(--spacing-md);
    display: block;
}
.expertise-card h4 {
    font-size: 1.125rem;
    margin-bottom: var(--spacing-sm);
}
.expertise-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin: 0;
}
/* ============================================
   FAQ HOMEPAGE SECTION
   ============================================ */
.faq-homepage-section {
    padding: var(--spacing-3xl) 0;
}
@media (max-width: 992px) {
    :root {
        --spacing-3xl: 3rem;
        --spacing-2xl: 2rem;
    }
    .calculator-page {
        grid-template-columns: 1fr;
    }
    .header-container {
        flex-wrap: wrap;
    }
    .mobile-menu-toggle {
        display: block;
    }
    .main-navigation {
        display: none;
        width: 100%;
        flex-direction: column;
        padding: var(--spacing-md) 0;
    }
    .main-navigation.mobile-open {
        display: flex;
    }
    .nav-menu {
        flex-direction: column;
        width: 100%;
    }
    .nav-menu > li {
        width: 100%;
    }
    .calculator-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }
    .posts-grid {
        grid-template-columns: 1fr;
    }
}
@media (max-width: 768px) {
    body {
        padding-top: var(--header-height);
    }
    .site-header {
        position: fixed;
        top: 0;
        width: 100%;
        z-index: 1000;
    }
    h1 { font-size: 2rem; }
    h2 { font-size: 1.75rem; }
    h3 { font-size: 1.5rem; }
    .hero-content h1 {
        font-size: 2rem;
    }
    .calculator-tool {
        padding: var(--spacing-lg);
    }
    .result-value {
        font-size: 2rem;
    }
    .author-box {
        flex-direction: column;
    }
    .footer-widgets {
        grid-template-columns: 1fr;
    }
}
@media (max-width: 480px) {
    .container {
        padding: 0 var(--spacing-md);
    }
    .calculator-grid {
        grid-template-columns: 1fr;
    }
}
/* ============================================
   ACCESSIBILITY & FOCUS STATES
   ============================================ */
*:focus-visible {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}
.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--primary-color);
    color: var(--bg-white);
    padding: var(--spacing-sm) var(--spacing-md);
    text-decoration: none;
    z-index: 100;
}
.skip-link:focus {
    top: 0;
}
/* ============================================
   PRINT STYLES
   ============================================ */
@media print {
    .site-header,
    .related-calculators,
    .ad-slot,
    .site-footer {
        display: none;
    }
    .calculator-page-full {
        max-width: 100%;
    }
    a {
        text-decoration: underline;
    }
}
/* ============================================
   UTILITY CLASSES
   ============================================ */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }
.mt-0 { margin-top: 0; }
.mt-1 { margin-top: var(--spacing-sm); }
.mt-2 { margin-top: var(--spacing-md); }
.mt-3 { margin-top: var(--spacing-lg); }
.mt-4 { margin-top: var(--spacing-xl); }
.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: var(--spacing-sm); }
.mb-2 { margin-bottom: var(--spacing-md); }
.mb-3 { margin-bottom: var(--spacing-lg); }
.mb-4 { margin-bottom: var(--spacing-xl); }
.hidden { display: none !important; }
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
    white-space: nowrap;
    border: 0;
}
/* ============================================
   EDITOR STYLES - GUTENBERG BLOCK EDITOR
   ============================================ */
/**
 * Block Editor Styles for TaxPro 2026
 * These styles apply to the Gutenberg editor
 */
/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Poppins:wght@600;700&display=swap');
/* Editor Wrapper */
.editor-styles-wrapper {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: #1a1a1a;
}
/* Headings */
.editor-styles-wrapper h1,
.editor-styles-wrapper h2,
.editor-styles-wrapper h3,
.editor-styles-wrapper h4,
.editor-styles-wrapper h5,
.editor-styles-wrapper h6 {
    font-family: 'Poppins', 'Inter', sans-serif;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 1rem;
}
.editor-styles-wrapper h1 { font-size: 2.5rem; }
.editor-styles-wrapper h2 { font-size: 2rem; }
.editor-styles-wrapper h3 { font-size: 1.75rem; }
.editor-styles-wrapper h4 { font-size: 1.5rem; }
.editor-styles-wrapper h5 { font-size: 1.25rem; }
.editor-styles-wrapper h6 { font-size: 1.125rem; }
/* Paragraphs */
.editor-styles-wrapper p {
    margin-bottom: 1rem;
    color: #4a4a4a;
}
/* Links */
.editor-styles-wrapper a {
    color: #0066cc;
    text-decoration: none;
}
.editor-styles-wrapper a:hover {
    color: #004c99;
    text-decoration: underline;
}
/* Lists */
.editor-styles-wrapper ul,
.editor-styles-wrapper ol {
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}
.editor-styles-wrapper li {
    margin-bottom: 0.5rem;
}
/* Buttons */
.editor-styles-wrapper .wp-block-button__link {
    background-color: #0066cc;
    color: #ffffff;
    padding: 0.875rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.25s ease;
}
.editor-styles-wrapper .wp-block-button__link:hover {
    background-color: #004c99;
    transform: translateY(-2px);
}
/* Quotes */
.editor-styles-wrapper blockquote {
    border-left: 4px solid #0066cc;
    padding-left: 1.5rem;
    margin: 1.5rem 0;
    font-style: italic;
    color: #4a4a4a;
}
/* Code */
.editor-styles-wrapper code {
    background: #f8f9fa;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-family: 'Courier New', monospace;
    font-size: 0.9em;
}
.editor-styles-wrapper pre {
    background: #f8f9fa;
    padding: 1rem;
    border-radius: 8px;
    overflow-x: auto;
}
/* Tables */
.editor-styles-wrapper table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 1.5rem;
}
.editor-styles-wrapper table th,
.editor-styles-wrapper table td {
    padding: 0.75rem;
    border: 1px solid #dee2e6;
    text-align: left;
}
.editor-styles-wrapper table th {
    background: #f8f9fa;
    font-weight: 600;
}
/* Images */
.editor-styles-wrapper img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}
/* Wide & Full Width */
.editor-styles-wrapper .alignwide {
    max-width: 1400px;
}
.editor-styles-wrapper .alignfull {
    max-width: none;
    width: 100vw;
    margin-left: calc(50% - 50vw);
}
/* Calculator Block Styles */
.editor-styles-wrapper .calculator-block {
    background: #ffffff;
    border: 2px solid #0066cc;
    border-radius: 12px;
    padding: 2rem;
    margin: 2rem 0;
}
/* FAQ Block Styles */
.editor-styles-wrapper .faq-block {
    background: #f8f9fa;
    border: 1px solid #dee2e6;
    border-radius: 8px;
    padding: 1.5rem;
    margin: 1.5rem 0;
}
/* Formula Block Styles */
.editor-styles-wrapper .formula-block {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid #0066cc;
    font-family: 'Courier New', monospace;
    margin: 1.5rem 0;
}

