/*
Theme Name: My First Template
Theme URI: https://findexa.ca
Author: Findexa Team
Author URI: https://findexa.ca
Description: A modern, business-oriented WordPress theme with clean design and professional layout
Version: 1.1
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: myfirsttemplate
Tags: business, modern, clean, responsive, professional
*/

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

:root {
    --primary-color: #4facfe;
    --secondary-color: #00f2fe;
    --accent-color: #3d9ae8;
    --text-dark: rgba(255, 255, 255, 0.95);
    --text-light: rgba(255, 255, 255, 0.75);
    --bg-light: rgba(255, 255, 255, 0.08);
    --bg-white: rgba(255, 255, 255, 0.06);
    --border-color: rgba(255, 255, 255, 0.12);
    --success-color: #10b981;
    --shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.3);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.4);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%) !important;
    padding-top: 0;
    min-height: 100vh;
}

/* Adjust body padding when admin bar is present */
.admin-bar body,
body.admin-bar {
    padding-top: 0;
}

@media screen and (max-width: 782px) {
    .admin-bar body,
    body.admin-bar {
        padding-top: 0;
    }
}

/* Accessibility - Skip Link */
.skip-link {
    position: absolute;
    left: -9999px;
    top: 2.5rem;
    z-index: 999999;
    text-decoration: underline;
}

.skip-link:focus {
    display: block;
    left: 6px;
    top: 7px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    color: white !important;
    background: linear-gradient(135deg, #4facfe 0%, #3d9ae8 100%) !important;
    padding: 15px 23px 14px;
    border-radius: 3px;
    box-shadow: 0 0 2px 2px rgba(79, 172, 254, 0.4);
}

.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 !important;
    width: 1px;
    word-wrap: normal !important;
}

.screen-reader-text:focus {
    background: linear-gradient(135deg, #4facfe 0%, #3d9ae8 100%) !important;
    border-radius: 3px;
    box-shadow: 0 0 2px 2px rgba(79, 172, 254, 0.4);
    clip: auto !important;
    clip-path: none;
    color: white !important;
    display: block;
    font-size: 0.875rem;
    font-weight: 700;
    height: auto;
    left: 5px;
    line-height: normal;
    padding: 15px 23px 14px;
    text-decoration: none;
    top: 5px;
    width: auto;
    z-index: 100000;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 11px;
}

/* Header Styles */
.site-header {
    background: rgba(26, 26, 46, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 1000;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    transform: translateY(0);
}

/* Header hide on scroll down */
.site-header.header-hidden {
    transform: translateY(-100%);
}

/* Header show on scroll up with enhanced shadow */
.site-header.header-visible {
    transform: translateY(0);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}

/* Adjust header position when admin bar is present */
.admin-bar .site-header {
    top: 32px;
}

.admin-bar .site-header.header-hidden {
    transform: translateY(calc(-100% - 32px));
}

@media screen and (max-width: 782px) {
    .admin-bar .site-header {
        top: 46px;
    }
    
    .admin-bar .site-header.header-hidden {
        transform: translateY(calc(-100% - 46px));
    }
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    position: relative;
}

.site-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
}

.site-title:hover {
    color: var(--secondary-color);
}

.site-description {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.8);
    margin-top: 0;
    text-align: center;
}

/* Navigation */
.main-navigation ul {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin: 0;
    padding: 0;
}

.main-navigation a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 0;
    transition: color 0.3s;
}

.main-navigation a:hover {
    color: rgba(255, 255, 255, 0.9);
}

/* Mobile Menu Toggle Button */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 32px;
    height: 24px;
    background: transparent !important;
    background-color: transparent !important;
    border: none !important;
    border-radius: 0 !important;
    outline: none !important;
    box-shadow: none !important;
    cursor: pointer;
    padding: 0 !important;
    margin: 0;
    z-index: 1001;
    position: relative;
    -webkit-tap-highlight-color: transparent;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.mobile-menu-toggle:hover {
    background: transparent !important;
    background-color: transparent !important;
    border: none !important;
    box-shadow: none !important;
}

.mobile-menu-toggle:focus {
    outline: none !important;
    box-shadow: none !important;
    background: transparent !important;
    border: none !important;
}

.mobile-menu-toggle:active {
    background: transparent !important;
    background-color: transparent !important;
    border: none !important;
    box-shadow: none !important;
}

.mobile-menu-toggle:focus-visible {
    outline: none !important;
    box-shadow: none !important;
}

.mobile-menu-toggle .menu-bar {
    width: 100%;
    height: 3px;
    background: white;
    border-radius: 3px;
    transition: all 0.3s ease;
    display: block;
}

/* Mobile Menu Toggle Active State - Symmetrical X */
.mobile-menu-toggle.active .menu-bar:nth-child(1) {
    transform: translateY(10.5px) rotate(45deg);
    transform-origin: center center;
}

.mobile-menu-toggle.active .menu-bar:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active .menu-bar:nth-child(3) {
    transform: translateY(-10.5px) rotate(-45deg);
    transform-origin: center center;
}

/* Hero Section - Global Dark Glassmorphic Style */
.hero-section {
    background: linear-gradient(135deg, #16213e 0%, #0f3460 100%);
    color: white;
    padding: 30px 0 0;
    text-align: center;
    position: sticky;
    top: 0;
    overflow: hidden;
    z-index: 999;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(79, 172, 254, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.hero-section .container {
    position: relative;
    z-index: 1;
}

.hero-title {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    color: white !important;
    line-height: 1.2;
    letter-spacing: -1px;
}

.hero-title .logo-word {
    display: inline-flex;
    align-items: center;
    vertical-align: middle;
    margin: 0;
    gap: 3px;
    line-height: 0;
}

.hero-title .logo-word .block-letter {
    animation: none;
}

.hero-subtitle {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.85) !important;
    line-height: 1.6;
    max-width: 950px;
    margin: 0 auto 2rem;
}

.btn {
    display: inline-block;
    padding: 0.75rem 2rem;
    background: white;
    color: var(--primary-color);
    text-decoration: none;
    border-radius: 0.5rem;
    font-weight: 600;
    transition: transform 0.3s, box-shadow 0.3s;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

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

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

/* Content Area */
.site-content {
    padding: 3rem 0;
    position: relative;
    z-index: 1;
}

.content-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
    margin-top: 2rem;
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

/* Posts */
.post-list {
    display: grid;
    gap: 2rem;
}

.post-card {
    background: var(--bg-white);
    border-radius: 0.5rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
    max-width: 100%;
    box-sizing: border-box;
}

.post-card:hover {    transform: translateY(-6px);    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);}

.post-thumbnail {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

/* Single post main image - 4:3 aspect ratio */
.single-post-card .post-thumbnail {
    height: auto;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    border-radius: 8px;
}

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

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

.post-title a {
    color: var(--text-dark);
    text-decoration: none;
}

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

.post-meta {
    color: var(--text-light);
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

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

.read-more {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
}

.read-more:hover {
    color: var(--secondary-color);
}

/* Main Content Area */
.main-content {
    max-width: 100%;
    overflow-x: hidden;
}

/* Sidebar */
.sidebar {
    background: transparent;
    padding: 0;
    border-radius: 0;
    max-width: 100%;
    overflow-x: hidden;
}

.widget {
    margin-bottom: 2rem;
}

.widget-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--primary-color);
}

.widget ul {
    list-style: none;
}

.widget li {
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--border-color);
}

.widget a {
    color: var(--text-dark);
    text-decoration: none;
}

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

/* Single Post */

.entry-header {
    margin-bottom: 2rem;
}

.entry-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.entry-content {
    line-height: 1.8;
    padding-bottom: 2rem;
}

/* All h2 in posts - consistent styling */
.entry-content h2,
.post-content h2,
.page-content h2,
article h2,
.single h2,
.blog h2,
.post h2,
.type-post h2 {
    font-size: 1.6rem !important;
    font-weight: 700 !important;
    margin-top: 0.5rem !important;
    margin-bottom: 0.2rem !important;
    padding-bottom: 20px !important;
    color: var(--text-dark) !important;
    line-height: 1.3 !important;
}

/* All h3 in posts - consistent styling */
.entry-content h3,
.post-content h3,
.page-content h3,
article h3,
.single h3,
.blog h3,
.post h3,
.type-post h3 {
    font-size: 1.2rem !important;
    font-weight: 600 !important;
    margin-top: 0.4rem !important;
    margin-bottom: 0.15rem !important;
    padding-bottom: 20px !important;
    color: var(--primary-color) !important;
    line-height: 1.3 !important;
}

.entry-content p {
    margin-bottom: 1rem;
}

.entry-content ul,
.entry-content ol {
    margin-left: 2rem;
    margin-bottom: 1rem;
}

/* Footer */
.site-footer {
    background: var(--text-dark);
    color: white;
    padding: 3rem 0 1rem;
    margin-top: 4rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-widget h3 {
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

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

.footer-widget li {
    margin-bottom: 0.5rem;
}

.footer-widget a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
}

/* Responsive Design */
@media (max-width: 768px) {
    .header-content {
        flex-wrap: wrap;
        padding: 0.75rem 0;
    }
    
    .site-branding {
        flex: 1;
        text-align: center;
    }
    
    .site-title {
        text-align: center;
    }
    
    .site-description {
        text-align: center;
    }
    
    /* Show mobile menu toggle */
    .mobile-menu-toggle {
        display: flex;
        order: 2;
    }
    
    /* Hide navigation by default on mobile */
    .main-navigation {
        display: none;
        width: 100%;
        order: 3;
        margin-top: 1rem;
    }
    
    /* Show navigation when menu is active */
    .main-navigation.active {
        display: block;
    }

    .main-navigation ul {
        flex-direction: column;
        gap: 0;
        text-align: center;
        background: rgba(255, 255, 255, 0.06);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        border: 1px solid rgba(255, 255, 255, 0.12);
        border-radius: 12px;
        padding: 1rem 0;
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    }
    
    .main-navigation li {
        margin: 0;
        padding: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }
    
    .main-navigation li:last-child {
        border-bottom: none;
    }
    
    .main-navigation a {
        display: block;
        padding: 1rem 1.5rem;
        font-size: 16px;
    }
    
    .main-navigation a:hover,
    .main-navigation .current-menu-item a,
    .main-navigation .current_page_item a {
        color: #4facfe !important;
    }

    .hero-section {
        padding: 30px 0 0;
    }
    
    .hero-title {
        font-size: 36px;
        line-height: 1.4;
    }
    
    .hero-subtitle {
        font-size: 18px;
    }

    .content-grid {
        grid-template-columns: 1fr;
    }
    
    /* Constrain all content-grid children */
    .content-grid > * {
        max-width: 100%;
        overflow-x: hidden;
    }
    
    .content-grid .main-content,
    .content-grid .sidebar,
    .content-grid article,
    .content-grid .post-card {
        max-width: 100%;
        overflow-x: hidden;
        box-sizing: border-box;
    }

    .entry-title {
        font-size: 2rem;
    }
    
    /* Mobile post width constraints */
    .container {
        padding: 0 11px !important;
    }
    
    article,
    .post,
    .entry-content,
    .single article {
        max-width: 100%;
        overflow-x: hidden;
    }
    
    .entry-content img,
    .post-content img,
    article img {
        max-width: 100%;
        height: auto;
    }
    
    .single-post-card .entry-content {
        font-size: 1rem;
    }
    
    .single-post-card .entry-title {
        font-size: 1.75rem;
    }
}

/* Hero Section - Smaller Mobile */
@media (max-width: 480px) {
    .hero-section {
        padding: 30px 0 0;
    }
    
    .hero-title {
        font-size: 28px;
        line-height: 1.4;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
    
    /* Smaller mobile post constraints */
    .container {
        padding: 0 11px !important;
    }
    
    /* Ensure content-grid children stay within bounds */
    .content-grid > * {
        max-width: 100%;
        min-width: 0;
        overflow-x: hidden;
    }
    
    .single-post-card .entry-content {
        font-size: 0.95rem;
        padding: 0;
    }
    
    .single-post-card .entry-title {
        font-size: 1.5rem;
    }
    
    .entry-content ul,
    .entry-content ol {
        margin-left: 1.25rem;
    }
}

/* Pagination - No Boxing */
.pagination,
.posts-pagination,
.post-navigation {
    margin-top: 3rem;
}

.pagination .nav-links,
.posts-pagination .nav-links {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.pagination .page-numbers,
.posts-pagination .page-numbers {
    display: inline-block;
    padding: 0.5rem 1rem;
    color: #4facfe;
    text-decoration: none;
    transition: all 0.3s;
}

.pagination .page-numbers:hover,
.posts-pagination .page-numbers:hover {
    color: #3d9ae8;
    transform: translateY(-2px);
}

.pagination .page-numbers.current,
.posts-pagination .page-numbers.current {
    color: white;
    font-weight: 700;
}

.pagination .page-numbers.dots,
.posts-pagination .page-numbers.dots {
    cursor: default;
}

.pagination .page-numbers.dots:hover,
.posts-pagination .page-numbers.dots:hover {
    transform: none;
}

/* Page Links (for paginated posts) - No Boxing */
.page-links {
    clear: both;
    margin: 2rem 0;
}

.page-links .post-page-numbers {
    display: inline-block;
    padding: 0.5rem 1rem;
    margin: 0.25rem;
    color: #4facfe;
    text-decoration: none;
    transition: all 0.3s;
}

.page-links .post-page-numbers:hover,
.page-links .post-page-numbers.current {
    color: white;
    font-weight: 700;
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }

.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }

/* Single Post Enhancements */
.single-post-card {
    margin-bottom: 2rem;
}

.single-post-card .entry-header {
    margin-bottom: 1.5rem;
}

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

.single-post-card .post-meta {
    font-size: 0.95rem;
    padding: 1rem 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.single-post-card .entry-content {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--text-dark);
    padding-bottom: 2rem;
}

.single-post-card .entry-content h2,
.single-post-card .post-content h2,
.single-post-card h2 {
    font-size: 1.6rem !important;
    font-weight: 700 !important;
    margin-top: 0.5rem !important;
    margin-bottom: 0.2rem !important;
    padding-bottom: 20px !important;
    color: var(--text-dark) !important;
    line-height: 1.3 !important;
}

.single-post-card .entry-content h3,
.single-post-card .post-content h3,
.single-post-card h3 {
    font-size: 1.2rem !important;
    font-weight: 600 !important;
    margin-top: 0.4rem !important;
    margin-bottom: 0.15rem !important;
    padding-bottom: 20px !important;
    color: var(--primary-color) !important;
    line-height: 1.3 !important;
}

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

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

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

.single-post-card .entry-content strong {
    color: var(--text-dark);
    font-weight: 600;
}

/* Entry Footer */
.entry-footer {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 2px solid var(--border-color);
}

.category-badge,
.tag-badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    margin-right: 0.5rem;
    margin-bottom: 0.5rem;
    background: var(--bg-light);
    color: var(--primary-color);
    text-decoration: none;
    border-radius: 0.25rem;
    font-size: 0.875rem;
    font-weight: 500;
    transition: all 0.3s;
}

.category-badge:hover,
.tag-badge:hover {
    background: var(--primary-color);
    color: white;
}


/* Post Navigation - No Boxing */
.post-navigation {
    margin-top: 2rem;
    padding-top: 2rem;
}

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

.post-navigation .nav-previous,
.post-navigation .nav-next {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    color: #4facfe;
    text-decoration: none;
    transition: all 0.3s;
    font-weight: 500;
    font-size: 1rem;
}

.post-navigation .nav-previous:hover,
.post-navigation .nav-next:hover {
    color: #3d9ae8;
    transform: translateY(-2px);
}

.post-navigation .nav-arrow {
    font-size: 1.2rem;
    font-weight: bold;
}

.post-navigation .nav-text {
    font-weight: 600;
}

/* Ensure navigation buttons dont break on mobile */
@media (max-width: 576px) {
    .post-navigation .nav-links {
        flex-direction: column;
    }
    
    .post-navigation .nav-previous,
    .post-navigation .nav-next {
        width: 100%;
        justify-content: center;
    }
}

/* ============================================
   FOOTER - CLEAN FULL-WIDTH IMPLEMENTATION
   ============================================ */

/* Footer background should be full-width */
.site-footer {
    background: var(--text-dark) !important;
    color: white !important;
    padding: 3rem 0 1rem !important;
    margin-top: 4rem !important;
    width: 100% !important;
}

/* Footer content container should be 1400px max */
.site-footer .container {
    max-width: 1400px !important;
    width: 100% !important;
    margin: 0 auto !important;
    padding: 0 11px !important;
}

/* Footer grid layout - 4 columns */
.site-footer .footer-content {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 2rem !important;
    margin-bottom: 2rem !important;
}

/* Footer widget styling */
.site-footer .footer-widget h3 {
    color: #ffffff !important;
    margin-bottom: 1rem !important;
    font-size: 1.25rem !important;
}

.site-footer .footer-widget ul {
    list-style: none !important;
    padding: 0 !important;
}

.site-footer .footer-widget li {
    margin-bottom: 0.5rem !important;
    color: rgba(255, 255, 255, 0.8) !important;
}

.site-footer .footer-widget a {
    color: rgba(255, 255, 255, 0.8) !important;
    text-decoration: none !important;
    transition: color 0.3s ease;
}

.site-footer .footer-widget a:hover {
    color: #ffffff !important;
}

.site-footer .footer-widget nav ul {
    padding: 0 !important;
    list-style: none !important;
}

.site-footer .footer-bottom {
    text-align: center !important;
    padding-top: 2rem !important;
    border-top: 1px solid rgba(255, 255, 255, 0.1) !important;
    color: rgba(255, 255, 255, 0.6) !important;
}

/* Responsive footer */
@media (max-width: 768px) {
    .site-footer .footer-content {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

@media (max-width: 480px) {
    .site-footer .footer-content {
        grid-template-columns: 1fr !important;
    }
}

/* Ensure no horizontal scroll */
#page {
    overflow-x: hidden;
}

/* ============================================
   ENSURE ALL CONTAINERS ARE 1200PX MAX-WIDTH
   ============================================ */

/* Main container rule - ensure it applies everywhere */
.container,
.site-content .container,
.site-header .container,
main .container,
#primary .container {
    max-width: 1400px !important;
    width: 100% !important;
    margin: 0 auto !important;
    padding: 0 11px !important;
}

/* Hero section should also be contained */
.hero-section .container {
    max-width: 1400px !important;
    width: 100% !important;
    margin: 0 auto !important;
    padding: 0 11px !important;
}

/* ============================================
   COMMENTS AREA STYLING
   ============================================ */

.comments-area {
    margin-top: 4rem;
    padding: 0;
}

.comments-area h3,
.comments-title {
    color: var(--text-dark);
    margin-bottom: 2rem;
    font-size: 1.875rem;
    font-weight: 700;
    padding-bottom: 1rem;
    border-bottom: 3px solid var(--primary-color);
    display: inline-block;
}

.comment-form p {
    margin-bottom: 1.5rem;
}

.comment-form label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text-dark);
}

.comment-form input[type="text"],
.comment-form input[type="email"],
.comment-form input[type="url"],
.comment-form textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 4px solid #e0e0e0;
    border-radius: 6px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.comment-form input[type="text"]:focus,
.comment-form input[type="email"]:focus,
.comment-form input[type="url"]:focus,
.comment-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

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

.comment-form .form-submit {
    margin-top: 1rem;
}

.comment-form input[type="submit"],
.comment-form button[type="submit"] {
    background: var(--primary-color);
    color: white;
    padding: 0.875rem 2rem;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.1s ease;
}

.comment-form input[type="submit"]:hover,
.comment-form button[type="submit"]:hover {
    background: #1e40af;
    transform: translateY(-2px);
}

.comment-form input[type="submit"]:active,
.comment-form button[type="submit"]:active {
    transform: translateY(0);
}

.comment-form .comment-form-cookies-consent {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.comment-form input[type="checkbox"] {
    width: auto;
    margin-top: 0.25rem;
}

.comment-form .required {
    color: #dc2626;
}

.comment-notes {
    font-size: 0.875rem;
    color: #666;
    margin-bottom: 1.5rem;
}

.comment-reply-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.comment-reply-title small {
    font-size: 0.875rem;
    font-weight: normal;
}

.comment-reply-title small a {
    color: var(--primary-color);
    text-decoration: none;
}

.comment-reply-title small a:hover {
    text-decoration: underline;
}

/* Responsive comment form */
@media (max-width: 768px) {
    .comments-area {
        padding: 1.5rem;
    }
    
    .comment-form input[type="submit"],
    .comment-form button[type="submit"] {
        width: 100%;
    }
}

/* ============================================
   COMMENT FORM - ENHANCED & MODERN STYLING
   ============================================ */

/* Comment Respond Section - Main Form Container */
#respond,
.comment-respond {
    margin-top: 4rem;
    padding: 3.5rem;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08), 0 2px 8px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(37, 99, 235, 0.12);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

#respond:hover,
.comment-respond:hover {
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12), 0 4px 12px rgba(0, 0, 0, 0.06);
    border-color: rgba(37, 99, 235, 0.2);
}

#respond::before,
.comment-respond::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-color) 0%, var(--accent-color) 50%, var(--primary-color) 100%);
    background-size: 200% 100%;
    animation: gradient-shift 3s ease infinite;
}

@keyframes gradient-shift {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

.comment-reply-title {
    color: var(--text-dark);
    margin-bottom: 2.5rem;
    font-size: 2rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-bottom: 1.25rem;
    border-bottom: 3px solid var(--primary-color);
    position: relative;
    letter-spacing: -0.02em;
}

.comment-reply-title::before {
    content: '💬';
    font-size: 1.75rem;
    filter: drop-shadow(0 2px 4px rgba(37, 99, 235, 0.2));
}

.comment-reply-title::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--accent-color);
    border-radius: 2px;
}

.comment-reply-title small {
    font-size: 0.875rem;
    font-weight: 400;
    color: var(--text-light);
    margin-left: auto;
}

.comment-reply-title small a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
}

.comment-reply-title small a:hover {
    color: var(--secondary-color);
    text-decoration: underline;
}

.comment-form p {
    margin-bottom: 1.75rem;
    position: relative;
}

.comment-form p:last-of-type {
    margin-bottom: 0;
}

.comment-form label,
.comment-form-comment label,
.comment-form-author label,
.comment-form-email label,
.comment-form-url label {
    display: block;
    margin-bottom: 0.75rem;
    font-weight: 600;
    color: var(--text-dark);
    font-size: 0.95rem;
    letter-spacing: 0.01em;
}

.comment-form label::after {
    content: '';
    display: inline-block;
    width: 4px;
    height: 4px;
    background: var(--primary-color);
    border-radius: 50%;
    margin-left: 0.25rem;
    vertical-align: middle;
}

.comment-form input[type="text"],
.comment-form input[type="email"],
.comment-form input[type="url"],
.comment-form textarea {
    width: 100%;
    padding: 1.125rem 1.75rem;
    border: 4px solid var(--border-color);
    border-radius: 12px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background: white;
    color: var(--text-dark);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.04);
    line-height: 1.6;
}

.comment-form input[type="text"]:focus,
.comment-form input[type="email"]:focus,
.comment-form input[type="url"]:focus,
.comment-form textarea:focus {
    background: #fafbfc;
}

.comment-form input[type="text"]:hover,
.comment-form input[type="email"]:hover,
.comment-form input[type="url"]:hover,
.comment-form textarea:hover {
    border-color: rgba(37, 99, 235, 0.3);
}

.comment-form input[type="text"]:focus,
.comment-form input[type="email"]:focus,
.comment-form input[type="url"]:focus,
.comment-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.12), 0 6px 16px rgba(37, 99, 235, 0.18);
    transform: translateY(-2px);
    background: #ffffff;
}

.comment-form input[type="text"]::placeholder,
.comment-form input[type="email"]::placeholder,
.comment-form input[type="url"]::placeholder,
.comment-form textarea::placeholder {
    color: #9ca3af;
    opacity: 0.7;
}

.comment-form textarea {
    min-height: 200px;
    resize: vertical;
    line-height: 1.7;
    font-family: inherit;
    padding-top: 1.25rem;
}

.comment-form-comment textarea {
    min-height: 220px;
    font-size: 1.05rem;
}

.form-submit {
    margin-top: 2rem !important;
    margin-bottom: 0 !important;
}

.comment-form input[type="submit"],
.comment-form button[type="submit"],
.form-submit input[type="submit"] {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%) !important;
    color: white !important;
    padding: 1.25rem 3.5rem !important;
    border: none !important;
    border-radius: 12px !important;
    font-size: 1rem !important;
    font-weight: 700 !important;
    cursor: pointer !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.4), 0 3px 8px rgba(37, 99, 235, 0.25) !important;
    position: relative;
    overflow: hidden;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.comment-form input[type="submit"]::after,
.comment-form button[type="submit"]::after,
.form-submit input[type="submit"]::after {
    content: '→';
    font-size: 1.2em;
    transition: transform 0.3s ease;
}

.comment-form input[type="submit"]::before,
.comment-form button[type="submit"]::before,
.form-submit input[type="submit"]::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.comment-form input[type="submit"]:hover,
.comment-form button[type="submit"]:hover,
.form-submit input[type="submit"]:hover {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #1e3a8a 100%) !important;
    transform: translateY(-4px) scale(1.02) !important;
    box-shadow: 0 10px 28px rgba(37, 99, 235, 0.5), 0 6px 14px rgba(37, 99, 235, 0.35) !important;
}

.comment-form input[type="submit"]:hover::after,
.comment-form button[type="submit"]:hover::after,
.form-submit input[type="submit"]:hover::after {
    transform: translateX(4px);
}

.comment-form input[type="submit"]:hover::before,
.comment-form button[type="submit"]:hover::before,
.form-submit input[type="submit"]:hover::before {
    left: 100%;
}

.comment-form input[type="submit"]:active,
.comment-form button[type="submit"]:active,
.form-submit input[type="submit"]:active {
    transform: translateY(-1px) !important;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.35) !important;
}

.comment-form-cookies-consent {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.04) 0%, rgba(37, 99, 235, 0.02) 100%);
    border-radius: 10px;
    border: 4px solid rgba(37, 99, 235, 0.12);
    margin-top: 1.5rem;
    transition: all 0.3s ease;
}

.comment-form-cookies-consent:hover {
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.06) 0%, rgba(37, 99, 235, 0.03) 100%);
    border-color: rgba(37, 99, 235, 0.18);
    box-shadow: 0 2px 8px rgba(37, 99, 235, 0.1);
}

.comment-form-cookies-consent label {
    margin-bottom: 0;
    font-weight: 500;
    font-size: 0.9rem;
    color: var(--text-light);
    cursor: pointer;
    line-height: 1.5;
}

.comment-form input[type="checkbox"] {
    width: 20px !important;
    height: 20px !important;
    margin-top: 0.125rem;
    cursor: pointer;
    accent-color: var(--primary-color);
    flex-shrink: 0;
    border-radius: 4px;
}

.comment-form input[type="checkbox"]:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

.comment-form .required {
    color: #dc2626;
    font-weight: 700;
    margin-left: 0.25rem;
}

.comment-notes {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 2.5rem;
    line-height: 1.8;
    padding: 1.25rem 1.5rem;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.06) 0%, rgba(37, 99, 235, 0.03) 100%);
    border-left: 4px solid var(--primary-color);
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(37, 99, 235, 0.08);
    position: relative;
}

.comment-notes::before {
    content: 'ℹ️';
    margin-right: 0.75rem;
    font-size: 1.1em;
    filter: drop-shadow(0 1px 2px rgba(37, 99, 235, 0.2));
}

.comment-notes::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, var(--primary-color) 0%, var(--accent-color) 100%);
    border-radius: 2px 0 0 2px;
}

/* Field Layout Improvements */
.comment-form-author,
.comment-form-email,
.comment-form-url {
    display: block;
    width: 100%;
    margin-bottom: 1.75rem;
}

.comment-form-comment {
    margin-bottom: 2rem;
}

@media (min-width: 768px) {
    .comment-form-author,
    .comment-form-email {
        width: calc(50% - 1rem);
        display: inline-block;
        vertical-align: top;
        margin-bottom: 1.75rem;
    }
    
    .comment-form-author {
        margin-right: 2rem;
    }
    
    .comment-form-url {
        width: 100%;
        margin-bottom: 1.75rem;
    }
}

/* Form Field Group Styling */
.comment-form p {
    position: relative;
}

.comment-form-comment {
    margin-top: 0.5rem;
}

.comment-form-author,
.comment-form-email {
    transition: transform 0.2s ease;
}

.comment-form-author:focus-within,
.comment-form-email:focus-within {
    transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 768px) {
    #respond,
    .comment-respond {
        padding: 2.5rem 1.75rem;
        margin-top: 2.5rem;
        border-radius: 12px;
    }
    
    .comment-reply-title {
        font-size: 1.625rem;
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
        margin-bottom: 2rem;
    }
    
    .comment-reply-title small {
        margin-left: 0;
        margin-top: 0.25rem;
    }
    
    .comment-form input[type="text"],
    .comment-form input[type="email"],
    .comment-form input[type="url"],
    .comment-form textarea {
        padding: 1rem 1.5rem;
        font-size: 16px; /* Prevents zoom on iOS */
    }
    
    .comment-form input[type="submit"],
    .comment-form button[type="submit"],
    .form-submit input[type="submit"] {
        width: 100% !important;
        padding: 1.125rem 2.5rem !important;
        font-size: 0.95rem !important;
    }
    
    .comment-form-author,
    .comment-form-email {
        width: 100%;
        margin-right: 0;
        margin-bottom: 1.5rem;
    }
    
    .comment-notes {
        padding: 1rem 1.25rem;
        font-size: 0.875rem;
    }
    
    .comment-form-cookies-consent {
        padding: 1.25rem;
        gap: 0.875rem;
    }
}

@media (max-width: 480px) {
    #respond,
    .comment-respond {
        padding: 2rem 1.25rem;
        border-radius: 12px;
        margin-top: 2rem;
    }
    
    .comment-reply-title {
        font-size: 1.5rem;
        padding-bottom: 1rem;
    }
    
    .comment-reply-title::before {
        font-size: 1.5rem;
    }
    
    .comment-form textarea {
        min-height: 180px;
    }
    
    .comment-form-comment textarea {
        min-height: 200px;
    }
    
    .form-submit {
        margin-top: 1.5rem !important;
    }
}

/* Enhanced Card Depth - Mini Cards & Related Posts */
.mini-card,
.related-posts .post-card {
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.12);
    border: 1px solid rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.mini-card:hover,
.related-posts .post-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

/* Enhanced Sidebar Depth */
.sidebar {
    box-shadow: none;
    border: none;
}

/* Enhanced Widget Depth */
.widget {
    background: transparent;
    padding: 0;
    border-radius: 0;
    box-shadow: none;
    border: none;
    margin-bottom: 2rem;
}

/* Single Post Card Enhanced Depth */
.single-post-card {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
    border: 1px solid rgba(0, 0, 0, 0.06);
}

/* ============================================
   BUILDING BLOCK LOGO - Kids

/* ============================================
   BUILDING BLOCK LOGO - Kid's Toy Blocks Style
   ============================================ */

.block-logo {
    display: inline-flex;
    gap: 0.15rem;
    align-items: center;
    text-decoration: none;
    padding: 0.5rem 0;
    transition: transform 0.3s ease;
}

.block-logo:hover {
    transform: scale(1.05);
}


/* ============================================
   BUILDING BLOCK LOGO - Kid's Toy Blocks Style
   ============================================ */

.block-logo {
    display: inline-flex;
    gap: 0.15rem;
    align-items: center;
    text-decoration: none;
    padding: 0.5rem 0;
    transition: transform 0.3s ease;
}

.block-logo:hover {
    transform: scale(1.05);
}

.block-letter {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    vertical-align: middle;
    width: 2.2rem;
    height: 2.2rem;
    font-size: 1.3rem;
    font-weight: 900;
    font-family: "Arial Black", "Arial Bold", Arial, sans-serif;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
    border-radius: 0.25rem;
    position: relative;
    transition: all 0.3s ease;
    cursor: pointer;
    box-shadow: 
        0 4px 0 rgba(0, 0, 0, 0.2),
        0 6px 12px rgba(0, 0, 0, 0.15);
    line-height: 1;
    margin-bottom: 5px;
}

/* 3D Effect - Top and Side Faces */
.block-letter::before {
    content: '';
    position: absolute;
    top: -4px;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(to right, rgba(255,255,255,0.3), rgba(255,255,255,0.1));
    border-radius: 0.25rem 0.25rem 0 0;
}

.block-letter::after {
    content: '';
    position: absolute;
    top: 4px;
    right: -4px;
    width: 4px;
    bottom: -4px;
    background: linear-gradient(to bottom, rgba(0,0,0,0.1), rgba(0,0,0,0.3));
    border-radius: 0 0.25rem 0.25rem 0;
}

/* Hover effect - slight lift */
.block-letter:hover {
    transform: translateY(-2px);
    box-shadow: 
        0 6px 0 rgba(0, 0, 0, 0.2),
        0 8px 16px rgba(0, 0, 0, 0.2);
}

/* Individual block colors - like toy blocks */
.block-f {
    background: linear-gradient(145deg, #FF6B6B, #EE5A52);
    border: 4px solid #CC3333;
    color: #8B1A1A;
    opacity: 0.85;
}

.block-i {
    background: linear-gradient(145deg, #4ECDC4, #45B8B0);
    border: 4px solid #2A9D8F;
    color: #1A5F5A;
    opacity: 0.85;
}

.block-n {
    background: linear-gradient(145deg, #FFD93D, #F0C929);
    border: 4px solid #D4A017;
    color: #8B6914;
    opacity: 0.85;
}

.block-d {
    background: linear-gradient(145deg, #6BCF7F, #5BC46E);
    border: 4px solid #3AA856;
    color: #1E5631;
    opacity: 0.85;
}

.block-e {
    background: linear-gradient(145deg, #A29BFE, #8B84E8);
    border: 4px solid #6B5FD9;
    color: #3A2F8F;
    opacity: 0.85;
}

.block-x {
    background: linear-gradient(145deg, #FF8B94, #FF6B7A);
    border: 4px solid #E84855;
    color: #8B2332;
    opacity: 0.85;
}

.block-a {
    background: linear-gradient(145deg, #FFA559, #FF9143);
    border: 4px solid #E67E22;
    color: #8B4513;
    opacity: 0.85;
}

.block-b {
    background: linear-gradient(145deg, #74B9FF, #5FA3E8);
    border: 4px solid #3A7BC8;
    color: #1E4078;
    opacity: 0.85;
}

.block-l {
    background: linear-gradient(145deg, #FD79A8, #FC5C8D);
    border: 4px solid #E84393;
    color: #8B2252;
    opacity: 0.85;
}

.block-o {
    background: linear-gradient(145deg, #A29BFE, #8B84E8);
    border: 4px solid #6B5FD9;
    color: #3A2F8F;
    opacity: 0.85;
}

.block-g {
    background: linear-gradient(145deg, #55EFC4, #3ED9AC);
    border: 4px solid #00B894;
    color: #006B56;
    opacity: 0.85;
}

.block-p {
    background: linear-gradient(145deg, #FDCB6E, #F6B352);
    border: 4px solid #E17055;
    color: #8B3A2E;
    opacity: 0.85;
}

.block-r {
    background: linear-gradient(145deg, #FF7675, #FF5E5D);
    border: 4px solid #D63031;
    color: #8B1A1B;
    opacity: 0.85;
}

.block-c {
    background: linear-gradient(145deg, #A29BFE, #8B84E8);
    border: 4px solid #6B5FD9;
    color: #3A2F8F;
    opacity: 0.85;
}

.block-t {
    background: linear-gradient(145deg, #81ECEC, #6DD9D9);
    border: 4px solid #00CEC9;
    color: #007B78;
    opacity: 0.85;
}

.block-u {
    background: linear-gradient(145deg, #FAB1A0, #FF9A7B);
    border: 4px solid #E17055;
    color: #8B3A2E;
    opacity: 0.85;
}

.block-h {
    background: linear-gradient(145deg, #DFE6E9, #C8D0D4);
    border: 4px solid #B2BEC3;
    color: #636E72;
    opacity: 0.85;
}

/* Add subtle texture to blocks */

/* ========================================================================
   GLASSMORPHIC DARK THEME ENHANCEMENTS
   Added: Dec 8, 2024
   ======================================================================== */


/* Global Dark Background for All Pages */
body {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%) !important;
    min-height: 100vh;
}

/* Make all content areas transparent to show background */
.site-content,
#primary,
.site-main {
    background: transparent !important;
}

/* Content containers with glassmorphic effect */
.main-content article,
.post-content,
.page-content,
.single article,
.blog article {
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border: none;
    border-radius: 0;
    /* padding: 40px; */
    margin-bottom: 30px;
    color: rgba(255,255,255,0.9);
}

/* Headings on dark background */
.entry-title,
.post-title,
h1, h2, h3, h4, h5, h6 {
    color: white !important;
}

/* Body text */
.entry-content,
.post-content,
.page-content p,
.entry-content p {
    color: rgba(255,255,255,0.85) !important;
    line-height: 1.8;
}

/* Links */
.entry-content a,
.post-content a,
a {
    color: #4facfe;
}

.entry-content a:hover,
.post-content a:hover,
a:hover {
    color: #3d9ae8;
}

/* Comprehensive Text Colors for Dark Background */
p, span, li, td, th, dt, dd, blockquote, cite, label, div,
article, section {
    color: rgba(255, 255, 255, 0.85) !important;
}

/* Ensure all text content is visible */
.site-content,
#primary,
.content-area,
.site-main,
main {
    color: rgba(255, 255, 255, 0.85) !important;
}

/* Archive and category pages */
.archive .page-title,
.category .page-title,
.search .page-title,
.page-header .page-title {
    color: white !important;
}

.archive .page-description,
.category .page-description,
.taxonomy-description {
    color: rgba(255, 255, 255, 0.75) !important;
}

/* Blockquotes */
blockquote {
    background: rgba(255, 255, 255, 0.05) !important;
    border-left: 4px solid #4facfe !important;
    padding: 20px !important;
    margin: 20px 0 !important;
    font-style: italic;
}

/* Code blocks */
code {
    background: rgba(255, 255, 255, 0.1) !important;
    color: #5eb5ff !important;
    padding: 2px 6px !important;
    border-radius: 4px !important;
    font-family: 'Courier New', monospace;
}

pre {
    background: rgba(0, 0, 0, 0.3) !important;
    color: rgba(255, 255, 255, 0.9) !important;
    padding: 15px !important;
    border-radius: 8px !important;
    overflow-x: auto;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
}

pre code {
    background: transparent !important;
    padding: 0 !important;
}

/* Post meta, dates, and secondary text */
.post-meta,
.entry-meta,
.comment-metadata,
.byline,
.posted-on,
.cat-links,
.tags-links,
time {
    color: rgba(255, 255, 255, 0.65) !important;
}

/* Ensure strong and bold text are visible */
strong, b {
    color: rgba(255, 255, 255, 0.95) !important;
    font-weight: 700;
}

/* Lists */
ul li, ol li {
    color: rgba(255, 255, 255, 0.85) !important;
}

/* Tables */
table {
    border-color: rgba(255, 255, 255, 0.12) !important;
}

th {
    background: rgba(255, 255, 255, 0.08) !important;
    color: white !important;
}

/* Forms */
input[type="text"],
input[type="email"],
input[type="url"],
input[type="search"],
textarea,
select {
    background: rgba(255, 255, 255, 0.08) !important;
    border: 1px solid rgba(255, 255, 255, 0.12) !important;
    color: white !important;
}

input::placeholder,
textarea::placeholder {
    color: rgba(255, 255, 255, 0.5) !important;
}

/* Buttons */
button,
input[type="submit"],
.btn,
.button {
    background: rgba(79, 172, 254, 0.8) !important;
    color: white !important;
    border: 1px solid rgba(79, 172, 254, 0.4) !important;
}

button:hover,
input[type="submit"]:hover,
.btn:hover,
.button:hover {
    background: rgba(61, 154, 232, 0.9) !important;
    border-color: rgba(61, 154, 232, 0.6) !important;
}

/* Post cards with glassmorphic effect */
.post-card,
.related-posts .post-card {
    background: rgba(255, 255, 255, 0.06) !important;
    backdrop-filter: blur(12px) !important;
    -webkit-backdrop-filter: blur(12px) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3) !important;
}

.post-card:hover,
.related-posts .post-card:hover {
    background: rgba(255, 255, 255, 0.08) !important;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4) !important;
}

.post-card .post-title,
.post-card .post-title a {
    color: white !important;
}

.post-card .post-title a:hover {
    color: #4facfe !important;
}

.post-card .post-meta,
.post-card .post-excerpt,
.post-card p {
    color: rgba(255, 255, 255, 0.8) !important;
}

/* Sidebar with glassmorphic effect */
.sidebar,
#secondary {
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border: none;
    border-radius: 0;
    padding: 0;
}

.sidebar .widget,
#secondary .widget {
    background: transparent;
    border: none;
    margin-bottom: 30px;
}

.sidebar h2,
.sidebar h3,
.sidebar .widget-title,
#secondary h2,
#secondary h3,
#secondary .widget-title {
    color: white !important;
}

.sidebar a,
#secondary a {
    color: rgba(255,255,255,0.8);
}

.sidebar a:hover,
#secondary a:hover {
    color: #4facfe;
}

.sidebar li,
.sidebar p,
.sidebar span,
.sidebar ul,
#secondary li,
#secondary p,
#secondary span,
#secondary ul {
    color: rgba(255, 255, 255, 0.8) !important;
}

.sidebar .widget-title,
#secondary .widget-title {
    border-bottom-color: rgba(79, 172, 254, 0.5) !important;
}

/* Navigation menus */
.menu,
.nav-menu,
.main-navigation .menu-item {
    color: rgba(255, 255, 255, 0.9) !important;
}

/* WordPress default classes */
.wp-caption-text,
.gallery-caption {
    color: rgba(255, 255, 255, 0.75) !important;
}

/* Breadcrumbs */
.breadcrumbs,
.breadcrumb {
    color: rgba(255,255,255,0.7);
    background: rgba(255, 255, 255, 0.05);
    padding: 12px 20px;
    border-radius: 8px;
    margin-bottom: 20px;
}

.breadcrumbs a,
.breadcrumb a {
    color: #4facfe;
}

/* Post meta */
.entry-meta,
.post-meta {
    color: rgba(255,255,255,0.6) !important;
}

.entry-meta a,
.post-meta a {
    color: rgba(255,255,255,0.7);
}

/* Post thumbnail */
.post-thumbnail img {
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Comments */
.comments-area {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 30px;
    margin-top: 40px;
}

.comment-list .comment {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255,255,255,0.85);
}

/* Forms */
input[type="text"],
input[type="email"],
input[type="url"],
input[type="password"],
input[type="search"],
textarea,
select {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: white;
    border-radius: 8px;
    padding: 12px 16px;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="password"]:focus,
input[type="search"]:focus,
textarea:focus,
select:focus {
    background: rgba(255, 255, 255, 0.12);
    border-color: #4facfe;
    outline: none;
}

/* Buttons */
button,
.button,
.btn,
input[type="submit"] {
    background: #4facfe;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    transition: background 0.3s ease;
}

button:hover,
.button:hover,
.btn:hover,
input[type="submit"]:hover {
    background: #3d9ae8;
}

/* Pagination - No Boxing */
.pagination,
.nav-links {
    margin-top: 30px;
}

.pagination a,
.nav-links a {
    color: #4facfe;
}

/* Tags */
.tags,
.tag-links a {
    background: rgba(79, 172, 254, 0.15);
    color: #4facfe;
    padding: 6px 14px;
    border-radius: 6px;
    margin: 5px;
    display: inline-block;
    border: 1px solid rgba(79, 172, 254, 0.3);
}

.tags:hover,
.tag-links a:hover {
    background: rgba(79, 172, 254, 0.25);
}

/* Categories */
.categories a,
.cat-links a {
    color: #4facfe;
}

/* Dark Glassmorphic Comments Section - Professional Styling */

/* Main comments area container */
.comments-area,
#comments {
    background: rgba(255, 255, 255, 0.08) !important;
    backdrop-filter: blur(12px) !important;
    -webkit-backdrop-filter: blur(12px) !important;
    border: 1px solid rgba(255, 255, 255, 0.12) !important;
    border-radius: 16px !important;
    padding: 40px !important;
    margin-top: 40px !important;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3) !important;
}

/* Comments title */
.comments-title,
.comment-reply-title {
    color: #ffffff !important;
    font-size: 28px !important;
    font-weight: 600 !important;
    margin-bottom: 30px !important;
    padding-bottom: 15px !important;
    border-bottom: 2px solid rgba(255, 255, 255, 0.15) !important;
}

/* Individual comment */
.comment-list .comment,
.comment-list li {
    background: rgba(255, 255, 255, 0.05) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    border-radius: 12px !important;
    padding: 25px !important;
    margin-bottom: 20px !important;
    list-style: none !important;
}

/* Nested comments */
.comment-list .children {
    margin-left: 30px !important;
    margin-top: 20px !important;
}

.comment-list .children .comment {
    background: rgba(255, 255, 255, 0.03) !important;
    border-left: 3px solid #5eb5ff !important;
}

/* Comment author */
.comment-author,
.comment-author .fn {
    color: #ffffff !important;
    font-size: 16px !important;
    font-weight: 600 !important;
}

/* Comment meta (date, edit link) */
.comment-meta,
.comment-metadata {
    color: rgba(255, 255, 255, 0.6) !important;
    font-size: 13px !important;
    margin-top: 5px !important;
}

.comment-metadata a {
    color: rgba(255, 255, 255, 0.6) !important;
}

.comment-metadata a:hover {
    color: #5eb5ff !important;
}

/* Comment content/body */
.comment-content,
.comment-content p {
    color: rgba(255, 255, 255, 0.9) !important;
    line-height: 1.7 !important;
    margin-top: 15px !important;
}

/* Comment reply link */
.comment-reply-link,
.reply a {
    background: linear-gradient(135deg, #5eb5ff 0%, #4a9fe5 100%) !important;
    color: #ffffff !important;
    padding: 8px 20px !important;
    border-radius: 6px !important;
    text-decoration: none !important;
    display: inline-block !important;
    margin-top: 15px !important;
    font-size: 14px !important;
    font-weight: 500 !important;
    transition: all 0.3s ease !important;
    border: none !important;
}

.comment-reply-link:hover,
.reply a:hover {
    background: linear-gradient(135deg, #4a9fe5 0%, #3a8fd5 100%) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 4px 12px rgba(94, 181, 255, 0.4) !important;
}

/* Comment avatar */
.comment-author img,
.avatar {
    border-radius: 50% !important;
    border: 2px solid rgba(255, 255, 255, 0.2) !important;
}

/* Comment form */
.comment-respond,
#respond {
    background: rgba(255, 255, 255, 0.05) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    border-radius: 12px !important;
    padding: 30px !important;
    margin-top: 30px !important;
}

/* Form fields */
.comment-form input[type="text"],
.comment-form input[type="email"],
.comment-form input[type="url"],
.comment-form textarea {
    background: rgba(255, 255, 255, 0.08) !important;
    border: 1px solid rgba(255, 255, 255, 0.15) !important;
    border-radius: 8px !important;
    padding: 12px 16px !important;
    color: rgba(255, 255, 255, 0.95) !important;
    width: 100% !important;
    font-size: 15px !important;
    transition: all 0.3s ease !important;
}

.comment-form input[type="text"]:focus,
.comment-form input[type="email"]:focus,
.comment-form input[type="url"]:focus,
.comment-form textarea:focus {
    background: rgba(255, 255, 255, 0.12) !important;
    border-color: #5eb5ff !important;
    outline: none !important;
    box-shadow: 0 0 0 3px rgba(94, 181, 255, 0.2) !important;
}

/* Form labels */
.comment-form label {
    color: rgba(255, 255, 255, 0.9) !important;
    font-weight: 500 !important;
    margin-bottom: 8px !important;
    display: block !important;
}

/* Submit button */
.comment-form input[type="submit"],
.comment-form .submit input,
.form-submit input {
    background: linear-gradient(135deg, #5eb5ff 0%, #4a9fe5 100%) !important;
    color: #ffffff !important;
    padding: 12px 30px !important;
    border-radius: 8px !important;
    border: none !important;
    font-size: 16px !important;
    font-weight: 600 !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    width: auto !important;
}

.comment-form input[type="submit"]:hover,
.comment-form .submit input:hover,
.form-submit input:hover {
    background: linear-gradient(135deg, #4a9fe5 0%, #3a8fd5 100%) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 20px rgba(94, 181, 255, 0.4) !important;
}

/* Comment navigation */
.comment-navigation,
.comment-respond .comment-navigation {
    margin: 20px 0 !important;
}

.comment-navigation a {
    color: #5eb5ff !important;
    padding: 8px 16px !important;
    background: rgba(255, 255, 255, 0.05) !important;
    border-radius: 6px !important;
    text-decoration: none !important;
}

.comment-navigation a:hover {
    background: rgba(255, 255, 255, 0.1) !important;
}

/* No comments message */
.no-comments {
    color: rgba(255, 255, 255, 0.7) !important;
    font-style: italic !important;
    text-align: center !important;
    padding: 30px !important;
}

/* Comment awaiting moderation */
.comment-awaiting-moderation {
    color: #ffa500 !important;
    background: rgba(255, 165, 0, 0.1) !important;
    padding: 10px 15px !important;
    border-radius: 6px !important;
    margin-top: 10px !important;
    font-size: 14px !important;
}

/* Pingbacks/Trackbacks */
.pingback,
.trackback {
    background: rgba(255, 255, 255, 0.04) !important;
    border-left: 3px solid rgba(94, 181, 255, 0.5) !important;
    padding: 15px !important;
    margin-bottom: 15px !important;
    border-radius: 6px !important;
}

/* Comment edit link */
.comment-edit-link {
    color: #5eb5ff !important;
    font-size: 13px !important;
    margin-left: 10px !important;
}

.comment-edit-link:hover {
    color: #89c9ff !important;
}

/* Says (by Author) text */
.says {
    color: rgba(255, 255, 255, 0.5) !important;
    font-size: 14px !important;
}

/* Comment form fields wrapper */
.comment-form-comment,
.comment-form-author,
.comment-form-email,
.comment-form-url {
    margin-bottom: 20px !important;
}

/* Required field indicator */
.required {
    color: #ff6b6b !important;
}

/* Form allowed tags */
.comment-form .form-allowed-tags {
    color: rgba(255, 255, 255, 0.5) !important;
    font-size: 12px !important;
    margin-top: 15px !important;
}

.comment-form .form-allowed-tags code {
    background: rgba(255, 255, 255, 0.08) !important;
    padding: 2px 6px !important;
    border-radius: 3px !important;
    color: #5eb5ff !important;
}

/* WordPress Block Widgets - Match Recent Posts Styling */

/* Recent Posts Block (wp:latest-posts) - Already styled but ensuring consistency */
.wp-block-latest-posts__list.wp-block-latest-posts {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
}

.wp-block-latest-posts__list.wp-block-latest-posts li {
    background: rgba(255, 255, 255, 0.05) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    border-radius: 8px !important;
    padding: 15px !important;
    margin-bottom: 12px !important;
    transition: all 0.3s ease !important;
    list-style: none !important;
}

.wp-block-latest-posts__list.wp-block-latest-posts li:last-child {
    margin-bottom: 0 !important;
}

.wp-block-latest-posts__list.wp-block-latest-posts li:hover {
    background: rgba(255, 255, 255, 0.08) !important;
    border-color: rgba(94, 181, 255, 0.3) !important;
    transform: translateX(5px) !important;
}

.wp-block-latest-posts__list.wp-block-latest-posts a {
    color: #ffffff !important;
    text-decoration: none !important;
    font-weight: 500 !important;
    font-size: 14px !important;
    line-height: 1.5 !important;
}

.wp-block-latest-posts__list.wp-block-latest-posts a:hover {
    color: #5eb5ff !important;
}

/* Recent Comments Block (wp:latest-comments) - Match the exact same style */
ol.wp-block-latest-comments,
.wp-block-latest-comments {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
    box-sizing: border-box !important;
}

.wp-block-latest-comments__comment {
    background: rgba(255, 255, 255, 0.05) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    border-radius: 8px !important;
    padding: 15px !important;
    margin-bottom: 12px !important;
    transition: all 0.3s ease !important;
    list-style: none !important;
    min-height: auto !important;
}

.wp-block-latest-comments__comment:last-child {
    margin-bottom: 0 !important;
}

.wp-block-latest-comments__comment:hover {
    background: rgba(255, 255, 255, 0.08) !important;
    border-color: rgba(94, 181, 255, 0.3) !important;
    transform: translateX(5px) !important;
}

.wp-block-latest-comments__comment article {
    margin: 0 !important;
}

.wp-block-latest-comments__comment-meta {
    color: rgba(255, 255, 255, 0.9) !important;
    font-size: 14px !important;
    line-height: 1.5 !important;
    margin: 0 !important;
}

.wp-block-latest-comments__comment-author {
    color: #5eb5ff !important;
    font-weight: 600 !important;
    font-size: 14px !important;
}

.wp-block-latest-comments__comment-link {
    color: #ffffff !important;
    text-decoration: none !important;
    font-weight: 500 !important;
}

.wp-block-latest-comments__comment-link:hover {
    color: #5eb5ff !important;
}

/* "on" text between author and post */
.wp-block-latest-comments__comment-meta {
    color: rgba(255, 255, 255, 0.9) !important;
}

/* Archives Block */
.wp-block-archives-list.wp-block-archives {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
}

.wp-block-archives-list.wp-block-archives li {
    background: rgba(255, 255, 255, 0.05) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    border-radius: 8px !important;
    padding: 15px !important;
    margin-bottom: 12px !important;
    transition: all 0.3s ease !important;
}

.wp-block-archives-list.wp-block-archives li:hover {
    background: rgba(255, 255, 255, 0.08) !important;
    border-color: rgba(94, 181, 255, 0.3) !important;
    transform: translateX(5px) !important;
}

.wp-block-archives-list.wp-block-archives a {
    color: #ffffff !important;
    text-decoration: none !important;
    font-weight: 500 !important;
}

.wp-block-archives-list.wp-block-archives a:hover {
    color: #5eb5ff !important;
}

/* Categories Block */
.wp-block-categories-list.wp-block-categories {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
}

.wp-block-categories-list.wp-block-categories li {
    background: rgba(255, 255, 255, 0.05) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    border-radius: 8px !important;
    padding: 15px !important;
    margin-bottom: 12px !important;
    transition: all 0.3s ease !important;
}

.wp-block-categories-list.wp-block-categories li:hover {
    background: rgba(255, 255, 255, 0.08) !important;
    border-color: rgba(94, 181, 255, 0.3) !important;
    transform: translateX(5px) !important;
}

.wp-block-categories-list.wp-block-categories a {
    color: #ffffff !important;
    text-decoration: none !important;
    font-weight: 500 !important;
}

.wp-block-categories-list.wp-block-categories a:hover {
    color: #5eb5ff !important;
}

/* Block widget groups - Consistent container styling */
.widget_block .wp-block-group {
    margin-bottom: 0 !important;
}

.widget_block .wp-block-group__inner-container {
    padding: 0 !important;
}

/* Search block styling */
.widget_block.widget_search {
    background: rgba(255, 255, 255, 0.08) !important;
    backdrop-filter: blur(12px) !important;
    -webkit-backdrop-filter: blur(12px) !important;
    border: 1px solid rgba(255, 255, 255, 0.12) !important;
    border-radius: 12px !important;
    padding: 25px !important;
    margin-bottom: 30px !important;
}

.wp-block-search__input {
    background: rgba(255, 255, 255, 0.08) !important;
    border: 1px solid rgba(255, 255, 255, 0.15) !important;
    color: rgba(255, 255, 255, 0.95) !important;
}

.wp-block-search__button {
    background: linear-gradient(135deg, #5eb5ff 0%, #4a9fe5 100%) !important;
    color: #ffffff !important;
    border: none !important;
}

/* Recent Comments Widget - Match Recent Posts Styling */

/* Recent Comments widget container */
.widget_recent_comments,
aside .widget_recent_comments {
    background: rgba(255, 255, 255, 0.08) !important;
    backdrop-filter: blur(12px) !important;
    -webkit-backdrop-filter: blur(12px) !important;
    border: 1px solid rgba(255, 255, 255, 0.12) !important;
    border-radius: 12px !important;
    padding: 25px !important;
    margin-bottom: 30px !important;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3) !important;
}

/* Widget title */
.widget_recent_comments .widget-title {
    color: #ffffff !important;
    font-size: 20px !important;
    font-weight: 600 !important;
    margin-bottom: 20px !important;
    padding-bottom: 12px !important;
    border-bottom: 2px solid rgba(255, 255, 255, 0.15) !important;
}

/* Comments list */
.widget_recent_comments ul,
.widget_recent_comments ul li {
    list-style: none !important;
    margin: 0 !important;
    padding: 0 !important;
}

/* Individual comment item */
.widget_recent_comments li {
    background: rgba(255, 255, 255, 0.05) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    border-radius: 8px !important;
    padding: 15px !important;
    margin-bottom: 12px !important;
    transition: all 0.3s ease !important;
}

.widget_recent_comments li:last-child {
    margin-bottom: 0 !important;
}

.widget_recent_comments li:hover {
    background: rgba(255, 255, 255, 0.08) !important;
    border-color: rgba(94, 181, 255, 0.3) !important;
    transform: translateX(5px) !important;
}

/* Comment author/link */
.widget_recent_comments li a {
    color: #ffffff !important;
    text-decoration: none !important;
    font-weight: 500 !important;
    font-size: 14px !important;
    line-height: 1.5 !important;
    display: block !important;
}

.widget_recent_comments li a:hover {
    color: #5eb5ff !important;
}

/* Comment author name in text */
.widget_recent_comments .comment-author-link,
.widget_recent_comments .comment-author-link a {
    color: #5eb5ff !important;
    font-weight: 600 !important;
}

/* "on" text between author and post */
.widget_recent_comments li span {
    color: rgba(255, 255, 255, 0.7) !important;
}

/* Comment excerpt */
.widget_recent_comments .comment-excerpt {
    color: rgba(255, 255, 255, 0.8) !important;
    font-size: 13px !important;
    margin-top: 8px !important;
    line-height: 1.5 !important;
}

/* Avatar in recent comments (if present) */
.widget_recent_comments .avatar {
    border-radius: 50% !important;
    border: 2px solid rgba(255, 255, 255, 0.2) !important;
    margin-right: 10px !important;
    float: left !important;
}

/* Recentcomments class (WordPress default) */
#recentcomments {
    list-style: none !important;
    padding: 0 !important;
}

.recentcomments {
    background: rgba(255, 255, 255, 0.05) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    border-radius: 8px !important;
    padding: 15px !important;
    margin-bottom: 12px !important;
    transition: all 0.3s ease !important;
}

.recentcomments:hover {
    background: rgba(255, 255, 255, 0.08) !important;
    border-color: rgba(94, 181, 255, 0.3) !important;
    transform: translateX(5px) !important;
}

.recentcomments a {
    color: #ffffff !important;
    text-decoration: none !important;
    font-weight: 500 !important;
}

.recentcomments a:hover {
    color: #5eb5ff !important;
}

/* Comment date (if shown) */
.widget_recent_comments .comment-date {
    color: rgba(255, 255, 255, 0.5) !important;
    font-size: 12px !important;
    margin-top: 5px !important;
    display: block !important;
}

/* Empty state */
.widget_recent_comments p {
    color: rgba(255, 255, 255, 0.7) !important;
    font-style: italic !important;
}

/* Updated Professional Header & Footer - Matching Plans Page */

/* Header - Dark navy matching plans page */
.site-header {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%) !important;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.site-header .site-title a,
.site-header .block-logo {
    color: white !important;
}

.site-header .site-description {
    color: rgba(255,255,255,0.7);
}

.site-header .main-navigation a {
    color: rgba(255,255,255,0.9) !important;
    font-weight: 500;
    transition: color 0.3s ease;
}

.site-header .main-navigation a:hover {
    color: #4facfe !important;
}

.site-header .main-navigation .current-menu-item a,
.site-header .main-navigation .current_page_item a {
    color: #4facfe !important;
}

/* Footer - Dark navy matching header and plans */
.site-footer {
    background: linear-gradient(135deg, #0f3460 0%, #1a1a2e 100%) !important;
    color: rgba(255,255,255,0.85);
    padding: 60px 0 30px;
    margin-top: 0;
}

.site-footer h3 {
    color: white !important;
    font-weight: 600;
    margin-bottom: 20px;
}

.site-footer p,
.site-footer li {
    color: rgba(255,255,255,0.7);
}

.site-footer a {
    color: rgba(255,255,255,0.8) !important;
    transition: color 0.3s ease;
}

.site-footer a:hover {
    color: #4facfe !important;
}

.site-footer ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.site-footer li {
    margin: 10px 0;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    margin-top: 40px;
    padding-top: 25px;
    text-align: center;
    color: rgba(255,255,255,0.5);
}

/* Body background for non-plans pages */
body {
    background: #f8f9fa;
}

/* Plans page body override is in the page itself */

/* Hero section buttons */
.hero-section .btn-primary {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    border: 1px solid rgba(79, 172, 254, 0.5);
    color: white;
    box-shadow: 0 4px 15px rgba(79, 172, 254, 0.3);
    transition: all 0.3s ease;
}

.hero-section .btn-primary:hover {
    background: linear-gradient(135deg, #3d9ae8 0%, #00d9e6 100%);
    border-color: rgba(61, 154, 232, 0.6);
    box-shadow: 0 8px 25px rgba(79, 172, 254, 0.5);
    transform: translateY(-2px);
}

/* ========================================================================
   SUPPORT PAGE STYLES - Dark Glassmorphic Design
   ======================================================================== */

/* Support Container */
.support-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 60px 20px;
}

/* Support Methods Grid */
.support-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

/* Individual Support Method Cards */
.support-method {
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.4s ease;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.support-method::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #4facfe 0%, #00f2fe 100%);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.support-method:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(79, 172, 254, 0.3);
    transform: translateY(-8px);
    box-shadow: 0 12px 48px rgba(79, 172, 254, 0.2);
}

.support-method:hover::before {
    transform: scaleX(1);
}

/* Support Icons */
.support-icon {
    font-size: 64px;
    display: block;
    margin-bottom: 25px;
    line-height: 1;
    filter: drop-shadow(0 4px 12px rgba(79, 172, 254, 0.3));
    transition: transform 0.3s ease;
}

.support-method:hover .support-icon {
    transform: scale(1.1);
}

/* Support Method Headings */
.support-method h3 {
    color: white !important;
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

/* Support Method Description */
.support-method p {
    color: rgba(255, 255, 255, 0.8) !important;
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 30px;
}

/* Support Buttons */
.support-button {
    display: inline-block;
    padding: 14px 32px;
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    color: white !important;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    border: 1px solid rgba(79, 172, 254, 0.5);
    box-shadow: 0 4px 15px rgba(79, 172, 254, 0.3);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.support-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #00f2fe 0%, #4facfe 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.support-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(79, 172, 254, 0.5);
    color: white !important;
}

.support-button:hover::before {
    opacity: 1;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .support-container {
        padding: 40px 15px;
    }
    
    .support-methods {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .support-method {
        padding: 35px 25px;
    }
    
    .support-icon {
        font-size: 56px;
        margin-bottom: 20px;
    }
    
    .support-method h3 {
        font-size: 22px;
    }
    
    .support-method p {
        font-size: 15px;
    }
    
    .support-button {
        padding: 12px 28px;
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .support-container {
        padding: 30px 10px;
    }
    
    .support-method {
        padding: 30px 20px;
    }
    
    .support-icon {
        font-size: 48px;
    }
    
    .support-method h3 {
        font-size: 20px;
    }
    
    .support-button {
        width: 100%;
        padding: 14px 20px;
    }
}

/* Page-specific hero section styles are now global - see hero-section above */

/* ========================================================================
   FAQ PAGE STYLES - Dark Glassmorphic Design with Accordion
   ======================================================================== */

/* FAQ Section Container */
.faq-section {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0;
}

/* Individual FAQ Item */
.faq-item {
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 16px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
    overflow: hidden;
}

.faq-item:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(79, 172, 254, 0.3);
    box-shadow: 0 8px 32px rgba(79, 172, 254, 0.15);
}

.faq-item:last-child {
    margin-bottom: 0;
}

/* FAQ Question (Header) */
.faq-question {
    padding: 25px 30px;
    font-size: 20px;
    font-weight: 600;
    color: white !important;
    cursor: pointer;
    position: relative;
    user-select: none;
    transition: all 0.3s ease;
}

.faq-question::before {
    content: '+';
    position: absolute;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 28px;
    font-weight: 300;
    color: #4facfe;
    transition: transform 0.3s ease, color 0.3s ease;
}

.faq-question:hover {
    color: #4facfe !important;
}

.faq-question:hover::before {
    color: #00f2fe;
    transform: translateY(-50%) scale(1.2);
}

/* FAQ Answer (Content) */
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease, opacity 0.3s ease;
    opacity: 0;
    padding: 0 30px;
    color: rgba(255, 255, 255, 0.85) !important;
    font-size: 16px;
    line-height: 1.8;
}

/* Active/Open State */
.faq-item.active .faq-question::before {
    content: '−';
    transform: translateY(-50%) rotate(180deg);
}

.faq-item.active .faq-answer {
    max-height: 500px;
    opacity: 1;
    padding: 0 30px 25px 30px;
}

.faq-item.active {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(79, 172, 254, 0.4);
}

/* Support Hero Section (CTA at bottom) */
.support-hero {
    text-align: center;
    padding: 60px 40px;
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 20px;
    margin-top: 60px;
}

.support-hero h2 {
    color: white !important;
    font-size: 36px !important;
    font-weight: 700;
    margin-bottom: 20px !important;
    letter-spacing: -0.5px;
}

.support-hero p {
    color: rgba(255, 255, 255, 0.8) !important;
    font-size: 18px !important;
    line-height: 1.6;
    margin-bottom: 30px !important;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* FAQ Page Responsive */
@media (max-width: 768px) {
    .faq-section {
        padding: 0 15px;
    }
    
    .faq-item {
        margin-bottom: 15px;
        border-radius: 12px;
    }
    
    .faq-question {
        padding: 20px 50px 20px 20px;
        font-size: 18px;
    }
    
    .faq-question::before {
        right: 20px;
        font-size: 24px;
    }
    
    .faq-answer {
        padding: 0 20px;
        font-size: 15px;
    }
    
    .faq-item.active .faq-answer {
        padding: 0 20px 20px 20px;
    }
    
    .support-hero {
        padding: 40px 25px;
        margin-top: 40px;
    }
    
    .support-hero h2 {
        font-size: 28px !important;
    }
    
    .support-hero p {
        font-size: 16px !important;
    }
}

@media (max-width: 480px) {
    .faq-question {
        padding: 18px 45px 18px 18px;
        font-size: 16px;
    }
    
    .faq-question::before {
        right: 15px;
        font-size: 22px;
    }
    
    .faq-answer {
        padding: 0 18px;
        font-size: 14px;
    }
    
    .faq-item.active .faq-answer {
        padding: 0 18px 18px 18px;
    }
    
    .support-hero {
        padding: 35px 20px;
    }
    
    .support-hero h2 {
        font-size: 24px !important;
    }
    
    .support-hero p {
        font-size: 15px !important;
    }
}

/* FAQ Accordion JavaScript Enhancement */
/* Note: Add this JavaScript to your theme for accordion functionality:
document.addEventListener('DOMContentLoaded', function() {
    const faqItems = document.querySelectorAll('.faq-item');
    faqItems.forEach(item => {
        const question = item.querySelector('.faq-question');
        question.addEventListener('click', () => {
            const isActive = item.classList.contains('active');
            // Optional: Close other items
            faqItems.forEach(otherItem => otherItem.classList.remove('active'));
            // Toggle current item
            if (!isActive) item.classList.add('active');
        });
    });
});
*/

/* ========================================================================
   CONTACT PAGE STYLES - Dark Glassmorphic Design
   ======================================================================== */

/* Contact Methods Grid - Primary Actions */
.contact-methods-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 60px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

/* Contact Method Cards (Clickable) */
.contact-method-card {
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 20px;
    padding: 50px 40px;
    text-align: center;
    text-decoration: none;
    display: block;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.contact-method-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #4facfe 0%, #00f2fe 100%);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.contact-method-card:hover {
    background: rgba(255, 255, 255, 0.09);
    border-color: rgba(79, 172, 254, 0.4);
    transform: translateY(-10px);
    box-shadow: 0 16px 48px rgba(79, 172, 254, 0.25);
}

.contact-method-card:hover::before {
    transform: scaleX(1);
}

/* Method Icon */
.method-icon {
    font-size: 72px;
    margin-bottom: 25px;
    display: block;
    filter: drop-shadow(0 4px 12px rgba(79, 172, 254, 0.3));
    transition: transform 0.3s ease;
}

.contact-method-card:hover .method-icon {
    transform: scale(1.15);
}

/* Contact Method Card Headings */
.contact-method-card h3 {
    color: white !important;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 15px;
    letter-spacing: -0.5px;
}

/* Contact Method Card Text */
.contact-method-card p {
    color: rgba(255, 255, 255, 0.8) !important;
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 25px;
}

/* Method CTA */
.method-cta {
    display: inline-block;
    color: #4facfe !important;
    font-weight: 600;
    font-size: 17px;
    transition: all 0.3s ease;
    position: relative;
}

.method-cta::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #4facfe 0%, #00f2fe 100%);
    transition: width 0.3s ease;
}

.contact-method-card:hover .method-cta {
    color: #00f2fe !important;
}

.contact-method-card:hover .method-cta::after {
    width: 100%;
}

/* Contact Info Grid - Secondary Information */
.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    max-width: 1000px;
    margin: 0 auto;
}

/* Contact Info Cards (Non-clickable) */
.contact-info-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 35px 25px;
    text-align: center;
    transition: all 0.3s ease;
}

.contact-info-card:hover {
    background: rgba(255, 255, 255, 0.07);
    border-color: rgba(79, 172, 254, 0.25);
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

/* Info Icon */
.info-icon {
    font-size: 48px;
    margin-bottom: 20px;
    display: block;
    filter: drop-shadow(0 2px 8px rgba(79, 172, 254, 0.2));
}

/* Contact Info Card Headings */
.contact-info-card h3 {
    color: white !important;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
}

/* Contact Info Card Text */
.contact-info-card p {
    color: rgba(255, 255, 255, 0.85) !important;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 8px;
}

.contact-info-card p a {
    color: #4facfe !important;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info-card p a:hover {
    color: #00f2fe !important;
    text-decoration: underline;
}

/* Contact Info Card Small Text */
.contact-info-card small {
    color: rgba(255, 255, 255, 0.6) !important;
    font-size: 14px;
    display: block;
}

/* Contact Page Responsive */
@media (max-width: 968px) {
    .contact-methods-grid {
        gap: 25px;
    }
    
    .contact-info-grid {
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .contact-methods-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 50px;
    }
    
    .contact-method-card {
        padding: 40px 30px;
    }
    
    .method-icon {
        font-size: 64px;
        margin-bottom: 20px;
    }
    
    .contact-method-card h3 {
        font-size: 24px;
    }
    
    .contact-method-card p {
        font-size: 15px;
    }
    
    .contact-info-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .contact-info-card {
        padding: 30px 25px;
    }
    
    .info-icon {
        font-size: 42px;
    }
    
    .contact-info-card h3 {
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .contact-method-card {
        padding: 35px 25px;
    }
    
    .method-icon {
        font-size: 56px;
    }
    
    .contact-method-card h3 {
        font-size: 22px;
    }
    
    .contact-method-card p {
        font-size: 14px;
        margin-bottom: 20px;
    }
    
    .method-cta {
        font-size: 16px;
    }
    
    .contact-info-card {
        padding: 25px 20px;
    }
    
    .info-icon {
        font-size: 38px;
        margin-bottom: 15px;
    }
    
    .contact-info-card h3 {
        font-size: 17px;
        margin-bottom: 10px;
    }
    
    .contact-info-card p {
        font-size: 15px;
    }
    
    .contact-info-card small {
        font-size: 13px;
    }
}

/* ========================================================================
   PRICING PAGE STYLES - Dark Glassmorphic Design
   ======================================================================== */

/* Features Section */
.features-section {
    max-width: 1400px;
    margin: 0 auto 80px;
    /* padding: 0 20px; */
    text-align: center;
}

.features-section h2 {
    color: white !important;
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.features-section > p {
    color: rgba(255, 255, 255, 0.8) !important;
    font-size: 20px;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto 60px;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-top: 40px;
}

/* Individual Feature Cards */
.feature {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 35px 25px;
    text-align: center;
    transition: all 0.3s ease;
}

.feature:hover {
    background: rgba(255, 255, 255, 0.07);
    border-color: rgba(79, 172, 254, 0.3);
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(79, 172, 254, 0.15);
}

.feature-icon {
    font-size: 48px;
    margin-bottom: 20px;
    display: block;
    filter: drop-shadow(0 2px 8px rgba(79, 172, 254, 0.2));
}

.feature h3 {
    color: white !important;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
}

.feature p {
    color: rgba(255, 255, 255, 0.75) !important;
    font-size: 15px;
    line-height: 1.6;
    margin: 0;
}

/* Plans Grid */
.plans-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
    max-width: 1400px;
    margin: 80px auto;
    /* padding: 0 20px; */
}

/* Plans Grid - 4 Column Override (when inline style applied) */
.plans-grid[style*="repeat(4"] {
    gap: 25px;
}

/* Plan Cards */
.plan-card {
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 24px;
    padding: 30px 10px 10px 10px;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: visible;
}

.plan-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(79, 172, 254, 0.3);
    transform: translateY(-10px);
    box-shadow: 0 16px 48px rgba(79, 172, 254, 0.2);
}

/* Featured Plan */
.plan-card.featured {
    background: rgba(79, 172, 254, 0.1);
    border: 2px solid rgba(79, 172, 254, 0.4);
    transform: scale(1);
    box-shadow: 0 12px 40px rgba(79, 172, 254, 0.25);
    margin-top: 0;
}

.plan-card.featured:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(79, 172, 254, 0.35);
}

/* Plan Badge (Most Popular) */
.plan-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    color: white;
    padding: 8px 24px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(79, 172, 254, 0.4);
}

/* Free Trial Text with Shooting Star Effect */
.plan-free-trial {
    color: #00f2fe;
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 5px;
    position: relative;
    display: inline-block;
    overflow: hidden;
    background: linear-gradient(90deg, #00f2fe 0%, #00f2fe 40%, #fff 50%, #00f2fe 60%, #00f2fe 100%);
    background-size: 200% 100%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shimmer 3s infinite, glow 3s infinite;
    text-shadow: 0 0 10px rgba(0, 242, 254, 0.5);
}

@keyframes shimmer {
    0% {
        background-position: 100% 0;
    }
    100% {
        background-position: -100% 0;
    }
}

@keyframes glow {
    0%, 100% {
        filter: drop-shadow(0 0 5px rgba(0, 242, 254, 0.3));
    }
    25% {
        filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.8)) drop-shadow(0 0 40px rgba(0, 242, 254, 0.6));
    }
    50% {
        filter: drop-shadow(0 0 5px rgba(0, 242, 254, 0.3));
    }
}

/* Plan Icon */
.plan-icon {
    font-size: 64px;
    margin-bottom: 25px;
    display: block;
    filter: drop-shadow(0 4px 12px rgba(79, 172, 254, 0.3));
}

/* Plan Name */
.plan-name {
    color: white !important;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 15px;
    letter-spacing: -0.5px;
}

/* Plan Description */
.plan-description {
    color: rgba(255, 255, 255, 0.75) !important;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 30px;
}

/* Plan Price */
.plan-price {
    margin-bottom: 35px;
}

.plan-price-amount {
    display: block;
    font-size: 34px;
    font-weight: 800;
    color: white;
    line-height: 1;
    margin-bottom: 8px;
}

.plan-price-currency {
    font-size: 27px;
    vertical-align: super;
    opacity: 0.8;
}

.plan-price-period {
    color: rgba(255, 255, 255, 0.6);
    font-size: 24px;
    font-weight: 500;
}

/* Plan Features List */
.plan-features {
    list-style: none;
    padding: 0;
    margin: 0 0 35px 0;
    text-align: left;
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
}

.plan-features li {
    color: rgba(255, 255, 255, 0.85) !important;
    font-size: 16px;
    line-height: 1.8;
    padding: 12px 0;
    padding-left: 0;
    position: relative;
    border-bottom: none;
    display: flex;
    align-items: center;
    gap: 8px;
}

.feature-icon-sm {
    font-size: 16px;
    flex-shrink: 0;
    margin-bottom: 3px;
}

.plan-features li:last-child {
    border-bottom: none;
}

/* Checkmark removed - using inline emoji icons instead */

.plan-features li strong {
    color: white !important;
    font-weight: 700;
}

/* Plan Button */
.plan-button {
    display: inline-block;
    width: 100%;
    padding: 16px 32px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    color: white !important;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 17px;
    transition: all 0.3s ease;
}

.plan-button:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.plan-button.primary {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    border: 2px solid rgba(79, 172, 254, 0.5);
    box-shadow: 0 4px 15px rgba(79, 172, 254, 0.3);
}

.plan-button.primary:hover {
    background: linear-gradient(135deg, #3d9ae8 0%, #00d9e6 100%);
    border-color: rgba(61, 154, 232, 0.6);
    box-shadow: 0 8px 25px rgba(79, 172, 254, 0.5);
}

/* CTA Section */
.cta-section {
    max-width: 900px;
    margin: 100px auto 80px;
    padding: 60px 40px;
    text-align: center;
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 24px;
}

.cta-section h2 {
    color: white !important;
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.cta-section p {
    color: rgba(255, 255, 255, 0.8) !important;
    font-size: 20px;
    line-height: 1.6;
    margin-bottom: 35px;
}

.cta-button {
    display: inline-block;
    padding: 18px 48px;
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    color: white !important;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 700;
    font-size: 18px;
    transition: all 0.3s ease;
    border: 2px solid rgba(79, 172, 254, 0.5);
    box-shadow: 0 6px 20px rgba(79, 172, 254, 0.35);
}

.cta-button:hover {
    background: linear-gradient(135deg, #3d9ae8 0%, #00d9e6 100%);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(79, 172, 254, 0.5);
}

/* Pricing Page Responsive */
@media (max-width: 1200px) {
    .features-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
    
    .plans-grid {
        gap: 30px;
    }
}

@media (max-width: 968px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .plans-grid {
        grid-template-columns: 1fr !important;
    }
    
    .plan-card.featured {
        transform: none;
        grid-column: span 1;
    }
    
    .plan-card.featured:hover {
        transform: translateY(-10px);
    }
    
    /* 2 columns for features when cards are stacked */
    .plan-features {
        grid-template-columns: repeat(2, 1fr);
        gap: 5px 20px;
    }
}

@media (max-width: 768px) {
    .features-section h2 {
        font-size: 36px;
    }
    
    .features-section > p {
        font-size: 18px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .feature {
        padding: 30px 20px;
    }
    
    .plans-grid {
        grid-template-columns: 1fr !important;
        gap: 25px;
        margin: 60px auto;
    }
    
    .plan-card {
        padding: 40px 30px;
    }
    
    .plan-card.featured {
        grid-column: span 1;
    }
    
    .plan-name {
        font-size: 28px;
    }
    
    .plan-price-amount {
        font-size: 34px;
    }
    
    .cta-section {
        margin: 80px auto 60px;
        padding: 50px 30px;
    }
    
    .cta-section h2 {
        font-size: 32px;
    }
    
    .cta-section p {
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .features-section h2 {
        font-size: 28px;
    }
    
    .features-section > p {
        font-size: 16px;
        margin-bottom: 40px;
    }
    
    .feature {
        padding: 25px 18px;
    }
    
    .feature-icon {
        font-size: 42px;
        margin-bottom: 15px;
    }
    
    .feature h3 {
        font-size: 18px;
    }
    
    .feature p {
        font-size: 14px;
    }
    
    .plans-grid {
        margin: 50px auto;
    }
    
    .plan-card {
        padding: 35px 25px;
    }
    
    /* Back to 1 column for features on very small screens */
    .plan-features {
        grid-template-columns: 1fr;
    }
    
    .plan-icon {
        font-size: 56px;
        margin-bottom: 20px;
    }
    
    .plan-name {
        font-size: 26px;
    }
    
    .plan-description {
        font-size: 15px;
    }
    
    .plan-price-amount {
        font-size: 34px;
    }
    
    .plan-price-currency {
        font-size: 27px;
    }
    
    .plan-features li {
        font-size: 15px;
        padding: 10px 0;
    }
    
    .plan-button {
        padding: 14px 28px;
        font-size: 16px;
    }
    
    .cta-section {
        margin: 60px auto 50px;
        padding: 40px 25px;
    }
    
    .cta-section h2 {
        font-size: 26px;
    }
    
    .cta-section p {
        font-size: 16px;
        margin-bottom: 30px;
    }
    
    .cta-button {
        padding: 16px 40px;
        font-size: 17px;
    }
}

/* ========================================================================
   CONTACT FORM STYLES - Dark Glassmorphic Design
   ======================================================================== */

/* Contact Form Section */
.contact-form-section {
    max-width: 700px;
    margin: 0 auto;
    padding: 0;
}

/* Contact Form Container */
.contact-form {
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 24px;
    padding: 50px 45px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

/* Form Group */
.form-group {
    margin-bottom: 25px;
}

.form-group:last-of-type {
    margin-bottom: 0;
    margin-top: 35px;
}

/* Form Labels */
.contact-form label {
    display: block;
    color: rgba(255, 255, 255, 0.9) !important;
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 10px;
    letter-spacing: 0.3px;
}

/* Form Inputs & Textarea */
.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="tel"],
.contact-form textarea {
    width: 100%;
    padding: 14px 18px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    color: white !important;
    font-size: 16px;
    font-family: inherit;
    transition: all 0.3s ease;
    outline: none;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

/* Input Focus State */
.contact-form input[type="text"]:focus,
.contact-form input[type="email"]:focus,
.contact-form input[type="tel"]:focus,
.contact-form textarea:focus {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(79, 172, 254, 0.5);
    box-shadow: 0 0 0 3px rgba(79, 172, 254, 0.15);
}

/* Textarea */
.contact-form textarea {
    resize: vertical;
    min-height: 140px;
    line-height: 1.6;
}

/* Submit Button */
.contact-submit-btn {
    width: 100%;
    padding: 16px 32px;
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    border: 2px solid rgba(79, 172, 254, 0.5);
    border-radius: 12px;
    color: white !important;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    box-shadow: 0 6px 20px rgba(79, 172, 254, 0.35);
}

.contact-submit-btn:hover {
    background: linear-gradient(135deg, #3d9ae8 0%, #00d9e6 100%);
    border-color: rgba(61, 154, 232, 0.6);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(79, 172, 254, 0.5);
}

.contact-submit-btn:active {
    transform: translateY(0);
    box-shadow: 0 4px 15px rgba(79, 172, 254, 0.3);
}

/* Button Text & Icon */
.btn-text {
    font-size: 18px;
}

.btn-icon {
    font-size: 22px;
    line-height: 1;
}

/* Form Status Messages */
.form-status {
    margin-top: 20px;
    padding: 16px 20px;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 600;
    text-align: center;
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Success Message */
.status-success {
    background: rgba(16, 185, 129, 0.15);
    border: 1px solid rgba(16, 185, 129, 0.3);
    color: #10b981 !important;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

/* Error Message */
.status-error {
    background: rgba(239, 68, 68, 0.15);
    border: 1px solid rgba(239, 68, 68, 0.3);
    color: #ef4444 !important;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

/* Contact Form Responsive */
@media (max-width: 768px) {
    .contact-form {
        padding: 40px 35px;
    }
    
    .contact-form label {
        font-size: 14px;
    }
    
    .contact-form input[type="text"],
    .contact-form input[type="email"],
    .contact-form input[type="tel"],
    .contact-form textarea {
        padding: 13px 16px;
        font-size: 15px;
    }
    
    .contact-submit-btn {
        padding: 15px 28px;
        font-size: 17px;
    }
    
    .btn-text {
        font-size: 17px;
    }
    
    .btn-icon {
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    .contact-form {
        padding: 35px 25px;
    }
    
    .form-group {
        margin-bottom: 20px;
    }
    
    .form-group:last-of-type {
        margin-top: 30px;
    }
    
    .contact-form label {
        font-size: 14px;
        margin-bottom: 8px;
    }
    
    .contact-form input[type="text"],
    .contact-form input[type="email"],
    .contact-form input[type="tel"],
    .contact-form textarea {
        padding: 12px 15px;
        font-size: 15px;
        border-radius: 10px;
    }
    
    .contact-form textarea {
        min-height: 120px;
    }
    
    .contact-submit-btn {
        padding: 14px 24px;
        font-size: 16px;
        gap: 10px;
    }
    
    .btn-text {
        font-size: 16px;
    }
    
    .btn-icon {
        font-size: 19px;
    }
    
    .form-status {
        padding: 14px 18px;
        font-size: 14px;
    }
}

/* Enhanced Input Styling - Browser Autofill */
.contact-form input:-webkit-autofill,
.contact-form input:-webkit-autofill:hover,
.contact-form input:-webkit-autofill:focus,
.contact-form textarea:-webkit-autofill,
.contact-form textarea:-webkit-autofill:hover,
.contact-form textarea:-webkit-autofill:focus {
    -webkit-text-fill-color: white;
    -webkit-box-shadow: 0 0 0px 1000px rgba(255, 255, 255, 0.08) inset;
    transition: background-color 5000s ease-in-out 0s;
}

/* Input Validation States */
.contact-form input:invalid:not(:placeholder-shown),
.contact-form textarea:invalid:not(:placeholder-shown) {
    border-color: rgba(239, 68, 68, 0.5);
}

.contact-form input:valid:not(:placeholder-shown),
.contact-form textarea:valid:not(:placeholder-shown) {
    border-color: rgba(16, 185, 129, 0.5);
}

/* Loading State for Button */
.contact-submit-btn.loading {
    opacity: 0.7;
    cursor: not-allowed;
    pointer-events: none;
}

.contact-submit-btn.loading::after {
    content: '';
    display: inline-block;
    width: 16px;
    height: 16px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top-color: white;
    border-radius: 50%;
    animation: spin 0.6s linear infinite;
}

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

/* ========================================================================
   HOMEPAGE STYLES - Dark Glassmorphic Design
   ======================================================================== */

/* Features Section - Homepage */
.features-section-home {
    padding: 80px 0;
    background: transparent;
}

/* Features Header */
.features-header {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 60px;
}

.features-title {
    color: white !important;
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.features-description {
    color: rgba(255, 255, 255, 0.8) !important;
    font-size: 20px;
    line-height: 1.6;
}

/* Features Grid - Homepage */
.features-section-home .features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

/* Feature Cards - Homepage */
.feature-card {
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.feature-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(79, 172, 254, 0.3);
    transform: translateY(-8px);
    box-shadow: 0 12px 48px rgba(79, 172, 254, 0.2);
}

.feature-card .feature-icon {
    font-size: 56px;
    margin-bottom: 20px;
    display: block;
    filter: drop-shadow(0 4px 12px rgba(79, 172, 254, 0.3));
    transition: transform 0.3s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1);
}

.feature-card h3 {
    color: white !important;
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 15px;
}

.feature-card p {
    color: rgba(255, 255, 255, 0.75) !important;
    font-size: 15px;
    line-height: 1.6;
    margin: 0;
}

/* Hero CTA Section */
.hero-cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(79, 172, 254, 0.05) 0%, rgba(0, 242, 254, 0.05) 100%);
    position: relative;
}

.hero-cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(79, 172, 254, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.hero-cta-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.hero-cta-section .hero-title {
    color: white !important;
    font-size: 52px;
    font-weight: 700;
    margin-bottom: 25px;
    letter-spacing: -1px;
}

.hero-cta-section .hero-description {
    color: rgba(255, 255, 255, 0.85) !important;
    font-size: 22px;
    line-height: 1.6;
    margin-bottom: 40px;
}

/* CTA Buttons */
.hero-cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    display: inline-block;
    padding: 16px 40px;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 12px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.btn-primary {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    color: white !important;
    border-color: rgba(79, 172, 254, 0.5);
    box-shadow: 0 6px 20px rgba(79, 172, 254, 0.35);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #3d9ae8 0%, #00d9e6 100%);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(79, 172, 254, 0.5);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white !important;
    border-color: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

/* Homepage Responsive */
@media (max-width: 1200px) {
    .features-section-home .features-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 25px;
    }
}

@media (max-width: 968px) {
    .features-section-home .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .features-section-home {
        padding: 60px 0;
    }
    
    .hero-cta-section {
        padding: 80px 0;
    }
}

@media (max-width: 768px) {
    .features-title {
        font-size: 38px;
    }
    
    .features-description {
        font-size: 18px;
    }
    
    .features-section-home .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .feature-card {
        padding: 35px 25px;
    }
    
    .feature-card .feature-icon {
        font-size: 48px;
    }
    
    .feature-card h3 {
        font-size: 20px;
    }
    
    .feature-card p {
        font-size: 14px;
    }
    
    .hero-cta-section {
        padding: 60px 0;
    }
    
    .hero-cta-section .hero-title {
        font-size: 40px;
        line-height: 1.4;
    }
    
    .hero-cta-section .hero-description {
        font-size: 18px;
    }
    
    .hero-cta-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .btn {
        width: 100%;
        padding: 14px 32px;
    }
}

@media (max-width: 480px) {
    .features-section-home {
        padding: 50px 0;
    }
    
    .features-header {
        margin-bottom: 40px;
    }
    
    .features-title {
        font-size: 32px;
    }
    
    .features-description {
        font-size: 16px;
    }
    
    .feature-card {
        padding: 30px 20px;
    }
    
    .feature-card .feature-icon {
        font-size: 44px;
        margin-bottom: 15px;
    }
    
    .feature-card h3 {
        font-size: 18px;
        margin-bottom: 12px;
    }
    
    .hero-cta-section {
        padding: 50px 0;
    }
    
    .hero-cta-section .hero-title {
        font-size: 32px;
        margin-bottom: 20px;
        line-height: 1.4;
    }
    
    .hero-cta-section .hero-description {
        font-size: 16px;
        margin-bottom: 35px;
    }
    
    .btn {
        padding: 13px 28px;
        font-size: 16px;
    }
}

/* ========================================================================
   404 ERROR PAGE STYLES - Dark Glassmorphic Design
   ======================================================================== */

/* 404 Section */
.error-404 {
    padding: 80px 0;
    text-align: center;
}

.error-404-content {
    max-width: 1200px;
    margin: 0 auto;
}

/* 404 Visual (Number + Emoji) */
.error-404-visual {
    margin-bottom: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.error-404-number {
    font-size: 120px;
    font-weight: 900;
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    text-shadow: 0 8px 32px rgba(79, 172, 254, 0.3);
}

.error-404-emoji {
    font-size: 80px;
    animation: float 3s ease-in-out infinite;
    filter: drop-shadow(0 4px 12px rgba(79, 172, 254, 0.3));
}

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

/* 404 Header */
.error-404-header {
    margin-bottom: 50px;
}

.error-404-title {
    color: white !important;
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.error-404-description {
    color: rgba(255, 255, 255, 0.8) !important;
    font-size: 20px;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

/* 404 Search */
.error-404-search {
    max-width: 750px;
    margin: 0 auto 80px;
    /* padding: 0 20px; */
}

.error-404-search .search-title {
    display: none;
}

.error-404-search .search-form {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 16px;
    padding: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.error-404-search .search-form:focus-within {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(79, 172, 254, 0.4);
    box-shadow: 0 8px 32px rgba(79, 172, 254, 0.2);
}

.error-404-search .search-form label {
    flex: 1;
    margin: 0;
    display: flex;
}

.error-404-search .search-form input[type="search"],
.error-404-search .search-form .search-field {
    flex: 1;
    width: 100%;
    padding: 16px 24px;
    background: transparent;
    border: none;
    border-radius: 12px;
    color: white !important;
    font-size: 17px;
    outline: none;
    transition: all 0.3s ease;
}

.error-404-search .search-form input[type="search"]:focus,
.error-404-search .search-form .search-field:focus {
    background: rgba(255, 255, 255, 0.03);
}

.error-404-search .search-form input[type="search"]::placeholder,
.error-404-search .search-form .search-field::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.error-404-search .search-form button,
.error-404-search .search-form input[type="submit"],
.error-404-search .search-form .search-submit {
    padding: 16px 40px;
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    border: none;
    border-radius: 12px;
    color: white !important;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(79, 172, 254, 0.4);
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.error-404-search .search-form button:hover,
.error-404-search .search-form input[type="submit"]:hover,
.error-404-search .search-form .search-submit:hover {
    background: linear-gradient(135deg, #3d9ae8 0%, #00d9e6 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(79, 172, 254, 0.6);
}

.error-404-search .search-form button svg,
.error-404-search .search-form .search-submit svg {
    flex-shrink: 0;
}

/* 404 Suggestions */
.error-404-suggestions {
    margin-bottom: 60px;
}

.suggestion-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.suggestion-card {
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.suggestion-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(79, 172, 254, 0.3);
    transform: translateY(-8px);
    box-shadow: 0 12px 48px rgba(79, 172, 254, 0.2);
}

.suggestion-icon {
    font-size: 48px;
    display: block;
    margin-bottom: 20px;
    filter: drop-shadow(0 2px 8px rgba(79, 172, 254, 0.3));
}

.suggestion-card h3 {
    color: white !important;
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 12px;
}

.suggestion-card p {
    color: rgba(255, 255, 255, 0.75) !important;
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 20px;
}

/* Recent Posts List */
.recent-posts-list {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.recent-posts-list li {
    margin-bottom: 12px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.recent-posts-list li:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.recent-posts-list a {
    color: rgba(255, 255, 255, 0.85) !important;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s ease;
}

.recent-posts-list a:hover {
    color: #4facfe !important;
}

/* Categories List */
.categories-list {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.categories-list li {
    margin-bottom: 12px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.categories-list li:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.categories-list a {
    color: rgba(255, 255, 255, 0.85) !important;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s ease;
}

.categories-list a:hover {
    color: #4facfe !important;
}

/* Tag Cloud */
.tag-cloud-widget {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tag-link {
    display: inline-block;
    padding: 6px 14px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    color: rgba(255, 255, 255, 0.8) !important;
    text-decoration: none;
    font-size: 13px;
    transition: all 0.3s ease;
}

.tag-link:hover {
    background: rgba(79, 172, 254, 0.2);
    border-color: rgba(79, 172, 254, 0.4);
    color: #4facfe !important;
}

/* 404 Help Text */
.error-404-help {
    margin-top: 60px;
    padding: 25px 30px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.error-404-help p {
    color: rgba(255, 255, 255, 0.75) !important;
    font-size: 16px;
    margin: 0;
}

.error-404-help a {
    color: #4facfe !important;
    text-decoration: underline;
    font-weight: 600;
}

.error-404-help a:hover {
    color: #00f2fe !important;
}

/* 404 Page Responsive */
@media (max-width: 768px) {
    .error-404 {
        padding: 60px 0;
    }
    
    .error-404-number {
        font-size: 100px;
    }
    
    .error-404-emoji {
        font-size: 60px;
    }
    
    .error-404-title {
        font-size: 38px;
    }
    
    .error-404-description {
        font-size: 18px;
    }
    
    .error-404-search {
        margin-bottom: 60px;
        max-width: 95%;
    }
    
    .error-404-search .search-form {
        flex-direction: column;
        gap: 10px;
        padding: 12px;
    }
    
    .error-404-search .search-form label {
        width: 100%;
    }
    
    .error-404-search .search-form input[type="search"],
    .error-404-search .search-form .search-field {
        padding: 14px 20px;
        font-size: 16px;
        text-align: center;
    }
    
    .error-404-search .search-form button,
    .error-404-search .search-form input[type="submit"],
    .error-404-search .search-form .search-submit {
        width: 100%;
        padding: 16px 32px;
        font-size: 17px;
    }
    
    .suggestion-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .suggestion-card {
        padding: 35px 25px;
    }
}

@media (max-width: 480px) {
    .error-404 {
        padding: 50px 0;
    }
    
    .error-404-visual {
        flex-direction: column;
        gap: 10px;
        margin-bottom: 30px;
    }
    
    .error-404-number {
        font-size: 80px;
    }
    
    .error-404-emoji {
        font-size: 50px;
    }
    
    .error-404-header {
        margin-bottom: 50px;
    }
    
    .error-404-title {
        font-size: 32px;
    }
    
    .error-404-description {
        font-size: 16px;
    }
    
    .error-404-search {
        margin-bottom: 50px;
    }
    
    .suggestion-card {
        padding: 30px 20px;
    }
    
    .suggestion-icon {
        font-size: 42px;
        margin-bottom: 15px;
    }
    
    .suggestion-card h3 {
        font-size: 20px;
    }
    
    .error-404-help {
        margin-top: 50px;
        padding: 20px 25px;
    }
    
    .error-404-help p {
        font-size: 15px;
    }
}
