/*
Theme Name: Mass Marketing Expert
Description: A modern, professional WordPress theme designed for marketing education and training websites. Features a dark theme with gold accents, responsive design, and Beaver Builder compatibility.
Author: MassMarketingExpert.com
Version: 1.0.0
License: GPL v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: mass-marketing-expert
Tags: custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready, beaver-builder, responsive, dark-theme
*/

/* Animation Keyframes */


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

/* Hero Background Effect */
.hero-background-effect {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, #262626 25%, transparent 25%),
                linear-gradient(-45deg, #262626 25%, transparent 25%),
                linear-gradient(45deg, transparent 75%, #262626 75%),
                linear-gradient(-45deg, transparent 75%, #262626 75%);
    background-size: 20px 20px;
    background-position: 0 0, 0 10px, 10px -10px, -10px 0px;
    opacity: 0.1;
    pointer-events: none;
}

/* Global Styles */
:root {
    /* Fixed theme colors - no longer customizable from WordPress admin */
    --tutorial-part-color: #c5a47e;
    --primary-color: #c5a47e;
    --secondary-color: #1a1a1a;
    --text-color: #ffffff;
    --background-color: #0a0a0a;
    --accent-color: #1a1a1a;
    --gradient-primary: linear-gradient(135deg, #c5a47e, #d4b593);
    --gradient-secondary: linear-gradient(135deg, #1a1a1a, #2a2a2a);
    --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.1);
    --shadow-strong: 0 20px 40px rgba(0, 0, 0, 0.15);
    --transition-smooth: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --page-background-color: #262626;
    --page-text-color: #333333;
}

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

body {
    font-family: "Helvetica Neue", Arial, sans-serif;
    line-height: 1.6;
    letter-spacing: -0.022em;
    color: var(--text-color);
    background-color: var(--background-color);
    overflow-x: hidden;
    position: relative;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

.uppercase{
    text-transform: uppercase !important;
}

/* Tutorial Styles */
.tutorial-part-indicator {
    display: inline-block;
    background: var(--tutorial-part-color);
    color: var(--background-color);
    padding: 5px 15px;
    border-radius: 4px;
    font-weight: bold;
    margin-bottom: 15px;
    text-transform: uppercase;
    font-size: 0.9em;
    letter-spacing: 1px;
}

.tutorial-video-container {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    margin-bottom: 30px;
}

.tutorial-video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 8px;
    box-shadow: var(--shadow-soft);
}

/* Toggle Button Styles */
.cta-toggle-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.cta-toggle-btn .chevron-up,
.cta-toggle-btn .chevron-down {
    position: absolute;
    transition: opacity 0.3s ease;
}

.cta-toggle-btn .chevron-up {
    opacity: 0;
}

.cta-toggle-btn .chevron-down {
    opacity: 1;
}

.cta-toggle-btn[aria-expanded="true"] .chevron-up {
    opacity: 1;
}

.cta-toggle-btn[aria-expanded="true"] .chevron-down {
    opacity: 0;
}

/* Tips and Tricks CTA Bar */
.tips-tricks-cta-bar {
    /* Layout */
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    position: fixed;
    bottom: 80px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 1200px;
    z-index: 999;
    
    /* Initial State */
    opacity: 0;
    visibility: hidden;
    
    /* Transition */
    transition: opacity 0.3s ease, visibility 0.3s ease;
    
    /* Spacing */
    padding: 25px;
    margin-top: 20px;
    margin-bottom:15px;
    
    /* Animation */
    opacity: 1;
    visibility: visible;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.tips-tricks-cta-bar .cta-title {
    font-size: 1.5em;
    margin-bottom: 10px;
    font-weight: 600;
    line-height: 1.2;
}

.tips-tricks-cta-bar .cta-description {
    font-size: 1em;
    line-height: 1.5;
    opacity: 0.9;
}

.tips-tricks-cta-bar .cta-content {
    text-align: left;
    flex: 1;
}

.tips-tricks-cta-bar .cta-button-container {
    flex-shrink: 0;
}

@media screen and (max-width: 768px) {
    /* CTA Bar Mobile Layout */
    .tips-tricks-cta-bar {
        flex-direction: column;
        padding: 15px;
        gap: 12px;
    }

    /* CTA Content Mobile Styles */
    .tips-tricks-cta-bar .cta-content {
        text-align: center;
        width: 100%;
        padding: 0 10px;
    }

    .tips-tricks-cta-bar .cta-title {
        font-size: 1.2em;
        margin-bottom: 6px;
    }

    .tips-tricks-cta-bar .cta-description {
        font-size: 0.9em;
        line-height: 1.4;
        max-width: 100%;
        margin: 0 auto;
    }

    /* CTA Button Mobile Styles */
    .tips-tricks-cta-bar .cta-button-container {
        width: 100%;
        display: flex;
        justify-content: center;
        padding: 0 10px;
    }

    .tips-tricks-cta-bar .cta-button-container .ob {
        width: 100%;
        max-width: 280px;
        text-align: center;
        padding: 10px 16px;
        font-size: 0.9em;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    /* Toggle Button Mobile Styles */
    .cta-toggle-btn {
        bottom: 15px;
        right: 15px;
        width: 45px;
        height: 45px;
        font-size: 1.1em;
    }
}
}

.tips-tricks-cta-bar.hidden {
    opacity: 0;
    visibility: hidden;
}

.tips-tricks-cta-bar .cta-close-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    background: transparent;
    border: none;
    color: var(--text-color);
    cursor: pointer;
    padding: 8px;
    font-size: 1.2em;
    opacity: 0.7;
    transition: var(--transition-smooth);
    border-radius: 50%;
}

.tips-tricks-cta-bar .cta-close-btn:hover {
    opacity: 1;
    background: rgba(255, 255, 255, 0.1);
}

.tips-tricks-cta-bar .ob i {
    margin-left: 8px;
    transition: transform 0.2s ease;
}

.tips-tricks-cta-bar .ob:hover i {
    transform: translateX(5px);
}

.tips-tricks-cta-bar {
    /* Container Styles */
    max-width: 100%;
    width: 100%;
    background: var(--secondary-color);
    box-shadow: var(--shadow-soft);
    
    /* Drawer Positioning */
    position: fixed;
    bottom: 0;
    left: 0;
    transform: translateY(100%);
    transition: transform 0.3s ease-in-out;
    z-index: 999;
}

.tips-tricks-cta-bar.drawer-open {
    transform: translateY(0);
}

/* Toggle Button Styles */
.cta-toggle-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--primary-color);
    border: none;
    color: var(--background-color);
    cursor: pointer;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2em;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.cta-toggle-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.cta-toggle-btn.drawer-open i {
    transform: rotate(180deg);
}

.cta-toggle-btn i {
    transition: transform 0.3s ease;
}

.tips-tricks-cta-bar .cta-content {
    flex: 1;
    text-align: left;
    max-width: 800px;
    min-width: 280px;
    margin-right: 20px;
}

.tips-tricks-cta-bar .cta-title {
    font-size: 1.4em;
    margin-bottom: 8px;
    color: var(--primary-color);
}

.tips-tricks-cta-bar .cta-description {
    font-size: 0.9em;
    margin-bottom: 0;
    opacity: 0.9;
    line-height: 1.4;
}

.tips-tricks-cta-bar .cta-button-container {
    flex-shrink: 0;
}

.tips-tricks-cta-bar .cta-button {
    display: inline-block;
    padding: 10px 20px;
    font-size: 0.9em;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition-smooth);
    text-decoration: none;
    width: auto;
    white-space: nowrap;
}

.tips-tricks-cta-bar .cta-button:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-strong);
}

.tips-tricks-cta-bar .cta-button i {
    margin-left: 8px;
}

@media (max-width: 768px) {
    .tips-tricks-cta-bar {
        padding: 20px 0;
    }

    .tips-tricks-cta-bar .cta-bar-container {
        flex-direction: column;
        text-align: center;
    }

    .tips-tricks-cta-bar .cta-content {
        text-align: center;
        margin-right: 0;
        margin-bottom: 15px;
        min-width: auto;
    }

    .tips-tricks-cta-bar .cta-title {
        font-size: 1.3em;
    }

    .tips-tricks-cta-bar .cta-description {
        margin-bottom: 15px;
    }

    .tips-tricks-cta-bar .cta-button {
        width: 100%;
        max-width: 250px;
    }
}

/* Navigation */
.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 40px;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 80px;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: saturate(180%) blur(20px);
    -webkit-backdrop-filter: saturate(180%) blur(20px);
    z-index: 999;
    box-shadow: var(--shadow-soft);
    transition: var(--transition-smooth);
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    max-width: 250px !important;
    height: auto;
    transition: var(--transition-smooth);
}

@media (max-width: 1000px) {
    .logo img {
        max-width: 250px !important;
    }
}

.nav-links {
    display: flex;
    align-items: center;
}

/* Remove list markers from navigation */
.nav-links ul,
.nav-links ul li,
.mobile-menu-links ul,
.mobile-menu-links ul li,
#primary-menu,
#primary-menu li,
#mobile-menu,
#mobile-menu li {
    list-style: none !important;
    list-style-type: none !important;
}

.nav-links ul li::marker,
.mobile-menu-links ul li::marker,
#primary-menu li::marker,
#mobile-menu li::marker {
    display: none !important;
}

/* Additional comprehensive menu marker removal */
.nav-links ul,
.nav-links ul li,
.mobile-menu-links ul,
.mobile-menu-links ul li,
#primary-menu,
#primary-menu li,
#mobile-menu,
#mobile-menu li,
.menu,
.menu li,
.menu ul,
.menu ul li,
.nav-menu,
.nav-menu li,
.nav-menu ul,
.nav-menu ul li,
.wp-block-navigation,
.wp-block-navigation li,
.wp-block-navigation ul,
.wp-block-navigation ul li,
.wp-block-navigation-item,
.wp-block-navigation-item li,
.wp-block-navigation-item ul,
.wp-block-navigation-item ul li,
.wp-block-navigation-submenu,
.wp-block-navigation-submenu li,
.wp-block-navigation-submenu ul,
.wp-block-navigation-submenu ul li,
.wp-block-navigation__container,
.wp-block-navigation__container li,
.wp-block-navigation__container ul,
.wp-block-navigation__container ul li,
.wp-block-navigation__responsive-container,
.wp-block-navigation__responsive-container li,
.wp-block-navigation__responsive-container ul,
.wp-block-navigation__responsive-container ul li,
.wp-block-navigation__submenu-container,
.wp-block-navigation__submenu-container li,
.wp-block-navigation__submenu-container ul,
.wp-block-navigation__submenu-container ul li {
    list-style: none !important;
    list-style-type: none !important;
    list-style-image: none !important;
}

.nav-links ul li::marker,
.mobile-menu-links ul li::marker,
#primary-menu li::marker,
#mobile-menu li::marker,
.menu li::marker,
.menu ul li::marker,
.nav-menu li::marker,
.nav-menu ul li::marker,
.wp-block-navigation li::marker,
.wp-block-navigation ul li::marker,
.wp-block-navigation-item li::marker,
.wp-block-navigation-item ul li::marker,
.wp-block-navigation-submenu li::marker,
.wp-block-navigation-submenu ul li::marker,
.wp-block-navigation__container li::marker,
.wp-block-navigation__container ul li::marker,
.wp-block-navigation__responsive-container li::marker,
.wp-block-navigation__responsive-container ul li::marker,
.wp-block-navigation__submenu-container li::marker,
.wp-block-navigation__submenu-container ul li::marker {
    display: none !important;
    content: none !important;
}

.nav-links a {
    margin-left: 2rem;
    text-decoration: none;
    color: white;
    font-size: 12px;
    font-weight: 400;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

/* Style for direct nav links */
.nav-links .nav-link {
    margin-left: 2rem;
    text-decoration: none;
    color: white;
    font-size: 12px;
    font-weight: 400;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

/* Style for mobile nav links */
.mobile-menu-links .mobile-nav-link {
    display: block;
    padding: 14px 0;
    font-size: 17px;
    color: var(--text-color);
    text-decoration: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0;
    transform: translateY(10px);
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.menu-button {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    width: 24px;
    height: 24px;
    position: relative;
}

.menu-button span {
    display: block;
    width: 24px;
    height: 2px;
    background-color: white;
    position: absolute;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.menu-button span:nth-child(1) { top: 6px; }
.menu-button span:nth-child(2) { top: 11px; }
.menu-button span:nth-child(3) { top: 16px; }

.menu-button.active span:nth-child(1) {
    transform: translateY(5px) rotate(45deg);
}

.menu-button.active span:nth-child(2) {
    opacity: 0;
}

.menu-button span:nth-child(2) {
    opacity: 0;
}

.menu-button.active span:nth-child(3) {
    transform: translateY(-5px) rotate(-45deg);
}

.mobile-menu {
    display: block;
    position: fixed;
    top: 80px;
    left: 0;
    width: 100%;
    height: 0;
    background: #0a0a0a;
    backdrop-filter: saturate(180%) blur(20px);
    -webkit-backdrop-filter: saturate(180%) blur(20px);
    overflow: hidden;
    transition: height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    visibility: hidden;
    z-index: 998;
}

.mobile-menu.active {
    height: calc(100vh - 80px);
    opacity: 1;
    visibility: visible;
}

.mobile-menu-links {
    padding: 20px;
    opacity: 0;
    transform: translateY(-20px);
    transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1) 0.2s, transform 0.4s cubic-bezier(0.4, 0, 0.2, 1) 0.2s;
}

.mobile-menu.active .mobile-menu-links {
    opacity: 1;
    transform: translateY(0);
}

.mobile-menu-links a {
    display: block;
    padding: 14px 0;
    font-size: 17px;
    color: var(--text-color);
    text-decoration: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0;
    transform: translateY(10px);
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.mobile-menu-links .cta-button {
    display: block;
    width: 100%;
    margin-top: 20px;
    text-align: center;
    border: none;
    opacity: 0;
    transform: translateY(10px);
}

@media (min-width: 1000px) {
    .mobile-menu-links .cta-button {
        display: none;
    }
}

.mobile-menu.active .mobile-menu-links .cta-button {
    opacity: 1;
    transform: translateY(0);
}

.mobile-menu.active .mobile-menu-links a {
    opacity: 1;
    transform: translateY(0);
}

.mobile-menu.active .mobile-menu-links .mobile-nav-link {
    opacity: 1;
    transform: translateY(0);
}

.mobile-menu-links a:hover {
    opacity: 1;
    color: var(--primary-color);
    border-bottom-color: var(--primary-color);
    transform: translateX(10px);
}

/* Hover effects for direct nav links */
.nav-links .nav-link:hover {
    opacity: 1;
}

.mobile-menu-links .mobile-nav-link:hover {
    opacity: 1;
    color: var(--primary-color);
    border-bottom-color: var(--primary-color);
    transform: translateX(10px);
}

.nav-links a:hover {
    opacity: 1;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background-color: var(--background-color);
    margin-bottom: 10px;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
    transition: transform 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
    padding: 60px 20px;
}

.hero-background-effect {
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
    background-blend-mode: overlay;
    mix-blend-mode: color-burn;
}

.hero-content h1 {
    font-size: clamp(2rem, 5vw + 1rem, 4rem);
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin-bottom: 2rem;
    color: var(--text-color);
    font-weight: 700;
    line-height: 1.05;
    letter-spacing: -0.015em;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradientShift 8s ease infinite;
    position: relative;
}

.hero-content h1::after {
    content: attr(data-text);
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: blur(25px);
    opacity: 0.3;
    animation: gradientShift 8s ease infinite;
}

.hero-content p {
    font-size: 28px;
    margin-bottom: 2.5rem;
    color: var(--text-color);
    opacity: 0.8;
    font-weight: 400;
    letter-spacing: .004em;
}

.hero-cta-container {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 3rem;
}

@media (max-width: 480px) {
    .hero-cta-container {
        flex-direction: column;
        gap: 1rem;
    }
}

/* Buttons */
.cta-button, .submit-button {
    text-decoration: none !important;
    padding: 12px 28px;
    font-size: 17px;
    line-height: 1.17648;
    font-weight: 500;
    letter-spacing: -.022em;
    color: white;
    background: var(--gradient-primary);
    border: none;
    border-radius: 5px;
    cursor: pointer;
    min-width: 28px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(197, 164, 126, 0.3);
    position: relative;
    overflow: hidden;
}

.cta-button:hover, .submit-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(197, 164, 126, 0.4);
}

.cta-button:active, .submit-button:active {
    transform: translateY(1px);
}

.cta-button.ob, .ob {
    /* Base Styles */
    background: #262626;
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
    padding: 12px 24px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    
    /* Interactive */
    cursor: pointer;
    transition: all 0.3s ease;
    
    /* Typography */
    font-weight: 500;
    letter-spacing: 0.5px;
}

.cta-button.ob:hover, .ob:hover {
    background: var(--primary-color);
    color: var(--background-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(197, 164, 126, 0.2);
}

.hero-video-container {
    max-width: 800px;
    margin: 3rem auto 0;
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 16px;
    box-shadow: var(--shadow-strong);
}

.hero-video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

@media (max-width: 1000px) {
    .hero-video-container {
        margin: 2rem auto 0;
        border-radius: 12px;
    }
}

/* Services Section */
.services {
    padding: 100px 0;
    background: var(--background-color);
}

.services h2 {
    text-align: center;
    font-size: 48px;
}

/* About Section */
.about {
    padding: 100px 0;
    background: var(--accent-color);
}

.about h2 {
    text-align: center;
    font-size: 48px;
    margin-bottom: 2rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.about-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.about-text {
    font-size: 21px;
    line-height: 1.381;
    font-weight: 400;
    letter-spacing: .011em;
    margin-bottom: 3rem;
    text-align: center;
    color: var(--text-color);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    text-align: center;
}

.stat-card {
    padding: 2rem;
    background: var(--background-color);
    border-radius: 18px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
}

.stat-card h3 {
    font-size: 48px;
    font-weight: 600;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-card p {
    font-size: 17px;
    color: var(--text-color);
    opacity: 0.8;
}

/* Testimonials Section */
.testimonials {
    padding: 100px 0;
    background: var(--background-color);
}

.testimonials h2 {
    text-align: center;
    font-size: 48px;
    margin-bottom: 3rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.testimonial-card {
    background: linear-gradient(135deg, rgba(197, 164, 126, 0.08), rgba(26, 26, 26, 0.15));
    border-radius: 24px;
    padding: 3rem;
    box-shadow: var(--shadow-strong);
    transition: var(--transition-smooth);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(197, 164, 126, 0.15);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    background: linear-gradient(135deg, rgba(197, 164, 126, 0.08), rgba(26, 26, 26, 0.15));
    border: 1px solid rgba(197, 164, 126, 0.2);
}

.testimonial-content p {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 400;
    letter-spacing: .002em;
}

.testimonial-author strong {
    font-size: 17px;
    font-weight: 600;
    color: var(--primary-color);
}

.testimonial-author span {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.testimonial-author strong {
    font-size: 17px;
    font-weight: 600;
    color: var(--text-color);
}

.testimonial-author span {
    font-size: 14px;
    color: var(--text-color);
    opacity: 0.8;
}

/* Team Section */
.team {
    padding: 100px 0;
    background: var(--accent-color);
}

.team h2 {
    text-align: center;
    font-size: 48px;
    margin-bottom: 3rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.single-instructor .team-card {
    grid-column: 1 / -1;
    max-width: 800px;
    margin: 0 auto;
    padding: 3rem;
}

.instructor-image {
    width: 100%;
    max-width: 300px;
    height: auto;
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: 50%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
    display: block;
    margin: 0 auto;
    object-fit: cover;
    margin: 0 auto 2rem;
    border: 3px solid var(--primary-color);
}

.instructor-title {
    color: var(--primary-color) !important;
    font-size: 1.2rem !important;
    margin-bottom: 2rem !important;
}

.instructor-bio {
    text-align: left;
    margin-top: 2rem;
}

.instructor-bio p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.6;
}

.instructor-signature {
    text-align: right;
    margin-top: 3rem;
    font-family: "Brush Script MT", cursive;
}

.signature-text {
    font-size: 2rem !important;
    color: var(--primary-color) !important;
    margin-bottom: 0.5rem !important;
}

.signature-title {
    font-size: 1rem !important;
    font-family: "Helvetica Neue", Arial, sans-serif;
}

.team-card {
    background: var(--background-color);
    border-radius: 18px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.team-card:hover {
    transform: translateY(-5px);
}

.team-member-image {
    font-size: 48px;
    margin-bottom: 1rem;
}

.team-card h3 {
    font-size: 21px;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-color);
}

.team-card p {
    font-size: 17px;
    color: var(--text-color);
    opacity: 0.8;
}

/* FAQ Section */
.faq {
    padding: 100px 0;
    background: var(--background-color);
}

.faq h2 {
    text-align: center;
    font-size: 48px;
    margin-bottom: 3rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.faq-grid {
    padding: 20px;
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item h3 {
    padding: 1.5rem;
    margin: 0;
    cursor: pointer;
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.1rem;
    color: var(--text-color);
    transition: background-color 0.3s ease;
}

.faq-item h3:hover {
    background-color: rgba(255, 255, 255, 0.05);
}

.faq-item h3::after {
    content: '+';
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.faq-item.active h3::after {
    transform: rotate(45deg);
}

.faq-item p {
    margin: 0;
    padding: 0 1.5rem;
    height: 0;
    opacity: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active p {
    padding: 0 1.5rem 1.5rem;
    height: auto;
    opacity: 1;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    padding: 40px;
    transition: var(--transition-smooth);
    border: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.service-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 50%);
    opacity: 0;
    transform: scale(0.5);
    transition: transform 0.6s ease-out, opacity 0.6s ease-out;
}

.service-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--primary-color);
    box-shadow: 0 15px 30px rgba(0,0,0,0.3);
}

.service-card:hover::before {
    opacity: 1;
    transform: scale(1);
}

.service-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.service-card h3 {
    font-size: 28px;
    margin-bottom: 1.2rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 600;
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background: var(--accent-color);
}

.contact h2 {
    text-align: center;
    font-size: 48px;
    line-height: 1.08349;
    font-weight: 600;
    letter-spacing: -.003em;
    margin-bottom: 50px;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 15px;
    margin-bottom: 20px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: var(--text-color);
    font-size: 16px;
    transition: var(--transition-smooth);
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

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

/* Footer */
.footer {
    text-align: center;
    padding: 17px 0;
    background: #262626;
    color: white;
    font-size: 12px;
    line-height: 1.33337;
    font-weight: 400;
    letter-spacing: -.01em;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-links {
    margin-top: 10px;
}

.footer-links a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition-smooth);
    font-size: 12px;
}

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

.footer-divider {
    margin: 0 10px;
    color: rgba(255, 255, 255, 0.4);
}

/* WordPress Specific Styles */
.wp-block-image img {
    max-width: 100%;
    height: auto;
}

.wp-block-quote {
    border-left: 4px solid var(--primary-color);
    padding-left: 1rem;
    margin: 2rem 0;
    font-style: italic;
}

.wp-block-quote cite {
    display: block;
    margin-top: 1rem;
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Beaver Builder Compatibility */
.fl-builder-content {
    background: transparent;
}

.fl-builder-content .fl-row {
    background: transparent;
}

.fl-builder-content .fl-col {
    background: transparent;
}

.fl-builder-content .fl-module {
    background: transparent;
}





/* Site Content */
.site-content {
    padding-top: 80px;
}

.site-main {
    padding: 0;
    min-height: auto;
    position: relative;
    overflow-x: hidden;
}

/* Posts and Pages */
.post-card, .page-content {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    padding: 0;
    margin-bottom: 0;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition-smooth);
}

.post-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
}

.entry-title {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--text-color);
}

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

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

.entry-meta {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1rem;
}

.entry-meta span {
    margin-right: 1rem;
}

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

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

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

.entry-content a {
    color: var(--primary-color);
    text-decoration: none;
}

.entry-content a:hover {
    text-decoration: underline;
}

.entry-summary {
    margin-bottom: 1rem;
}

.read-more {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: var(--gradient-primary);
    color: white;
    text-decoration: none;
    border-radius: 5px;
    transition: var(--transition-smooth);
}

.read-more:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(197, 164, 126, 0.3);
}

/* Pagination */
.navigation.pagination {
    margin: 2rem 0;
    text-align: center;
}

.nav-links {
    display: inline-flex;
    gap: 0.5rem;
}

.page-numbers {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-color);
    text-decoration: none;
    border-radius: 5px;
    transition: var(--transition-smooth);
}

.page-numbers:hover,
.page-numbers.current {
    background: var(--gradient-primary);
    color: white;
}

/* Search Form */
.search-form {
    display: flex;
    gap: 0.5rem;
    margin: 2rem 0;
}

.search-field {
    flex: 1;
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 5px;
    color: var(--text-color);
}

.search-submit {
    padding: 0.75rem 1rem;
    background: var(--gradient-primary);
    border: none;
    border-radius: 5px;
    color: white;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.search-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(197, 164, 126, 0.3);
}

/* Widgets */
.widget-area {
    margin-top: 2rem;
}

.widget {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.widget-title {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.widget ul {
    list-style: none;
    padding: 0;
}

.widget ul li {
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.widget ul li:last-child {
    border-bottom: none;
}

.widget ul li a {
    color: var(--text-color);
    text-decoration: none;
    transition: var(--transition-smooth);
}

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

/* Comments */
.comments-area {
    margin-top: 3rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.comments-title {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: var(--text-color);
}

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

.comment {
    margin-bottom: 2rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 8px;
}

.comment-author {
    font-weight: bold;
    color: var(--primary-color);
}

.comment-meta {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0.5rem;
}

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

/* Responsive Design */
@media (max-width: 1000px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-content p {
        font-size: 1.125rem;
    }

    .services h2,
    .contact h2 {
        font-size: 2rem;
    }

    .nav {
        padding: 0 1rem;
    }

    .nav-links {
        display: none !important;
    }

    .menu-button {
        display: block !important;
    }

    .site-main {
        padding: 1rem;
    }

    .post-card, .page-content {
        padding: 0;
    }

    .entry-title {
        font-size: 1.5rem;
    }
}

/* Animation */
@keyframes gradientShift {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

/* Accessibility */
.screen-reader-text {
    clip: rect(1px, 1px, 1px, 1px);
    position: absolute !important;
    height: 1px;
    width: 1px;
    overflow: hidden;
}

.screen-reader-text:focus {
    background-color: #f1f1f1;
    border-radius: 3px;
    box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
    clip: auto !important;
    color: #21759b;
    display: block;
    font-size: 14px;
    font-weight: bold;
    height: auto;
    left: 5px;
    line-height: normal;
    padding: 15px 23px 14px;
    text-decoration: none;
    top: 5px;
    width: auto;
    z-index: 100000;
}

/* Full-width page styles */
.full-width-page {
    background-color: var(--page-background-color);
    color: var(--page-text-color);
    min-height: 100vh;
    padding: 120px 0 0;
    overflow-x: hidden;
    position: relative;
}

.page-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    min-height: calc(100vh - 120px);
    position: relative;
}

.full-width-page .entry-title {
    color: var(--page-text-color);
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.full-width-page .entry-content {
    color: var(--page-text-color);
    font-size: 1.1rem;
    line-height: 1.7;
}

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

.full-width-page .entry-content h1 { font-size: 2rem; }
.full-width-page .entry-content h2 { font-size: 1.75rem; }
.full-width-page .entry-content h3 { font-size: 1.5rem; }
.full-width-page .entry-content h4 { font-size: 1.25rem; }
.full-width-page .entry-content h5 { font-size: 1.1rem; }
.full-width-page .entry-content h6 { font-size: 1rem; }

.full-width-page .entry-content a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.full-width-page .entry-content a:hover {
    color: var(--secondary-color);
}

.full-width-page .entry-content p {
    margin-bottom: 1.5rem;
}

.full-width-page .entry-content ul,
.full-width-page .entry-content ol {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.full-width-page .entry-content li {
    margin-bottom: 0.5rem;
}

.full-width-page .page-thumbnail {
    margin-bottom: 2rem;
    text-align: center;
}

.full-width-page .page-thumbnail img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: var(--shadow-soft);
}

/* Prevent dragging of links and images */
a, img, button, input, textarea, select {
    -webkit-user-drag: none;
    -khtml-user-drag: none;
    -moz-user-drag: none;
    -o-user-drag: none;
    user-drag: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -o-user-select: none;
    user-select: none;
}

/* Allow text selection for content areas */
.entry-content, .entry-summary, .comment-content, .widget {
    -webkit-user-select: text;
    -khtml-user-select: text;
    -moz-user-select: text;
    -o-user-select: text;
    user-select: text;
}

/* Allow text selection for form inputs */
input, textarea, select {
    -webkit-user-select: text;
    -khtml-user-select: text;
    -moz-user-select: text;
    -o-user-select: text;
    user-select: text;
}

/* Blog Layout Styles */
.posts-container {
    display: grid;
    gap: 4rem;
    margin-bottom: 4rem;
}

.post-card {
    background: var(--page-background-color);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(197, 164, 126, 0.1);
    position: relative;
}

.post-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.post-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.12);
    border-color: rgba(197, 164, 126, 0.2);
}

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

.post-thumbnail {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
}

.post-thumbnail img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.post-content {
    padding: 3rem;
}

.post-card .entry-title {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--page-text-color);
}

.post-card .entry-title a {
    color: var(--page-text-color);
    text-decoration: none;
    transition: color 0.3s ease;
    background: linear-gradient(135deg, var(--page-text-color), var(--page-text-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.post-card .entry-title a:hover {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.entry-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-bottom: 2rem;
    font-size: 0.9rem;
    color: #777;
    font-weight: 400;
    letter-spacing: 0.02em;
}

.entry-meta span {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 1rem;
    background: rgba(197, 164, 126, 0.05);
    border-radius: 25px;
    border: 1px solid rgba(197, 164, 126, 0.1);
    transition: all 0.3s ease;
}

.entry-meta span:hover {
    background: rgba(197, 164, 126, 0.1);
    border-color: rgba(197, 164, 126, 0.2);
    transform: translateY(-2px);
}

.entry-meta i {
    color: var(--primary-color);
    font-size: 0.85rem;
}

.entry-meta a {
    color: #777;
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 500;
}

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

.entry-summary {
    color: #555;
    line-height: 1.8;
    margin-bottom: 2rem;
    font-size: 1.05rem;
    font-weight: 400;
    letter-spacing: 0.01em;
}

.read-more {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.02em;
    padding: 0.75rem 1.5rem;
    background: rgba(197, 164, 126, 0.05);
    border: 1px solid rgba(197, 164, 126, 0.2);
    border-radius: 8px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.read-more::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    transition: left 0.3s ease;
    z-index: -1;
}

.read-more:hover {
    color: white;
    border-color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(197, 164, 126, 0.3);
}

.read-more:hover::before {
    left: 0;
}

.read-more i {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.read-more:hover i {
    transform: translateX(4px);
}

/* Single Post Styles */
.single-post {
    background: var(--page-background-color);
    border-radius: 20px;
    padding: 4rem;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.08);
    margin-bottom: 4rem;
    border: 1px solid rgba(197, 164, 126, 0.1);
    position: relative;
    overflow: hidden;
}

.single-post::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: var(--gradient-primary);
}

.single-post .entry-title {
    font-size: 3.5rem;
    margin-bottom: 2rem;
    color: var(--page-text-color);
    line-height: 1.1;
    font-weight: 700;
    letter-spacing: -0.03em;
    background: linear-gradient(135deg, var(--page-text-color), var(--page-text-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.single-post .entry-meta {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid rgba(197, 164, 126, 0.1);
    gap: 2rem;
}

.single-post .entry-meta span {
    padding: 0.75rem 1.5rem;
    background: rgba(197, 164, 126, 0.05);
    border-radius: 30px;
    border: 1px solid rgba(197, 164, 126, 0.15);
    font-size: 0.95rem;
    font-weight: 500;
}

.single-post .post-thumbnail {
    margin-bottom: 3rem;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.single-post .post-thumbnail img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    transition: transform 0.6s ease;
}

.single-post .post-thumbnail:hover img {
    transform: scale(1.02);
}

.single-post .entry-content {
    color: var(--page-text-color);
    line-height: 1.8;
    font-size: 1.15rem;
    font-weight: 400;
    letter-spacing: 0.01em;
}

.single-post .entry-content h1,
.single-post .entry-content h2,
.single-post .entry-content h3,
.single-post .entry-content h4,
.single-post .entry-content h5,
.single-post .entry-content h6 {
    color: var(--page-text-color);
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.single-post .entry-content h1 { 
    font-size: 2.5rem; 
    line-height: 1.2;
}
.single-post .entry-content h2 { 
    font-size: 2.2rem; 
    line-height: 1.3;
}
.single-post .entry-content h3 { 
    font-size: 1.9rem; 
    line-height: 1.3;
}
.single-post .entry-content h4 { 
    font-size: 1.6rem; 
    line-height: 1.4;
}
.single-post .entry-content h5 { 
    font-size: 1.3rem; 
    line-height: 1.4;
}
.single-post .entry-content h6 { 
    font-size: 1.1rem; 
    line-height: 1.4;
}

.single-post .entry-content p {
    margin-bottom: 2rem;
    font-size: 1.15rem;
    line-height: 1.8;
}

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

.single-post .entry-content li {
    margin-bottom: 0.75rem;
    line-height: 1.7;
    font-size: 1.1rem;
}

.single-post .entry-content a {
    color: var(--primary-color);
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
    border-bottom: 1px solid transparent;
}

.single-post .entry-content a:hover {
    color: var(--secondary-color);
    border-bottom-color: var(--secondary-color);
}

.single-post .entry-content blockquote {
    border-left: 5px solid var(--primary-color);
    padding: 2rem 2.5rem;
    margin: 3rem 0;
    font-style: italic;
    color: #777;
    background: rgba(197, 164, 126, 0.03);
    border-radius: 0 12px 12px 0;
    font-size: 1.2rem;
    line-height: 1.7;
    position: relative;
}

.single-post .entry-content blockquote::before {
    content: '"';
    position: absolute;
    top: 1rem;
    left: 1rem;
    font-size: 4rem;
    color: var(--primary-color);
    opacity: 0.3;
    font-family: serif;
}

.single-post .entry-content img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    margin: 2.5rem 0;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.single-post .entry-content img:hover {
    transform: scale(1.02);
}

.single-post .entry-footer {
    margin-top: 3rem;
    padding-top: 2.5rem;
    border-top: 2px solid rgba(197, 164, 126, 0.1);
}

.tags-links {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: #777;
    font-size: 0.95rem;
    font-weight: 500;
}

.tags-links i {
    color: var(--primary-color);
    font-size: 1rem;
}

.tags-links a {
    color: #777;
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 0.5rem 1rem;
    background: rgba(197, 164, 126, 0.05);
    border: 1px solid rgba(197, 164, 126, 0.1);
    border-radius: 20px;
    font-size: 0.85rem;
}

.tags-links a:hover {
    color: var(--primary-color);
    background: rgba(197, 164, 126, 0.1);
    border-color: rgba(197, 164, 126, 0.2);
    transform: translateY(-2px);
}

/* Pagination */
.navigation.pagination {
    margin-top: 4rem;
    text-align: center;
}

.nav-links {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
}

.page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: var(--page-background-color);
    color: var(--page-text-color);
    text-decoration: none;
    border-radius: 12px;
    border: 2px solid rgba(197, 164, 126, 0.1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-weight: 600;
    font-size: 0.95rem;
}

.page-numbers:hover,
.page-numbers.current {
    background: var(--gradient-primary);
    color: white;
}

/* No Posts */
.no-posts {
    text-align: center;
    padding: 4rem;
    background: var(--page-background-color);
    border-radius: 20px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(197, 164, 126, 0.1);
}

.no-posts h2 {
    color: var(--page-text-color);
    margin-bottom: 1.5rem;
    font-size: 2.5rem;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.no-posts p {
    color: #777;
    margin-bottom: 2.5rem;
    font-size: 1.1rem;
    line-height: 1.7;
}

/* Post Navigation */
.post-navigation {
    margin-top: 4rem;
    padding: 3rem;
    background: var(--page-background-color);
    border-radius: 20px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(197, 164, 126, 0.1);
}

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

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

.nav-previous a,
.nav-next a {
    display: block;
    padding: 1.5rem 2rem;
    background: rgba(197, 164, 126, 0.03);
    border: 2px solid rgba(197, 164, 126, 0.1);
    border-radius: 12px;
    text-decoration: none;
    color: var(--page-text-color);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.nav-previous a::before,
.nav-next a::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    transition: left 0.3s ease;
    z-index: -1;
}

.nav-previous a:hover,
.nav-next a:hover {
    color: white;
    border-color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(197, 164, 126, 0.3);
}

.nav-previous a:hover::before,
.nav-next a:hover::before {
    left: 0;
}

.nav-subtitle {
    display: block;
    font-size: 0.85rem;
    color: #777;
    margin-bottom: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.nav-title {
    font-weight: 600;
    font-size: 1.1rem;
    line-height: 1.4;
}

/* Responsive Design */
@media (max-width: 1000px) {
    .posts-container {
        gap: 3rem;
    }
    
    .post-content {
        padding: 2rem;
    }
    
    .post-card .entry-title {
        font-size: 1.6rem;
    }
    
    .single-post {
        padding: 2.5rem;
    }
    
    .single-post .entry-title {
        font-size: 2.5rem;
    }
    
    .entry-meta {
        flex-direction: column;
        gap: 1rem;
    }
    
    .nav-links {
        flex-direction: column;
    }
    
    .post-navigation .nav-links {
        flex-direction: column;
    }
    
    .nav-previous a,
    .nav-next a {
        padding: 1.25rem 1.5rem;
    }
}

/* Comments Section Luxury Styling */
.comments-area {
    margin-top: 4rem;
    padding: 3rem;
    background: var(--page-background-color);
    border-radius: 20px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(197, 164, 126, 0.1);
    position: relative;
    overflow: hidden;
}

.comments-area::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: var(--gradient-primary);
}

.comments-title {
    font-size: 2.5rem;
    margin-bottom: 2.5rem;
    color: var(--page-text-color);
    font-weight: 700;
    letter-spacing: -0.02em;
    background: linear-gradient(135deg, var(--page-text-color), var(--page-text-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.comment {
    margin-bottom: 2.5rem;
    padding: 2rem;
    background: rgba(197, 164, 126, 0.02);
    border-radius: 16px;
    border: 1px solid rgba(197, 164, 126, 0.08);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.comment:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    border-color: rgba(197, 164, 126, 0.15);
}

.comment-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    font-weight: 600;
    color: var(--page-text-color);
    font-size: 1.1rem;
}

.comment-author .avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 3px solid var(--primary-color);
    box-shadow: 0 5px 15px rgba(197, 164, 126, 0.2);
}

.comment-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
    color: #777;
    font-weight: 500;
}

.comment-meta a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 600;
}

.comment-meta a:hover {
    color: var(--secondary-color);
}

.comment-content {
    color: var(--page-text-color);
    line-height: 1.7;
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
}

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

.comment-content p:last-child {
    margin-bottom: 0;
}

/* Comment Form Styling */
.comment-respond {
    margin-top: 3rem;
    padding: 2.5rem;
    background: rgba(197, 164, 126, 0.03);
    border-radius: 16px;
    border: 2px solid rgba(197, 164, 126, 0.1);
    position: relative;
    overflow: hidden;
}

.comment-respond::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
}

.comment-reply-title {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    color: var(--page-text-color);
    font-weight: 700;
    letter-spacing: -0.02em;
}

.comment-form {
    display: grid;
    gap: 1.5rem;
}

.comment-form p {
    margin: 0;
}

.comment-form label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--page-text-color);
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.02em;
}

.comment-form input[type="text"],
.comment-form input[type="email"],
.comment-form input[type="url"],
.comment-form textarea {
    width: 100%;
    padding: 1rem 1.25rem;
    border: 2px solid rgba(197, 164, 126, 0.15);
    border-radius: 12px;
    background: var(--page-background-color);
    color: var(--page-text-color);
    font-size: 1rem;
    line-height: 1.5;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-family: inherit;
}

.comment-form input[type="text"]:focus,
.comment-form input[type="email"]:focus,
.comment-form input[type="url"]:focus,
.comment-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(197, 164, 126, 0.1);
    transform: translateY(-2px);
}

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

.comment-form input[type="submit"] {
    background: var(--gradient-primary);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(197, 164, 126, 0.3);
}

.comment-form input[type="submit"]:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(197, 164, 126, 0.4);
}

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

/* Comment Form Grid Layout */
.comment-form-author,
.comment-form-email,
.comment-form-url {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 1000px) {
    .comment-form-author,
    .comment-form-email,
    .comment-form-url {
        grid-template-columns: 1fr 1fr;
    }
    
    .comment-form-author {
        grid-template-columns: 1fr 1fr 1fr;
    }
}

/* Comment Notes */
.comment-notes {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: rgba(197, 164, 126, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(197, 164, 126, 0.1);
    font-size: 0.9rem;
    color: #777;
    line-height: 1.6;
}

.comment-notes p {
    margin: 0;
}

.comment-notes a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
}

.comment-notes a:hover {
    color: var(--secondary-color);
}

/* Logged in user styling */
.logged-in-as {
    margin-bottom: 1.5rem;
    padding: 1rem 1.5rem;
    background: rgba(197, 164, 126, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(197, 164, 126, 0.1);
    font-size: 0.9rem;
    color: #777;
}

.logged-in-as a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
}

.logged-in-as a:hover {
    color: var(--secondary-color);
}

/* Comment moderation */
.comment-awaiting-moderation {
    background: rgba(255, 193, 7, 0.1);
    border: 1px solid rgba(255, 193, 7, 0.2);
    color: #856404;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

/* Reply links */
.reply {
    margin-top: 1rem;
}

.reply a {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    padding: 0.5rem 1rem;
    background: rgba(197, 164, 126, 0.05);
    border: 1px solid rgba(197, 164, 126, 0.1);
    border-radius: 20px;
    transition: all 0.3s ease;
}

.reply a:hover {
    background: rgba(197, 164, 126, 0.1);
    border-color: rgba(197, 164, 126, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(197, 164, 126, 0.2);
}

/* Nested comments */
.children {
    list-style: none;
    padding-left: 3rem;
    margin-top: 2rem;
}

.children .comment {
    border-left: 3px solid var(--primary-color);
    background: rgba(197, 164, 126, 0.01);
}

/* Comment pagination */
.comment-navigation {
    margin-top: 2rem;
    padding: 1.5rem;
    background: rgba(197, 164, 126, 0.03);
    border-radius: 12px;
    border: 1px solid rgba(197, 164, 126, 0.1);
}

.nav-previous,
.nav-next {
    display: inline-block;
    margin: 0 1rem 0 0;
}

.nav-previous a,
.nav-next a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.nav-previous a:hover,
.nav-next a:hover {
    color: var(--secondary-color);
}

/* No comments */
.no-comments {
    text-align: center;
    padding: 3rem;
    color: #777;
    font-style: italic;
    font-size: 1.1rem;
}

/* Comment form validation */
.comment-form input:invalid,
.comment-form textarea:invalid {
    border-color: #dc3545;
}

.comment-form input:invalid:focus,
.comment-form textarea:invalid:focus {
    box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.1);
}

/* Loading state */
.comment-form input[type="submit"]:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

/* Responsive comment styling */
@media (max-width: 1000px) {
    .comments-area {
        padding: 2rem;
    }
    
    .comment {
        padding: 1.5rem;
    }
    
    .comment-respond {
        padding: 2rem;
    }
    
    .children {
        padding-left: 1.5rem;
    }
    
    .comment-author {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .comment-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
}

/* Tips and Tricks CTA Bar */
.tips-tricks-cta-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--gradient-primary);
    color: white;
    z-index: 9999;
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.15);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.tips-tricks-cta-bar.show {
    transform: translateY(0);
}

.cta-bar-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1.5rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    position: relative;
}

.cta-content {
    flex: 1;
}

.cta-title {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    letter-spacing: -0.02em;
    color: inherit;
}

.cta-description {
    font-size: 1rem;
    opacity: 0.9;
    margin: 0;
    line-height: 1.5;
    color: inherit;
}

.cta-button-container {
    flex-shrink: 0;
}

.tips-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(255, 255, 255, 0.15);
    color: white;
    text-decoration: none;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.02em;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.tips-cta-btn:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    color: white;
}

.tips-cta-btn i {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.tips-cta-btn:hover i {
    transform: translateX(3px);
}

.cta-close-btn {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.cta-close-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

.cta-close-btn i {
    font-size: 0.8rem;
}

/* Tips and Tricks Post Specific Styles */
.tips-tricks-post {
    margin-bottom: 6rem; /* Extra space for CTA bar */
}

.tips-tricks-post .entry-title {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 8s ease infinite;
}

.tips-tricks-post .entry-meta span {
    background: rgba(197, 164, 126, 0.1);
    border: 1px solid rgba(197, 164, 126, 0.2);
}

.tips-tricks-post .entry-meta span:hover {
    background: rgba(197, 164, 126, 0.15);
    border-color: rgba(197, 164, 126, 0.3);
}

/* CTA Bar Animation */
@keyframes slideUpCTA {
    from {
        transform: translateY(100%);
    }
    to {
        transform: translateY(0);
    }
}

@keyframes slideDownCTA {
    from {
        transform: translateY(0);
    }
    to {
        transform: translateY(100%);
    }
}

.tips-tricks-cta-bar.animate-in {
    animation: slideUpCTA 0.4s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.tips-tricks-cta-bar.animate-out {
    animation: slideDownCTA 0.4s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

/* Responsive CTA Bar */
@media (max-width: 1000px) {
    .cta-bar-container {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
        padding: 1.5rem;
    }
    
    .cta-content {
        order: 1;
    }
    
    .cta-button-container {
        order: 2;
    }
    
    .cta-close-btn {
        order: 3;
        position: static;
        align-self: center;
        margin-top: 0.5rem;
    }
    
    .cta-title {
        font-size: 1.2rem;
    }
    
    .cta-description {
        font-size: 0.9rem;
    }
    
    .tips-cta-btn {
        padding: 0.75rem 1.25rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .cta-bar-container {
        padding: 1.25rem;
    }
    
    .cta-title {
        font-size: 1.1rem;
    }
    
    .cta-description {
        font-size: 0.85rem;
    }
    
    .tips-cta-btn {
        padding: 0.6rem 1rem;
        font-size: 0.85rem;
    }
}

/* Tips and Tricks Archive Page */
.post-type-archive-tips_tricks .posts-container {
    margin-bottom: 6rem; /* Extra space for potential CTA bars */
}

.tips-tricks-post-card {
    position: relative;
    overflow: hidden;
}

.tips-tricks-post-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.tips-tricks-post-card:hover::after {
    opacity: 1;
}

.tips-tricks-post-card .entry-title a {
    background: linear-gradient(135deg, var(--page-text-color), var(--page-text-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.tips-tricks-post-card .entry-title a:hover {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.tips-tricks-post-card .entry-title a:hover {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Tips and Tricks Archive Header */
.tips-tricks-header {
    text-align: center;
    margin-bottom: 4rem;
    padding: 3rem 0;
    background: linear-gradient(135deg, rgba(197, 164, 126, 0.05), rgba(197, 164, 126, 0.1));
    border-radius: 20px;
    border: 1px solid rgba(197, 164, 126, 0.1);
}

.tips-tricks-header .page-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 8s ease infinite;
}

.tips-tricks-header .page-title i {
    margin-right: 1rem;
    color: var(--primary-color);
    -webkit-text-fill-color: var(--primary-color);
}

.tips-tricks-header .page-description {
    font-size: 1.2rem;
    color: var(--page-text-color);
    opacity: 0.8;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.tips-tricks-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    margin-bottom: 4rem;
}

.tips-tricks-post-card .post-thumbnail-overlay {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--gradient-primary);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.tips-tricks-post-card:hover .post-thumbnail-overlay {
    opacity: 1;
    transform: scale(1);
}

.tips-tricks-post-card .post-thumbnail-overlay i {
    font-size: 1rem;
}

/* No Posts Styling */
.no-posts {
    text-align: center;
    padding: 4rem 2rem;
}

.no-posts-content {
    max-width: 500px;
    margin: 0 auto;
}

.no-posts-content i {
    font-size: 4rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
    opacity: 0.5;
}

.no-posts-content h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--page-text-color);
}

.no-posts-content p {
    font-size: 1.1rem;
    color: var(--page-text-color);
    opacity: 0.7;
    line-height: 1.6;
}

/* Responsive Tips and Tricks Archive */
@media (max-width: 1000px) {
    .tips-tricks-header {
        padding: 2rem 1rem;
        margin-bottom: 3rem;
    }
    
    .tips-tricks-header .page-title {
        font-size: 2.5rem;
    }
    
    .tips-tricks-header .page-description {
        font-size: 1.1rem;
    }
    
    .tips-tricks-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 2rem;
    }
}

@media (max-width: 480px) {
    .tips-tricks-header .page-title {
        font-size: 2rem;
    }
    
    .tips-tricks-header .page-description {
        font-size: 1rem;
    }
    
    .tips-tricks-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .no-posts-content i {
        font-size: 3rem;
    }
    
    .no-posts-content h2 {
        font-size: 1.5rem;
    }
    
    .no-posts-content p {
        font-size: 1rem;
    }
}

/* Tips and Tricks Post Card Enhanced Styling */
.tips-tricks-post-card {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    background: #262626;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(197, 164, 126, 0.1);
}

.tips-tricks-post-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
    border-color: rgba(197, 164, 126, 0.2);
}

.tips-tricks-post-card .post-thumbnail {
    position: relative;
    overflow: hidden;
    border-radius: 16px 16px 0 0;
}

.tips-tricks-post-card .post-thumbnail img {
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.tips-tricks-post-card .post-content {
    padding: 2rem;
}

.tips-tricks-post-card .entry-title {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.tips-tricks-post-card .entry-title a {
    color: var(--page-text-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

.tips-tricks-post-card .entry-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.tips-tricks-post-card .entry-meta span {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(197, 164, 126, 0.08);
    color: var(--primary-color);
    padding: 0.5rem 0.875rem;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 500;
    border: 1px solid rgba(197, 164, 126, 0.15);
    transition: all 0.3s ease;
}

.tips-tricks-post-card .entry-meta span:hover {
    background: rgba(197, 164, 126, 0.12);
    border-color: rgba(197, 164, 126, 0.25);
    transform: translateY(-1px);
}

.tips-tricks-post-card .entry-meta i {
    font-size: 0.8rem;
}

.tips-tricks-post-card .entry-summary {
    color: var(--page-text-color);
    opacity: 0.8;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.tips-tricks-post-card .entry-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.tips-tricks-post-card .tags-links {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: var(--page-text-color);
    opacity: 0.7;
}

.tips-tricks-post-card .tags-links i {
    color: var(--primary-color);
}

.tips-tricks-post-card .tags-links a {
    color: var(--primary-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

.tips-tricks-post-card .tags-links a:hover {
    opacity: 0.8;
    text-decoration: underline;
}

/* Responsive Read More Button */
@media (max-width: 1000px) {
    .tips-tricks-post-card .read-more-btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .tips-tricks-post-card .entry-footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .tips-tricks-post-card .read-more-btn {
        padding: 0.6rem 1.25rem;
        font-size: 0.85rem;
        width: 100%;
        justify-content: center;
    }
    
    .tips-tricks-post-card .post-content {
        padding: 1.5rem;
    }
    
    .tips-tricks-post-card .entry-title {
        font-size: 1.2rem;
    }
    
    .tips-tricks-post-card .entry-meta {
        gap: 0.5rem;
    }
    
    .tips-tricks-post-card .entry-meta span {
        padding: 0.4rem 0.75rem;
        font-size: 0.8rem;
    }
}

/* Tips and Tricks Read More Button */
.tips-tricks-post-card .read-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: var(--gradient-primary);
    color: white;
    text-decoration: none;
    padding: 0.875rem 1.75rem;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.02em;
    border: 2px solid transparent;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(197, 164, 126, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.tips-tricks-post-card .read-more-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s ease;
}

.tips-tricks-post-card .read-more-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(197, 164, 126, 0.3);
    border-color: rgba(255, 255, 255, 0.3);
    color: white;
}

.tips-tricks-post-card .read-more-btn:hover::before {
    left: 100%;
}

.tips-tricks-post-card .read-more-btn i {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.tips-tricks-post-card .read-more-btn:hover i {
    transform: translateX(4px);
}



/* Remove all padding/margins for Beaver Builder full-width pages */

/* 1. Reset the main content area */
.bb-full-width {
    width: 100vw !important;
    max-width: none !important;
    margin: 0 !important;
    padding: 0 !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
}

/* 2. Reset common WordPress theme containers */
.site-main .bb-full-width,
#main .bb-full-width,
.content-area .bb-full-width {
    padding: 0 !important;
    margin: 0 !important;
}

/* 3. Reset the article/post wrapper */
.page-content .bb-full-width,
article .bb-full-width {
    padding: 0 !important;
    margin: 0 !important;
}

/* 4. Target common theme wrapper classes */
.site-content,
.content-area,
.site-main {
    padding: 0 !important;
    margin: 0 !important;
}

/* 5. Body and HTML padding reset for BB pages */
body.page .site-main,
body.page #main,
body.page .content-area {
    padding: 0 !important;
    margin: 0 !important;
}

/* 6. Beaver Builder specific resets */
.fl-builder-content-editing .bb-full-width,
.fl-builder-content .bb-full-width {
    width: 100vw !important;
    margin-left: calc(50% - 50vw) !important;
    margin-right: calc(50% - 50vw) !important;
    padding: 0 !important;
}

/* 7. Reset any theme-specific containers */
.container,
.page-container,
.site-container,
.wrap,
.wrapper {
    padding: 0 !important;
    margin: 0 !important;
    max-width: none !important;
    width: 100% !important;
}

/* 8. Common Bootstrap/Foundation resets */
.row,
.col,
[class*="col-"] {
    padding: 0 !important;
    margin: 0 !important;
}

/* 9. Reset header/footer spacing if needed */
body.page #masthead,
body.page .site-header {
    margin-bottom: 0 !important;
}

body.page #colophon,
body.page .site-footer {
    margin-top: 0 !important;
}

/* 10. Target your specific theme classes - replace with your theme's actual classes */
.your-theme-container,
.your-theme-wrapper {
    padding: 0 !important;
    margin: 0 !important;
}

/* 11. Alternative approach - only apply to BB pages with specific class */
.fl-builder .site-main,
.fl-builder #main,
.fl-builder .content-area,
.fl-builder .site-content {
    padding: 0 !important;
    margin: 0 !important;
}