:root {
    /* Typography & Fonts */
    --hvnly-bodyFont: "Plus Jakarta Sans", sans-serif;
    --hvnly-headingFont: 'Montserrat', sans-serif;
    
    /* Core Color Palette */
    --hvnly-primary: #6C60FE;       /* Primary brand color */
    --hvnly-secondary: #8A7BFF;     /* Lighter secondary for gradients */
    --hvnly-accent: #FF9AA2;        /* Accent for urgent elements */
    --hvnly-success: #00B46A;       /* Success states */
    --hvnly-alert: #FF4D4F;         /* Error/alert states */
    --hvnly-light: #f8f9fa;
    --hvnly-dark: #1A1A2F;
    --hvnly-gray: #6c757d;

    /* Neutral Colors */
    --hvnly-text-primary: #1E1E2F;  /* Primary text */
    --hvnly-text-secondary: #555;   /* Secondary text */
    --hvnly-border-color: #E4E4ED;  /* Borders and dividers */
    --hvnly-bg-light: #F8F8F8;      /* Light backgrounds */
    --hvnly-bg-white: #FFFFFF;      /* Pure white */

    /* Dark Mode Variables */
    --hvnly-dark-text-primary: #FFFFFF;
    --hvnly-dark-text-secondary: #B0B0C0;
    --hvnly-dark-bg-light: #1A1A2F;
    --hvnly-dark-bg-white: #2D2D45;
    --hvnly-dark-border: #3A3A4F;
    --hvnly-dark-card-shadow: 0px 10px 30px rgba(0, 0, 0, 0.5);

    /* Property Status Colors */
    --hvnly-status-sale: #6C60FE;   /* For Sale */
    --hvnly-status-rent: #00C2A8;   /* For Rent */
    --hvnly-status-pending: #FFB507;/* Pending */
    --hvnly-status-sold: #FF4D4F;   /* Sold */
    --hvnly-status-off: #9192A3;    /* Off Market */

    /* Card Elements */
    --hvnly-cardBg: var(--hvnly-bg-white);
    --hvnly-cardShadow: 0 15px 35px -10px rgba(0,0,0,0.1);
    --hvnly-cardRadius: 20px;
    --hvnly-cardPadding: 1.8rem;
    --hvnly-cardBorder: 1px solid var(--hvnly-border-color);

    /* Typography Scale */
    --hvnly-titleSize: 24px;         /* Property title */
    --hvnly-priceSize: 1.5rem;       /* Price text */
    --hvnly-metaSize: 0.875rem;      /* Meta info */
    --hvnly-excerptSize: 0.95rem;    /* Description */
    --hvnly-labelSize: 0.9rem;       /* Form labels */

    /* Interactive Elements - Buttons */
    --hvnly-btnPrimaryBg: var(--hvnly-primary);
    --hvnly-btnPrimaryHover: #4F44DD;
    --hvnly-btnText: #fff;
    --hvnly-btnRadius: 50px;
    --hvnly-btnPadding: 0.85rem 2.2rem;

    /* Font Weights */
    --hvnly-fontWeight-light: 300;
    --hvnly-fontWeight-normal: 400;
    --hvnly-fontWeight-medium: 500;
    --hvnly-fontWeight-semibold: 600;
    --hvnly-fontWeight-bold: 700;

    /* Spacing & Transitions */
    --hvnly-baseSpacing: 1.1rem;
    --hvnly-sectionSpacing: 5rem;
    --hvnly-transitionTime: 0.3s ease;
}

/* ======================
   RESET & BASE STYLES
======================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--hvnly-bodyFont);
    background: var(--hvnly-bg-light);
    color: var(--hvnly-text-primary);
    line-height: 26px;
    min-height: 100vh;
    transition: background var(--hvnly-transitionTime), color var(--hvnly-transitionTime);
}

html.hvnly-theme-dark-mode body {
    --hvnly-text-primary: var(--hvnly-dark-text-primary);
    --hvnly-text-secondary: var(--hvnly-dark-text-secondary);
    --hvnly-border-color: var(--hvnly-dark-border);
    --hvnly-bg-light: var(--hvnly-dark-bg-light);
    --hvnly-bg-white: var(--hvnly-dark-bg-white);
    --hvnly-card-shadow: var(--hvnly-dark-card-shadow);
    background: linear-gradient(135deg, #12121c 0%, #0f0f1a 100%);
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--hvnly-headingFont);
    font-weight: var(--hvnly-fontWeight-bold);
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--hvnly-text-primary);
}

.hvnly-container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* ======================
   BUTTON STYLES
======================= */
.hvnly-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(45deg, var(--hvnly-primary), var(--hvnly-secondary));
    color: var(--hvnly-btnText);
    font-family: var(--hvnly-headingFont);
    font-weight: var(--hvnly-fontWeight-semibold);
    padding: var(--hvnly-btnPadding);
    border-radius: var(--hvnly-btnRadius);
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all var(--hvnly-transitionTime);
    font-size: 1rem;
    position: relative;
    overflow: hidden;
    z-index: 1;
    box-shadow: 0 8px 20px -8px var(--hvnly-primary);
}

.hvnly-btn i {
    margin-left: 8px;
    font-size: 0.9rem;
}

.hvnly-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;
    z-index: -1;
}

.hvnly-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px -8px var(--hvnly-primary);
}

.hvnly-btn:hover:before {
    left: 100%;
}

.hvnly-btn-outline {
    background: transparent;
    border: 2px solid var(--hvnly-primary);
    color: var(--hvnly-primary);
    box-shadow: none;
}

.hvnly-btn-outline:before {
    background: linear-gradient(45deg, var(--hvnly-primary), var(--hvnly-secondary));
}

.hvnly-btn-outline:hover {
    color: white;
    border-color: transparent;
}

.hvnly-btn-small {
    padding: 0.6rem 1.5rem;
    font-size: 0.9rem;
}

.hvnly-btn-large {
    padding: 1rem 3rem;
    font-size: 1.2rem;
}

/* ======================
   SECTION STYLES
======================= */
.hvnly-section {
    padding: 6rem 0;
}

.hvnly-section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
}

.hvnly-section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1.2rem;
    position: relative;
    display: inline-block;
    background: linear-gradient(45deg, var(--hvnly-primary), var(--hvnly-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hvnly-section-header h2:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--hvnly-primary), var(--hvnly-secondary));
    border-radius: 2px;
}

.hvnly-section-header p {
    font-size: 1rem;
    color: var(--hvnly-text-secondary);
}

/* ======================
   HEADER STYLES
======================= */
.hvnly-header {
    background: var(--hvnly-bg-white);
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.05);
    width: 100%;
    z-index: 1000;
    transition: background 0.3s ease, box-shadow 0.3s ease;
}

.hvnly-header-fixed {
    position: fixed;
    top: 0;
    left: 0;
}

.hvnly-header-fixed.hvnly-scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 5px 25px rgba(0,0,0,0.1);
}

.hvnly-header-static {
    position: relative;
    margin-bottom: 0;
}

html.hvnly-theme-dark-mode .hvnly-header {
    background: rgba(45, 45, 69, 0.95);
}

.hvnly-header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    /*padding: 1rem 0.8rem;*/
    height: 80px;
}

.hvnly-logo {
    display: flex;
    align-items: center;
    font-size: 1.8rem;
    font-weight: var(--hvnly-fontWeight-bold);
    color: var(--hvnly-primary);
    text-decoration: none;
    font-family: var(--hvnly-headingFont);
}
.hvnly-logo a img{display: block;}
.hvnly-logo-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(108, 96, 254, 0.1);
    border-radius: 12px;
    margin-right: 0.8rem;
    color: var(--hvnly-primary);
}

.hvnly-nav-links {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 1.2rem;
}

.hvnly-nav-links a {
    text-decoration: none;
    color: var(--hvnly-text-primary);
    font-weight: var(--hvnly-fontWeight-medium);
    transition: color var(--hvnly-transitionTime);
    position: relative;
    padding: 0.5rem 0;
    font-size: 0.95rem;
}

.hvnly-nav-links a:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--hvnly-primary), var(--hvnly-secondary));
    border-radius: 2px;
    transition: width var(--hvnly-transitionTime);
}

.hvnly-nav-links a:hover, 
.hvnly-nav-links a.hvnly-active {
    color: var(--hvnly-primary);
}

.hvnly-nav-links a:hover:after, 
.hvnly-nav-links a.hvnly-active:after {
    width: 100%;
}

.hvnly-mobile-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1001;
    width: 90px;
    height: 40px;
    position: relative;
    padding: 0;
    margin-left: 1rem;margin-right: 0.6rem;
}

.hvnly-hamburger {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 3px;
    background: var(--hvnly-text-primary);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.hvnly-hamburger:before,
.hvnly-hamburger:after {
    content: '';
    position: absolute;
    width: 40px;
    height: 3px;
    background: var(--hvnly-text-primary);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.hvnly-hamburger:before {
    top: -14px;
}

.hvnly-hamburger:after {
    top: 14px;
}

.hvnly-mobile-toggle.hvnly-active .hvnly-hamburger {
    background: transparent;
}

.hvnly-mobile-toggle.hvnly-active .hvnly-hamburger:before {
    top: 0;
    transform: rotate(45deg);
}

.hvnly-mobile-toggle.hvnly-active .hvnly-hamburger:after {
    top: 0;
    transform: rotate(-45deg);
}

.hvnly-dark-mode-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--hvnly-bg-light);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    color: var(--hvnly-text-primary);
}

.hvnly-dark-mode-toggle:hover {
    background: rgba(108, 96, 254, 0.1);
    transform: rotate(20deg);
}

.hvnly-dark-mode-toggle i {
    font-size: 1.2rem;
}

html.hvnly-theme-dark-mode .hvnly-dark-mode-toggle {
    background: rgba(255, 255, 255, 0.1);
}

.hvnly-header-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.hvnly-mobile-nav {
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    max-width: 100%;
    height: 100vh;
    overflow-y: auto;
    background: var(--hvnly-bg-white);
    box-shadow: 5px 0 20px rgba(0, 0, 0, 0.15);
    z-index: 999;
    transition: left 0.3s ease-out;
    padding: 2rem 1.5rem;
    visibility: visible;
}

html.hvnly-theme-dark-mode .hvnly-mobile-nav {
    background: var(--hvnly-dark-bg-white);
}

.hvnly-mobile-nav.hvnly-active {
    left: 0;
}

.hvnly-mobile-nav .hvnly-logo {
    margin-bottom: 2rem;
    display: inline-flex;
}

.hvnly-mobile-nav-links {
    list-style: none;
}

.hvnly-mobile-nav-links li {
    margin-bottom: 0.5rem;
}

.hvnly-mobile-nav-links a {
    text-decoration: none;
    color: var(--hvnly-text-primary);
    font-size: 1rem;
    font-weight: var(--hvnly-fontWeight-medium);
    display: block;
    padding: 0.75rem 1rem;
    border-radius: 12px;
    transition: background-color 0.2s ease, color 0.2s ease;
    background-color: transparent;
}

.hvnly-mobile-nav-links a:hover, 
.hvnly-mobile-nav-links a.hvnly-active {
    background: rgba(108, 96, 254, 0.1);
    color: var(--hvnly-primary);
}

/* Main content padding */
.hvnly-main-content-front {
    padding-top: 0;
}

.hvnly-main-content-inner {
    padding-top: 0;
}

body .hvnly-header-fixed + .hvnly-main-content-front .hvnly-hero {
    margin-top: 80px;
}

/* ======================
   MODERN BREADCRUMB STYLES
======================= */
.hvnly-breadcrumbs {
    background: #fff;
    padding: 0.4rem 0;
    border-bottom: 1px solid var(--hvnly-border-color);
    font-size: 0.95rem;
    position: relative;
    overflow: hidden;
}

.hvnly-breadcrumbs:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--hvnly-primary), transparent);
    opacity: 0.3;
}

.hvnly-breadcrumbs .hvnly-container {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
}

.hvnly-breadcrumbs-list {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
    background: var(--hvnly-bg-white);
    padding: 0.5rem 1.5rem;padding-left: 0;
    /*border-radius: 50px;*/
    /*box-shadow: 0 2px 10px rgba(0,0,0,0.03);*/
    /*border: 1px solid var(--hvnly-border-color);*/
}

html.hvnly-theme-dark-mode .hvnly-breadcrumbs-list {
    background: var(--hvnly-dark-bg-white);
    border-color: var(--hvnly-dark-border);
}

.hvnly-breadcrumb-item {
    display: inline-flex;
    align-items: center;
    color: var(--hvnly-text-secondary);
}

.hvnly-breadcrumb-item a {
    color: var(--hvnly-text-secondary);
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 0.3rem 0.6rem;
    border-radius: 30px;
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
}

.hvnly-breadcrumb-item a:hover {
    color: var(--hvnly-primary);
    background: rgba(108, 96, 254, 0.05);
    transform: translateY(-1px);
}

.hvnly-breadcrumb-item a i {
    font-size: 0.8rem;
    opacity: 0.7;
}

.hvnly-breadcrumb-separator {
    color: var(--hvnly-text-secondary);
    opacity: 0.3;
    font-size: 0.7rem;
    margin: 0 0.3rem;
}

.hvnly-breadcrumb-current {
    color: var(--hvnly-primary);
    font-weight: 600;
    padding: 0.3rem 0.6rem;
    background: rgba(108, 96, 254, 0.08);
    border-radius: 30px;
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
}

.hvnly-breadcrumb-home {
    background: var(--hvnly-primary);
    color: white !important;
    padding: 0.3rem 1rem !important;
    border-radius: 30px;
}

.hvnly-breadcrumb-home i {
    margin-right: 0.3rem;
}

.hvnly-breadcrumb-home:hover {
    background: var(--hvnly-secondary) !important;
    color: white !important;
}

.hvnly-breadcrumbs [itemprop="itemListElement"] {
    display: inline-flex;
    align-items: center;
}

@media (max-width: 768px) {
    .hvnly-breadcrumbs-list {
        padding: 0.4rem 1rem;
        font-size: 0.85rem;
    }
    
    .hvnly-breadcrumb-item a,
    .hvnly-breadcrumb-current {
        padding: 0.2rem 0.4rem;
    }
}

/* ======================
   HERO SECTION
======================= */
.hvnly-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 8rem 0 6rem;
    overflow: hidden;
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    margin-top: 80px;
}

html.hvnly-theme-dark-mode .hvnly-hero {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
}

.hvnly-hero:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23ffffff" fill-opacity="0.1" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,122.7C672,117,768,139,864,154.7C960,171,1056,181,1152,165.3C1248,149,1344,107,1392,85.3L1440,64L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>');
    background-size: cover;
    background-position: bottom;
    opacity: 0.1;
}

.hvnly-hero-content {
    display: flex;
    align-items: center;
    gap: 4rem;
    position: relative;
    z-index: 2;
}

.hvnly-hero-text {
    flex: 1;
}

.hvnly-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255,255,255,0.2);
    backdrop-filter: blur(10px);
    color: white;
    font-size: 0.875rem;
    font-weight: 600;
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    margin-bottom: 2rem;
    border: 1px solid rgba(255,255,255,0.3);
}

.hvnly-hero-badge i {
    color: white;
}

.hvnly-hero-text h1 {
    font-size: 3rem;
    line-height: 1.1;
    margin-bottom: 2rem;
    color: white;
}

.hvnly-hero-text .highlight {
    position: relative;
    display: inline-block;
    color: white;
}

.hvnly-hero-text .highlight:after {
    content: '';
    position: absolute;
    bottom: 10px;
    left: 0;
    width: 100%;
    height: 8px;
    background: rgba(255,255,255,0.3);
    z-index: -1;
    border-radius: 4px;
}

.hvnly-hero-text p {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    color: rgba(255,255,255,0.9);
    max-width: 550px;
}

.hvnly-hero-actions {
    display: flex;
    gap: 1.2rem;
    margin-bottom: 3rem;
}

.hvnly-hero-actions .hvnly-btn {
    background: white;
    color: var(--hvnly-primary);
    box-shadow: 0 10px 30px -5px rgba(0,0,0,0.2);
}

.hvnly-hero-actions .hvnly-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px -5px rgba(0,0,0,0.3);
}

.hvnly-hero-actions .hvnly-btn-outline {
    background: transparent;
    border: 2px solid white;
    color: white;
    box-shadow: none;
}

.hvnly-hero-actions .hvnly-btn-outline:hover {
    background: white;
    color: var(--hvnly-primary);
    border-color: white;
}

.hvnly-download-counter {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
    padding: 1.2rem 2rem;
    border-radius: 60px;
    max-width: 350px;
    border: 1px solid rgba(255,255,255,0.2);
}

.hvnly-counter-icon {
    width: 50px;
    height: 50px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
}

.hvnly-hero-content .hvnly-counter-content span {
    font-size: 1.1rem;
    margin-bottom: 0.2rem;
    color: rgba(255,255,255,0.8);
}

.hvnly-counter-number {
    font-size: 2rem;
    font-weight: var(--hvnly-fontWeight-bold);
    color: white;
    font-family: var(--hvnly-headingFont);
    line-height: 1;
}

.hvnly-hero-video {
    flex: 1;
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 30px 60px -15px rgba(0,0,0,0.4);
    height: 450px;
    cursor: pointer;
    background: linear-gradient(45deg, #1a1a2e, #16213e);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    border: 2px solid rgba(255,255,255,0.2);
}

.hvnly-hero-video:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 40px 70px -15px rgba(0,0,0,0.5);
    border-color: rgba(255,255,255,0.3);
}

.hvnly-video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;

    background: 
        linear-gradient(rgba(0,0,0,0.2), rgba(0,0,0,0.2)),
        url('../img/builder.jpg');

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    display: flex;
    align-items: center;
    justify-content: center;
}
.hvnly-play-btn {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.hvnly-play-btn i {
    color: var(--hvnly-primary);
    font-size: 2.5rem;
    margin-left: 5px;
}

.hvnly-play-btn::before,
.hvnly-play-btn::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: white;
    z-index: -1;
    animation: hvnly-pulse 2s infinite;
    opacity: 0.5;
}

.hvnly-play-btn::after {
    animation-delay: 0.5s;
}

@keyframes hvnly-pulse {
    0% { transform: scale(1); opacity: 0.5; }
    70% { transform: scale(1.5); opacity: 0; }
    100% { transform: scale(1); opacity: 0; }
}

.hvnly-hero-shape {
    position: absolute;
    width: 800px;
    height: 800px;
    border-radius: 50%;
    background: linear-gradient(45deg, var(--hvnly-primary), var(--hvnly-secondary));
    opacity: 0.1;
    top: -400px;
    right: -400px;
    z-index: 1;
}

/* ======================
   SCROLL TO TOP BUTTON
======================= */
.hvnly-scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(45deg, var(--hvnly-primary), var(--hvnly-secondary));
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px) scale(0.8);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 999;
    box-shadow: 0 4px 20px rgba(108, 96, 254, 0.4);
    border: none;
    font-size: 1.2rem;
    animation: hvnly-scroll-pulse 2s infinite;
}

.hvnly-scroll-to-top.hvnly-visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.hvnly-scroll-to-top:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 8px 25px var(--hvnly-primary);
    animation: none;
}

@keyframes hvnly-scroll-pulse {
    0% { box-shadow: 0 0 0 0 rgba(108, 96, 254, 0.7); }
    70% { box-shadow: 0 0 0 15px rgba(108, 96, 254, 0); }
    100% { box-shadow: 0 0 0 0 rgba(108, 96, 254, 0); }
}

/* ======================
   FEATURES SECTION
======================= */
.hvnly-features {
    background: var(--hvnly-bg-white);
    position: relative;
    overflow: hidden;
}

html.hvnly-theme-dark-mode .hvnly-features {
    background: var(--hvnly-dark-bg-light);
}

.hvnly-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    position: relative;
    z-index: 1;
}

.hvnly-feature-card {
    background: var(--hvnly-cardBg);
    border-radius: var(--hvnly-cardRadius);
    padding: var(--hvnly-cardPadding);
    box-shadow: var(--hvnly-cardShadow);
    transition: all var(--hvnly-transitionTime);
    border: 1px solid var(--hvnly-border-color);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.hvnly-feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 45px -15px var(--hvnly-primary);
    border-color: var(--hvnly-primary);
}

.hvnly-feature-card:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--hvnly-primary), var(--hvnly-secondary));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.hvnly-feature-card:hover:before {
    transform: scaleX(1);
}

.hvnly-feature-icon {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(108, 96, 254, 0.1), rgba(138, 123, 255, 0.1));
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    color: var(--hvnly-primary);
    font-size: 2.2rem;
    transition: all var(--hvnly-transitionTime);
}

.hvnly-feature-card:hover .hvnly-feature-icon {
    transform: scale(1.1) rotate(5deg);
    background: linear-gradient(135deg, var(--hvnly-primary), var(--hvnly-secondary));
    color: white;
}

.hvnly-feature-card h3 {
    font-size: 1.6rem;
    margin-bottom: 1.2rem;
    position: relative;
}
html.hvnly-theme-dark-mode body  h4, 
html.hvnly-theme-dark-mode body  h3, 
html.hvnly-theme-dark-mode body  li,  
html.hvnly-theme-dark-mode body  p {

color: var(--hvnly-text-secondary);
}


html.hvnly-theme-dark-mode body  .hvnly-roadmap h3, 

html.hvnly-theme-dark-mode body .hvnly-roadmap p {
    color: #ffffff;
}
.hvnly-feature-card p {
    color: var(--hvnly-text-secondary);
    position: relative;
    font-size: 1rem;
    line-height: 1.7;
}

/* ======================
   BUILDER UI SECTION
======================= */
.hvnly-builder-ui {
    background: linear-gradient(135deg, #f8f9fe 0%, #f0f3ff 100%);
    position: relative;
}

html.hvnly-theme-dark-mode .hvnly-builder-ui {
    background: linear-gradient(135deg, #1A1A2F 0%, #23233a 100%);
}

.hvnly-builder-ui .hvnly-section-header h2 {
    -webkit-text-fill-color: unset;
    background: none;
    color: var(--hvnly-primary);
}

.hvnly-builder-showcase {
    display: flex;
    gap: 3rem;
    align-items: center;
}

.hvnly-builder-left {
    flex: 1;
    background: var(--hvnly-cardBg);
    border-radius: 30px;
    padding: 3rem;
    box-shadow: var(--hvnly-cardShadow);
    border: 1px solid var(--hvnly-border-color);
}

.hvnly-builder-left .badge-ui {
    background: linear-gradient(45deg, var(--hvnly-primary), var(--hvnly-secondary));
    color: white;
    padding: 0.4rem 1.2rem;
    border-radius: 50px;
    font-size: 0.9rem;
    display: inline-block;
    margin-bottom: 2rem;
}

.hvnly-builder-left h3 {
    font-size: 2.2rem;
    margin-bottom: 1.2rem;
}

.hvnly-builder-left p {
    margin-bottom: 2rem;
    color: var(--hvnly-text-secondary);
    font-size: 1rem;
}

.hvnly-builder-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem 2rem;
    margin: 2.5rem 0;
    list-style: none;
}

.hvnly-builder-features li {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-weight: 500;
}

.hvnly-builder-features li i {
    color: var(--hvnly-primary);
    background: linear-gradient(135deg, rgba(108,96,254,0.1), rgba(138,123,255,0.1));
    width: 32px;
    height: 32px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hvnly-builder-right {
    flex: 1;
    background: #1E1E2F;
    border-radius: 30px;
    padding: 2.5rem;
    color: white;
    box-shadow: 0 30px 60px -15px rgba(0,0,0,0.6);
    border: 1px solid #3A3A4F;
}


.hvnly-builder-right .hvnly-admin-bar {
	display: flex;
	gap: 8px;
	margin-bottom: 2rem;
}
.hvnly-admin-bar span {
	width: 14px;
	height: 14px;
	border-radius: 50%;
	background: #ff5f56;
}
.hvnly-admin-bar span:nth-child(2) { background: #ffbd2e; }
.hvnly-admin-bar span:nth-child(3) { background: #27c93f; }
.hvnly-builder-right .builder-preview {
	background: #2D2D45;
	border-radius: 20px;
	padding: 1.8rem;
}


.hvnly-builder-right .builder-preview {
    background: #2D2D45;
    border-radius: 20px;
    padding: 1.8rem;
}

.builder-row {
    background: #3A3A5F;
    border-radius: 16px;
    padding: 1rem 1.5rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    border-left: 4px solid var(--hvnly-primary);
    cursor: grab;
    transition: all 0.2s ease;
}

.builder-row:hover {
    background: #42426b;
    transform: translateX(5px);
}

.builder-row i {
    color: var(--hvnly-primary);
    font-size: 1.2rem;
}

.builder-row span {
    flex: 1;
    font-weight: 500;
}

.builder-row .badge {
    background: var(--hvnly-primary);
    padding: 0.3rem 1rem;
    border-radius: 30px;
    font-size: 0.8rem;
}

.builder-grid-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin: 1.5rem 0;
}

.grid-card {
    background: #25253b;
    padding: 1.2rem;
    border-radius: 14px;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    transition: all 0.2s ease;
}

.grid-card:hover {
    background: #2f2f4a;
    transform: translateY(-3px);
}

.grid-card i { 
    color: var(--hvnly-primary); 
}

/* ======================
   HOW IT WORKS SECTION
======================= */
.hvnly-how-it-works {
    background: var(--hvnly-bg-light);
    position: relative;
}

.hvnly-steps {
    display: flex;
    justify-content: space-between;
    gap: 2.5rem;
    position: relative;
}

.hvnly-steps::before {
    content: '';
    position: absolute;
    top: 70px;
    left: 70px;
    right: 70px;
    height: 4px;
    background: linear-gradient(90deg, var(--hvnly-primary), var(--hvnly-secondary));
    z-index: 1;
    border-radius: 2px;
    opacity: 0.3;
}

.hvnly-step {
    flex: 1;
    background: var(--hvnly-cardBg);
    border-radius: var(--hvnly-cardRadius);
    padding: 3rem 2rem;
    text-align: center;
    position: relative;
    z-index: 2;
    box-shadow: var(--hvnly-cardShadow);
    transition: all var(--hvnly-transitionTime);
    border: 1px solid var(--hvnly-border-color);
}

.hvnly-step:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 45px -15px var(--hvnly-primary);
    border-color: var(--hvnly-primary);
}

.hvnly-step-number {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(45deg, var(--hvnly-primary), var(--hvnly-secondary));
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: bold;
    margin: 0 auto 2rem;
    position: relative;
    z-index: 1;
}

.hvnly-step-number:before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border-radius: 50%;
    background: rgba(108, 96, 254, 0.3);
    z-index: -1;
    animation: hvnly-pulse 2s infinite;
}

.hvnly-step h3 {
    font-size: 1.6rem;
    margin-bottom: 1.2rem;
}

/* ======================
   SCREENSHOTS SECTION
======================= */
.hvnly-screenshots {
    background: var(--hvnly-bg-white);
    position: relative;
    overflow: hidden;
}

.hvnly-screenshots-container {
    display: flex;
    flex-direction: column;
    gap: 5rem;
}

.hvnly-screenshot-item {
    display: flex;
    align-items: center;
    gap: 4rem;
}

.hvnly-screenshot-item:nth-child(even) {
    flex-direction: row-reverse;
}

.hvnly-screenshot-content {
    flex: 1;
}

.hvnly-screenshot-content h3 {
    font-size: 2.2rem;
    margin-bottom: 1.2rem;
    background: linear-gradient(45deg, var(--hvnly-primary), var(--hvnly-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hvnly-screenshot-content p {
    color: var(--hvnly-text-secondary);
    margin-bottom: 1.5rem;
    font-size: 1rem;
    line-height: 1.7;
}

.hvnly-screenshot-image {
    flex: 1;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 30px 60px -15px rgba(0,0,0,0.3);
    height: 400px;
    position: relative;
    transition: transform 0.5s ease;
    cursor: pointer;
}

.hvnly-screenshot-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.hvnly-screenshot-item:hover .hvnly-screenshot-image img {
    transform: scale(1.1);
}

.hvnly-enlarge-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.8);
    opacity: 0;
    width: 70px;
    height: 70px;
    background: linear-gradient(45deg, var(--hvnly-primary), var(--hvnly-secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.8rem;
    transition: all 0.3s ease;
    z-index: 2;
}

.hvnly-screenshot-image:hover .hvnly-enlarge-icon {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

/* ======================
   MODAL STYLES
======================= */
.hvnly-image-modal,
.hvnly-video-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.hvnly-image-modal.hvnly-active,
.hvnly-video-modal.hvnly-active {
    opacity: 1;
    visibility: visible;
}

.hvnly-modal-content {
    max-width: 90%;
    max-height: 90%;
    transform: scale(0.8);
    transition: transform 0.4s ease;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.5);
}

.hvnly-image-modal.hvnly-active .hvnly-modal-content,
.hvnly-video-modal.hvnly-active .hvnly-video-container {
    transform: scale(1);
}

.hvnly-modal-content img {
    max-width: 100%;
    max-height: 80vh;
    display: block;
    margin: 0 auto;
}

.hvnly-video-container {
    width: 80%;
    max-width: 900px;
    position: relative;
    transform: scale(0.8);
    transition: transform 0.4s ease;
}

.hvnly-video-iframe {
    width: 100%;
    height: 0;
    padding-bottom: 56.25%;
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 30px 70px rgba(0,0,0,0.5);
}

.hvnly-video-iframe iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.hvnly-close-modal, .hvnly-video-close {
    position: absolute;
    top: -50px;
    right: -30px;
    font-size: 2rem;
    color: white;
    cursor: pointer;
    background: rgba(255, 255, 255, 0.1);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.hvnly-close-modal:hover,
.hvnly-video-close:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(90deg);
}

/* ======================
   REVIEWS SECTION
======================= */
.hvnly-reviews {
    background: linear-gradient(135deg, #f5f7fe 0%, #f0f3fd 100%);
    position: relative;
    overflow: hidden;
}

html.hvnly-theme-dark-mode .hvnly-reviews {
    background: linear-gradient(135deg, #1a1a2e 0%, #15152b 100%);
}

.hvnly-reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    position: relative;
    z-index: 1;
}

.hvnly-review-card {
    background: var(--hvnly-cardBg);
    border-radius: var(--hvnly-cardRadius);
    padding: 2.5rem;
    box-shadow: var(--hvnly-cardShadow);
    position: relative;
    overflow: hidden;
    transition: all var(--hvnly-transitionTime);
    border: 1px solid var(--hvnly-border-color);
}

.hvnly-review-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 45px -15px var(--hvnly-primary);
    border-color: var(--hvnly-primary);
}

.hvnly-review-card:before {
    content: '\f10d';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 4rem;
    color: rgba(108, 96, 254, 0.1);
    z-index: 0;
}

.hvnly-review-content {
    position: relative;
    z-index: 1;
    margin-bottom: 1.5rem;
}

.hvnly-review-content p {
    font-style: italic;
    color: var(--hvnly-text-secondary);
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
    line-height: 1.7;
    margin-top: 3.5rem;
}

.hvnly-review-rating {
    color: #FFC107;
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
}

.hvnly-review-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.hvnly-author-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--hvnly-primary);
}

.hvnly-author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hvnly-author-info h4 {
    margin-bottom: 0.3rem;
    font-size: 1.2rem;
}

.hvnly-author-info p {
    color: var(--hvnly-text-secondary);
    font-size: 0.9rem;
}

/* ======================
   ROADMAP SECTION
======================= */
.hvnly-roadmap {
    background: linear-gradient(135deg, var(--hvnly-primary) 0%, var(--hvnly-secondary) 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.hvnly-roadmap .hvnly-section-header h2,
.hvnly-roadmap .hvnly-section-header p {
    color: white;
    -webkit-text-fill-color: white;
}

.hvnly-roadmap .hvnly-section-header h2:after {
    background: white;
}

.hvnly-roadmap-content {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 30px;
    padding: 3rem;
    max-width: 800px;
    margin: 0 auto;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hvnly-coming-soon {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.hvnly-coming-soon:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.hvnly-coming-soon i {
    font-size: 2.5rem;
    color: white;
    opacity: 0.8;
}

.hvnly-coming-soon h3 {
    color: white;
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
}

.hvnly-coming-soon p {
    opacity: 0.9;
}

/* ======================
   FAQ SECTION
======================= */
.hvnly-faq {
    background: var(--hvnly-bg-light);
}

.hvnly-faq-container {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.hvnly-faq-item {
    background: var(--hvnly-cardBg);
    border-radius: 20px;
    box-shadow: 0 10px 30px -10px rgba(0,0,0,0.05);
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid var(--hvnly-border-color);
}

.hvnly-faq-item:hover {
    border-color: var(--hvnly-primary);
    box-shadow: 0 15px 35px -10px var(--hvnly-primary);
}

.hvnly-faq-question {
    padding: 1.5rem 2rem;
    font-weight: var(--hvnly-fontWeight-semibold);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s ease;
    font-size: 1.2rem;
    color: var(--hvnly-primary);
    background: linear-gradient(90deg, rgba(108,96,254,0.02), transparent);    margin-bottom: 0;
}

.hvnly-faq-question:hover {
    background: linear-gradient(90deg, rgba(108,96,254,0.05), transparent);
}

.hvnly-faq-question::after {
    content: '\f078';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.27, 1.55);
    color: var(--hvnly-primary);
    font-size: 1.1rem;
}

.hvnly-faq-question.hvnly-active::after {
    transform: rotate(180deg);
}

.hvnly-faq-answer {
    padding: 0 2rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease, padding 0.4s ease;
    background: var(--hvnly-cardBg);
    color: var(--hvnly-text-secondary);
}

.hvnly-faq-answer.hvnly-show {
    padding: 1rem 2rem 2rem 2rem;
    max-height: 400px;
}

.hvnly-faq-answer p {
    line-height: 1.8;
}

.hvnly-faq-actions {
    text-align: center;
    margin-top: 3rem;
}

/* ======================
   FOOTER STYLES
======================= */
.hvnly-footer {
    background: var(--hvnly-dark);
    color: white;
    padding: 5rem 0 2rem;
    position: relative;
    overflow: hidden;
}

.hvnly-footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    margin-bottom: 4rem;
    position: relative;
    z-index: 1;
}

.hvnly-footer-logo {
    font-size: 1.8rem;
    font-weight: var(--hvnly-fontWeight-bold);
    color: white;
    margin-bottom: 1rem;
    display: inline-block;
    text-decoration: none;
}

.hvnly-footer-about p {
    opacity: 0.8;
    margin-bottom: 1.8rem;
}

.hvnly-social-links {
    display: flex;
    gap: 1rem;
}

.hvnly-social-links a {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all var(--hvnly-transitionTime);
}

.hvnly-social-links a:hover {
    background: linear-gradient(45deg, var(--hvnly-primary), var(--hvnly-secondary));
    transform: translateY(-5px);
}

.hvnly-footer-links h4 {
    color: white;
    margin-bottom: 1.8rem;
    font-size: 1.3rem;
    position: relative;
    padding-bottom: 0.8rem;
}

.hvnly-footer-links h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, var(--hvnly-primary), var(--hvnly-secondary));
    border-radius: 2px;
}

.hvnly-footer-links ul {
    list-style: none;
}

.hvnly-footer-links li {
    margin-bottom: 1rem;
}

.hvnly-footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all var(--hvnly-transitionTime);
    display: inline-block;
    padding: 0.3rem 0;
    position: relative;
}

.hvnly-footer-links a:hover {
    color: white;
    transform: translateX(5px);
}

.hvnly-footer-bottom {
    text-align: center;
    padding-top: 2.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
    position: relative;
    z-index: 1;
}

/* ======================
   BLOG ARCHIVE STYLES
======================= */
.hvnly-archive-header-section {
    padding: 4rem 0 2rem;
    background: linear-gradient(135deg, #f8f9fe 0%, #f0f3ff 100%);
    margin-top: 0px;
}

html.hvnly-theme-dark-mode .hvnly-archive-header-section {
    background: linear-gradient(135deg, #1A1A2F 0%, #23233a 100%);
}

.hvnly-archive-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.hvnly-archive-title {
    font-size: 2rem;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, var(--hvnly-primary), var(--hvnly-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hvnly-archive-description {
    font-size: 1.2rem;
    color: var(--hvnly-text-secondary);
}

.hvnly-archive-meta {
    margin-bottom: 1rem;
    color: var(--hvnly-text-secondary);
}

.hvnly-blog-section {
    padding: 4rem 0;
}

.hvnly-blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2.5rem;
}

.hvnly-blog-card {
    background: var(--hvnly-cardBg);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--hvnly-cardShadow);
    transition: all 0.3s ease;
    border: 1px solid var(--hvnly-border-color);
}

.hvnly-blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 45px -15px var(--hvnly-primary);
    border-color: var(--hvnly-primary);
}

.hvnly-blog-card-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.hvnly-blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.hvnly-blog-card:hover .hvnly-blog-card-image img {
    transform: scale(1.1);
}

.hvnly-blog-card-category {
    position: absolute;
    top: 15px;
    left: 15px;
    background: linear-gradient(45deg, var(--hvnly-primary), var(--hvnly-secondary));
    color: white;
    padding: 0.3rem 1rem;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 600;
    z-index: 2;
}

.hvnly-blog-card-content {
    padding: 2rem;
}

.hvnly-blog-card-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    color: var(--hvnly-text-secondary);
}

.hvnly-blog-card-meta i {
    margin-right: 0.3rem;
    color: var(--hvnly-primary);
}

.hvnly-blog-card-title {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.hvnly-blog-card-title a {
    color: var(--hvnly-text-primary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.hvnly-blog-card-title a:hover {
    color: var(--hvnly-primary);
}

.hvnly-blog-card-excerpt {
    color: var(--hvnly-text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

/* ======================
   POST VIEWS STYLES
======================= */
.hvnly-post-views {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    color: var(--hvnly-text-secondary);
    font-size: 0.9rem;
}

.hvnly-post-views i {
    color: var(--hvnly-primary);
}

.hvnly-single-post-meta .hvnly-post-views {
    margin-left: 0.5rem;
}

/* ======================
   SINGLE POST HEADER - SIMPLE & CLEAN
======================= */
.hvnly-single-post-header {
    padding: 3rem 0 2rem;
    background: linear-gradient(135deg, #f8f9fe 0%, #f0f3ff 100%);
    text-align: center;
    /*margin-top: 80px;*/
}

html.hvnly-theme-dark-mode .hvnly-single-post-header {
    background: linear-gradient(135deg, #1A1A2F 0%, #23233a 100%);
}

.hvnly-single-post-categories {
    margin-bottom: 1.5rem;
}

.hvnly-post-category {
    display: inline-block;
    background: linear-gradient(45deg, var(--hvnly-primary), var(--hvnly-secondary));
    color: white;
    padding: 0.3rem 1.2rem;
    border-radius: 30px;
    font-size: 0.9rem;
    margin: 0 0.3rem;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
}

.hvnly-post-category:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(108,96,254,0.3);
    color: white;
}

.hvnly-single-post-title {
    font-size: 2.5rem;
    max-width: 900px;
    margin: 0 auto 1.5rem;
    line-height: 1.2;
    color: var(--hvnly-text-primary);
}

.hvnly-single-post-meta {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
    color: var(--hvnly-text-secondary);
    font-size: 0.95rem;
}

.hvnly-single-post-author {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.hvnly-author-avatar-mini img {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--hvnly-primary);
}

.hvnly-author-info-mini {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}

.hvnly-meta-label {
    font-size: 0.75rem;
    opacity: 0.7;
}

.hvnly-author-name {
    font-weight: 600;
    color: var(--hvnly-text-primary);
}

.hvnly-single-post-meta-items {
    display: flex;
    gap: 1.5rem;
}

.hvnly-single-post-meta-items i {
    color: var(--hvnly-primary);
    margin-right: 0.3rem;
}

.hvnly-single-post-featured-image {
    margin: 2rem 0;
}

.hvnly-featured-image-figure {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px -15px rgba(0,0,0,0.2);
    max-height: 500px;
}

.hvnly-featured-image-figure img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.hvnly-single-post-featured-image .hvnly-featured-image-figure {
  
    max-height: 100%;
}
/* ======================
   SINGLE POST CONTENT
======================= */
.hvnly-single-post-content-wrapper {
    padding: 2rem 0 4rem;
}

.hvnly-single-post-layout {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 3rem;
    /*margin: 4rem 0;*/
}

.hvnly-single-post-main {
    min-width: 0;
}

.hvnly-single-post-content {
    /*font-size: 1.1rem;*/
    /*line-height: 1.8;*/
    color: var(--hvnly-text-primary);
}

.hvnly-single-post-content h2 {
    font-size: 1.6rem;
    margin: 1rem 0 1rem
}

.hvnly-single-post-content h3 {
    font-size: 1.4rem;
    margin: 2rem 0 1.2rem;
}

.hvnly-single-post-content p {
    margin-bottom: 1.5rem;line-height: 26px;
}

.hvnly-single-post-content img {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    margin: 2rem 0;
    box-shadow: 0 20px 40px -10px rgba(0,0,0,0.2);
}

.hvnly-single-post-content blockquote {
    margin: 2rem 0;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(108,96,254,0.05), rgba(138,123,255,0.05));
    border-left: 4px solid var(--hvnly-primary);
    font-style: italic;
    border-radius: 0 15px 15px 0;
    font-size: 1.2rem;
    position: relative;
}

.hvnly-single-post-content blockquote:before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 20px;
    font-size: 4rem;
    color: var(--hvnly-primary);
    opacity: 0.2;
    font-family: serif;
}

.hvnly-single-post-content ul,
.hvnly-single-post-content ol {
    margin: 1.5rem 0;
    padding-left: 2rem;    line-height: 22px;
}

.hvnly-single-post-content li {
    margin-bottom: 0.5rem;
}

.hvnly-single-post-content li::marker {
    color: var(--hvnly-primary);
}

/* Tags */
.hvnly-single-post-tags {
    margin: 3rem 0;
    padding: 1.5rem 0;
    border-top: 1px solid var(--hvnly-border-color);
    border-bottom: 1px solid var(--hvnly-border-color);
}

.hvnly-tags-label {
    display: inline-block;
    margin-right: 1rem;
    font-weight: 600;
    color: var(--hvnly-text-primary);
}

.hvnly-single-post-tags a {
    display: inline-block;
    background: rgba(108,96,254,0.1);
    color: var(--hvnly-text-primary);
    padding: 0.3rem 1rem;
    border-radius: 30px;
    font-size: 0.9rem;
    margin: 0.3rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.hvnly-single-post-tags a:hover {
    background: linear-gradient(45deg, var(--hvnly-primary), var(--hvnly-secondary));
    color: white;
    transform: translateY(-2px);
}

/* Share Buttons */
.hvnly-single-post-share {
    margin: 2rem 0;
    padding: 1.5rem;
    background: rgba(108,96,254,0.05);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
}

.hvnly-share-label {
    font-weight: 600;
    color: var(--hvnly-text-primary);
}

.hvnly-share-label i {
    color: var(--hvnly-primary);
    margin-right: 0.5rem;
}

.hvnly-share-buttons {
    display: flex;
    gap: 0.8rem;
}

.hvnly-share-button {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.hvnly-share-button:hover {
    transform: translateY(-3px);
}

.hvnly-share-facebook { background: #1877f2; }
.hvnly-share-twitter { background: #1da1f2; }
.hvnly-share-linkedin { background: #0077b5; }
.hvnly-share-email { background: var(--hvnly-primary); }

/* Author Box */
.hvnly-author-box {
    margin: 3rem 0;
    padding: 2rem;
    background: var(--hvnly-cardBg);
    border-radius: 20px;
    border: 1px solid var(--hvnly-border-color);
    display: flex;
    gap: 2rem;
    align-items: center;
    transition: all 0.3s ease;
}

.hvnly-author-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px -10px var(--hvnly-primary);
    border-color: var(--hvnly-primary);
}

.hvnly-author-avatar {
    flex-shrink: 0;
}

/* .hvnly-author-avatar img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--hvnly-primary);
} */

.hvnly-author-info {
    flex: 1;
}

.hvnly-author-name {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--hvnly-text-primary);
}

.hvnly-author-bio {
    color: var(--hvnly-text-secondary);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.hvnly-author-meta {
    color: var(--hvnly-text-secondary);
    font-size: 0.9rem;
}

.hvnly-author-meta i {
    color: var(--hvnly-primary);
    margin-right: 0.3rem;
}

/* Post Navigation */
.hvnly-post-navigation {
    margin: 3rem 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.hvnly-post-nav-prev,
.hvnly-post-nav-next {
    background: var(--hvnly-cardBg);
    border: 1px solid var(--hvnly-border-color);
    border-radius: 15px;
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.hvnly-post-nav-prev:hover,
.hvnly-post-nav-next:hover {
    transform: translateY(-5px);
    border-color: var(--hvnly-primary);
    box-shadow: 0 15px 30px -10px var(--hvnly-primary);
}

.hvnly-post-nav-prev a,
.hvnly-post-nav-next a {
    text-decoration: none;
    color: var(--hvnly-text-primary);
    display: block;
}

.hvnly-nav-label {
    display: block;
    font-size: 0.9rem;
    color: var(--hvnly-text-secondary);
    margin-bottom: 0.5rem;
}

.hvnly-nav-label i {
    color: var(--hvnly-primary);
}

.hvnly-nav-title {
    font-weight: 600;
    font-size: 1.1rem;
    display: block;
    line-height: 1.4;
}

.hvnly-post-nav-next {
    text-align: right;
}

/* ======================
   SIDEBAR WIDGET STYLES - REDESIGNED
======================= */
.hvnly-single-post-sidebar {
    position: relative;
}

.hvnly-sidebar-sticky {
    position: sticky;
    top: 100px;
}

.hvnly-sidebar .widget {
    background: var(--hvnly-cardBg);
    border: 1px solid var(--hvnly-border-color);
    border-radius: 16px;
    padding: 1.8rem;
    margin-bottom: 2rem;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0,0,0,0.02);
}

.hvnly-sidebar .widget:hover {
    border-color: var(--hvnly-primary);
    box-shadow: 0 10px 30px rgba(108,96,254,0.08);
    transform: translateY(-2px);
}

html.hvnly-theme-dark-mode .hvnly-sidebar .widget {
    background: var(--hvnly-dark-bg-white);
    border-color: var(--hvnly-dark-border);
    box-shadow: none;
}

.hvnly-sidebar .widget-title {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    padding-bottom: 0.8rem;
    border-bottom: 2px solid var(--hvnly-primary);
    color: var(--hvnly-text-primary);
    position: relative;
    font-weight: 600;
}

.hvnly-sidebar .widget-title:after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 50px;
    height: 2px;
    background: var(--hvnly-secondary);
}

.hvnly-widget-posts-list {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.hvnly-widget-post-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    transition: all 0.3s ease;
    padding: 0.5rem;
    border-radius: 12px;
}

.hvnly-widget-post-item:hover {
    background: rgba(108, 96, 254, 0.03);
    transform: translateX(5px);
}

.hvnly-widget-post-image {
    flex-shrink: 0;
    width: 70px;
    height: 70px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0,0,0,0.05);
}

.hvnly-widget-post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.hvnly-widget-post-item:hover .hvnly-widget-post-image img {
    transform: scale(1.1);
}

.hvnly-widget-post-content {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.hvnly-widget-post-title {
    font-size: 0.95rem;
    margin: 0;
    line-height: 1.4;
    font-weight: 600;
}

.hvnly-widget-post-title a {
    color: var(--hvnly-text-primary);
    text-decoration: none;
    transition: color 0.3s ease;
    display: inline-block;
}

.hvnly-widget-post-title a:hover {
    color: var(--hvnly-primary);
}

.hvnly-widget-post-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    font-size: 0.75rem;
    color: var(--hvnly-text-secondary);
    align-items: center;
}

.hvnly-widget-post-meta i {
    color: var(--hvnly-primary);
    margin-right: 0.2rem;
    font-size: 0.7rem;
}

.hvnly-widget-post-date {
    display: inline-flex;
    align-items: center;
    gap: 0.2rem;
}

.hvnly-widget-post-meta .hvnly-post-views {
    display: inline-flex;
    align-items: center;
    gap: 0.2rem;
    font-size: 0.75rem;
    background: rgba(108, 96, 254, 0.05);
    padding: 0.2rem 0.5rem;
    border-radius: 30px;
}

.hvnly-widget-post-meta .hvnly-post-views i {
    font-size: 0.7rem;
}

.hvnly-widget-post-item:not(:has(.hvnly-widget-post-image)) .hvnly-widget-post-content {
    margin-left: 0;
}

/* Search Widget */
.widget_search form {
    display: flex;
    gap: 0.5rem;
}

.widget_search input[type="search"] {
    flex: 1;
    padding: 0.8rem 1.2rem;
    border: 1px solid var(--hvnly-border-color);
    border-radius: 30px;
    background: var(--hvnly-bg-light);
    color: var(--hvnly-text-primary);
    font-family: var(--hvnly-bodyFont);
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.widget_search input[type="search"]:focus {
    outline: none;
    border-color: var(--hvnly-primary);
    box-shadow: 0 0 0 3px rgba(108,96,254,0.1);
}

.widget_search button[type="submit"] {
    padding: 0.8rem 1.5rem;
    background: linear-gradient(45deg, var(--hvnly-primary), var(--hvnly-secondary));
    color: white;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.widget_search button[type="submit"]:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(108,96,254,0.3);
}

/* Category Widget */
.widget_categories ul,
.widget_archive ul,
.widget_meta ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.widget_categories li,
.widget_archive li,
.widget_meta li {
    margin-bottom: 0.8rem;
    padding-bottom: 0.8rem;
    border-bottom: 1px dashed var(--hvnly-border-color);
    transition: all 0.3s ease;
}

.widget_categories li:last-child,
.widget_archive li:last-child,
.widget_meta li:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.widget_categories a,
.widget_archive a,
.widget_meta a {
    color: var(--hvnly-text-secondary);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    font-size: 0.95rem;
}

.widget_categories a:hover,
.widget_archive a:hover,
.widget_meta a:hover {
    color: var(--hvnly-primary);
    transform: translateX(5px);
}

.widget_categories .count,
.widget_archive .count {
    float: right;
    background: rgba(108, 96, 254, 0.1);
    color: var(--hvnly-primary);
    padding: 0.2rem 0.6rem;
    border-radius: 30px;
    font-size: 0.75rem;
    font-weight: 600;
}

/* Tag Cloud Widget */
.tagcloud {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.tagcloud a {
    display: inline-block;
    background: rgba(108, 96, 254, 0.08);
    color: var(--hvnly-text-primary);
    padding: 0.4rem 1rem;
    border-radius: 30px;
    font-size: 0.85rem !important;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.tagcloud a:hover {
    background: linear-gradient(45deg, var(--hvnly-primary), var(--hvnly-secondary));
    color: white;
    transform: translateY(-2px);
    border-color: transparent;
}

/* Calendar Widget */
.widget_calendar table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9rem;
}

.widget_calendar caption {
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--hvnly-primary);
    text-align: center;
    padding: 0.5rem;
    background: rgba(108, 96, 254, 0.05);
    border-radius: 8px;
}

.widget_calendar th,
.widget_calendar td {
    text-align: center;
    padding: 0.5rem;
    border: 1px solid var(--hvnly-border-color);
}

.widget_calendar th {
    background: rgba(108, 96, 254, 0.05);
    color: var(--hvnly-text-primary);
    font-weight: 600;
}

.widget_calendar td a {
    color: var(--hvnly-primary);
    font-weight: 600;
    text-decoration: none;
    display: block;
}

.widget_calendar td a:hover {
    text-decoration: underline;
}

.widget_calendar #today {
    background: var(--hvnly-primary);
    color: white;
    font-weight: 600;
    border-radius: 4px;
}

.widget_calendar #today a {
    color: white;
}

/* Recent Comments Widget */
.widget_recent_comments ul {
    list-style: none;
    padding: 0;
}

.widget_recent_comments li {
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px dashed var(--hvnly-border-color);
    font-size: 0.95rem;
    line-height: 1.5;
}

.widget_recent_comments li:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.widget_recent_comments .comment-author-link {
    color: var(--hvnly-primary);
    font-weight: 600;
}

.widget_recent_comments a {
    color: var(--hvnly-text-primary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.widget_recent_comments a:hover {
    color: var(--hvnly-primary);
}

/* RSS Widget */
.widget_rss ul {
    list-style: none;
    padding: 0;
}

.widget_rss li {
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px dashed var(--hvnly-border-color);
}

.widget_rss li:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.widget_rss .rsswidget {
    color: var(--hvnly-text-primary);
    font-weight: 600;
    text-decoration: none;
    font-size: 1rem;
}

.widget_rss .rsswidget:hover {
    color: var(--hvnly-primary);
}

.widget_rss .rss-date {
    display: block;
    font-size: 0.8rem;
    color: var(--hvnly-text-secondary);
    margin: 0.3rem 0;
}

.widget_rss .rssSummary {
    font-size: 0.9rem;
    line-height: 1.5;
    color: var(--hvnly-text-secondary);
    margin: 0.5rem 0;
}

.widget_rss cite {
    display: block;
    text-align: right;
    font-size: 0.85rem;
    color: var(--hvnly-primary);
    font-style: normal;
}

/* Text Widget */
.widget_text {
    font-size: 0.95rem;
    line-height: 1.6;
}

.widget_text p:last-child {
    margin-bottom: 0;
}

/* Custom HTML Widget */
.widget_custom_html {
    font-size: 0.95rem;
}

/* Footer Widgets */
.hvnly-footer .footer-widget {
    margin-bottom: 1.5rem;
}

.hvnly-footer .footer-widget-title {
    color: white;
    font-size: 1.2rem;
    margin-bottom: 1.2rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid rgba(108, 96, 254, 0.5);
    font-weight: 600;
}

.hvnly-footer .hvnly-widget-posts-list {
    gap: 1rem;
}

.hvnly-footer .hvnly-widget-post-item {
    padding: 0;
}

.hvnly-footer .hvnly-widget-post-item:hover {
    background: rgba(255,255,255,0.05);
}

.hvnly-footer .hvnly-widget-post-title a {
    color: rgba(255, 255, 255, 0.9);
}

.hvnly-footer .hvnly-widget-post-title a:hover {
    color: var(--hvnly-primary);
}

.hvnly-footer .hvnly-widget-post-meta {
    color: rgba(255, 255, 255, 0.6);
}

.hvnly-footer .hvnly-widget-post-meta i {
    color: var(--hvnly-primary);
}

.hvnly-footer .hvnly-widget-post-meta .hvnly-post-views {
    background: rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.8);
}

/* ======================
   RELATED POSTS
======================= */
.hvnly-related-posts {
    background: var(--hvnly-bg-light);
    padding: 5rem 0;
}

.hvnly-related-posts-header {
    text-align: center;
    margin-bottom: 3rem;
}

.hvnly-related-posts-title {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    background: linear-gradient(45deg, var(--hvnly-primary), var(--hvnly-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hvnly-related-posts-subtitle {
    color: var(--hvnly-text-secondary);
    font-size: 1.1rem;
}

.hvnly-related-posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.hvnly-related-post-card {
    background: var(--hvnly-cardBg);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--hvnly-cardShadow);
    transition: all 0.3s ease;
    border: 1px solid var(--hvnly-border-color);
}

.hvnly-related-post-card:hover {
    transform: translateY(-5px);
    border-color: var(--hvnly-primary);
    box-shadow: 0 20px 35px -15px var(--hvnly-primary);
}

.hvnly-related-post-image {
    height: 180px;
    overflow: hidden;
    display: block;
}

.hvnly-related-post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.hvnly-related-post-card:hover .hvnly-related-post-image img {
    transform: scale(1.1);
}

.hvnly-related-post-content {
    padding: 1.5rem;
}

.hvnly-related-post-title {
    font-size: 1.1rem;
    margin-bottom: 0.8rem;
    line-height: 1.4;
}

.hvnly-related-post-title a {
    color: var(--hvnly-text-primary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.hvnly-related-post-title a:hover {
    color: var(--hvnly-primary);
}

.hvnly-related-post-meta {
    font-size: 0.85rem;
    color: var(--hvnly-text-secondary);
}

.hvnly-related-post-meta i {
    color: var(--hvnly-primary);
    margin-right: 0.3rem;
}

/* ======================
   COMMENTS SECTION
======================= */
.hvnly-comments-section {
    padding: 5rem 0;
}

.hvnly-comments-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.hvnly-comments-title {
    font-size: 2rem;
    margin-bottom: 2rem;
}

.hvnly-comment-list {
    list-style: none;
    padding: 0;
    margin: 0 0 3rem;
}

.hvnly-comment-item {
    margin-bottom: 2rem;
}

.hvnly-comment-body {
    background: var(--hvnly-cardBg);
    border: 1px solid var(--hvnly-border-color);
    border-radius: 15px;
    padding: 1.5rem;
}

.hvnly-comment-meta {
    margin-bottom: 1rem;
}

.hvnly-comment-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.hvnly-comment-avatar img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.hvnly-comment-author-info {
    flex: 1;
}

.hvnly-comment-author-name {
    font-weight: 600;
    color: var(--hvnly-text-primary);
}

.hvnly-comment-author-name a {
    color: var(--hvnly-primary);
    text-decoration: none;
}

.hvnly-comment-date {
    font-size: 0.85rem;
    color: var(--hvnly-text-secondary);
}

.hvnly-comment-date a {
    color: var(--hvnly-text-secondary);
    text-decoration: none;
}

.hvnly-comment-awaiting-moderation {
    color: var(--hvnly-alert);
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

.hvnly-comment-content {
    margin-bottom: 1rem;
    line-height: 1.7;
}

.hvnly-comment-reply {
    display: flex;
    gap: 1rem;
    font-size: 0.9rem;
}

.hvnly-comment-reply a,
.hvnly-comment-edit a {
    color: var(--hvnly-text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.hvnly-comment-reply a:hover,
.hvnly-comment-edit a:hover {
    color: var(--hvnly-primary);
}

.hvnly-comment-reply i,
.hvnly-comment-edit i {
    color: var(--hvnly-primary);
    margin-right: 0.3rem;
}

.children {
    list-style: none;
    padding-left: 2rem;
    margin-top: 2rem;
}

.hvnly-comment-navigation {
    display: flex;
    justify-content: space-between;
    margin: 2rem 0;
}

.hvnly-comment-nav-previous a,
.hvnly-comment-nav-next a {
    color: var(--hvnly-text-primary);
    text-decoration: none;
    font-weight: 600;
}

.hvnly-comment-nav-previous a:hover,
.hvnly-comment-nav-next a:hover {
    color: var(--hvnly-primary);
}

.hvnly-comments-closed {
    text-align: center;
    padding: 2rem;
    background: var(--hvnly-cardBg);
    border: 1px solid var(--hvnly-border-color);
    border-radius: 15px;
    color: var(--hvnly-text-secondary);
}

/* Comment Form */
.hvnly-comment-reply-title {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.hvnly-comment-notes {
    color: var(--hvnly-text-secondary);
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.hvnly-comment-form-comment textarea,
.hvnly-comment-form-author input,
.hvnly-comment-form-email input,
.hvnly-comment-form-url input {
    width: 100%;
    padding: 1rem;
    border: 1px solid var(--hvnly-border-color);
    border-radius: 10px;
    background: var(--hvnly-cardBg);
    color: var(--hvnly-text-primary);
    font-family: var(--hvnly-bodyFont);
    transition: all 0.3s ease;
}

.hvnly-comment-form-comment textarea:focus,
.hvnly-comment-form-author input:focus,
.hvnly-comment-form-email input:focus,
.hvnly-comment-form-url input:focus {
    outline: none;
    border-color: var(--hvnly-primary);
    box-shadow: 0 0 0 3px rgba(108,96,254,0.1);
}

.hvnly-comment-form-author,
.hvnly-comment-form-email,
.hvnly-comment-form-url {
    margin-bottom: 1rem;
}

.hvnly-comment-form-submit {
    margin-top: 1.5rem;
}

.hvnly-btn-submit {
    width: 100%;
    padding: 1rem;
    font-size: 1rem;
    cursor: pointer;
    border: none;
}

/* ======================
   SEARCH RESULTS
======================= */
.hvnly-search-header-section {
    padding: 4rem 0 2rem;
    background: linear-gradient(135deg, #f8f9fe 0%, #f0f3ff 100%);
    text-align: center;
    margin-top: 80px;
}

.hvnly-search-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.hvnly-search-query {
    background: linear-gradient(45deg, var(--hvnly-primary), var(--hvnly-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hvnly-search-count {
    color: var(--hvnly-text-secondary);
    margin-bottom: 2rem;
}

.hvnly-search-form-wrapper {
    max-width: 500px;
    margin: 0 auto;
}

.hvnly-search-results-section {
    padding: 4rem 0;
}

.hvnly-search-results-list {
    max-width: 800px;
    margin: 0 auto;
}

.hvnly-search-result-item {
    background: var(--hvnly-cardBg);
    border: 1px solid var(--hvnly-border-color);
    border-radius: 15px;
    padding: 2rem;
    margin-bottom: 2rem;
    transition: all 0.3s ease;
}

.hvnly-search-result-item:hover {
    transform: translateY(-5px);
    border-color: var(--hvnly-primary);
    box-shadow: 0 20px 35px -15px var(--hvnly-primary);
}

.hvnly-search-result-type {
    display: inline-block;
    background: rgba(108,96,254,0.1);
    color: var(--hvnly-primary);
    padding: 0.3rem 1rem;
    border-radius: 30px;
    font-size: 0.85rem;
    margin-bottom: 1rem;
}

.hvnly-search-result-type i {
    margin-right: 0.3rem;
}

.hvnly-search-result-title {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.hvnly-search-result-title a {
    color: var(--hvnly-text-primary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.hvnly-search-result-title a:hover {
    color: var(--hvnly-primary);
}

.hvnly-search-result-badge {
    display: inline-block;
    background: linear-gradient(45deg, var(--hvnly-primary), var(--hvnly-secondary));
    color: white;
    padding: 0.2rem 0.8rem;
    border-radius: 30px;
    font-size: 0.8rem;
    margin-left: 0.8rem;
    vertical-align: middle;
}

.hvnly-search-result-meta {
    margin-bottom: 1rem;
    color: var(--hvnly-text-secondary);
    font-size: 0.9rem;
}

.hvnly-search-result-meta i {
    color: var(--hvnly-primary);
    margin-right: 0.3rem;
}

.hvnly-search-result-meta span {
    margin-right: 1.5rem;
}

.hvnly-search-result-excerpt {
    color: var(--hvnly-text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.hvnly-search-result-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--hvnly-primary);
    text-decoration: none;
    font-weight: 600;
    transition: gap 0.3s ease;
}

.hvnly-search-result-link:hover {
    gap: 0.8rem;
}

.hvnly-no-search-results {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    padding: 3rem;
}

.hvnly-no-results-icon {
    font-size: 4rem;
    color: var(--hvnly-primary);
    margin-bottom: 1.5rem;
    opacity: 0.5;
}

/* ======================
   ENHANCED 404 PAGE STYLES
======================= */
.hvnly-404-section {
    min-height: 70vh;
    display: flex;
    align-items: center;
    padding: 5rem 0;
    margin-top: 80px;
    background: linear-gradient(135deg, 
        rgba(108, 96, 254, 0.03) 0%, 
        rgba(138, 123, 255, 0.03) 100%
    );
    position: relative;
    overflow: hidden;
}

.hvnly-404-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, 
        rgba(108, 96, 254, 0.05) 0%, 
        transparent 70%
    );
    animation: hvnly-float-bg 20s ease-in-out infinite;
    z-index: 0;
}

@keyframes hvnly-float-bg {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(2%, 1%) rotate(2deg); }
    66% { transform: translate(-1%, 2%) rotate(-2deg); }
}

.hvnly-404-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.hvnly-404-icon {
    position: relative;
    font-size: 10rem;
    margin-bottom: 2rem;
    color: var(--hvnly-primary);
    animation: hvnly-float-icon 4s ease-in-out infinite;
}

@keyframes hvnly-float-icon {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

.hvnly-404-number {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 2.8rem;
    font-weight: var(--hvnly-fontWeight-bold);
    color: white;
    z-index: 2;
    font-family: var(--hvnly-headingFont);
    text-shadow: 0 2px 10px rgba(108, 96, 254, 0.3);
    background: linear-gradient(135deg, var(--hvnly-primary), var(--hvnly-secondary));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    animation: hvnly-pulse-number 2s ease-in-out infinite;
}

@keyframes hvnly-pulse-number {
    0%, 100% { opacity: 0.9; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 1; transform: translate(-50%, -50%) scale(1.05); }
}

.hvnly-404-icon .fa-compass,
.hvnly-404-icon .fa-map-marked-alt {
    position: absolute;
    font-size: 3.5rem;
    bottom: 0;
    opacity: 0.8;
    transition: all 0.3s ease;
    animation: hvnly-rotate-icons 8s linear infinite;
}

.hvnly-404-icon .fa-compass {
    left: 10%;
    color: var(--hvnly-secondary);
    animation-delay: -2s;
}

.hvnly-404-icon .fa-map-marked-alt {
    right: 10%;
    color: var(--hvnly-accent);
    animation-delay: -4s;
}

@keyframes hvnly-rotate-icons {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.hvnly-404-icon:hover .fa-compass,
.hvnly-404-icon:hover .fa-map-marked-alt {
    transform: scale(1.1);
    opacity: 1;
}

.hvnly-404-title {
    font-size: 3rem;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--hvnly-primary), var(--hvnly-secondary));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-weight: var(--hvnly-fontWeight-bold);
    position: relative;
    display: inline-block;
    animation: hvnly-fadeInUp 0.6s ease-out;
}

.hvnly-404-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--hvnly-primary), var(--hvnly-secondary));
    border-radius: 3px;
    animation: hvnly-widthGrow 0.8s ease-out 0.2s forwards;
    width: 0;
}

@keyframes hvnly-widthGrow {
    to { width: 60px; }
}

.hvnly-404-message {
    font-size: 1.2rem;
    color: var(--hvnly-text-secondary);
    margin-bottom: 3rem;
    line-height: 1.8;
    animation: hvnly-fadeInUp 0.6s ease-out 0.1s both;
}

.hvnly-404-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 3rem;
    flex-wrap: wrap;
    animation: hvnly-fadeInUp 0.6s ease-out 0.2s both;
}

.hvnly-404-actions .hvnly-btn {
    min-width: 200px;
}

.hvnly-404-actions .hvnly-btn i {
    transition: transform 0.3s ease;
}

.hvnly-404-actions .hvnly-btn:hover i {
    transform: translateX(-5px);
}

.hvnly-404-actions .hvnly-btn-outline:hover i {
    transform: translateX(5px);
}

.hvnly-404-search {
    margin-bottom: 3rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    animation: hvnly-fadeInUp 0.6s ease-out 0.3s both;
}

.hvnly-404-search h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--hvnly-text-primary);
    font-weight: var(--hvnly-fontWeight-semibold);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.hvnly-404-search h3::before {
    content: '\f002';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 1rem;
    color: var(--hvnly-primary);
}

.hvnly-404-search .search-form {
    display: flex;
    gap: 0.5rem;
    background: var(--hvnly-cardBg);
    border-radius: 50px;
    padding: 0.25rem;
    border: 1px solid var(--hvnly-border-color);
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.hvnly-404-search .search-form:focus-within {
    border-color: var(--hvnly-primary);
    box-shadow: 0 0 0 3px rgba(108, 96, 254, 0.1);
    transform: translateY(-2px);
}

.hvnly-404-search .search-form input {
    flex: 1;
    padding: 0.85rem 1.5rem;
    border: none;
    background: transparent;
    color: var(--hvnly-text-primary);
    font-family: var(--hvnly-bodyFont);
    font-size: 1rem;
    outline: none;
}

.hvnly-404-search .search-form button {
    padding: 0.85rem 2rem;
    background: linear-gradient(45deg, var(--hvnly-primary), var(--hvnly-secondary));
    color: white;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: var(--hvnly-fontWeight-semibold);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.hvnly-404-search .search-form button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(108, 96, 254, 0.3);
}

.hvnly-404-search .search-form button i {
    transition: transform 0.3s ease;
}

.hvnly-404-search .search-form button:hover i {
    transform: translateX(3px);
}

.hvnly-404-links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    text-align: left;
    background: var(--hvnly-cardBg);
    border-radius: var(--hvnly-cardRadius);
    padding: 2rem;
    border: 1px solid var(--hvnly-border-color);
    animation: hvnly-fadeInUp 0.6s ease-out 0.4s both;
    transition: all 0.3s ease;
}

.hvnly-404-links:hover {
    border-color: var(--hvnly-primary);
    box-shadow: 0 15px 35px -15px rgba(108, 96, 254, 0.2);
}

.hvnly-404-popular-pages h4,
.hvnly-404-latest-posts h4 {
    font-size: 1.2rem;
    margin-bottom: 1.2rem;
    padding-bottom: 0.8rem;
    border-bottom: 2px solid var(--hvnly-primary);
    color: var(--hvnly-text-primary);
    display: inline-block;
    position: relative;
}

.hvnly-404-popular-pages h4 i,
.hvnly-404-latest-posts h4 i {
    color: var(--hvnly-primary);
    margin-right: 0.5rem;
}

.hvnly-404-popular-pages ul,
.hvnly-404-latest-posts ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.hvnly-404-popular-pages li,
.hvnly-404-latest-posts li {
    margin-bottom: 0.8rem;
    padding: 0.5rem 0;
    border-bottom: 1px dashed var(--hvnly-border-color);
    transition: all 0.3s ease;
}

.hvnly-404-popular-pages li:last-child,
.hvnly-404-latest-posts li:last-child {
    border-bottom: none;
}

.hvnly-404-popular-pages a,
.hvnly-404-latest-posts a {
    color: var(--hvnly-text-secondary);
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
}

.hvnly-404-popular-pages a i,
.hvnly-404-latest-posts a i {
    color: var(--hvnly-primary);
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.hvnly-404-popular-pages a:hover,
.hvnly-404-latest-posts a:hover {
    color: var(--hvnly-primary);
    transform: translateX(5px);
}

.hvnly-404-popular-pages a:hover i,
.hvnly-404-latest-posts a:hover i {
    transform: translateX(3px);
}

/* Dark mode enhancements */
html.hvnly-theme-dark-mode .hvnly-404-section {
    background: linear-gradient(135deg, 
        rgba(108, 96, 254, 0.08) 0%, 
        rgba(138, 123, 255, 0.08) 100%
    );
}

html.hvnly-theme-dark-mode .hvnly-404-number {
    text-shadow: 0 2px 20px rgba(108, 96, 254, 0.5);
}

html.hvnly-theme-dark-mode .hvnly-404-links {
    background: var(--hvnly-dark-bg-white);
    border-color: var(--hvnly-dark-border);
}

html.hvnly-theme-dark-mode .hvnly-404-search .search-form {
    background: var(--hvnly-dark-bg-white);
    border-color: var(--hvnly-dark-border);
}

html.hvnly-theme-dark-mode .hvnly-404-popular-pages li,
html.hvnly-theme-dark-mode .hvnly-404-latest-posts li {
    border-bottom-color: var(--hvnly-dark-border);
}

/* Responsive enhancements */
@media (max-width: 768px) {
    .hvnly-404-section {
        padding: 3rem 0;
        margin-top: 60px;
    }
    
    .hvnly-404-icon {
        font-size: 7rem;
    }
    
    .hvnly-404-number {
        font-size: 2rem;
    }
    
    .hvnly-404-icon .fa-compass,
    .hvnly-404-icon .fa-map-marked-alt {
        font-size: 2.5rem;
    }
    
    .hvnly-404-title {
        font-size: 2.2rem;
    }
    
    .hvnly-404-message {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .hvnly-404-actions {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        margin-bottom: 2rem;
    }
    
    .hvnly-404-actions .hvnly-btn {
        width: 100%;
        max-width: 280px;
    }
    
    .hvnly-404-links {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 1.5rem;
    }
    
    .hvnly-404-search {
        margin-bottom: 2rem;
    }
    
    .hvnly-404-search .search-form {
        flex-direction: column;
        border-radius: 20px;
        padding: 0.5rem;
    }
    
    .hvnly-404-search .search-form input {
        text-align: center;
        padding: 0.8rem;
    }
    
    .hvnly-404-search .search-form button {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hvnly-404-title {
        font-size: 1.8rem;
    }
    
    .hvnly-404-icon {
        font-size: 5rem;
        margin-bottom: 1.5rem;
    }
    
    .hvnly-404-number {
        font-size: 1.6rem;
    }
    
    .hvnly-404-icon .fa-compass,
    .hvnly-404-icon .fa-map-marked-alt {
        font-size: 2rem;
    }
    
    .hvnly-404-popular-pages h4,
    .hvnly-404-latest-posts h4 {
        font-size: 1.1rem;
    }
}

/* Animation keyframes */
@keyframes hvnly-fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ======================
   PAGE TEMPLATE STYLES
======================= */
.hvnly-page-header {
    padding: 2rem 0 2rem;
    position: relative;
    overflow: hidden;
    /* margin-top: 80px; */
}

.hvnly-page-header-gradient {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

html.hvnly-theme-dark-mode .hvnly-page-header-gradient {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
}

.hvnly-page-header-minimal {
    background: var(--hvnly-bg-white);
    border-bottom: 1px solid var(--hvnly-border-color);
    padding: 3rem 0;
}

html.hvnly-theme-dark-mode .hvnly-page-header-minimal {
    background: var(--hvnly-dark-bg-light);
    border-bottom-color: var(--hvnly-dark-border);
}

.hvnly-page-header-minimal .hvnly-page-title {
    color: var(--hvnly-text-primary);
    -webkit-text-fill-color: initial;
    background: none;
}

.hvnly-page-header-minimal .hvnly-page-title:after {
    display: none;
}

.hvnly-page-header-waves {
    background: linear-gradient(135deg, #6C60FE 0%, #8A7BFF 100%);
    color: white;
    padding: 5rem 0 0;
}

.hvnly-page-header-waves svg {
    display: block;
    width: 100%;
    height: auto;
    margin-top: 3rem;
}

.hvnly-page-header-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.hvnly-page-title {
    font-size: 3rem;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
    background: linear-gradient(45deg, var(--hvnly-primary), var(--hvnly-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hvnly-page-header-gradient .hvnly-page-title,
.hvnly-page-header-waves .hvnly-page-title {
    -webkit-text-fill-color: white;
    background: none;
    color: white;
}

.hvnly-page-excerpt {
    font-size: 1.2rem;
    color: var(--hvnly-text-secondary);
    line-height: 1.6;
}

.hvnly-page-header-gradient .hvnly-page-excerpt,
.hvnly-page-header-waves .hvnly-page-excerpt {
    color: rgba(255,255,255,0.9);
}

.hvnly-page-layout {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 3rem;
    margin: 4rem 0;
}

.hvnly-page-main {
    min-width: 0;
}

.hvnly-page-article {
    background: var(--hvnly-cardBg);
    border-radius: 30px;
    padding: 3rem;
    box-shadow: var(--hvnly-cardShadow);
    border: 1px solid var(--hvnly-border-color);
}

.hvnly-page-featured-image {
    margin: -3rem -3rem 2rem -3rem;
    border-radius: 30px 30px 0 0;
    overflow: hidden;
    position: relative;
}

.hvnly-page-featured-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.6s ease;
}

.hvnly-page-article:hover .hvnly-page-featured-image img {
    transform: scale(1.05);
}

.hvnly-featured-image-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.7));
    color: white;
    padding: 2rem 1.5rem 1rem;
    font-size: 0.9rem;
    font-style: italic;
}

.hvnly-page-content {
    /*font-size: 1.1rem;*/
    /*line-height: 1.8;*/
    color: var(--hvnly-text-primary);
}

.hvnly-page-content h2 {
    font-size: 1.8rem;
    margin: 2.5rem 0 1.5rem;
    color: var(--hvnly-text-primary);
}

.hvnly-page-content h3 {
    font-size: 1.3rem;
    margin: 2rem 0 1.2rem;
    color: var(--hvnly-text-primary);
}

.hvnly-page-content h4 {
    font-size: 1.1rem;
    margin: 1.5rem 0 1rem;
    color: var(--hvnly-text-primary);
}

.hvnly-page-content p {
    margin-bottom: 1rem;line-height: 26px;
}

.hvnly-page-content img {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    margin: 2rem 0;
    box-shadow: 0 20px 40px -10px rgba(0,0,0,0.2);
}

.hvnly-page-content blockquote {
    margin: 2rem 0;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(108,96,254,0.05), rgba(138,123,255,0.05));
    border-left: 4px solid var(--hvnly-primary);
    font-style: italic;
    border-radius: 0 15px 15px 0;
    font-size: 1.2rem;
    position: relative;
}

.hvnly-page-content blockquote:before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 20px;
    font-size: 4rem;
    color: var(--hvnly-primary);
    opacity: 0.2;
    font-family: serif;
}

.hvnly-page-content ul,
.hvnly-page-content ol {
    margin: 1.5rem 0;
    padding-left: 2rem;    line-height: 22px;
}

.hvnly-page-content li {
    margin-bottom: 0.5rem;
}

.hvnly-page-content li::marker {
    color: var(--hvnly-primary);
}

.hvnly-page-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
}

.hvnly-page-content th {
    background: var(--hvnly-primary);
    color: white;
    padding: 1rem;
    text-align: left;
}

.hvnly-page-content td {
    padding: 1rem;
    border-bottom: 1px solid var(--hvnly-border-color);
}

.hvnly-page-content tr:hover {
    background: rgba(108,96,254,0.05);
}

.hvnly-page-sidebar {
    position: relative;
}

.hvnly-page-sidebar .hvnly-sidebar-sticky {
    position: sticky;
    top: 100px;
}

.hvnly-page-cta {
    background: linear-gradient(135deg, var(--hvnly-primary) 0%, var(--hvnly-secondary) 100%);
    color: white;
    padding: 5rem 0;
    margin-top: 2rem;
    position: relative;
    overflow: hidden;
}

.hvnly-page-cta:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23ffffff" fill-opacity="0.1" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,122.7C672,117,768,139,864,154.7C960,171,1056,181,1152,165.3C1248,149,1344,107,1392,85.3L1440,64L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>');
    background-size: cover;
    background-position: bottom;
    opacity: 0.1;
}

.hvnly-page-cta-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.hvnly-page-cta-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: white;
}

.hvnly-page-cta-description {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hvnly-btn-large:hover {
    background: var(--hvnly-primary);
    color: white;
    border-color: white;
}

.hvnly-page-links {
    margin: 2rem 0;
    padding: 1rem;
    background: var(--hvnly-cardBg);
    border: 1px solid var(--hvnly-border-color);
    border-radius: 10px;
    text-align: center;
}

.hvnly-page-links-title {
    font-weight: 600;
    margin-right: 1rem;
    color: var(--hvnly-text-primary);
}

.hvnly-page-link {
    display: inline-block;
    padding: 0.3rem 0.8rem;
    margin: 0 0.2rem;
    background: rgba(108,96,254,0.1);
    border-radius: 5px;
    color: var(--hvnly-text-primary);
    text-decoration: none;
    transition: all 0.3s ease;
}

.hvnly-page-link:hover {
    background: var(--hvnly-primary);
    color: white;
}

/* ======================
   PAGINATION
======================= */
.hvnly-pagination {
    margin: 4rem 0 2rem;
    text-align: center;
}

.hvnly-pagination .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 45px;
    height: 45px;
    margin: 0 0.3rem;
    background: var(--hvnly-cardBg);
    border: 1px solid var(--hvnly-border-color);
    border-radius: 10px;
    color: var(--hvnly-text-primary);
    text-decoration: none;
    transition: all 0.3s ease;
}

.hvnly-pagination .page-numbers.current {
    background: linear-gradient(45deg, var(--hvnly-primary), var(--hvnly-secondary));
    color: white;
    border-color: transparent;
}

.hvnly-pagination .page-numbers:hover:not(.current) {
    border-color: var(--hvnly-primary);
    transform: translateY(-3px);
}

.hvnly-pagination .prev,
.hvnly-pagination .next {
    padding: 0 1.2rem;
}

/* ======================
   RESPONSIVE STYLES
======================= */
@media (max-width: 1280px) {
    .hvnly-hero-text h1 {
        font-size: 2.5rem;
        margin-bottom: 1rem;
     
    }
    
    .hvnly-section-header h2 {
        font-size: 2rem;
     
    }
.hvnly-feature-card h3, .hvnly-builder-left h3, .hvnly-step h3, .hvnly-screenshot-content h3, .hvnly-coming-soon h3{
    font-size: 1.2rem;
   
}
.hvnly-footer-links h4 {
  
    font-size: 1rem;
 
}
    

}

@media (max-width: 1100px) {
    .hvnly-hero-content { 
        flex-direction: column; 
        text-align: center; 
    }
    .hvnly-hero { 
        min-height: auto; 
        padding: 7rem 0 4rem; 
    }
    .hvnly-hero-text { 
        padding-right: 0; 
        margin-bottom: 3rem; 
    }
    .hvnly-hero-text h1 { 
        font-size: 3.2rem; 
    }
    .hvnly-hero-text p { 
        margin-left: auto; 
        margin-right: auto; 
    }
    .hvnly-hero-actions { 
        justify-content: center; 
    }
    .hvnly-steps { 
        flex-direction: column; 
        gap: 2rem; 
    }
    .hvnly-steps::before { 
        display: none; 
    }
    .hvnly-step { 
        max-width: 500px; 
        margin: 0 auto; 
    }
    .hvnly-screenshot-item { 
        flex-direction: column; 
        gap: 2rem; 
    }
    .hvnly-screenshot-item:nth-child(even) { 
        flex-direction: column; 
    }
    .hvnly-nav-links {
       
        gap: 0.8rem;
    }

}

@media (max-width: 1024px) {
    .hvnly-single-post-layout,
    .hvnly-page-layout {
        grid-template-columns: 1fr;
    }
    
    .hvnly-single-post-sidebar,
    .hvnly-page-sidebar {
        margin-top: 2rem;
    }
    
    .hvnly-single-post-sidebar .hvnly-sidebar-sticky,
    .hvnly-page-sidebar .hvnly-sidebar-sticky {
        position: static;
    }
    
    .hvnly-single-post-title {
        font-size: 2.8rem;
    }
    
    .hvnly-page-title {
        font-size: 2.8rem;
    }
    .hvnly-nav-links {
       
        gap: 0.8rem;
    }
    .hvnly-nav-links {
        display: none;
    }
    .hvnly-mobile-toggle {
        display: block;
    }
.hvnly-download-counter {

    align-items: center;

    border-radius: 60px;
    max-width: 100%;

    justify-content: center;
}
    
.hvnly-builder-right {
 
    width: 100%;
}
    
    
    
}

@media (max-width: 900px) {
    .hvnly-builder-showcase { 
        flex-direction: column; 
    }
    .hvnly-nav-links {
        display: none;
    }
.hvnly-mobile-toggle {
    display: block;
}
}

@media (max-width: 768px) {
    .hvnly-hero-content {
        display: block;
       
    }
    .hvnly-section {
        padding: 2rem 0 2rem;
    }
    
    .hvnly-section-header {
        margin-bottom: 2.5rem;
    }
    
    .hvnly-section-header h2 {
        font-size: 2rem;
    }
    
    .hvnly-section-header p {
        font-size: 1rem;
    }
    
    .hvnly-hero-text h1 {
        font-size: 2.2rem;
    }
    
    .hvnly-hero-text p {
        font-size: 1rem;
    }
    
    .hvnly-hero-actions {
        flex-direction: column;
        gap: 1rem;
        margin-bottom: 2rem;
    }
    
    .hvnly-hero-video {
        height: 300px;
    }
    
    .hvnly-nav-links {
        display: none;
    }
    
    .hvnly-mobile-toggle {
        display: block;
    }
    
    .hvnly-features-grid {
        grid-template-columns: 1fr;
        gap: 1.8rem;
    }
    
    .hvnly-feature-card {
        padding: 1.5rem;
    }
    
    .hvnly-feature-icon {
        width: 60px;
        height: 60px;
        font-size: 1.8rem;
        margin-bottom: 1.5rem;
    }
    
    .hvnly-feature-card h3 {
        font-size: 1.4rem;
    }
    
    .hvnly-builder-left {
        padding: 2rem;
    }
    
    .hvnly-builder-left h3 {
        font-size:1.4rem;
    }
    
    .hvnly-step {
        padding: 2rem 1.5rem;
    }
    
    .hvnly-step h3 {
        font-size: 1.4rem;
    }
    
    .hvnly-screenshot-item {
        gap: 1.5rem;
    }
    
    .hvnly-screenshot-content h3 {
        font-size: 1.4rem;
    }
    
    .hvnly-screenshot-image {
        height: 250px;
    }
    
    .hvnly-reviews-grid {
        grid-template-columns: 1fr;
    }
    
    .hvnly-review-card {
        padding: 2rem;
    }
    
    .hvnly-roadmap-content {
        padding: 2rem;
    }
    
    .hvnly-coming-soon {
        gap: 1rem;
    }
    
    .hvnly-coming-soon i {
        font-size: 2rem;
    }
    
    .hvnly-coming-soon h3 {
        font-size: 1.3rem;
    }
    
    .hvnly-faq-question {
        padding: 1.2rem 1.5rem;
        font-size: 1.1rem;
    }
    
    .hvnly-faq-answer.hvnly-show {
        padding: 0 1.5rem 1.5rem;
    }
    
    .hvnly-footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .hvnly-archive-title {
        font-size: 2.5rem;
    }
    
    .hvnly-blog-grid {
        grid-template-columns: 1fr;
    }
    
    .hvnly-single-post-title {
        font-size: 2.2rem;
    }
    
    .hvnly-single-post-meta {
        flex-direction: column;
        gap: 1rem;
    }
    
    .hvnly-single-post-meta-items {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .hvnly-single-post-share {
        flex-direction: column;
        text-align: center;
    }
    
    .hvnly-author-box {
        flex-direction: column;
        text-align: center;
    }
    
    .hvnly-post-navigation {
        grid-template-columns: 1fr;
    }
    
    .hvnly-404-actions {
        flex-direction: column;
    }
    
    .hvnly-404-links {
        grid-template-columns: 1fr;
    }
    
    .hvnly-page-header {
        padding: 3rem 0;
    }
    
    .hvnly-page-title {
        font-size: 2.2rem;
    }
    
    .hvnly-page-article {
        padding: 2rem;
    }
    
    .hvnly-page-featured-image {
        margin: -2rem -2rem 1.5rem -2rem;
    }
    
    .hvnly-page-content h2 {
        font-size: 1.8rem;
    }
    
    .hvnly-page-content h3 {
        font-size: 1.5rem;
    }
    
    .hvnly-page-cta-title {
        font-size: 2rem;
    }
    .hvnly-hero-text {
       
        margin-bottom: 1rem;
    }
    .hvnly-hero-shape {
        display: none;
    }
.hvnly-close-modal, .hvnly-video-close {
    position: absolute;
    top: -50px;
    right: -9px;
    font-size: 1rem;
    color: white;
    cursor: pointer;
    background: #eb0a00;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 12121;
}
    .hvnly-builder-right {
     
        padding: 2rem 0.8rem;
      
    }



}

@media (max-width: 767px) {
.hvnly-video-container {
    width: 95%;

}
.hvnly-footer-content {
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-bottom: 2rem;
}
    .hvnly-screenshot-image {
    height: auto;
    border-radius: 12px;
}
.hvnly-faq-question {
 
    line-height: 1.8rem;
}
    .hvnly-footer-logo {
        
        margin-bottom: 0;
    }
    .hvnly-footer-links h4 {
        margin-bottom: 0.8rem;
    }
    .hvnly-footer-links li {
    margin-bottom: 0;
}
    .hvnly-builder-features {

        grid-template-columns: unset;
        gap: 1rem 2rem;
        margin: 1rem 0;
    }
    .hvnly-builder-right {
     
        padding: 2rem 0.8rem;
      
    }
    .hvnly-hero-shape {
        display: none;
    }
    .hvnly-container {
        padding: 0 1.2rem;
    }
    
    .hvnly-hero-content {
        display: block;
       
    }
    .hvnly-hero-text {
       
        margin-bottom: 1rem;
    }
    .hvnly-section-header h2 {
        font-size: 1.8rem;
    }
    .hvnly-hero-content {
        gap: 1rem;
    }
    .hvnly-hero {
        padding: 2rem 0 2rem;
    }
    
    .hvnly-hero-text h1 {
        font-size: 1.9rem;margin-bottom: 10px;
    }
    
    .hvnly-hero-text p {
        font-size: 1rem;margin-bottom: 10px;
    }
    
    .hvnly-hero-badge {
        font-size: 0.8rem;
        padding: 0.4rem 1rem;margin-bottom: 20px;
    }
    
    .hvnly-hero-video {
        height: 300px;
    }
    
    .hvnly-play-btn {
        width: 70px;
        height: 70px;
    }
    
    .hvnly-play-btn i {
        font-size: 2rem;
    }
    
    .hvnly-download-counter {
        padding: 1rem;
        gap: 0.8rem;        max-width: 100%;    justify-content: space-evenly;
    }
    
    .hvnly-counter-icon {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    .hvnly-counter-number {
        font-size: 1.5rem;
    }
    
    .hvnly-counter-content h3 {
        font-size: 0.9rem;
    }
    
    .hvnly-archive-title {
        font-size: 2rem;
    }
    
    .hvnly-blog-card-meta {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .hvnly-single-post-title {
        font-size: 1.8rem;
    }
    
    .hvnly-search-result-meta span {
        display: block;
        margin-bottom: 0.3rem;
    }
    
    .hvnly-page-title {
        font-size: 1.8rem;
    }
    
    .hvnly-page-excerpt {
        font-size: 1rem;
    }
    
.hvnly-page-article {
    padding: 1rem;
    border-radius: 12px;
}
    
    .hvnly-page-content {
        font-size: 1rem;
    }
    
    .hvnly-page-cta-title {
        font-size: 1.6rem;
    }
    
    .hvnly-page-cta-description {
        font-size: 1rem;
    }
    
    .hvnly-btn-large {
        padding: 0.8rem 2rem;
        font-size: 1rem;
    }

.hvnly-features-grid {
   
    gap: 0.8rem;
}
.hvnly-builder-showcase {
 
    gap: 0.8rem;
}
.hvnly-steps {
   
    gap: 0.8rem;
}
.hvnly-screenshots-container {

    gap: 2rem;
}

.hvnly-reviews-grid {
   gap: 0.8rem;
}
.hvnly-footer {
 
    padding: 2rem 0 2rem;
   
}

.hvnly-page-content h2 {
    font-size: 1.4rem;margin: 0.5rem 0 0.5rem;

}

.hvnly-page-header {
    padding: 1.5rem 0;
}

.hvnly-page-layout-full {
 
    margin: 2rem 0;
}



}

@media (max-width: 480px) {
    
.hvnly-container {

gap: 0.3rem;
}
    
.hvnly-mobile-toggle {

    margin-left: -12px;
    margin-right: 0.6rem;
}
    
.hvnly-header-actions {

    gap: 0;
}
    
.builder-grid-cards {

    grid-template-columns: unset;
   
}
.hvnly-coming-soon {
    display: flex;
    align-items: flex-start;
 
    flex-direction: column;
}
    
    
}
/* ======================
   ANIMATIONS
======================= */
.hvnly-page-article,
.hvnly-single-post-main {
    animation: hvnly-fadeIn 1s ease;
}

@keyframes hvnly-fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* ======================
   PRINT STYLES
======================= */
@media print {
    .hvnly-header,
    .hvnly-footer,
    .hvnly-sidebar,
    .hvnly-breadcrumbs,
    .hvnly-single-post-share,
    .hvnly-related-posts,
    .hvnly-comments-section,
    .hvnly-page-cta,
    .hvnly-page-sidebar {
        display: none;
    }
    
    .hvnly-single-post-main,
    .hvnly-page-main {
        width: 100%;
    }
    
    .hvnly-single-post-content,
    .hvnly-page-content {
        font-size: 12pt;
        line-height: 1.5;
    }
    
    .hvnly-single-post-content a,
    .hvnly-page-content a {
        text-decoration: underline;
        color: #000;
    }
}

/* ======================
   PAGE LAYOUT WITH SIDEBAR TOGGLE
======================= */

/* Default layout - full width (no sidebar) */
.hvnly-page-layout-full {
    display: block;
    margin: 4rem 0;
}

.hvnly-page-main-full {
    width: 100%;
}

/* Layout with sidebar (when enabled) */
.hvnly-page-layout {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 3rem;
    margin: 4rem 0;
}

.hvnly-page-main {
    min-width: 0;
}

/* Responsive */

@media (max-width: 1024px) {
    .hvnly-page-layout {
        grid-template-columns: 1fr;
    }
    
    .hvnly-page-sidebar {
        margin-top: 2rem;
    }
    
    .hvnly-page-sidebar .hvnly-sidebar-sticky {
        position: static;
    }
}

/* Footer Logo Styles */
.hvnly-footer-logo img {
    display: block;
    height: auto;
    margin-bottom: 1rem;
}

.hvnly-footer-about p a{color:#fff}