/*
Theme Name: AgenWebsite Theme
Theme URI: https://agenwebsite.com
Author: AgenWebsite
Author URI: https://agenwebsite.com
Description: A modern WordPress theme for AgenWebsite - E-commerce solutions provider for the Indonesian market. Features full Elementor support with custom widgets for showcasing WooCommerce plugins including shipping calculators, payment gateways, and WhatsApp notifications.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: agenwebsite
Tags: e-commerce, woocommerce, elementor, responsive, custom-widgets, business
*/

/* ==========================================================================
   Global Styles
   ========================================================================== */

:root {
    --primary-color: #ff6600;
    --secondary-color: #015C80;
    --dark-blue: #0a1628;
    --light-gray: #f8f9fa;
    --text-dark: #212529;
    --text-muted: #6c757d;
    --border-radius: 8px;
    --transition: all 0.3s ease;
}

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

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

h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.min-vh-75 {
    min-height: 75vh;
}

/* ==========================================================================
   Top Banner
   ========================================================================== */

.top-banner {
    background: #ff1493;
    color: white;
    padding: 12px 0;
    font-size: 14px;
    font-weight: 500;
}

.btn-banner {
    background-color: white;
    color: var(--text-dark);
    padding: 4px 16px;
    border-radius: 4px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
}

.btn-banner:hover {
    background-color: #f8f9fa;
    color: var(--text-dark);
    transform: translateY(-1px);
}

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

.main-navigation {
    background-color: white;
    padding: 16px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
    transition: var(--transition);
}

.main-navigation.navbar-scrolled {
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    text-decoration: none;
    display: flex;
    align-items: center;
}

.logo-wrapper {
    display: flex;
    align-items: center;
    font-size: 20px;
    font-weight: 700;
}

.logo-icon {
    color: var(--primary-color);
    margin-right: 8px;
    font-size: 24px;
}

.logo-text {
    color: var(--text-dark);
}

.logo-light {
    font-weight: 300;
}

/* Navigation Menu */
.nav-menu {
    display: flex;
    align-items: center;
    gap: 20px;
}

.nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 5px;
}

.nav-item {
    position: relative;
}

.nav-link {
    display: inline-flex;
    align-items: center;
    padding: 8px 16px;
    color: var(--text-dark);
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: var(--transition);
    white-space: nowrap;
}

.nav-link:hover {
    color: var(--primary-color);
}

.nav-link i {
    margin-left: 5px;
    font-size: 10px;
    transition: transform 0.3s ease;
}

/* Dropdown Menus */
.has-dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 200px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    padding: 8px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    margin-top: 10px;
    z-index: 1000;
    display: block;
}

.dropdown-menu::before {
    content: '';
    position: absolute;
    top: -6px;
    left: 20px;
    width: 12px;
    height: 12px;
    background: white;
    transform: rotate(45deg);
    box-shadow: -2px -2px 5px rgba(0,0,0,0.05);
}

.has-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.has-dropdown:hover .nav-link i {
    transform: rotate(180deg);
}

.dropdown-item {
    display: block;
    padding: 10px 20px;
    color: var(--text-dark);
    text-decoration: none;
    font-size: 14px;
    font-weight: 400;
    transition: var(--transition);
}

.dropdown-item:hover {
    background-color: var(--light-gray);
    color: var(--primary-color);
}

/* Search Button */
.search-btn {
    background: none;
    border: none;
    color: var(--text-dark);
    font-size: 18px;
    padding: 8px 12px;
    cursor: pointer;
    transition: var(--transition);
}

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

/* Get Started Button */
.btn-get-started {
    background-color: var(--primary-color);
    color: white;
    padding: 10px 24px;
    border: none;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    display: inline-block;
}

.btn-get-started:hover {
    background-color: #e55a00;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 102, 0, 0.3);
}

/* User Account Dropdown */
.user-account-dropdown {
    position: relative;
    display: inline-block;
}

.btn-myaccount {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 12px;
    background-color: var(--light-gray);
    border: 2px solid transparent;
    border-radius: 50px;
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
}

.btn-myaccount:hover {
    background-color: #e9ecef;
    border-color: var(--primary-color);
}

.btn-myaccount .user-avatar {
    border-radius: 50%;
    display: block;
    width: 24px;
    height: 24px;
}

.btn-myaccount i {
    color: var(--text-dark);
    font-size: 12px;
    transition: transform 0.3s ease;
}

.user-account-dropdown:hover .btn-myaccount i {
    transform: rotate(180deg);
}

.user-dropdown-menu {
    position: absolute;
    top: 100%;
    right: 0;
    min-width: 220px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    padding: 8px 0;
    margin-top: 10px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 1000;
    list-style: none;
}

.user-dropdown-menu::before {
    content: '';
    position: absolute;
    top: -6px;
    right: 20px;
    width: 12px;
    height: 12px;
    background: white;
    transform: rotate(45deg);
    box-shadow: -2px -2px 5px rgba(0,0,0,0.05);
}

.user-account-dropdown:hover .user-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.user-menu-item {
    list-style: none;
}

.user-menu-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    color: var(--text-dark);
    text-decoration: none;
    font-size: 14px;
    font-weight: 400;
    transition: var(--transition);
}

.user-menu-link:hover {
    background-color: var(--light-gray);
    color: var(--primary-color);
}

.user-menu-link i {
    width: 16px;
    font-size: 14px;
    color: var(--text-muted);
    transition: var(--transition);
}

.user-menu-link:hover i {
    color: var(--primary-color);
}

/* Divider for dropdown menu */
.user-menu-item hr,
.user-menu-item .dropdown-divider {
    margin: 8px 0;
    border: 0;
    border-top: 1px solid #e9ecef;
}

/* Mobile Toggle */
.mobile-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 28px;
    height: 20px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
}

.mobile-toggle span {
    display: block;
    width: 100%;
    height: 3px;
    background-color: var(--text-dark);
    transition: var(--transition);
    border-radius: 2px;
}

/* Prevent body scroll when mobile menu is open */
body.menu-open {
    overflow: hidden;
}

/* ==========================================================================
   Search Modal
   ========================================================================== */

.search-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 9999;
    animation: fadeIn 0.3s ease;
}

.search-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        backdrop-filter: blur(0px);
    }
    to {
        opacity: 1;
        backdrop-filter: blur(20px);
    }
}

.search-modal-content {
    width: 100%;
    max-width: 800px;
    padding: 20px;
    position: relative;
    background: white;
    border-radius: 20px;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.15);
}

.search-close {
    position: absolute;
    top: -50px;
    right: 20px;
    background: white;
    border: none;
    color: var(--text-dark);
    font-size: 24px;
    cursor: pointer;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.search-close:hover {
    background: var(--primary-color);
    color: white;
    transform: rotate(90deg);
}

.search-container {
    padding: 30px 20px;
}

.search-input-wrapper {
    position: relative;
    margin-bottom: 30px;
}

.search-icon {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
    font-size: 24px;
    pointer-events: none;
}

.search-input {
    width: 100%;
    padding: 20px 60px;
    font-size: 24px;
    border: none;
    border-bottom: 2px solid #e9ecef;
    background: transparent;
    color: var(--text-dark);
    outline: none;
    transition: border-color 0.3s ease;
}

.search-input::placeholder {
    color: #adb5bd;
}

.search-input:focus {
    border-bottom-color: var(--primary-color);
}

.search-spinner {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--primary-color);
    font-size: 24px;
    display: none;
}

.search-spinner.active {
    display: block;
}

.search-results {
    max-height: 400px;
    overflow-y: auto;
    padding: 20px 0;
}

.search-results::-webkit-scrollbar {
    width: 8px;
}

.search-results::-webkit-scrollbar-track {
    background: #f1f3f5;
    border-radius: 4px;
}

.search-results::-webkit-scrollbar-thumb {
    background: #dee2e6;
    border-radius: 4px;
}

.search-results::-webkit-scrollbar-thumb:hover {
    background: #adb5bd;
}

.search-result-item {
    display: block;
    padding: 15px 20px;
    margin-bottom: 10px;
    background: #f8f9fa;
    border-radius: 8px;
    color: var(--text-dark);
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
}

.search-result-item:hover {
    background: white;
    border-color: var(--primary-color);
    transform: translateX(5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.search-result-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 5px;
    color: var(--text-dark);
}

.search-result-description {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.5;
}

.search-result-category {
    display: inline-block;
    font-size: 12px;
    color: var(--primary-color);
    background: rgba(255, 102, 0, 0.1);
    padding: 2px 8px;
    border-radius: 4px;
    margin-top: 5px;
}

.search-no-results {
    text-align: center;
    color: var(--text-muted);
    font-size: 18px;
    padding: 40px 20px;
}

.search-initial-message {
    text-align: center;
    color: var(--text-muted);
    font-size: 16px;
    padding: 20px;
}

/* Mobile responsive for search modal */
@media (max-width: 768px) {
    .search-modal-content {
        margin: 20px;
        border-radius: 15px;
    }

    .search-close {
        top: -40px;
        right: 10px;
        width: 36px;
        height: 36px;
        font-size: 20px;
    }

    .search-input {
        font-size: 18px;
        padding: 15px 50px;
    }

    .search-icon {
        font-size: 20px;
        left: 15px;
    }

    .search-result-title {
        font-size: 16px;
    }

    .search-result-description {
        font-size: 13px;
    }
}

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

.hero-section {
    padding: 80px 0;
    background: #f8f9fa;
    position: relative;
    overflow: hidden;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.1;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
}

.hero-description {
    font-size: 1.125rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.hero-buttons .btn-primary {
    background-color: var(--primary-color);
    border: none;
    padding: 12px 32px;
    font-weight: 600;
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.hero-buttons .btn-primary:hover {
    background-color: #152944;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(30, 58, 95, 0.3);
}

.hero-buttons .btn-link {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 600;
}

.hero-buttons .btn-link:hover {
    color: var(--primary-color);
}

.hero-image-wrapper {
    position: relative;
    z-index: 2;
}

.hero-image {
    border-radius: 12px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
    transform: perspective(1000px) rotateY(-5deg);
}

/* Hero decorative shapes */
.hero-shape-1 {
    position: absolute;
    top: 20%;
    right: -100px;
    width: 400px;
    height: 400px;
    background: var(--primary-color);
    border-radius: 50%;
    opacity: 0.1;
    z-index: 0;
}

.hero-shape-2 {
    position: absolute;
    bottom: -150px;
    left: -100px;
    width: 300px;
    height: 300px;
    background: var(--secondary-color);
    border-radius: 50%;
    opacity: 0.08;
    z-index: 0;
}

/* ==========================================================================
   Trusted Brands
   ========================================================================== */

.trusted-brands {
    padding: 60px 0;
    background-color: #fafbfc;
}

.brand-logo {
    opacity: 0.6;
    transition: var(--transition);
    max-width: 120px;
    height: auto;
}

.brand-logo:hover {
    opacity: 1;
}

/* ==========================================================================
   Features Section
   ========================================================================== */

.features-section {
    padding: 100px 0;
    background: white;
}

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

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 3rem;
}

.feature-card {
    background: white;
    border: 1px solid #e9ecef;
    border-radius: 12px;
    padding: 32px;
    height: 100%;
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border-color: var(--primary-color);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: #f8f9fa;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 24px;
    color: var(--primary-color);
}

.feature-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.feature-description {
    color: var(--text-muted);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* ==========================================================================
   CTA Section
   ========================================================================== */

.cta-section {
    padding: 80px 0;
    background: white;
}

.cta-title {
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.cta-subtitle {
    font-size: 1.05rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
}

/* ==========================================================================
   Video Section
   ========================================================================== */

.video-section {
    padding: 60px 0;
    background: white;
}

.video-wrapper {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: white;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--primary-color);
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
}

.play-button:hover {
    transform: translate(-50%, -50%) scale(1.1);
    box-shadow: 0 8px 30px rgba(0,0,0,0.3);
}

/* ==========================================================================
   Advanced Features
   ========================================================================== */

.advanced-features {
    padding: 100px 0;
    background: white;
}

.feature-heading {
    font-size: 2rem;
    font-weight: 700;
    color: var(--secondary-color);
}

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

.feature-list li {
    padding: 10px 0;
    color: var(--text-muted);
}

.feature-list li i {
    color: #28a745;
    margin-right: 10px;
}

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

.site-footer {
    background: var(--dark-blue);
    color: white;
    padding: 60px 0 20px;
}

.footer-logo {
    display: flex;
    align-items: center;
    font-size: 18px;
    font-weight: 700;
}

.footer-logo .logo-icon {
    color: var(--primary-color);
    margin-right: 8px;
}

.footer-logo .logo-text {
    color: white;
}

.footer-description {
    color: #a0a9b8;
    font-size: 14px;
    line-height: 1.6;
}

.footer-heading {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: white;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #a0a9b8;
    text-decoration: none;
    font-size: 14px;
    transition: var(--transition);
}

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

.social-links a {
    display: inline-block;
    width: 36px;
    height: 36px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    text-align: center;
    line-height: 36px;
    margin-right: 10px;
    color: white;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
}

.newsletter-form .form-control {
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    color: white;
    padding: 10px;
}

.newsletter-form .form-control::placeholder {
    color: #a0a9b8;
}

.newsletter-form .btn-primary {
    background: var(--primary-color);
    border: none;
    padding: 10px 20px;
}

.footer-divider {
    border-color: rgba(255,255,255,0.1);
    margin: 40px 0 20px;
}

.copyright {
    color: #a0a9b8;
    font-size: 14px;
    margin-bottom: 10px;
}

.footer-bottom-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 20px;
    justify-content: flex-end;
}

.footer-bottom-links li {
    display: inline;
}

.footer-bottom-links a {
    color: #a0a9b8;
    text-decoration: none;
    font-size: 14px;
    transition: var(--transition);
}

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

/* ==========================================================================
   Responsive Design
   ========================================================================== */

@media (max-width: 991px) {
    /* Navigation Mobile Styles */
    .mobile-toggle {
        display: flex;
        z-index: 1001;
    }

    .mobile-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

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

    .mobile-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }

    /* Mobile Menu Overlay */
    body.menu-open::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.5);
        z-index: 999;
        animation: fadeIn 0.3s ease;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 320px;
        max-width: 85%;
        height: 100vh;
        background: white;
        flex-direction: column;
        align-items: flex-start;
        padding: 80px 0 20px;
        transition: right 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: -2px 0 20px rgba(0,0,0,0.15);
        overflow-y: auto;
        z-index: 1000;
    }

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

    /* Mobile Menu Header */
    .nav-menu::before {
        content: 'Menu';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        padding: 20px 24px;
        font-size: 18px;
        font-weight: 700;
        color: var(--text-dark);
        border-bottom: 2px solid var(--light-gray);
        background: white;
    }

    .nav-list {
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
        gap: 0;
        padding: 0 24px;
    }

    .nav-item {
        width: 100%;
        border-bottom: 1px solid rgba(0,0,0,0.05);
    }

    .nav-item:last-child {
        border-bottom: none;
    }

    .nav-link {
        width: 100%;
        padding: 16px 0;
        font-size: 16px;
        color: var(--text-dark);
        position: relative;
    }

    .nav-link:hover {
        color: var(--primary-color);
    }

    /* Mobile Dropdown Styles */
    .has-dropdown > .nav-link::after {
        content: '\f107';
        font-family: 'Font Awesome 6 Free';
        font-weight: 900;
        position: absolute;
        right: 0;
        transition: transform 0.3s ease;
    }

    .has-dropdown.active > .nav-link::after {
        transform: rotate(180deg);
    }

    .has-dropdown > .nav-link i {
        display: none;
    }

    .dropdown-menu {
        position: static;
        opacity: 0;
        visibility: hidden;
        transform: none;
        box-shadow: none;
        margin: 0;
        padding: 0 0 0 16px;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s cubic-bezier(0.4, 0, 0.2, 1),
                    opacity 0.3s ease,
                    padding 0.3s ease;
        background: var(--light-gray);
        border-radius: 8px;
    }

    .dropdown-menu::before {
        display: none;
    }

    .has-dropdown.active .dropdown-menu {
        opacity: 1;
        visibility: visible;
        max-height: 600px;
        padding: 12px 0 12px 16px;
        margin-top: 8px;
        margin-bottom: 8px;
    }

    .dropdown-item {
        padding: 10px 12px;
        font-size: 15px;
        border-radius: 6px;
        display: block;
        color: var(--text-dark);
    }

    .dropdown-item:hover {
        background-color: white;
        color: var(--primary-color);
    }

    /* Mobile Action Buttons Container */
    .nav-menu > .search-btn,
    .nav-menu > .btn-get-started,
    .nav-menu > .user-account-dropdown {
        margin: 16px 24px 0;
        width: calc(100% - 48px);
    }

    .search-btn {
        background-color: var(--light-gray);
        color: var(--text-dark);
        padding: 12px;
        border-radius: 8px;
        width: 100%;
        text-align: center;
        font-size: 15px;
        font-weight: 500;
    }

    .search-btn:hover {
        background-color: #e9ecef;
    }

    .btn-get-started {
        width: 100%;
        text-align: center;
        padding: 14px 24px;
        font-size: 15px;
    }

    /* User Account Dropdown Mobile */
    .user-account-dropdown {
        width: 100%;
        border-top: 2px solid var(--light-gray);
        padding-top: 16px;
        margin-top: 16px;
    }

    .btn-myaccount {
        width: 100%;
        justify-content: center;
        padding: 12px 16px;
        background-color: var(--primary-color);
        color: white;
        border-radius: 8px;
        font-weight: 600;
    }

    .btn-myaccount:hover {
        background-color: #e55a00;
        border-color: transparent;
    }

    .btn-myaccount .user-avatar {
        width: 28px;
        height: 28px;
    }

    .btn-myaccount i {
        color: white;
    }

    .user-dropdown-menu {
        position: static;
        opacity: 0;
        visibility: hidden;
        transform: none;
        box-shadow: none;
        margin-top: 12px;
        width: 100%;
        padding: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s cubic-bezier(0.4, 0, 0.2, 1),
                    opacity 0.3s ease,
                    padding 0.3s ease;
        background: var(--light-gray);
        border-radius: 8px;
    }

    .user-dropdown-menu::before {
        display: none;
    }

    .user-account-dropdown.active .user-dropdown-menu {
        opacity: 1;
        visibility: visible;
        max-height: 600px;
        padding: 8px 0;
    }

    .user-account-dropdown.active .btn-myaccount i {
        transform: rotate(180deg);
    }

    .user-menu-item {
        border-bottom: none;
    }

    .user-menu-link {
        padding: 12px 16px;
        font-size: 15px;
        border-radius: 6px;
        margin: 0 8px;
    }

    .user-menu-link:hover {
        background-color: white;
    }

    .user-menu-item hr,
    .user-menu-item .dropdown-divider {
        margin: 8px 16px;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .hero-image {
        margin-top: 40px;
        transform: none;
    }

    .footer-bottom-links {
        justify-content: flex-start;
        margin-top: 10px;
    }

    /* Archive Page Responsive */
    .page-header {
        padding: 80px 0 60px;
    }

    .page-title {
        font-size: 2.5rem;
    }

    .plugin-description {
        min-height: auto;
    }

    .bundle-card {
        padding: 32px;
    }

    .bundle-title {
        font-size: 1.75rem;
    }

    .discount-price {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .top-banner {
        text-align: center;
        padding: 10px 15px;
    }

    .btn-banner {
        display: inline-block;
        margin-top: 8px;
    }

    .hero-section {
        padding: 60px 0;
    }

    .hero-title {
        font-size: 2rem;
        text-align: center;
    }

    .hero-description {
        text-align: center;
        font-size: 1rem;
    }

    .hero-buttons {
        text-align: center;
    }

    .hero-buttons .btn {
        display: block;
        width: 100%;
        margin-bottom: 10px;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .section-subtitle {
        font-size: 1rem;
    }

    .feature-card {
        margin-bottom: 20px;
    }

    .video-wrapper {
        margin: 0 15px;
    }

    .play-button {
        width: 60px;
        height: 60px;
        font-size: 20px;
    }

    .advanced-features {
        padding: 60px 0;
    }

    .footer-bottom-links {
        flex-direction: column;
        gap: 10px;
    }

    .navbar-nav {
        text-align: center;
        padding: 20px 0;
    }

    .btn-get-started {
        width: 100%;
        margin-top: 10px;
    }

    /* Archive Page Mobile */
    .page-header {
        padding: 60px 0 40px;
    }

    .page-title {
        font-size: 2rem;
    }

    .plugins-archive {
        padding: 60px 0;
    }

    .plugins-archive .section-title {
        font-size: 1.875rem;
    }

    .plugin-card {
        margin-bottom: 30px;
    }

    .plugin-content {
        padding: 24px;
    }

    .plugin-price-box {
        margin-left: -24px;
        margin-right: -24px;
        padding-left: 24px;
        padding-right: 24px;
    }

    .bundle-card {
        padding: 24px;
    }

    .bundle-title {
        font-size: 1.5rem;
        text-align: center;
    }

    .bundle-description {
        text-align: center;
        font-size: 1rem;
    }

    .bundle-includes {
        justify-content: center;
    }

    .bundle-price {
        text-align: center;
    }

    .discount-price {
        font-size: 2rem;
    }

    .accordion-button {
        font-size: 1rem;
        padding: 20px;
    }

    .accordion-body {
        padding: 20px;
        font-size: 14px;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 1.75rem;
    }

    .hero-description br {
        display: none;
    }

    .section-title br {
        display: none;
    }

    .section-subtitle br {
        display: none;
    }

    .cta-title br {
        display: none;
    }

    .cta-subtitle br {
        display: none;
    }

    .brand-logo {
        max-width: 80px;
    }

    /* Archive Page Extra Small */
    .page-title {
        font-size: 1.75rem;
    }

    .plugins-archive .section-title {
        font-size: 1.5rem;
    }

    .plugin-title {
        font-size: 1.25rem;
    }

    .plugin-meta {
        flex-direction: column;
        gap: 8px;
        align-items: flex-start;
    }

    .plugin-price-box .price {
        font-size: 1.5rem;
    }

    .bundle-title {
        font-size: 1.25rem;
    }

    .bundle-title i {
        font-size: 1.25rem;
    }

    .discount-price {
        font-size: 1.75rem;
    }

    .bundle-includes li {
        font-size: 13px;
        padding: 6px 12px;
    }
}

/* ==========================================================================
   Stats Section (Hero)
   ========================================================================== */

.stat-box {
    text-align: center;
    padding: 20px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--text-muted);
    font-size: 1rem;
    margin: 0;
}

/* Notification Badges (Hero) */
.notification-badge {
    position: absolute;
    background: white;
    padding: 10px 15px;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    font-size: 14px;
    white-space: nowrap;
    animation: float 3s ease-in-out infinite;
}

.notification-badge.badge-1 {
    top: 20%;
    right: -20px;
}

.notification-badge.badge-2 {
    top: 50%;
    left: -20px;
    animation-delay: 1s;
}

.notification-badge.badge-3 {
    bottom: 20%;
    right: -10px;
    animation-delay: 2s;
}

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

/* ==========================================================================
   Product Cards Section
   ========================================================================== */

.product-card {
    background: white;
    border: 2px solid #e9ecef;
    border-radius: 16px;
    padding: 32px;
    height: 100%;
    transition: var(--transition);
    position: relative;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
    border-color: var(--primary-color);
}

.product-icon {
    width: 80px;
    height: 80px;
    background: var(--primary-color);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    font-size: 32px;
    color: white;
}

.product-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.product-description {
    color: var(--text-muted);
    margin-bottom: 24px;
    line-height: 1.7;
}

.product-features {
    list-style: none;
    padding: 0;
    margin-bottom: 24px;
}

.product-features li {
    padding: 8px 0;
    color: var(--text-muted);
    font-size: 14px;
}

.product-features i {
    margin-right: 8px;
}

.product-price {
    display: flex;
    align-items: baseline;
    margin-bottom: 20px;
    padding-top: 20px;
    border-top: 1px solid #e9ecef;
}

.product-price .price {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--secondary-color);
}

.product-price .period {
    color: var(--text-muted);
    margin-left: 5px;
    font-size: 1rem;
}

.btn-block {
    display: block;
    width: 100%;
}

/* ==========================================================================
   Why Choose Section
   ========================================================================== */

.why-choose-section {
    padding: 100px 0;
    background: white;
}

/* ==========================================================================
   Testimonial Section
   ========================================================================== */

.testimonial-section {
    padding: 80px 0;
    background: white;
}

.testimonial-card {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
}

.testimonial-content {
    position: relative;
    margin-bottom: 30px;
}

.quote-icon {
    font-size: 3rem;
    color: var(--primary-color);
    opacity: 0.3;
    position: absolute;
    top: -20px;
    left: -10px;
}

.testimonial-text {
    font-size: 1.25rem;
    line-height: 1.8;
    color: var(--text-dark);
    font-style: italic;
    padding-left: 40px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    padding-left: 40px;
}

.author-avatar {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 20px;
    margin-right: 16px;
}

.author-name {
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 4px;
}

.author-title {
    color: var(--text-muted);
    font-size: 14px;
    margin: 0;
}

/* ==========================================================================
   Page Header (Archive & Single Pages)
   ========================================================================== */

.page-header {
    background: var(--secondary-color);
    padding: 100px 0 80px;
    color: white;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 500px;
    height: 500px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    transform: translate(30%, -30%);
}

.page-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 400px;
    height: 400px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 50%;
    transform: translate(-30%, 30%);
}

.page-title {
    font-size: 3rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}

.breadcrumb {
    background: none;
    padding: 0;
    margin: 0;
    position: relative;
    z-index: 2;
}

.breadcrumb-item {
    color: rgba(255,255,255,0.75);
    font-size: 14px;
}

.breadcrumb-item a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

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

.breadcrumb-item.active {
    color: rgba(255,255,255,0.9);
    font-weight: 600;
}

.breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255,255,255,0.5);
}

/* ==========================================================================
   Plugin Archive Page
   ========================================================================== */

.plugins-archive {
    padding: 80px 0;
    background: #f8f9fa;
}

.plugin-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    height: 100%;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    border: 1px solid #e9ecef;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.plugin-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.12);
    border-color: transparent;
}

.plugin-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: var(--primary-color);
    color: white;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    z-index: 10;
    box-shadow: 0 4px 12px rgba(255, 102, 0, 0.3);
}

.plugin-badge.badge-new {
    background: #28a745;
    box-shadow: 0 4px 12px rgba(40, 167, 69, 0.3);
}

.plugin-badge.badge-coming {
    background: #6c757d;
    box-shadow: 0 4px 12px rgba(108, 117, 125, 0.3);
}

.plugin-image {
    height: 220px;
    overflow: hidden;
    position: relative;
    background: #f8f9fa;
}

.plugin-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 40px;
    background: rgba(255, 255, 255, 0.9);
}

.plugin-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.plugin-card:hover .plugin-image img {
    transform: scale(1.08);
}

.plugin-content {
    padding: 28px;
}

.plugin-title {
    font-size: 1.375rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text-dark);
    line-height: 1.3;
    transition: color 0.3s ease;
}

.plugin-card:hover .plugin-title {
    color: var(--primary-color);
}

.plugin-meta {
    display: flex;
    gap: 16px;
    font-size: 12px;
    color: var(--text-muted);
    margin-bottom: 16px;
    padding-bottom: 16px;
    border-bottom: 1px solid #f1f3f5;
}

.plugin-meta span {
    display: flex;
    align-items: center;
    font-weight: 500;
}

.plugin-meta i {
    margin-right: 6px;
    color: var(--primary-color);
    font-size: 13px;
}

.plugin-description {
    color: #6c757d;
    margin-bottom: 20px;
    line-height: 1.7;
    font-size: 14px;
    min-height: 63px;
}

.plugin-features-list {
    list-style: none;
    padding: 0;
    margin-bottom: 24px;
}

.plugin-features-list li {
    padding: 8px 0;
    font-size: 13px;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    font-weight: 500;
}

.plugin-features-list li i {
    margin-right: 10px;
    font-size: 14px;
}

.plugin-price-box {
    padding: 20px 0;
    border-top: 2px solid #f1f3f5;
    margin-bottom: 20px;
    text-align: center;
    background: #f8f9fa;
    margin-left: -28px;
    margin-right: -28px;
    padding-left: 28px;
    padding-right: 28px;
}

.plugin-price-box .price {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--secondary-color);
    display: inline-block;
}

.plugin-price-box .period {
    font-size: 0.875rem;
    color: var(--text-muted);
    font-weight: 500;
}

.plugin-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.plugin-actions .btn {
    margin-bottom: 0;
    font-weight: 600;
    font-size: 14px;
    padding: 12px 20px;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.plugin-actions .btn-primary {
    box-shadow: 0 4px 12px rgba(255, 102, 0, 0.2);
}

.plugin-actions .btn-primary:hover {
    box-shadow: 0 6px 20px rgba(255, 102, 0, 0.3);
}

.plugin-actions .btn-outline-primary {
    border-width: 2px;
}

.plugin-actions .btn-outline-primary:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
}

/* Bundle Offer */
.bundle-offer-section {
    padding: 60px 0 40px;
}

.bundle-card {
    background: #fff9e6;
    border: 3px solid #ffc107;
    border-radius: 24px;
    padding: 48px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(255, 193, 7, 0.2);
}

.bundle-card::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background: rgba(255, 193, 7, 0.08);
    border-radius: 50%;
}

.bundle-card::after {
    content: '';
    position: absolute;
    bottom: -80px;
    left: -80px;
    width: 250px;
    height: 250px;
    background: rgba(255, 193, 7, 0.05);
    border-radius: 50%;
}

.bundle-title {
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text-dark);
    position: relative;
    z-index: 2;
}

.bundle-title i {
    vertical-align: middle;
    font-size: 2rem;
}

.bundle-description {
    font-size: 1.125rem;
    color: #6c757d;
    margin-bottom: 28px;
    line-height: 1.7;
    position: relative;
    z-index: 2;
}

.bundle-includes {
    list-style: none;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    position: relative;
    z-index: 2;
}

.bundle-includes li {
    display: flex;
    align-items: center;
    background: white;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.bundle-includes li:hover {
    transform: translateY(-2px);
}

.bundle-includes li i {
    margin-right: 8px;
    font-size: 16px;
}

.bundle-price {
    margin-bottom: 24px;
    position: relative;
    z-index: 2;
}

.original-price {
    display: block;
    text-decoration: line-through;
    color: #dc3545;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 8px;
    opacity: 0.8;
}

.discount-price {
    display: block;
    font-size: 3rem;
    font-weight: 700;
    color: var(--secondary-color);
    line-height: 1.2;
}

.bundle-price .period {
    color: var(--text-muted);
    font-size: 1rem;
    font-weight: 500;
}

/* ==========================================================================
   Plugin Single Page
   ========================================================================== */

.plugin-details {
    padding: 60px 0;
    background: #f8f9fa;
}

.plugin-header {
    margin-bottom: 30px;
}

.plugin-gallery {
    margin-bottom: 40px;
}

.plugin-gallery img {
    width: 100%;
    border-radius: 12px;
}

/* Plugin Sidebar */
.plugin-sidebar {
    position: sticky;
    top: 100px;
}

.purchase-box {
    background: white;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.price-display {
    text-align: center;
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid #e9ecef;
}

.price-display .currency {
    font-size: 1.25rem;
    color: var(--text-muted);
}

.price-display .amount {
    font-size: 3rem;
    font-weight: 700;
    color: var(--secondary-color);
}

.price-features {
    list-style: none;
    padding: 0;
    margin-bottom: 24px;
}

.price-features li {
    padding: 10px 0;
    border-bottom: 1px solid #f8f9fa;
    font-size: 14px;
}

/* Plugin Info Box */
.plugin-info-box {
    background: white;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

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

.info-list li {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid #f8f9fa;
}

.info-list .label {
    color: var(--text-muted);
    font-size: 14px;
}

.info-list .value {
    font-weight: 600;
    font-size: 14px;
}

/* Support Box */
.support-box {
    background: white;
    border-radius: 12px;
    padding: 24px;
}

/* Related Products */
.related-products {
    background: white;
    border-radius: 12px;
    padding: 24px;
}

.related-item {
    display: flex;
    gap: 15px;
}

.related-img {
    width: 80px;
    height: 80px;
    border-radius: 8px;
    object-fit: cover;
}

.related-info h6 {
    margin-bottom: 5px;
    font-size: 16px;
}

/* Plugin Tabs */
.plugin-tabs {
    background: white;
    border-radius: 12px;
    padding: 30px;
}

.nav-tabs {
    border-bottom: 2px solid #e9ecef;
}

.nav-tabs .nav-link {
    color: var(--text-muted);
    border: none;
    border-bottom: 3px solid transparent;
    padding: 12px 20px;
    font-weight: 600;
}

.nav-tabs .nav-link:hover {
    color: var(--primary-color);
    border-color: transparent;
}

.nav-tabs .nav-link.active {
    color: var(--primary-color);
    border-bottom-color: var(--primary-color);
    background: none;
}

/* Reviews */
.review-item {
    border-bottom: 1px solid #e9ecef;
    padding-bottom: 20px;
}

.review-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}

.review-rating {
    font-size: 14px;
}

/* Section Title Enhancement */
.plugins-archive .section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 16px;
    position: relative;
    display: inline-block;
}

.plugins-archive .section-subtitle {
    font-size: 1.125rem;
    color: #6c757d;
    line-height: 1.8;
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background: white;
}

.accordion-item {
    background: white;
    border: 1px solid #e9ecef;
    border-radius: 12px;
    margin-bottom: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.accordion-item:hover {
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
    border-color: var(--primary-color);
}

.accordion-button {
    background: white;
    color: var(--text-dark);
    font-weight: 600;
    padding: 24px;
    border: none;
    font-size: 1.125rem;
    transition: all 0.3s ease;
}

.accordion-button:not(.collapsed) {
    background: #fff8f0;
    color: var(--primary-color);
}

.accordion-button:focus {
    box-shadow: none;
    border: none;
}

.accordion-button::after {
    background-size: 1.25rem;
    transition: transform 0.3s ease;
}

.accordion-button:not(.collapsed)::after {
    transform: rotate(180deg);
}

.accordion-body {
    padding: 24px;
    color: #6c757d;
    line-height: 1.8;
    font-size: 15px;
}

/* ==========================================================================
   Utility Classes
   ========================================================================== */

.btn-primary {
    background-color: var(--primary-color);
    border: none;
    padding: 12px 28px;
    font-weight: 600;
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.btn-primary:hover {
    background-color: #e55a00;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 102, 0, 0.3);
}

.btn-outline-primary {
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    padding: 12px 28px;
    font-weight: 600;
    border-radius: var(--border-radius);
    transition: var(--transition);
    background: transparent;
}

.btn-outline-primary:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: #6c757d;
    color: white;
    border: none;
    padding: 12px 28px;
    font-weight: 600;
    border-radius: var(--border-radius);
}

.btn-warning {
    background-color: #ffc107;
    color: var(--text-dark);
    border: none;
    padding: 12px 28px;
    font-weight: 600;
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.btn-warning:hover {
    background-color: #ffb300;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 193, 7, 0.3);
}

.btn-lg {
    padding: 14px 32px;
    font-size: 1.125rem;
}

.shadow {
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.rounded {
    border-radius: 12px;
}

.text-primary {
    color: var(--primary-color) !important;
}

.bg-primary {
    background-color: var(--primary-color) !important;
}

.text-secondary {
    color: var(--secondary-color) !important;
}

.bg-secondary {
    background-color: var(--secondary-color) !important;
}

.sticky-top {
    position: sticky;
    top: 100px;
}

/* ==========================================================================
   Landing Page Styles (Single Plugin Page)
   ========================================================================== */

/* Landing Hero Section */
.landing-hero {
    padding: 100px 0;
    color: white;
    position: relative;
    overflow: hidden;
}

.landing-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
}

.landing-hero .hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 14px;
    margin-bottom: 20px;
    backdrop-filter: blur(10px);
}

.landing-hero .hero-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
    color: #FFF;
}

.landing-hero .hero-subtitle {
    font-size: 1.5rem;
    font-weight: 300;
    margin-bottom: 30px;
    opacity: 0.95;
}

.landing-hero .hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 40px;
}

.landing-hero .hero-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
}

/* Problem Section */
.problem-section {
    background: #f8f9fa;
    padding: 80px 0;
}

.problem-section .problem-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 20px;
    border-left: 4px solid #ff6600;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s;
}

.problem-section .problem-card:hover {
    transform: translateX(10px);
}

/* Expeditions Grid */
.expeditions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.expedition-card {
    background: white;
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.expedition-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
}

/* Detailed Feature Sections */
.feature-detailed {
    padding: 60px 0;
    border-bottom: 1px solid #e9ecef;
}

.feature-detailed:nth-child(even) {
    background: #f8f9fa;
}

.feature-icon-large {
    width: 80px;
    height: 80px;
    background: var(--primary-color);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 36px;
    margin-bottom: 20px;
}

/* Benefit Cards */
.benefit-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s;
    height: 100%;
}

.benefit-card:hover {
    transform: translateY(-10px);
}

.benefit-icon {
    width: 60px;
    height: 60px;
    background: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    margin: 0 auto 20px;
}

/* Pricing Section & Table */
.landing-hero ~ .pricing-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.pricing-table {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 100px;
}

.pricing-card {
    background: white;
    border-radius: 20px;
    padding: 40px 20px;
    position: relative;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.pricing-card.featured {
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.pricing-card.featured::before {
    content: 'MOST POPULAR';
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-color);
    color: white;
    padding: 5px 20px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.pricing-card:hover {
    transform: translateY(-10px);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.pricing-header {
    text-align: center;
    margin-bottom: 30px;
}

.pricing-title {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 10px;
}

.pricing-price {
    font-size: 48px;
    font-weight: 700;
    color: var(--primary-color);
}

.pricing-period {
    font-size: 18px;
    color: #6c757d;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 30px 0;
}

.pricing-features li {
    padding: 5px;
    border-bottom: 1px solid #e9ecef;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
}

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

.pricing-features i {
    color: #28a745;
    font-size: 18px;
}

.pricing-cta {
    display: block;
    width: 100%;
    padding: 15px;
    background: var(--primary-color);
    color: white;
    text-align: center;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.3s;
}

.pricing-cta:hover {
    transform: translateY(-3px);
    color: white;
    text-decoration: none;
}

.pricing-card.enterprise .pricing-cta {
    background: var(--secondary-color);
}

/* Steps Section */
.steps-section {
    padding: 80px 0;
}

.step-card {
    text-align: center;
    padding: 30px;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    font-weight: 700;
    margin: 0 auto 20px;
}

/* Testimonial Cards (Landing Page Version) */
.landing-hero ~ section .testimonial-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    margin-bottom: 30px;
}

.landing-hero ~ section .testimonial-text {
    font-size: 18px;
    font-style: italic;
    margin-bottom: 20px;
    line-height: 1.6;
}

.landing-hero ~ section .testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.landing-hero ~ section .testimonial-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #e9ecef;
}

/* FAQ Section (Landing Page Version) */
.landing-hero ~ .faq-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.faq-item {
    background: white;
    border-radius: 10px;
    padding: 25px;
    margin-bottom: 20px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.08);
}

.faq-question {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--dark-blue);
}

.faq-answer {
    color: #6c757d;
    line-height: 1.6;
}

/* CTA Section (Landing Page Version) */
.landing-hero ~ .cta-section {
    background: var(--primary-color);
    padding: 100px 0;
    color: white;
    text-align: center;
}

.landing-hero ~ .cta-section .cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #FFF;
}

.landing-hero ~ .cta-section .cta-subtitle {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.95;
    color: #FFF;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.cta-button {
    padding: 15px 40px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: transform 0.3s;
    display: inline-block;
}

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

.cta-button.secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.cta-button:hover {
    transform: translateY(-3px);
}

/* Responsive Overrides for Landing Page */
@media (max-width: 768px) {
    .landing-hero .hero-title {
        font-size: 2rem;
    }

    .landing-hero .hero-subtitle {
        font-size: 1.2rem;
    }

    .pricing-table {
        grid-template-columns: 1fr;
    }

    .pricing-card.featured {
        transform: none;
    }
}

/* ==========================================================================
   Target Audience Section - Professional Clean Design
   ========================================================================== */

.target-audience-section {
    padding: 80px 0;
    background: white;
}

.target-card {
    background: white;
    border-radius: 16px;
    padding: 40px;
    height: 100%;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    border: 1px solid #e9ecef;
}

.target-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    transition: height 0.3s ease;
}

.target-card.suitable::before {
    background: #28a745;
}

.target-card.not-suitable::before {
    background: #6c757d;
}

.target-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.12);
    border-color: transparent;
}

.target-card:hover::before {
    height: 6px;
}

.target-card-header {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid #f8f9fa;
}

.target-card-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin-right: 20px;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

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

.target-card.suitable .target-card-icon {
    background: #d4edda;
    color: #28a745;
    box-shadow: 0 4px 12px rgba(40, 167, 69, 0.2);
}

.target-card.not-suitable .target-card-icon {
    background: #e2e3e5;
    color: #6c757d;
    box-shadow: 0 4px 12px rgba(108, 117, 125, 0.2);
}

.target-card-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0;
    color: var(--text-dark);
    line-height: 1.3;
}

.target-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.target-list li {
    display: flex;
    align-items: flex-start;
    padding: 18px 0;
    font-size: 15px;
    line-height: 1.7;
    color: #495057;
    border-bottom: 1px solid #f8f9fa;
    transition: all 0.2s ease;
}

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

.target-list li:first-child {
    padding-top: 0;
}

.target-list li:hover {
    padding-left: 8px;
    color: var(--text-dark);
}

.target-list-icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    margin-right: 16px;
    flex-shrink: 0;
    margin-top: 2px;
    transition: all 0.3s ease;
}

.target-card.suitable .target-list-icon {
    background: #d4edda;
    color: #28a745;
}

.target-card.not-suitable .target-list-icon {
    background: #e2e3e5;
    color: #6c757d;
}

.target-list li:hover .target-list-icon {
    transform: scale(1.15);
}

.target-card.suitable .target-list li:hover .target-list-icon {
    background: #28a745;
    color: white;
    box-shadow: 0 4px 12px rgba(40, 167, 69, 0.3);
}

.target-card.not-suitable .target-list li:hover .target-list-icon {
    background: #6c757d;
    color: white;
    box-shadow: 0 4px 12px rgba(108, 117, 125, 0.3);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .target-audience-section {
        padding: 60px 0;
    }

    .target-card {
        padding: 30px 24px;
        margin-bottom: 24px;
    }

    .target-card-header {
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
    }

    .target-card-icon {
        margin-right: 0;
        margin-bottom: 16px;
        width: 56px;
        height: 56px;
        font-size: 24px;
    }

    .target-card-title {
        font-size: 1.25rem;
    }

    .target-list li {
        font-size: 14px;
    }
}

/* ==========================================================================
   How It Works Section - Professional Timeline Design
   ========================================================================== */

.how-it-works-section {
    position: relative;
    overflow: hidden;
}

.how-it-works-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: rgba(255, 102, 0, 0.02);
    pointer-events: none;
}

.section-header {
    text-align: center;
    margin-bottom: 70px;
    position: relative;
    z-index: 2;
}

.section-badge {
    display: inline-block;
    padding: 8px 20px;
    background: #fff5f0;
    color: var(--primary-color);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    border-radius: 50px;
    margin-bottom: 20px;
    border: 1px solid rgba(255, 102, 0, 0.2);
}

.steps-timeline {
    position: relative;
    display: flex;
    justify-content: space-between;
    margin-top: 60px;
}

/* Timeline connector line */
.steps-timeline::before {
    content: '';
    position: absolute;
    top: 65px;
    left: 12.5%;
    right: 12.5%;
    height: 3px;
    background: #e9ecef;
    z-index: 0;
}

.step-item {
    flex: 1;
    position: relative;
    z-index: 1;
}

.step-content {
    background: white;
    border-radius: 20px;
    padding: 35px 28px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    border: 2px solid #f8f9fa;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    height: 100%;
    position: relative;
    overflow: hidden;
}

.step-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--primary-color);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.step-content:hover::before {
    transform: scaleX(1);
}

.step-content:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
    border-color: var(--primary-color);
}

.step-number-wrapper {
    display: flex;
    justify-content: center;
    margin-bottom: 25px;
}

.step-number-badge {
    width: 130px;
    height: 130px;
    border-radius: 50%;
    background: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    box-shadow: 0 10px 30px rgba(255, 102, 0, 0.3);
    transition: all 0.4s ease;
}

.step-content:hover .step-number-badge {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 15px 40px rgba(255, 102, 0, 0.4);
}

.step-number-badge::before {
    content: '';
    position: absolute;
    inset: 8px;
    border-radius: 50%;
    background: white;
}

.step-number-inner {
    position: relative;
    z-index: 2;
    text-align: center;
}

.step-number-text {
    font-size: 48px;
    font-weight: 800;
    background: var(--primary-color);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    display: block;
}

.step-number-label {
    font-size: 11px;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 4px;
    display: block;
}

.step-icon {
    width: 50px;
    height: 50px;
    background: #fff5f0;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--primary-color);
    font-size: 24px;
    transition: all 0.3s ease;
}

.step-content:hover .step-icon {
    transform: rotateY(360deg);
    background: var(--primary-color);
    color: white;
}

.step-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text-dark);
    text-align: center;
    line-height: 1.4;
}

.step-description {
    font-size: 14px;
    line-height: 1.8;
    color: #6c757d;
    text-align: center;
    margin-bottom: 20px;
}

.step-image {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.step-content:hover .step-image {
    transform: scale(1.05);
}

.step-image img {
    width: 100%;
    height: auto;
    display: block;
}

.step-arrow {
    position: absolute;
    top: 50px;
    right: -15%;
    font-size: 32px;
    color: var(--primary-color);
    opacity: 0.3;
    z-index: 2;
    animation: arrowBounce 2s ease-in-out infinite;
}

@keyframes arrowBounce {
    0%, 100% {
        transform: translateX(0);
    }
    50% {
        transform: translateX(10px);
    }
}

.step-item:last-child .step-arrow {
    display: none;
}

/* Active state indicators */
.step-item.active .step-number-badge {
    background: #28a745;
    box-shadow: 0 10px 30px rgba(40, 167, 69, 0.3);
}

.step-item.active .step-number-text {
    background: #28a745;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Mobile Responsive */
@media (max-width: 992px) {
    .how-it-works-section {
        padding: 70px 0;
    }

    .steps-timeline {
        flex-direction: column;
        gap: 40px;
    }

    .steps-timeline::before {
        top: 65px;
        left: 50%;
        right: auto;
        width: 3px;
        height: calc(100% - 130px);
        background: #e9ecef;
        transform: translateX(-50%);
    }

    .step-arrow {
        display: none;
    }

    .step-number-badge {
        width: 100px;
        height: 100px;
    }

    .step-number-text {
        font-size: 36px;
    }

    .step-content {
        padding: 30px 24px;
    }

    .step-title {
        font-size: 1.125rem;
    }

    .step-description {
        font-size: 13px;
    }
}

@media (max-width: 576px) {
    .how-it-works-section {
        padding: 50px 0;
    }

    .section-header {
        margin-bottom: 50px;
    }

    .step-number-badge {
        width: 90px;
        height: 90px;
    }

    .step-number-text {
        font-size: 32px;
    }

    .step-icon {
        width: 44px;
        height: 44px;
        font-size: 20px;
    }
}

/* ==========================================================================
   Documentation Pages
   ========================================================================== */

/* Documentation Search */
.documentation-search {
    background: var(--light-gray);
}

.documentation-search .input-group-text {
    border-right: 0;
}

.documentation-search .form-control {
    border-left: 0;
}

.documentation-search .form-control:focus {
    box-shadow: none;
    border-color: #ced4da;
}

/* Documentation Archive Cards */
.documentation-card {
    background: white;
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    transition: var(--transition);
    height: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
}

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

.documentation-card .documentation-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--primary-color);
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.documentation-icon {
    width: 80px;
    height: 80px;
    background: var(--primary-color);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 32px;
    color: white;
}

.documentation-icon.bg-shipping {
    background: var(--secondary-color);
}

.documentation-icon.bg-payments {
    background: #6f42c1;
}

.documentation-icon.bg-whatsapp {
    background: #25d366;
}

.documentation-icon.bg-jne {
    background: #ed1c24;
}

.documentation-icon.bg-invoice {
    background: #f59e0b;
}

.documentation-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.documentation-description {
    color: var(--text-muted);
    margin-bottom: 20px;
    line-height: 1.6;
}

.documentation-stats {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.documentation-stats .stat-item {
    font-size: 14px;
    color: var(--text-muted);
}

.documentation-stats .stat-item i {
    color: var(--primary-color);
    margin-right: 5px;
}

.documentation-topics {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.topic-badge {
    background: var(--light-gray);
    color: var(--text-muted);
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 500;
}

.documentation-card .documentation-content {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.documentation-card .documentation-content .btn {
    margin-top: auto;
}

/* Help Resources Section */
.help-resources-section {
    background: var(--light-gray);
    border-radius: var(--border-radius);
    padding: 40px;
}

.help-option {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.help-option i {
    font-size: 24px;
    margin-top: 5px;
}

/* Getting Started Cards */
.getting-started-card {
    background: white;
    border-radius: var(--border-radius);
    padding: 30px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    transition: var(--transition);
    height: 100%;
    position: relative;
}

.getting-started-card:hover {
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transform: translateY(-3px);
}

.getting-started-card .step-number {
    position: absolute;
    top: -15px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
}

.getting-started-card .step-icon {
    width: 60px;
    height: 60px;
    background: var(--light-gray);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 24px;
    color: var(--primary-color);
}

.getting-started-card h4 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.getting-started-card p {
    color: var(--text-muted);
    font-size: 14px;
}

/* Popular Guides Cards */
.guide-card {
    background: white;
    border-radius: var(--border-radius);
    padding: 25px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    transition: var(--transition);
    height: 100%;
    border-left: 4px solid var(--primary-color);
}

.guide-card:hover {
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transform: translateX(5px);
}

.guide-card .guide-icon {
    width: 50px;
    height: 50px;
    background: var(--light-gray);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    font-size: 20px;
    color: var(--primary-color);
}

.guide-card h4 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.guide-card p {
    color: var(--text-muted);
    margin-bottom: 15px;
    font-size: 14px;
}

.guide-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
    font-size: 13px;
    color: var(--text-muted);
}

.guide-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: var(--transition);
}

.guide-link:hover {
    color: var(--secondary-color);
}

.guide-link i {
    margin-left: 5px;
    transition: var(--transition);
}

.guide-link:hover i {
    transform: translateX(5px);
}

/* Documentation Header */
.documentation-header {
    background: var(--secondary-color);
    color: white;
    padding: 40px 0 30px;
}

.documentation-header .breadcrumb {
    background: transparent;
    margin-bottom: 20px;
}

.documentation-header .breadcrumb-item a {
    color: rgba(255,255,255,0.8);
}

.documentation-header .breadcrumb-item.active {
    color: white;
}

.documentation-header .breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255,255,255,0.6);
}

.documentation-main-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.documentation-main-title i {
    margin-right: 10px;
}

.documentation-meta {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    font-size: 14px;
    margin-top: 20px;
}

.documentation-meta .meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.documentation-meta .meta-item i {
    opacity: 0.8;
}

/* Documentation Content Layout */
.documentation-content {
    padding: 50px 0;
}

/* Sidebar Navigation */
.documentation-sidebar {
    background: white;
    border-radius: var(--border-radius);
    padding: 20px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.documentation-sidebar.sticky-sidebar {
    position: sticky;
    top: 90px;
    max-height: calc(100vh - 120px);
    overflow-y: auto;
}

.documentation-sidebar .sidebar-header {
    padding-bottom: 15px;
    border-bottom: 2px solid var(--light-gray);
    margin-bottom: 15px;
}

.documentation-sidebar .sidebar-header h5 {
    font-weight: 600;
    margin: 0;
    color: var(--text-dark);
}

.sidebar-nav .nav {
    flex-direction: column;
}

.sidebar-nav .nav-link {
    color: var(--text-muted);
    padding: 10px 15px;
    border-radius: 6px;
    transition: all 0.3s ease;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.sidebar-nav .nav-link:hover {
    background: var(--light-gray);
    color: var(--text-dark);
}

.sidebar-nav .nav-link.active {
    background: var(--primary-color);
    color: white;
}

.sidebar-nav .nav-link i {
    font-size: 14px;
    width: 18px;
}

.sidebar-nav .nav-link .toc-icon {
    font-size: 10px;
    transition: transform 0.3s ease;
    opacity: 0.5;
}

.sidebar-nav .nav-link:hover .toc-icon {
    transform: translateX(3px);
    opacity: 1;
}

.sidebar-nav .nav-link.active .toc-icon {
    transform: translateX(3px);
    opacity: 1;
}

/* Sticky sidebar bottom position */
.documentation-sidebar.sticky-bottom {
    position: absolute;
    bottom: 20px;
}

.sidebar-nav .nav .nav {
    margin-left: 0;
    margin-top: 8px;
    margin-bottom: 8px;
    padding-left: 15px;
    border-left: 2px solid var(--light-gray);
}

.sidebar-nav .nav .nav li {
    list-style: none;
    margin-bottom: 4px;
}

.sidebar-nav .nav .nav .nav-link,
.sidebar-nav .nav .nav a {
    font-size: 13px;
    padding: 8px 12px;
    color: var(--text-muted);
    display: block;
    text-decoration: none;
    border-radius: 4px;
    transition: var(--transition);
    position: relative;
}

.sidebar-nav .nav .nav a::before {
    content: '→';
    position: absolute;
    left: -8px;
    opacity: 0;
    transition: all 0.3s ease;
    color: var(--primary-color);
}

.sidebar-nav .nav .nav a:hover {
    color: var(--primary-color);
    background: var(--light-gray);
    padding-left: 20px;
}

.sidebar-nav .nav .nav a:hover::before {
    opacity: 1;
    left: 4px;
}

.sidebar-nav .nav .nav a.active {
    color: var(--primary-color);
    background: rgba(255, 102, 0, 0.1);
    font-weight: 600;
    border-left: 3px solid var(--primary-color);
    padding-left: 16px;
}

.sidebar-help {
    margin-top: 20px;
}

/* Main Documentation Content */
.documentation-main {
    background: white;
    border-radius: var(--border-radius);
    padding: 40px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.doc-section {
    padding: 40px 0;
    border-bottom: 1px solid var(--light-gray);
}

.doc-section:first-child {
    padding-top: 0;
}

.doc-section:last-of-type {
    border-bottom: none;
}

.doc-section-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text-dark);
    scroll-margin-top: 100px;
}

.doc-section-title i {
    color: var(--primary-color);
    margin-right: 10px;
}

.doc-content {
    color: var(--text-dark);
    line-height: 1.8;
}

.doc-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-top: 30px;
    margin-bottom: 15px;
    scroll-margin-top: 100px;
}

.doc-content h4 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-top: 25px;
    margin-bottom: 12px;
}

.doc-content h5 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-top: 20px;
    margin-bottom: 10px;
}

.doc-content p {
    margin-bottom: 15px;
}

.doc-content ul,
.doc-content ol {
    margin-bottom: 20px;
    padding-left: 25px;
}

.doc-content li {
    margin-bottom: 8px;
}

.doc-content img {
    border: 1px solid #e9ecef;
}

.doc-content code {
    background: var(--light-gray);
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 0.9em;
    color: #e83e8c;
}

/* Step Badge */
.step-badge {
    background: var(--primary-color);
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    margin-right: 10px;
}

/* Step Instructions */
.step-instructions {
    background: var(--light-gray);
    border-left: 4px solid var(--primary-color);
    padding: 20px 25px;
    border-radius: 6px;
    margin: 20px 0;
}

.step-instructions ol {
    margin-bottom: 0;
    padding-left: 20px;
}

.step-instructions li {
    margin-bottom: 10px;
}

.step-instructions li:last-child {
    margin-bottom: 0;
}

.step-instructions ul {
    margin-top: 10px;
    margin-bottom: 10px;
}

/* Feature Highlight */
.feature-highlight {
    padding: 20px;
    background: var(--light-gray);
    border-radius: var(--border-radius);
    margin-bottom: 15px;
}

.feature-highlight h5 {
    margin-bottom: 8px;
}

.feature-highlight p {
    margin-bottom: 0;
    font-size: 14px;
}

/* Requirements Grid */
.requirements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.requirement-item {
    background: white;
    border: 2px solid var(--light-gray);
    border-radius: var(--border-radius);
    padding: 20px;
    display: flex;
    gap: 15px;
    transition: var(--transition);
}

.requirement-item:hover {
    border-color: var(--primary-color);
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.requirement-icon {
    width: 50px;
    height: 50px;
    background: var(--light-gray);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--primary-color);
    flex-shrink: 0;
}

.requirement-content h5 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.requirement-content p {
    color: var(--text-muted);
    font-size: 14px;
    margin-bottom: 10px;
}

/* Settings List */
.settings-list {
    margin: 30px 0;
}

.setting-item {
    background: white;
    border: 1px solid #e9ecef;
    border-radius: var(--border-radius);
    padding: 20px;
    margin-bottom: 15px;
}

.setting-item h5 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.setting-item p {
    color: var(--text-muted);
    margin-bottom: 10px;
}

.setting-value {
    margin-top: 10px;
}

.setting-example {
    background: var(--light-gray);
    padding: 10px 15px;
    border-radius: 6px;
    margin-top: 10px;
    font-size: 14px;
}

.setting-example strong {
    color: var(--primary-color);
}

/* Troubleshooting Items */
.troubleshoot-item {
    background: white;
    border: 1px solid #e9ecef;
    border-radius: var(--border-radius);
    padding: 25px;
    margin-bottom: 20px;
    position: relative;
}

.error-badge,
.warning-badge {
    display: inline-block;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 15px;
}

.error-badge {
    background: #dc3545;
    color: white;
}

.warning-badge {
    background: #ffc107;
    color: var(--text-dark);
}

.troubleshoot-item h4 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.troubleshoot-item strong {
    color: var(--primary-color);
}

/* Documentation Footer */
.doc-footer {
    background: var(--light-gray);
    border-radius: var(--border-radius);
    padding: 30px;
    margin-top: 40px;
}

.feedback-section h4 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.feedback-section .btn {
    margin-right: 10px;
}

/* Responsive Documentation */
@media (max-width: 991px) {
    .documentation-sidebar {
        margin-bottom: 30px;
    }

    .documentation-sidebar.sticky-sidebar {
        position: relative;
        top: 0;
        max-height: none;
    }

    .documentation-main-title {
        font-size: 2rem;
    }

    .doc-section-title {
        font-size: 1.75rem;
    }

    .documentation-main {
        padding: 30px 20px;
    }

    .requirements-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767px) {
    .documentation-header {
        padding: 30px 0 20px;
    }

    .documentation-main-title {
        font-size: 1.75rem;
    }

    .documentation-meta {
        gap: 15px;
        font-size: 13px;
    }

    .doc-section-title {
        font-size: 1.5rem;
    }

    .doc-content h3 {
        font-size: 1.25rem;
    }

    .documentation-main {
        padding: 20px 15px;
    }

    .step-instructions {
        padding: 15px 20px;
    }

    .troubleshoot-item {
        padding: 20px;
    }

    .documentation-card {
        padding: 20px;
    }

    .documentation-icon {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }

    .getting-started-card {
        padding: 25px 20px;
    }

    .help-resources-section {
        padding: 30px 20px;
    }

    /* Submenu mobile styles */
    .sidebar-nav .nav .nav {
        padding-left: 10px;
        margin-top: 6px;
        margin-bottom: 6px;
    }

    .sidebar-nav .nav .nav a {
        font-size: 12px;
        padding: 6px 10px;
    }

    .sidebar-nav .nav .nav a:hover {
        padding-left: 18px;
    }

    .sidebar-nav .nav .nav a.active {
        padding-left: 14px;
    }
}

/* ==========================================================================
   Blog & Post Styles
   ========================================================================== */

/* Blog Filter Section */
.blog-filter {
    border-bottom: 1px solid #e9ecef;
}

.category-filters {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.filter-btn {
    background: white;
    border: 1px solid #dee2e6;
    border-radius: 20px;
    padding: 8px 20px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-muted);
    cursor: pointer;
    transition: var(--transition);
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.blog-search .input-group-text {
    border-right: 0;
}

.blog-search .form-control {
    border-left: 0;
}

.blog-search .form-control:focus {
    box-shadow: none;
    border-color: #ced4da;
}

/* Featured Post */
.featured-post {
    background: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    transition: var(--transition);
}

.featured-post:hover {
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.featured-image {
    position: relative;
    height: 100%;
    min-height: 400px;
    overflow: hidden;
}

.featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.featured-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--primary-color);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
}

.featured-content {
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.featured-title {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 20px;
}

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

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

.featured-excerpt {
    font-size: 1.1rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 25px;
}

/* Blog Cards */
.blog-card {
    background: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
}

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

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

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.blog-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.blog-card:hover .blog-overlay {
    opacity: 1;
}

.read-more-btn {
    width: 50px;
    height: 50px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 20px;
    text-decoration: none;
    transition: var(--transition);
}

.read-more-btn:hover {
    background: var(--primary-color);
    color: white;
    transform: scale(1.1);
}

.blog-content {
    padding: 25px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.post-meta {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.category-badge {
    background: var(--light-gray);
    color: var(--text-muted);
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
}

.category-badge.category-tutorial {
    background: #e7f3ff;
    color: #0066cc;
}

.category-badge.category-tips {
    background: #fff3e0;
    color: #ff9800;
}

.category-badge.category-update {
    background: #f3e5f5;
    color: #9c27b0;
}

.category-badge.category-case-study {
    background: #e8f5e9;
    color: #4caf50;
}

.post-date {
    font-size: 13px;
    color: var(--text-muted);
}

.post-date i {
    margin-right: 5px;
}

.blog-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 15px;
    line-height: 1.4;
}

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

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

.blog-excerpt {
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 20px;
    flex: 1;
}

.blog-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 15px;
    border-top: 1px solid var(--light-gray);
    margin-top: auto;
}

.author-mini {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--text-muted);
}

.author-mini img {
    width: 30px;
    height: 30px;
    border-radius: 50%;
}

.reading-time {
    font-size: 13px;
    color: var(--text-muted);
}

.reading-time i {
    margin-right: 5px;
}

/* Post Header */
.post-header {
    padding: 60px 0 30px;
    background: var(--light-gray);
}

.post-meta-header {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.post-title {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 25px;
    color: var(--text-dark);
}

.author-info-header {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px 0;
}

.author-avatar-large {
    width: 60px;
    height: 60px;
    border-radius: 50%;
}

.author-details h6 {
    margin-bottom: 5px;
    font-weight: 600;
    color: var(--text-dark);
}

.author-role {
    color: var(--text-muted);
    font-size: 14px;
}

.social-share {
    display: flex;
    align-items: center;
    gap: 10px;
}

.share-label {
    font-size: 14px;
    color: var(--text-muted);
    margin-right: 5px;
}

.share-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    text-decoration: none;
    transition: var(--transition);
}

.share-btn:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

/* Featured Image */
.post-featured-image {
    padding: 40px 0;
    background: var(--light-gray);
}

/* Post Content */
.post-content {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-dark);
}

.post-content h2 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-top: 40px;
    margin-bottom: 20px;
    color: var(--text-dark);
    scroll-margin-top: 100px;
}

.post-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-top: 30px;
    margin-bottom: 15px;
    color: var(--text-dark);
    scroll-margin-top: 100px;
}

.post-content p {
    margin-bottom: 20px;
}

.post-content ul,
.post-content ol {
    margin-bottom: 25px;
    padding-left: 25px;
}

.post-content li {
    margin-bottom: 10px;
}

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

.post-content .lead {
    font-size: 1.3rem;
    font-weight: 400;
    color: #555;
    margin-bottom: 30px;
}

/* Content Callouts */
.content-callout {
    display: flex;
    gap: 20px;
    padding: 25px;
    border-radius: var(--border-radius);
    margin: 30px 0;
}

.content-callout.callout-info {
    background: #e7f3ff;
    border-left: 4px solid #0066cc;
}

.content-callout.callout-success {
    background: #e8f5e9;
    border-left: 4px solid #4caf50;
}

.content-callout.callout-warning {
    background: #fff3e0;
    border-left: 4px solid #ff9800;
}

.callout-icon {
    flex-shrink: 0;
}

.callout-icon i {
    font-size: 28px;
    color: inherit;
}

.callout-info .callout-icon i {
    color: #0066cc;
}

.callout-success .callout-icon i {
    color: #4caf50;
}

.callout-warning .callout-icon i {
    color: #ff9800;
}

.callout-content h5 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 10px;
}

/* Content Image */
.content-image {
    margin: 40px 0;
}

.image-caption {
    text-align: center;
    font-size: 14px;
    color: var(--text-muted);
    font-style: italic;
    margin-top: 10px;
}

/* Content Code */
.content-code {
    margin: 30px 0;
    border-radius: var(--border-radius);
    overflow: hidden;
    background: #282c34;
}

.code-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 20px;
    background: #21252b;
    border-bottom: 1px solid #181a1f;
}

.code-language {
    color: #abb2bf;
    font-size: 14px;
    font-weight: 500;
}

.copy-btn {
    background: transparent;
    border: 1px solid #3e4451;
    color: #abb2bf;
    padding: 5px 12px;
    border-radius: 4px;
    font-size: 12px;
    cursor: pointer;
    transition: var(--transition);
}

.copy-btn:hover {
    background: #3e4451;
    color: white;
}

.content-code pre {
    margin: 0;
    padding: 20px;
    overflow-x: auto;
}

.content-code code {
    color: #abb2bf;
    font-family: 'Courier New', monospace;
    font-size: 14px;
    line-height: 1.6;
}

/* Content Highlight */
.content-highlight {
    background: var(--light-gray);
    padding: 25px;
    border-radius: var(--border-radius);
    margin: 30px 0;
}

.content-highlight h4 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--text-dark);
}

/* Post Tags */
.post-tags {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    padding: 25px 0;
    border-top: 1px solid var(--light-gray);
}

.tags-label {
    font-weight: 600;
    color: var(--text-dark);
}

.tag-link {
    background: var(--light-gray);
    color: var(--text-muted);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 14px;
    text-decoration: none;
    transition: var(--transition);
}

.tag-link:hover {
    background: var(--primary-color);
    color: white;
}

/* Author Bio */
.author-bio {
    display: flex;
    gap: 25px;
    padding: 30px;
    background: var(--light-gray);
    border-radius: var(--border-radius);
}

.author-bio-avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    flex-shrink: 0;
}

.author-bio-content h5 {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    margin-bottom: 5px;
}

.author-bio-content h6 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.author-bio-content p {
    color: var(--text-muted);
    margin-bottom: 15px;
}

.author-social {
    display: flex;
    gap: 10px;
}

.author-social a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    text-decoration: none;
    transition: var(--transition);
}

.author-social a:hover {
    background: var(--primary-color);
    color: white;
}

/* Related Posts */
.related-posts h3 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-dark);
}

.related-post-card {
    background: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    transition: var(--transition);
    height: 100%;
}

.related-post-card:hover {
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transform: translateY(-3px);
}

.related-post-card img {
    width: 100%;
    height: 150px;
    object-fit: cover;
}

.related-post-content {
    padding: 20px;
}

.related-category {
    background: var(--light-gray);
    color: var(--text-muted);
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 10px;
}

.related-post-content h5 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.related-post-content h5 a {
    color: var(--text-dark);
    text-decoration: none;
    transition: var(--transition);
}

.related-post-content h5 a:hover {
    color: var(--primary-color);
}

.related-date {
    font-size: 13px;
    color: var(--text-muted);
}

/* Comments Section */
.comments-section h3 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-dark);
}

.comment {
    display: flex;
    gap: 20px;
    padding: 25px 0;
    border-bottom: 1px solid var(--light-gray);
}

.comment-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    flex-shrink: 0;
}

.comment-content {
    flex: 1;
}

.comment-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
}

.comment-author {
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0;
}

.author-badge {
    background: var(--primary-color);
    color: white;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 600;
    margin-left: 8px;
}

.comment-date {
    font-size: 13px;
    color: var(--text-muted);
}

.comment-text {
    color: var(--text-dark);
    line-height: 1.6;
    margin-bottom: 10px;
}

.comment-reply-btn {
    background: transparent;
    border: none;
    color: var(--primary-color);
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    padding: 0;
    transition: var(--transition);
}

.comment-reply-btn:hover {
    color: var(--secondary-color);
}

.comment-reply {
    margin-left: 40px;
    margin-top: 20px;
}

/* Comment Form */
.comment-form {
    padding: 30px;
    background: var(--light-gray);
    border-radius: var(--border-radius);
}

.comment-form h4 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text-dark);
}

/* Blog Sidebar */
.blog-sidebar .sidebar-widget {
    background: white;
    border-radius: var(--border-radius);
    padding: 25px;
    margin-bottom: 30px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.sidebar-widget.sticky-sidebar {
    position: sticky;
    top: 100px;
}

.widget-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text-dark);
}

/* TOC Navigation */
.toc-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.toc-nav li {
    margin-bottom: 10px;
}

.toc-nav a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 15px;
    transition: var(--transition);
    display: block;
    padding: 8px 12px;
    border-radius: 4px;
}

.toc-nav a:hover {
    color: var(--primary-color);
    background: var(--light-gray);
    padding-left: 20px;
}

/* Popular Posts Widget */
.popular-post-item {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

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

.popular-post-item img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 8px;
    flex-shrink: 0;
}

.popular-post-content h6 {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 8px;
    line-height: 1.4;
}

.popular-post-content h6 a {
    color: var(--text-dark);
    text-decoration: none;
    transition: var(--transition);
}

.popular-post-content h6 a:hover {
    color: var(--primary-color);
}

/* Category List */
.category-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.category-list li {
    margin-bottom: 12px;
}

.category-list a {
    color: var(--text-dark);
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 12px;
    border-radius: 4px;
    transition: var(--transition);
}

.category-list a:hover {
    background: var(--light-gray);
    color: var(--primary-color);
}

.category-list i {
    margin-right: 10px;
    color: var(--text-muted);
}

.category-list .count {
    color: var(--text-muted);
    font-size: 13px;
}

/* CTA Widget */
.widget-cta {
    background: var(--primary-color);
    color: white;
}

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

.cta-icon {
    width: 60px;
    height: 60px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 24px;
}

.cta-content h5 {
    color: white;
    font-weight: 700;
    margin-bottom: 10px;
}

.cta-content p {
    color: rgba(255,255,255,0.9);
    margin-bottom: 20px;
}

/* Newsletter Section */
.newsletter-section {
    background: var(--primary-color);
}

.newsletter-form-inline .input-group {
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
}

.newsletter-form-inline .form-control {
    border: none;
    padding: 15px 20px;
}

.newsletter-form-inline .btn {
    padding: 15px 30px;
    font-weight: 600;
}

/* ==========================================================================
   Page Content Styles
   ========================================================================== */

/* Page Sections */
.page-content {
    color: var(--text-dark);
}

.page-intro {
    text-align: center;
}

.page-section {
    margin-bottom: 60px;
}

.section-heading {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 30px;
    color: var(--text-dark);
    text-align: center;
}

/* Info Boxes */
.info-box {
    background: white;
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    height: 100%;
    transition: var(--transition);
}

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

.info-icon {
    width: 70px;
    height: 70px;
    background: var(--primary-color);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 32px;
    color: white;
}

.info-box h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.info-box p {
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 0;
}

/* Value Cards */
.value-card {
    text-align: center;
    padding: 30px 20px;
    background: white;
    border-radius: var(--border-radius);
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    height: 100%;
    transition: var(--transition);
}

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

.value-icon {
    width: 60px;
    height: 60px;
    background: var(--light-gray);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 28px;
    color: var(--primary-color);
}

.value-card h4 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.value-card p {
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 0;
    font-size: 15px;
}

/* Team Cards */
.team-card {
    text-align: center;
    background: white;
    padding: 30px 20px;
    border-radius: var(--border-radius);
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    transition: var(--transition);
}

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

.team-photo {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    margin-bottom: 20px;
    object-fit: cover;
}

.team-card h5 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 5px;
    color: var(--text-dark);
}

.team-position {
    color: var(--text-muted);
    font-size: 14px;
    margin-bottom: 15px;
}

.team-social {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.team-social a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--light-gray);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    text-decoration: none;
    transition: var(--transition);
}

.team-social a:hover {
    background: var(--primary-color);
    color: white;
}

/* Stats Section */
.stats-container {
    background: white;
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.stat-item {
    padding: 20px;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.stat-label {
    font-size: 1rem;
    color: var(--text-muted);
    font-weight: 500;
}

/* Feature Items */
.feature-item {
    display: flex;
    gap: 20px;
    padding: 20px;
    background: white;
    border-radius: var(--border-radius);
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    transition: var(--transition);
}

.feature-item:hover {
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.feature-icon-check {
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
    flex-shrink: 0;
}

.feature-content h5 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.feature-content p {
    color: var(--text-muted);
    margin-bottom: 0;
    line-height: 1.6;
}

/* Page CTA */
.page-cta {
    margin-top: 60px;
}

.cta-box {
    background: var(--primary-color);
    padding: 40px;
    border-radius: var(--border-radius);
    color: white;
}

.cta-box h3 {
    color: white;
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.cta-box p {
    color: rgba(255,255,255,0.9);
    font-size: 1.1rem;
}

/* Partners Section */
.partner-logo {
    background: white;
    padding: 20px;
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.partner-logo:hover {
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transform: translateY(-5px);
}

.product-icon svg,.feature-icon svg {
    margin: 20px;
    fill: #FFF;
}

.feature-icon svg {
    fill: var(--primary-color, #f60);
}

.woocommerce table.shop_table th {
    border: 0px;
    padding: 10px;
}

.woocommerce table.shop_table th a {
    color: #FFF;
    text-decoration: none;
}

.woocommerce-account .woocommerce-MyAccount-navigation {
    width: 20% !important;
}

.woocommerce-account .woocommerce-MyAccount-content {
    width: 80%;
}

.woocommerce table.my_account_orders td, .woocommerce table.my_account_orders th {
    border: 0px;
    padding: 10px !important;
    margin: 0 !important;
}

.woocommerce table.my_account_orders .button {
    padding: 10px;
    font-size: 12px !important;
    border-radius: 5px;
    font-weight: normal;
}

/* Responsive Styles for Blog & Pages */
@media (max-width: 991px) {
    .featured-image {
        min-height: 300px;
    }

    .featured-content {
        padding: 30px;
    }

    .post-title {
        font-size: 2rem;
    }

    .author-info-header {
        flex-wrap: wrap;
    }

    .social-share {
        width: 100%;
        margin-top: 15px;
    }

    .blog-sidebar {
        margin-top: 50px;
    }

    .author-bio {
        flex-direction: column;
        text-align: center;
    }

    .author-bio-avatar {
        margin: 0 auto;
    }

    .author-social {
        justify-content: center;
    }
}

@media (max-width: 767px) {
    .category-filters {
        justify-content: center;
    }

    .blog-search {
        margin-top: 20px;
    }

    .featured-title {
        font-size: 1.5rem;
    }

    .post-title {
        font-size: 1.75rem;
    }

    .post-content h2 {
        font-size: 1.5rem;
    }

    .post-content h3 {
        font-size: 1.25rem;
    }

    .comment {
        flex-direction: column;
    }

    .comment-reply {
        margin-left: 20px;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .section-heading {
        font-size: 1.75rem;
    }
}
/* ==========================================================================
   404 Error Page
   ========================================================================== */

.error-404 {
    padding: 80px 0;
    min-height: 75vh;
    display: flex;
    align-items: center;
}

.error-404-content {
    padding: 40px 0;
}

.error-404-icon {
    font-size: 120px;
    color: var(--primary-color);
    margin-bottom: 30px;
    animation: pulse 2s infinite;
}

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

.error-404-title {
    font-size: 120px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 20px;
    line-height: 1;
}

.error-404-subtitle {
    font-size: 32px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.error-404-text {
    font-size: 18px;
    color: var(--text-muted);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.error-404-search {
    max-width: 500px;
    margin: 0 auto 40px;
}

.error-404-search .input-group {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    border-radius: var(--border-radius);
}

.error-404-search .form-control {
    border: none;
    padding: 15px 20px;
    font-size: 16px;
}

.error-404-search .btn {
    padding: 15px 30px;
    border: none;
}

.error-404-links {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 60px;
}

.error-404-links .btn {
    padding: 12px 30px;
    font-weight: 500;
}

.error-404-suggestions {
    margin-top: 60px;
    padding-top: 60px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.suggestions-title {
    font-size: 24px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 30px;
}

.suggestion-card {
    background: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.suggestion-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.suggestion-thumbnail {
    overflow: hidden;
}

.suggestion-thumbnail img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: var(--transition);
}

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

.suggestion-content {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.suggestion-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
}

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

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

.suggestion-excerpt {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 15px;
    flex-grow: 1;
}

.suggestion-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.suggestion-link:hover {
    color: var(--secondary-color);
    gap: 8px;
}

.suggestion-link i {
    font-size: 12px;
}

/* Responsive Styles for 404 Page */
@media (max-width: 768px) {
    .error-404 {
        padding: 40px 0;
    }

    .error-404-icon {
        font-size: 80px;
    }

    .error-404-title {
        font-size: 80px;
    }

    .error-404-subtitle {
        font-size: 24px;
    }

    .error-404-text {
        font-size: 16px;
    }

    .error-404-links {
        flex-direction: column;
        align-items: stretch;
    }

    .error-404-links .btn {
        width: 100%;
    }

    .suggestions-title {
        font-size: 20px;
    }

    .suggestion-thumbnail img {
        height: 150px;
    }
}

@media (max-width: 576px) {
    .error-404-title {
        font-size: 60px;
    }

    .error-404-subtitle {
        font-size: 20px;
    }
}

/* ==========================================================================
   Current Plugin Indicator (Single Plugin Page)
   ========================================================================== */

.plugin-card.current-plugin {
    border: 2px solid var(--primary-color);
    box-shadow: 0 5px 25px rgba(255, 102, 0, 0.2);
}

.current-plugin-indicator {
    position: absolute;
    top: 50px;
    right: 15px;
    background: var(--primary-color);
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    z-index: 2;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.current-plugin-indicator i {
    margin-right: 4px;
}

.plugin-card.current-plugin .plugin-title a {
    color: var(--primary-color);
    font-weight: 700;
}

/* Smooth scroll behavior for anchor links */
html {
    scroll-behavior: smooth;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .current-plugin-indicator {
        top: 45px;
        right: 10px;
        font-size: 11px;
        padding: 5px 10px;
    }
}
