/**
 * Telorix Main Stylesheet
 * @package Telorix
 * @since 1.0.0
 */

/* ── CSS Variables ─────────────────────────────────────── */
:root {
    --telorix-primary: #0055FF;
    --telorix-secondary: #00C853;
    --telorix-accent: #FF6D00;
    --telorix-dark: #0f1729;
    --telorix-dark-2: #1a2332;
    --telorix-gray: #6b7280;
    --telorix-gray-light: #f3f4f6;
    --telorix-border: #e5e7eb;
    --telorix-white: #ffffff;
    --telorix-font: 'Inter', sans-serif;
    --telorix-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    --telorix-shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.12);
    --telorix-radius: 12px;
    --telorix-transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── Global Reset ──────────────────────────────────────── */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--telorix-font);
    color: #374151;
    line-height: 1.7;
    background: var(--telorix-white);
    -webkit-font-smoothing: antialiased;
}

a {
    text-decoration: none;
    color: var(--telorix-primary);
    transition: var(--telorix-transition);
}

a:hover {
    color: var(--telorix-dark);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul,
ol {
    list-style: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
    line-height: 1.3;
    color: var(--telorix-dark);
}

/* ── Container ─────────────────────────────────────────── */
.telorix-container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
}

.telorix-row {
    display: flex;
    gap: 40px;
}

.telorix-content {
    flex: 1;
    min-width: 0;
    padding-bottom: 60px;
}

.telorix-content.has-sidebar {
    max-width: calc(100% - 340px);
}

.telorix-content.full-width {
    max-width: 100%;
}

/* ── Preloader ─────────────────────────────────────────── */
.telorix-preloader {
    position: fixed;
    inset: 0;
    z-index: 99999;
    background: var(--telorix-white);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.5s, visibility 0.5s;
}

.telorix-preloader.loaded {
    opacity: 0;
    visibility: hidden;
}

.telorix-spinner {
    position: relative;
    width: 60px;
    height: 60px;
}

.telorix-spinner-ring {
    position: absolute;
    inset: 0;
    border: 3px solid transparent;
    border-top-color: var(--telorix-primary);
    border-radius: 50%;
    animation: telorixSpin 1.2s linear infinite;
}

.telorix-spinner-ring:nth-child(2) {
    inset: 8px;
    border-top-color: var(--telorix-secondary);
    animation-duration: 1.5s;
    animation-direction: reverse;
}

.telorix-spinner-ring:nth-child(3) {
    inset: 16px;
    border-top-color: var(--telorix-accent);
    animation-duration: 2s;
}

@keyframes telorixSpin {
    to {
        transform: rotate(360deg);
    }
}

/* ── Buttons ───────────────────────────────────────────── */
.telorix-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    border: 2px solid transparent;
    cursor: pointer;
    transition: var(--telorix-transition);
    white-space: nowrap;
}

.telorix-btn-primary {
    background: var(--telorix-primary);
    color: #fff;
}

.telorix-btn-primary:hover {
    background: #0044cc;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 85, 255, 0.3);
}

.telorix-btn-outline {
    border-color: var(--telorix-primary);
    color: var(--telorix-primary);
    background: transparent;
}

.telorix-btn-outline:hover {
    background: var(--telorix-primary);
    color: #fff;
}

.telorix-btn-light {
    background: #fff;
    color: var(--telorix-primary);
}

.telorix-btn-light:hover {
    background: #f0f4ff;
    color: var(--telorix-primary);
    transform: translateY(-2px);
}

.telorix-btn-outline-light {
    border-color: rgba(255, 255, 255, 0.4);
    color: #fff;
    background: transparent;
}

.telorix-btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
}

/* ── Topbar ────────────────────────────────────────────── */
.telorix-topbar {
    background: var(--telorix-dark);
    color: rgba(255, 255, 255, 0.8);
    font-size: 13px;
}

.telorix-topbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 6px 0;
}

.telorix-topbar-info {
    display: flex;
    gap: 24px;
}

.telorix-topbar-info li {
    display: flex;
    align-items: center;
    gap: 6px;
}

.telorix-topbar-info a {
    color: rgba(255, 255, 255, 0.8);
}

.telorix-topbar-info a:hover {
    color: #fff;
}

.telorix-topbar-info svg {
    opacity: 0.6;
}

.telorix-social-links {
    display: flex;
    gap: 12px;
}

.telorix-social-links a {
    color: rgba(255, 255, 255, 0.6);
    display: flex;
}

.telorix-social-links a:hover {
    color: var(--telorix-primary);
}

/* ── Header Main ───────────────────────────────────────── */
.telorix-header-main {
    background: var(--telorix-white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: relative;
    z-index: 100;
}

.telorix-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0;
    min-height: 60px;
}

.telorix-logo a {
    font-size: 26px;
    font-weight: 800;
    color: var(--telorix-dark);
    letter-spacing: -0.5px;
}

.telorix-logo img {
    max-height: 100px;
    width: auto;
}

/* Sticky Header */
.telorix-header.is-sticky .telorix-header-main {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    animation: telorixSlideDown 0.3s ease;
}

.telorix-header.is-sticky .telorix-topbar {
    display: none;
}

@keyframes telorixSlideDown {
    from {
        transform: translateY(-100%);
    }

    to {
        transform: translateY(0);
    }
}

/* ── Navigation ─────────────────────────────────────────── */
.telorix-nav-menu {
    display: flex;
    align-items: center;
    gap: 4px;
}

.telorix-nav-menu>li>a {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 8px 14px;
    font-size: 14px;
    font-weight: 500;
    color: var(--telorix-dark);
    border-radius: 6px;
}

.telorix-nav-menu>li>a:hover,
.telorix-nav-menu>li.telorix-active>a {
    color: var(--telorix-primary);
    background: rgba(0, 85, 255, 0.06);
}

.telorix-dropdown-arrow {
    transition: transform 0.3s;
}

.telorix-has-dropdown:hover .telorix-dropdown-arrow {
    transform: rotate(180deg);
}

/* Dropdown */
.telorix-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 220px;
    background: var(--telorix-white);
    border-radius: var(--telorix-radius);
    box-shadow: var(--telorix-shadow-lg);
    padding: 10px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--telorix-transition);
    border: 1px solid var(--telorix-border);
}

.telorix-has-dropdown:hover>.telorix-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.telorix-dropdown li a {
    display: block;
    padding: 10px 14px;
    font-size: 14px;
    color: var(--telorix-gray);
    border-radius: 6px;
}

.telorix-dropdown li a:hover {
    background: rgba(0, 85, 255, 0.06);
    color: var(--telorix-primary);
}

.telorix-has-dropdown {
    position: relative;
}

/* Header Actions */
.telorix-header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.telorix-search-toggle {
    background: none;
    border: none;
    padding: 8px;
    cursor: pointer;
    color: var(--telorix-dark);
    border-radius: 8px;
    transition: var(--telorix-transition);
    display: flex;
}

.telorix-search-toggle:hover {
    background: var(--telorix-gray-light);
    color: var(--telorix-primary);
}

.telorix-header-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--telorix-primary);
    color: #fff;
    padding: 8px 20px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
}

.telorix-header-cta:hover {
    background: #0044cc;
    color: #fff;
    transform: translateY(-1px);
}

.telorix-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.telorix-hamburger {
    display: flex;
    flex-direction: column;
    gap: 5px;
    width: 24px;
}

.telorix-hamburger span {
    display: block;
    height: 2px;
    background: var(--telorix-dark);
    border-radius: 2px;
    transition: var(--telorix-transition);
}

/* Search Overlay */
.telorix-search-overlay {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(15, 23, 41, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--telorix-transition);
}

.telorix-search-overlay.active {
    opacity: 1;
    visibility: visible;
}

.telorix-search-form {
    display: flex;
    max-width: 600px;
    width: 100%;
    gap: 12px;
    padding: 0 20px;
}

.telorix-search-input {
    flex: 1;
    background: transparent;
    border: none;
    border-bottom: 2px solid rgba(255, 255, 255, 0.3);
    padding: 16px 0;
    font-size: 24px;
    color: #fff;
    outline: none;
    font-family: var(--telorix-font);
}

.telorix-search-input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.telorix-search-submit {
    background: none;
    border: none;
    color: #fff;
    cursor: pointer;
    opacity: 0.6;
}

.telorix-search-submit:hover {
    opacity: 1;
}

.telorix-search-close {
    position: absolute;
    top: 30px;
    right: 30px;
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.6);
    cursor: pointer;
}

.telorix-search-close:hover {
    color: #fff;
}

/* Mobile Menu */
.telorix-mobile-menu {
    position: fixed;
    top: 0;
    right: -320px;
    width: 320px;
    height: 100vh;
    background: var(--telorix-white);
    z-index: 10000;
    display: flex;
    flex-direction: column;
    transition: right 0.4s ease;
    box-shadow: -5px 0 30px rgba(0, 0, 0, 0.15);
}

.telorix-mobile-menu.active {
    right: 0;
}

.telorix-mobile-menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    border-bottom: 1px solid var(--telorix-border);
}

.telorix-mobile-close {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--telorix-gray);
    padding: 4px;
}

.telorix-mobile-menu-body {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
}

.telorix-mobile-nav li a {
    display: block;
    padding: 12px 0;
    font-size: 16px;
    font-weight: 500;
    color: var(--telorix-dark);
    border-bottom: 1px solid var(--telorix-gray-light);
}

.telorix-mobile-nav li a:hover {
    color: var(--telorix-primary);
}

.telorix-mobile-menu-footer {
    padding: 20px;
    border-top: 1px solid var(--telorix-border);
}

.telorix-mobile-cta {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--telorix-primary);
    color: #fff;
    padding: 14px;
    border-radius: 8px;
    justify-content: center;
    font-weight: 600;
}

.telorix-mobile-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: var(--telorix-transition);
}

.telorix-mobile-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* ── Page Banner ──────────────────────────────────────── */
.telorix-page-banner {
    background: linear-gradient(135deg, var(--telorix-dark) 0%, var(--telorix-dark-2) 100%);
    padding: 60px 0 50px;
    text-align: center;
    color: #fff;
    margin-bottom: 50px;
}

.telorix-page-banner-title {
    font-size: 36px;
    margin-bottom: 10px;
    color: #fff;
}

.telorix-page-banner-desc {
    color: rgba(255, 255, 255, 0.7);
    font-size: 16px;
}

.telorix-breadcrumb-list {
    display: flex;
    justify-content: center;
    gap: 8px;
    font-size: 14px;
    flex-wrap: wrap;
}

.telorix-breadcrumb-list li {
    display: flex;
    align-items: center;
    gap: 8px;
}

.telorix-breadcrumb-list li::after {
    content: '/';
    color: rgba(255, 255, 255, 0.3);
}

.telorix-breadcrumb-list li:last-child::after {
    display: none;
}

.telorix-breadcrumb-list a {
    color: rgba(255, 255, 255, 0.6);
}

.telorix-breadcrumb-list a:hover {
    color: #fff;
}

.telorix-breadcrumb-list span {
    color: rgba(255, 255, 255, 0.9);
}

/* ── Hero Section ──────────────────────────────────────── */
.telorix-hero {
    position: relative;
    padding: 120px 0 100px;
    background: linear-gradient(135deg, #0a1628 0%, #1a2744 50%, #0f1f3d 100%);
    overflow: hidden;
}

.telorix-hero-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 50%, rgba(0, 85, 255, 0.15), transparent 60%);
}

.telorix-hero-inner {
    display: flex;
    align-items: center;
    gap: 60px;
    position: relative;
    z-index: 2;
}

.telorix-hero-content {
    flex: 1;
}

.telorix-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(0, 85, 255, 0.15);
    color: var(--telorix-primary);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    border: 1px solid rgba(0, 85, 255, 0.25);
    margin-bottom: 24px;
}

.telorix-hero-title {
    font-size: 52px;
    line-height: 1.15;
    color: #fff;
    margin-bottom: 20px;
}

.telorix-hero-title span {
    color: var(--telorix-primary);
}

.telorix-hero-desc {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 32px;
    max-width: 540px;
    line-height: 1.7;
}

.telorix-hero-actions {
    display: flex;
    gap: 14px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.telorix-hero-stats {
    display: flex;
    gap: 40px;
}

.telorix-hero-stat {
    text-align: center;
}

.telorix-hero-stat-number {
    font-size: 36px;
    font-weight: 800;
    color: #fff;
}

.telorix-hero-stat-suffix {
    font-size: 24px;
    font-weight: 700;
    color: var(--telorix-primary);
}

.telorix-hero-stat-label {
    display: block;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 4px;
}

/* Hero Visual */
.telorix-hero-visual {
    flex: 0 0 440px;
    position: relative;
}

.telorix-hero-image-wrapper {
    position: relative;
    width: 100%;
    height: 400px;
}

.telorix-hero-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
}

.telorix-hero-shape-1 {
    width: 300px;
    height: 300px;
    background: var(--telorix-primary);
    top: 0;
    right: 0;
    animation: telorixFloat 6s ease-in-out infinite;
}

.telorix-hero-shape-2 {
    width: 200px;
    height: 200px;
    background: var(--telorix-secondary);
    bottom: 20px;
    left: 20px;
    animation: telorixFloat 8s ease-in-out infinite reverse;
}

@keyframes telorixFloat {

    0%,
    100% {
        transform: translateY(0)
    }

    50% {
        transform: translateY(-20px)
    }
}

.telorix-hero-floating-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--telorix-radius);
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 14px;
    color: #fff;
    animation: telorixFloat 5s ease-in-out infinite;
}

.telorix-hero-card-1 {
    top: 40px;
    left: 0;
}

.telorix-hero-card-2 {
    bottom: 60px;
    right: 0;
    animation-delay: 1.5s;
}

.telorix-hero-floating-card strong {
    display: block;
    font-size: 20px;
    font-weight: 700;
}

.telorix-hero-floating-card span {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
}

.telorix-hero-floating-card svg {
    opacity: 0.7;
}

/* ── Section Common ────────────────────────────────────── */
.telorix-section {
    padding: 100px 0;
}

.telorix-section-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 50px;
}

.telorix-section-tag {
    display: inline-block;
    background: rgba(0, 85, 255, 0.08);
    color: var(--telorix-primary);
    padding: 6px 18px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.telorix-section-title {
    font-size: 38px;
    margin-bottom: 14px;
}

.telorix-section-title span {
    color: var(--telorix-primary);
}

.telorix-section-desc {
    color: var(--telorix-gray);
    font-size: 16px;
}

/* ── Services Grid ─────────────────────────────────────── */
.telorix-services-section {
    background: var(--telorix-gray-light);
}

.telorix-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.telorix-service-card {
    background: var(--telorix-white);
    border-radius: var(--telorix-radius);
    padding: 36px 28px;
    transition: var(--telorix-transition);
    border: 1px solid var(--telorix-border);
    position: relative;
    overflow: hidden;
}

.telorix-service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--telorix-primary);
    transform: scaleX(0);
    transition: var(--telorix-transition);
}

.telorix-service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--telorix-shadow-lg);
}

.telorix-service-card:hover::before {
    transform: scaleX(1);
}

.telorix-service-icon {
    width: 60px;
    height: 60px;
    background: rgba(0, 85, 255, 0.08);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--telorix-primary);
    margin-bottom: 20px;
}

.telorix-service-title {
    font-size: 20px;
    margin-bottom: 10px;
}

.telorix-service-desc {
    color: var(--telorix-gray);
    font-size: 14px;
    margin-bottom: 16px;
    line-height: 1.7;
}

.telorix-service-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    font-weight: 600;
    color: var(--telorix-primary);
}

.telorix-service-link:hover {
    gap: 10px;
}

/* ── Why Choose Us ─────────────────────────────────────── */
.telorix-why-inner {
    display: flex;
    align-items: center;
    gap: 60px;
}

.telorix-why-content {
    flex: 1;
}

.telorix-why-desc {
    color: var(--telorix-gray);
    margin-bottom: 28px;
    font-size: 16px;
}

.telorix-why-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.telorix-why-feature {
    display: flex;
    gap: 14px;
}

.telorix-why-feature-icon {
    width: 40px;
    height: 40px;
    background: rgba(0, 200, 83, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--telorix-secondary);
    flex-shrink: 0;
}

.telorix-why-feature h4 {
    font-size: 15px;
    margin-bottom: 4px;
}

.telorix-why-feature p {
    font-size: 13px;
    color: var(--telorix-gray);
}

.telorix-why-visual {
    flex: 0 0 440px;
    position: relative;
}

.telorix-why-image {
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, #e8f0fe, #d0e0ff);
    border-radius: var(--telorix-radius);
    position: relative;
}

.telorix-why-experience-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--telorix-primary);
    color: #fff;
    padding: 24px;
    border-radius: var(--telorix-radius);
    text-align: center;
    box-shadow: 0 8px 30px rgba(0, 85, 255, 0.3);
}

.telorix-why-exp-number {
    display: block;
    font-size: 36px;
    font-weight: 800;
}

.telorix-why-exp-text {
    font-size: 12px;
    opacity: 0.8;
}

/* ── Stats Section ─────────────────────────────────────── */
.telorix-stats-section {
    background: linear-gradient(135deg, var(--telorix-dark) 0%, var(--telorix-dark-2) 100%);
    position: relative;
    padding: 80px 0;
}

.telorix-stats-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 50%, rgba(0, 85, 255, 0.1), transparent 70%);
}

.telorix-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    position: relative;
    z-index: 1;
}

.telorix-stat-item {
    text-align: center;
    color: #fff;
}

.telorix-stat-icon {
    margin: 0 auto 14px;
    opacity: 0.5;
}

.telorix-stat-number {
    font-size: 42px;
    font-weight: 800;
}

.telorix-stat-suffix {
    font-size: 28px;
    font-weight: 700;
    color: var(--telorix-primary);
}

.telorix-stat-label {
    display: block;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 6px;
}

/* ── Testimonials ──────────────────────────────────────── */
.telorix-testimonials-track {
    display: flex;
    gap: 28px;
    overflow: hidden;
}

.telorix-testimonial-card {
    flex: 0 0 calc(33.333% - 19px);
    background: var(--telorix-white);
    border: 1px solid var(--telorix-border);
    border-radius: var(--telorix-radius);
    padding: 32px;
    transition: var(--telorix-transition);
}

.telorix-testimonial-card:hover {
    box-shadow: var(--telorix-shadow);
}

.telorix-testimonial-stars {
    display: flex;
    gap: 2px;
    color: #f59e0b;
    margin-bottom: 16px;
}

.telorix-testimonial-text {
    font-size: 15px;
    color: var(--telorix-gray);
    line-height: 1.8;
    margin-bottom: 20px;
    font-style: italic;
}

.telorix-testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.telorix-testimonial-avatar {
    width: 48px;
    height: 48px;
    background: var(--telorix-primary);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
}

.telorix-testimonial-author strong {
    display: block;
    font-size: 15px;
    color: var(--telorix-dark);
}

.telorix-testimonial-author span {
    font-size: 13px;
    color: var(--telorix-gray);
}

.telorix-testimonials-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 32px;
}

.telorix-testimonial-prev,
.telorix-testimonial-next {
    background: var(--telorix-gray-light);
    border: none;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--telorix-dark);
    transition: var(--telorix-transition);
}

.telorix-testimonial-prev:hover,
.telorix-testimonial-next:hover {
    background: var(--telorix-primary);
    color: #fff;
}

.telorix-testimonials-dots {
    display: flex;
    gap: 8px;
}

.telorix-testimonials-dots .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--telorix-border);
    cursor: pointer;
    transition: var(--telorix-transition);
}

.telorix-testimonials-dots .dot.active {
    background: var(--telorix-primary);
    width: 28px;
    border-radius: 10px;
}

/* ── CTA Section ───────────────────────────────────────── */
.telorix-cta-section {
    background: linear-gradient(135deg, var(--telorix-primary) 0%, #0033cc 100%);
}

.telorix-cta-inner {
    text-align: center;
    max-width: 650px;
    margin: 0 auto;
    color: #fff;
}

.telorix-cta-inner h2 {
    font-size: 36px;
    color: #fff;
    margin-bottom: 16px;
}

.telorix-cta-inner h2 span {
    color: var(--telorix-secondary);
}

.telorix-cta-inner p {
    font-size: 17px;
    opacity: 0.85;
    margin-bottom: 32px;
}

.telorix-cta-actions {
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
}

/* ── Footer ────────────────────────────────────────────── */
.telorix-footer-cta {
    background: linear-gradient(135deg, var(--telorix-primary) 0%, #0033cc 100%);
    padding: 60px 0;
    color: #fff;
    margin-top: -1px;
}

.telorix-footer-cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.telorix-footer-cta-content h2 {
    font-size: 30px;
    color: #fff;
    margin-bottom: 8px;
}

.telorix-footer-cta-content p {
    opacity: 0.8;
    font-size: 15px;
}

.telorix-footer-cta-actions {
    display: flex;
    gap: 14px;
    flex-shrink: 0;
}

.telorix-footer-main {
    background: var(--telorix-dark);
    padding: 70px 0 40px;
    color: rgba(255, 255, 255, 0.7);
}

.telorix-footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    gap: 40px;
}

.telorix-footer-logo a {
    font-size: 24px;
    font-weight: 800;
    color: #fff;
}

.telorix-footer-logo img {
    max-height: 40px;
}

.telorix-footer-desc {
    font-size: 14px;
    margin: 16px 0;
    line-height: 1.7;
}

.telorix-footer-social {
    display: flex;
    gap: 12px;
    margin-top: 16px;
}

.telorix-footer-social a {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.6);
    transition: var(--telorix-transition);
}

.telorix-footer-social a:hover {
    background: var(--telorix-primary);
    color: #fff;
}

.telorix-footer-heading {
    color: #fff;
    font-size: 18px;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 12px;
}

.telorix-footer-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--telorix-primary);
}

.telorix-footer-menu li a {
    display: block;
    padding: 8px 0;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    transition: var(--telorix-transition);
}

.telorix-footer-menu li a:hover {
    color: #fff;
    padding-left: 6px;
}

/* ── Footer Widget Styling ───────────────────────────── */
.telorix-footer-widget {
    margin-bottom: 20px;
}

.telorix-footer-widget:last-child {
    margin-bottom: 0;
}

/* WordPress Navigation Menu Widget in footer */
.telorix-footer-col .widget_nav_menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.telorix-footer-col .widget_nav_menu ul li a {
    display: block;
    padding: 8px 0;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    transition: var(--telorix-transition);
}

.telorix-footer-col .widget_nav_menu ul li a:hover {
    color: #fff;
    padding-left: 6px;
}

/* WordPress Text Widget in footer */
.telorix-footer-col .widget_text {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    line-height: 1.7;
}

.telorix-footer-col .widget_text a {
    color: rgba(255, 255, 255, 0.8);
    transition: var(--telorix-transition);
}

.telorix-footer-col .widget_text a:hover {
    color: #fff;
}

/* WordPress Custom HTML widget in footer */
.telorix-footer-col .widget_custom_html {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
}

.telorix-footer-col .widget_custom_html a {
    color: rgba(255, 255, 255, 0.8);
    transition: var(--telorix-transition);
}

.telorix-footer-col .widget_custom_html a:hover {
    color: #fff;
}

/* Telorix Contact Info Widget */
.telorix-contact-widget-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.telorix-contact-widget-list li {
    display: flex;
    gap: 12px;
    padding: 10px 0;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    align-items: flex-start;
}

.telorix-contact-widget-list li svg {
    flex-shrink: 0;
    opacity: 0.5;
    margin-top: 2px;
    color: var(--telorix-primary);
}

.telorix-contact-widget-list li a {
    color: rgba(255, 255, 255, 0.6);
    transition: var(--telorix-transition);
}

.telorix-contact-widget-list li a:hover {
    color: #fff;
}

.telorix-footer-contact li {
    display: flex;
    gap: 12px;
    padding: 10px 0;
    font-size: 14px;
}

.telorix-footer-contact svg {
    flex-shrink: 0;
    opacity: 0.5;
    margin-top: 2px;
}

.telorix-footer-contact a {
    color: rgba(255, 255, 255, 0.7);
}

.telorix-footer-contact a:hover {
    color: #fff;
}

.telorix-footer-newsletter h5 {
    color: #fff;
    font-size: 16px;
    margin: 20px 0 10px;
}

.telorix-newsletter-field {
    display: flex;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    overflow: hidden;
}

.telorix-newsletter-field input {
    flex: 1;
    background: transparent;
    border: none;
    padding: 12px 14px;
    color: #fff;
    font-size: 14px;
    outline: none;
}

.telorix-newsletter-field input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.telorix-newsletter-field button {
    background: var(--telorix-primary);
    border: none;
    padding: 12px 16px;
    color: #fff;
    cursor: pointer;
    transition: var(--telorix-transition);
}

.telorix-newsletter-field button:hover {
    background: #0044cc;
}

.telorix-footer-bottom {
    background: #080D1A;
    padding: 20px 0;
}

.telorix-footer-bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.telorix-copyright {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
}

.telorix-back-to-top {
    width: 40px;
    height: 40px;
    background: var(--telorix-primary);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: var(--telorix-transition);
    opacity: 0.8;
}

.telorix-back-to-top:hover {
    opacity: 1;
    transform: translateY(-3px);
    color: #fff;
}

/* ── Blog Post Cards ───────────────────────────────────── */
.telorix-posts-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
}

.telorix-post-card {
    background: var(--telorix-white);
    border-radius: var(--telorix-radius);
    overflow: hidden;
    border: 1px solid var(--telorix-border);
    transition: var(--telorix-transition);
}

.telorix-post-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--telorix-shadow-lg);
}

.telorix-post-thumb img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.telorix-post-content {
    padding: 24px;
}

.telorix-post-meta {
    display: flex;
    gap: 16px;
    font-size: 13px;
    color: var(--telorix-gray);
    margin-bottom: 10px;
}

.telorix-post-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.telorix-post-title {
    font-size: 20px;
    margin-bottom: 10px;
}

.telorix-post-title a {
    color: var(--telorix-dark);
}

.telorix-post-title a:hover {
    color: var(--telorix-primary);
}

.telorix-post-excerpt {
    font-size: 14px;
    color: var(--telorix-gray);
    margin-bottom: 14px;
}

.telorix-read-more {
    font-size: 14px;
    font-weight: 600;
    color: var(--telorix-primary);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.telorix-read-more:hover {
    gap: 10px;
}

.telorix-pagination {
    margin-top: 40px;
    text-align: center;
}

.telorix-pagination .nav-links {
    display: flex;
    gap: 8px;
    justify-content: center;
}

.telorix-pagination .page-numbers {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: var(--telorix-gray-light);
    color: var(--telorix-dark);
    font-weight: 600;
    font-size: 14px;
}

.telorix-pagination .page-numbers.current {
    background: var(--telorix-primary);
    color: #fff;
}

/* ── Reading Progress Bar ──────────────────────────────── */
.telorix-reading-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    z-index: 99999;
    background: rgba(0, 0, 0, 0.06);
}

.telorix-reading-progress-bar {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, var(--telorix-primary), #6366f1);
    transition: width 0.1s linear;
    border-radius: 0 2px 2px 0;
}

/* ── Single Post Featured Image ──────────────────────── */
.telorix-single-thumbnail {
    margin-bottom: 24px;
    border-radius: 14px;
    overflow: hidden;
}

.telorix-single-thumbnail img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 14px;
}

/* ── Single Hero ──────────────────────────────────────── */
.telorix-single-hero {
    position: relative;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    background: #111;
}

.telorix-single-hero-bg {
    position: absolute;
    inset: 0;
}

.telorix-single-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

.telorix-single-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.75) 100%);
}

.telorix-single-hero-content {
    position: relative;
    z-index: 2;
    padding: 200px 0 60px;
    max-width: 800px;
    color: #fff;
}

.telorix-single-hero-cats {
    display: flex;
    gap: 8px;
    margin-bottom: 16px;
    flex-wrap: wrap;
}

.telorix-single-hero-cats a {
    display: inline-block;
    padding: 5px 14px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    color: #fff;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: background 0.3s;
}

.telorix-single-hero-cats a:hover {
    background: var(--telorix-primary);
}

.telorix-single-hero-title {
    font-size: 42px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #fff;
}

.telorix-single-hero-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    align-items: center;
}

.telorix-single-hero-meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    opacity: 0.9;
}

.telorix-single-hero-avatar img {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.4);
}

/* ── Single Layout ────────────────────────────────────── */
.telorix-single-main {
    padding: 50px 0 80px;
}

/* ── Responsive Sidebar Toggle Button ────────────────── */
.telorix-sidebar-toggle {
    display: none;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    background: var(--telorix-white);
    border: 2px solid var(--telorix-border);
    border-radius: 12px;
    font-size: 14px;
    font-weight: 600;
    font-family: inherit;
    color: var(--telorix-dark);
    cursor: pointer;
    margin-bottom: 20px;
    transition: all 0.2s;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.telorix-sidebar-toggle:hover {
    border-color: var(--telorix-primary);
    color: var(--telorix-primary);
    box-shadow: 0 4px 12px rgba(0, 85, 255, 0.12);
}

.telorix-sidebar-toggle svg {
    flex-shrink: 0;
}

/* ── Mobile Sidebar Overlay ──────────────────────────── */
.telorix-sidebar-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    z-index: 9998;
    opacity: 0;
    transition: opacity 0.3s;
}

.telorix-sidebar-overlay.active {
    display: block;
    opacity: 1;
}

/* ── Mobile Sidebar Panel ────────────────────────────── */
.telorix-mobile-sidebar-panel {
    display: none;
    position: fixed;
    top: 0;
    right: -100%;
    width: 340px;
    max-width: 90vw;
    height: 100vh;
    background: var(--telorix-gray-light, #f8f9fa);
    z-index: 9999;
    overflow-y: auto;
    transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: -4px 0 30px rgba(0, 0, 0, 0.15);
}

.telorix-mobile-sidebar-panel.active {
    display: block;
    right: 0;
}

.telorix-mobile-sidebar-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    background: var(--telorix-white);
    border-bottom: 1px solid var(--telorix-border);
    position: sticky;
    top: 0;
    z-index: 10;
}

.telorix-mobile-sidebar-header h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--telorix-dark);
    margin: 0;
}

.telorix-mobile-sidebar-close {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    background: var(--telorix-gray-light, #f1f5f9);
    border-radius: 10px;
    cursor: pointer;
    color: var(--telorix-gray);
    transition: all 0.2s;
}

.telorix-mobile-sidebar-close:hover {
    background: #fee2e2;
    color: #ef4444;
}

.telorix-mobile-sidebar-body {
    padding: 20px;
}

.telorix-mobile-sidebar-body .telorix-toc-card {
    margin-bottom: 16px;
}

.telorix-mobile-share-card {
    background: var(--telorix-white);
    border-radius: 14px;
    padding: 20px;
    margin-bottom: 16px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04), 0 8px 30px rgba(0, 0, 0, 0.04);
}

.telorix-mobile-share-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.telorix-mobile-sidebar-body .telorix-sidebar-widgets {
    margin-top: 0;
}

.telorix-single-layout {
    display: grid;
    grid-template-columns: 220px minmax(0, 1fr) 280px;
    gap: 30px;
    align-items: stretch;
}

/* ── Left Sidebar (TOC + Share) ──────────────────────── */
.telorix-single-left-sidebar {
    position: relative;
}

.telorix-left-sidebar-sticky {
    position: sticky;
    top: 100px;
}

.telorix-share-sticky-inner {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid var(--telorix-border);
}

/* ── Right Sidebar (Widgets) ─────────────────────────── */
.telorix-single-right-sidebar {
    position: relative;
}

.telorix-right-sidebar-sticky {
    position: sticky;
    top: 100px;
}

/* ── Main Content Column ─────────────────────────────── */
.telorix-single-content-col {
    align-self: start;
}

.telorix-share-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: var(--telorix-gray-light);
    color: var(--telorix-gray);
    transition: all 0.3s;
    border: none;
    cursor: pointer;
}

.telorix-share-icon:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.telorix-share-icon.telorix-share-facebook:hover {
    background: #1877F2;
    color: #fff;
}

.telorix-share-icon.telorix-share-twitter:hover {
    background: #1DA1F2;
    color: #fff;
}

.telorix-share-icon.telorix-share-linkedin:hover {
    background: #0A66C2;
    color: #fff;
}

.telorix-copy-link-btn:hover {
    background: var(--telorix-primary);
    color: #fff;
}

.telorix-copy-link-btn.copied {
    background: #10b981;
    color: #fff;
}

/* ── Main Content Column ──────────────────────────────── */
.telorix-single-content-col {
    min-width: 0;
}

.telorix-single-article {
    background: var(--telorix-white);
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04), 0 8px 30px rgba(0, 0, 0, 0.04);
}

.telorix-single-thumbnail img {
    width: 100%;
    border-radius: var(--telorix-radius);
    margin-bottom: 28px;
}

.telorix-single-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    font-size: 13px;
    color: var(--telorix-gray);
    margin-bottom: 24px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--telorix-border);
}

.telorix-single-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
}

/* ── Post Body Typography ─────────────────────────────── */
.telorix-single-body {
    font-size: 17px;
    line-height: 1.85;
    color: #374151;
}

.telorix-single-body h2 {
    font-size: 28px;
    font-weight: 700;
    margin: 40px 0 16px;
    padding-top: 20px;
    color: var(--telorix-dark);
    scroll-margin-top: 80px;
}

.telorix-single-body h3 {
    font-size: 22px;
    font-weight: 700;
    margin: 32px 0 12px;
    color: var(--telorix-dark);
    scroll-margin-top: 80px;
}

.telorix-single-body h4 {
    font-size: 18px;
    font-weight: 600;
    margin: 24px 0 10px;
    color: var(--telorix-dark);
    scroll-margin-top: 80px;
}

.telorix-single-body p {
    margin-bottom: 20px;
}

.telorix-single-body img {
    border-radius: 12px;
    margin: 28px 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.telorix-single-body blockquote {
    position: relative;
    border-left: 4px solid var(--telorix-primary);
    padding: 24px 28px 24px 32px;
    background: linear-gradient(135deg, rgba(0, 85, 255, 0.04), rgba(99, 102, 241, 0.04));
    border-radius: 0 12px 12px 0;
    margin: 32px 0;
    font-style: italic;
    font-size: 18px;
    line-height: 1.7;
    color: #4b5563;
}

.telorix-single-body blockquote::before {
    content: '\201C';
    position: absolute;
    top: -10px;
    left: 12px;
    font-size: 60px;
    color: var(--telorix-primary);
    opacity: 0.2;
    font-family: Georgia, serif;
    line-height: 1;
}

.telorix-single-body pre {
    background: #1e1e2e;
    color: #cdd6f4;
    padding: 24px;
    border-radius: 12px;
    overflow-x: auto;
    font-family: 'Fira Code', 'Consolas', monospace;
    font-size: 14px;
    line-height: 1.6;
    margin: 28px 0;
}

.telorix-single-body code {
    background: rgba(0, 85, 255, 0.06);
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 0.9em;
    color: var(--telorix-primary);
    font-family: 'Fira Code', 'Consolas', monospace;
}

.telorix-single-body pre code {
    background: none;
    padding: 0;
    color: inherit;
}

.telorix-single-body ul,
.telorix-single-body ol {
    margin: 20px 0;
    padding-left: 24px;
}

.telorix-single-body li {
    margin-bottom: 8px;
}

.telorix-single-body a {
    color: var(--telorix-primary);
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: opacity 0.2s;
}

.telorix-single-body a:hover {
    opacity: 0.8;
}

/* ── Tags ──────────────────────────────────────────────── */
.telorix-single-tags {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    padding: 24px 0;
    border-top: 1px solid var(--telorix-border);
    margin-top: 32px;
}

.telorix-single-tags-label {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    font-weight: 600;
    color: var(--telorix-dark);
}

.telorix-single-tags a {
    background: var(--telorix-gray-light);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 13px;
    color: var(--telorix-gray);
    font-weight: 500;
    transition: all 0.3s;
}

.telorix-single-tags a:hover {
    background: var(--telorix-primary);
    color: #fff;
    transform: translateY(-1px);
}

/* ── Bottom Share Bar ──────────────────────────────────── */
.telorix-single-share-bottom {
    padding: 24px 0 0;
    border-top: 1px solid var(--telorix-border);
    margin-top: 8px;
}

.telorix-share-label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--telorix-dark);
    margin-bottom: 12px;
}

.telorix-share-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.telorix-share-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 600;
    background: var(--telorix-gray-light);
    color: var(--telorix-gray);
    border: none;
    cursor: pointer;
    transition: all 0.3s;
}

.telorix-share-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.telorix-share-btn.telorix-share-facebook:hover {
    background: #1877F2;
    color: #fff;
}

.telorix-share-btn.telorix-share-twitter:hover {
    background: #1DA1F2;
    color: #fff;
}

.telorix-share-btn.telorix-share-linkedin:hover {
    background: #0A66C2;
    color: #fff;
}

.telorix-share-btn.telorix-copy-link-btn:hover {
    background: var(--telorix-primary);
    color: #fff;
}

.telorix-share-btn.copied {
    background: #10b981 !important;
    color: #fff !important;
}

/* ── Author Bio Card ──────────────────────────────────── */
.telorix-author-bio-card {
    background: var(--telorix-white);
    border-radius: 16px;
    padding: 32px;
    margin-top: 32px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04), 0 8px 30px rgba(0, 0, 0, 0.04);
    border-left: 4px solid var(--telorix-primary);
}

.telorix-author-bio-top {
    display: flex;
    gap: 24px;
    align-items: flex-start;
}

.telorix-author-bio-avatar img {
    width: 90px;
    height: 90px;
    border-radius: 16px;
    object-fit: cover;
}

.telorix-author-bio-label {
    display: block;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--telorix-primary);
    font-weight: 600;
    margin-bottom: 4px;
}

.telorix-author-bio-name {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
}

.telorix-author-bio-name a {
    color: var(--telorix-dark);
}

.telorix-author-bio-name a:hover {
    color: var(--telorix-primary);
}

.telorix-author-bio-desc {
    font-size: 14px;
    color: var(--telorix-gray);
    line-height: 1.7;
    margin-bottom: 12px;
}

.telorix-author-bio-stats {
    display: flex;
    gap: 16px;
}

.telorix-author-bio-stats span {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 13px;
    color: var(--telorix-gray);
    font-weight: 500;
}

/* ── Post Navigation ──────────────────────────────────── */
.telorix-post-navigation {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 32px;
}

.telorix-post-nav-card {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 24px;
    background: var(--telorix-white);
    border-radius: 16px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04), 0 8px 30px rgba(0, 0, 0, 0.04);
    transition: all 0.3s;
}

.telorix-post-nav-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
}

.telorix-post-nav-label {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--telorix-primary);
    font-weight: 600;
}

.telorix-post-nav-thumb img {
    width: 100%;
    height: 120px;
    object-fit: cover;
    border-radius: 10px;
}

.telorix-post-nav-title {
    font-size: 15px;
    font-weight: 600;
    color: var(--telorix-dark);
    display: block;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.telorix-post-nav-next {
    text-align: right;
}

.telorix-post-nav-next .telorix-post-nav-label {
    justify-content: flex-end;
}

/* ── Related Posts ─────────────────────────────────────── */
.telorix-related-posts {
    margin-top: 48px;
}

.telorix-related-title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 24px;
    color: var(--telorix-dark);
}

.telorix-related-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.telorix-related-card {
    background: var(--telorix-white);
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04), 0 8px 30px rgba(0, 0, 0, 0.04);
    transition: all 0.3s;
}

.telorix-related-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 50px rgba(0, 0, 0, 0.1);
}

.telorix-related-thumb img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    transition: transform 0.4s;
}

.telorix-related-card:hover .telorix-related-thumb img {
    transform: scale(1.05);
}

.telorix-related-thumb {
    overflow: hidden;
}

.telorix-related-info {
    padding: 16px 20px;
}

.telorix-related-date {
    font-size: 12px;
    color: var(--telorix-gray);
    margin-bottom: 6px;
    display: block;
}

.telorix-related-info h4 {
    font-size: 15px;
    font-weight: 600;
    color: var(--telorix-dark);
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* ── Table of Contents ────────────────────────────────── */

.telorix-toc-card {
    background: var(--telorix-white);
    border-radius: 14px;
    padding: 20px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04), 0 8px 30px rgba(0, 0, 0, 0.04);
}

.telorix-toc-title {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 700;
    color: var(--telorix-dark);
    margin-bottom: 14px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--telorix-border);
}

.telorix-toc-nav a {
    display: block;
    padding: 6px 0 6px 12px;
    font-size: 13px;
    color: var(--telorix-gray);
    border-left: 2px solid transparent;
    transition: all 0.25s;
    line-height: 1.4;
}

.telorix-toc-nav a:hover {
    color: var(--telorix-primary);
}

.telorix-toc-nav a.active {
    color: var(--telorix-primary);
    border-left-color: var(--telorix-primary);
    font-weight: 600;
}

.telorix-toc-nav a.toc-h3 {
    padding-left: 24px;
    font-size: 12px;
}

.telorix-toc-empty {
    display: none;
}

/* ── Sidebar Widgets (Right Column) ───────────────────── */
.telorix-sidebar-widgets {
    margin-top: 0;
}

.telorix-sidebar-widgets .widget {
    background: var(--telorix-white);
    border-radius: 14px;
    padding: 22px;
    margin-bottom: 20px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04), 0 8px 30px rgba(0, 0, 0, 0.04);
}

.telorix-sidebar-widgets .widget:last-child {
    margin-bottom: 0;
}

.telorix-sidebar-widgets .widget-title,
.telorix-sidebar-widgets .widgettitle,
.telorix-sidebar-widgets h2 {
    font-size: 15px;
    font-weight: 700;
    color: var(--telorix-dark);
    margin: 0 0 16px 0;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--telorix-primary);
    display: block;
    line-height: 1.3;
}

/* Search Widget — Premium */
.telorix-sidebar-widgets .widget_search .widget-title,
.telorix-sidebar-widgets .widget_search .widgettitle,
.telorix-sidebar-widgets .widget_search h2 {
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 12px;
}

.telorix-sidebar-widgets .widget_search form,
.telorix-sidebar-widgets .search-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.telorix-sidebar-widgets .widget_search input[type="search"],
.telorix-sidebar-widgets .widget_search input[type="text"],
.telorix-sidebar-widgets .widget_search .search-field,
.telorix-sidebar-widgets .search-form .search-field {
    width: 100%;
    padding: 12px 16px 12px 40px;
    border: 2px solid var(--telorix-border);
    border-radius: 12px;
    font-size: 14px;
    font-family: inherit;
    background: var(--telorix-gray-light) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none' stroke='%23999' stroke-width='2'%3E%3Ccircle cx='11' cy='11' r='8'/%3E%3Cline x1='21' y1='21' x2='16.65' y2='16.65'/%3E%3C/svg%3E") 12px center no-repeat;
    transition: border-color 0.2s, box-shadow 0.2s, background-color 0.2s;
    box-sizing: border-box;
}

.telorix-sidebar-widgets .widget_search input[type="search"]:focus,
.telorix-sidebar-widgets .widget_search input[type="text"]:focus,
.telorix-sidebar-widgets .widget_search .search-field:focus,
.telorix-sidebar-widgets .search-form .search-field:focus {
    outline: none;
    border-color: var(--telorix-primary);
    box-shadow: 0 0 0 4px rgba(0, 85, 255, 0.1);
    background-color: #fff;
}

.telorix-sidebar-widgets .widget_search input[type="submit"],
.telorix-sidebar-widgets .widget_search .search-submit,
.telorix-sidebar-widgets .search-form .search-submit {
    width: 100%;
    padding: 11px 20px;
    background: linear-gradient(135deg, var(--telorix-primary), #0044cc);
    color: #fff;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    font-family: inherit;
    transition: transform 0.2s, box-shadow 0.2s;
    letter-spacing: 0.3px;
}

.telorix-sidebar-widgets .widget_search input[type="submit"]:hover,
.telorix-sidebar-widgets .widget_search .search-submit:hover,
.telorix-sidebar-widgets .search-form .search-submit:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 85, 255, 0.3);
}

/* Category / Archive / Pages / Meta Lists */
.telorix-sidebar-widgets .widget_categories ul,
.telorix-sidebar-widgets .widget_archive ul,
.telorix-sidebar-widgets .widget_pages ul,
.telorix-sidebar-widgets .widget_meta ul,
.telorix-sidebar-widgets .widget_nav_menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.telorix-sidebar-widgets .widget_categories li,
.telorix-sidebar-widgets .widget_archive li,
.telorix-sidebar-widgets .widget_pages li,
.telorix-sidebar-widgets .widget_meta li,
.telorix-sidebar-widgets .widget_nav_menu li {
    margin: 0;
}

.telorix-sidebar-widgets .widget_categories li a,
.telorix-sidebar-widgets .widget_archive li a,
.telorix-sidebar-widgets .widget_pages li a,
.telorix-sidebar-widgets .widget_meta li a,
.telorix-sidebar-widgets .widget_nav_menu li a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 0;
    font-size: 13px;
    color: var(--telorix-gray);
    border-bottom: 1px solid var(--telorix-border);
    transition: color 0.2s, padding-left 0.2s;
}

.telorix-sidebar-widgets .widget_categories li:last-child a,
.telorix-sidebar-widgets .widget_archive li:last-child a {
    border-bottom: none;
}

.telorix-sidebar-widgets .widget_categories li a:hover,
.telorix-sidebar-widgets .widget_archive li a:hover,
.telorix-sidebar-widgets .widget_pages li a:hover,
.telorix-sidebar-widgets .widget_meta li a:hover,
.telorix-sidebar-widgets .widget_nav_menu li a:hover {
    color: var(--telorix-primary);
    padding-left: 6px;
}

/* Recent Posts Widget */
.telorix-sidebar-widgets .widget_recent_entries ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.telorix-sidebar-widgets .widget_recent_entries li {
    padding: 10px 0;
    border-bottom: 1px solid var(--telorix-border);
    margin: 0;
}

.telorix-sidebar-widgets .widget_recent_entries li:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.telorix-sidebar-widgets .widget_recent_entries li:first-child {
    padding-top: 0;
}

.telorix-sidebar-widgets .widget_recent_entries li a {
    font-size: 13px;
    font-weight: 600;
    color: var(--telorix-dark);
    line-height: 1.4;
    display: block;
    transition: color 0.2s;
}

.telorix-sidebar-widgets .widget_recent_entries li a:hover {
    color: var(--telorix-primary);
}

.telorix-sidebar-widgets .widget_recent_entries .post-date {
    font-size: 11px;
    color: var(--telorix-gray);
    margin-top: 3px;
    display: block;
}

/* Tag Cloud Widget */
.telorix-sidebar-widgets .widget_tag_cloud .tagcloud a {
    display: inline-block;
    padding: 4px 12px;
    background: var(--telorix-gray-light);
    border-radius: 20px;
    font-size: 12px !important;
    color: var(--telorix-gray);
    margin: 0 4px 6px 0;
    transition: all 0.2s;
}

.telorix-sidebar-widgets .widget_tag_cloud .tagcloud a:hover {
    background: var(--telorix-primary);
    color: #fff;
}

/* Recent Comments Widget */
.telorix-sidebar-widgets .widget_recent_comments ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.telorix-sidebar-widgets .widget_recent_comments li {
    padding: 8px 0;
    border-bottom: 1px solid var(--telorix-border);
    font-size: 13px;
    color: var(--telorix-gray);
    line-height: 1.5;
}

.telorix-sidebar-widgets .widget_recent_comments li:last-child {
    border-bottom: none;
}

/* ── Comments upgrade ─────────────────────────────────── */
.telorix-comments-area {
    background: var(--telorix-white);
    border-radius: 16px;
    padding: 36px;
    margin-top: 32px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04), 0 8px 30px rgba(0, 0, 0, 0.04);
}

.telorix-comments-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 24px;
    color: var(--telorix-dark);
}

.telorix-comment-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.telorix-comment {
    padding: 0;
    margin-bottom: 20px;
    list-style: none;
}

.telorix-comment-body {
    display: flex;
    gap: 16px;
    padding: 20px;
    background: var(--telorix-gray-light);
    border-radius: 14px;
}

.telorix-comment-avatar img {
    width: 50px;
    height: 50px;
    border-radius: 12px;
}

.telorix-comment-content {
    flex: 1;
    min-width: 0;
}

.telorix-comment-meta {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
}

.telorix-comment-author {
    font-size: 15px;
    font-weight: 600;
    color: var(--telorix-dark);
}

.telorix-comment-date {
    font-size: 12px;
    color: var(--telorix-gray);
}

.telorix-comment-text {
    font-size: 14px;
    line-height: 1.7;
    color: #4b5563;
}

.telorix-comment-actions {
    margin-top: 8px;
    font-size: 13px;
}

.telorix-comment-actions a {
    color: var(--telorix-primary);
    font-weight: 500;
}

/* Comment Form */
.telorix-comment-form label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 6px;
    color: var(--telorix-dark);
}

.telorix-comment-form input[type="text"],
.telorix-comment-form input[type="email"],
.telorix-comment-form input[type="url"],
.telorix-comment-form textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--telorix-border);
    border-radius: 10px;
    font-size: 14px;
    font-family: inherit;
    transition: border-color 0.2s, box-shadow 0.2s;
    background: var(--telorix-gray-light);
}

.telorix-comment-form input:focus,
.telorix-comment-form textarea:focus {
    outline: none;
    border-color: var(--telorix-primary);
    box-shadow: 0 0 0 3px rgba(0, 85, 255, 0.08);
    background: #fff;
}

.telorix-comment-field {
    margin-bottom: 20px;
}

.comment-form-author,
.comment-form-email,
.comment-form-url {
    margin-bottom: 16px;
}


/* ── Sidebar ───────────────────────────────────────────── */
.telorix-sidebar {
    width: 300px;
    flex-shrink: 0;
}

.telorix-widget {
    background: var(--telorix-white);
    border: 1px solid var(--telorix-border);
    border-radius: var(--telorix-radius);
    padding: 24px;
    margin-bottom: 24px;
}

.telorix-widget-title {
    font-size: 18px;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--telorix-primary);
}

/* ── Comments ──────────────────────────────────────────── */
.telorix-comments-area {
    margin-top: 40px;
}

.telorix-comments-title {
    font-size: 24px;
    margin-bottom: 24px;
}

.telorix-comment-list {
    padding: 0;
}

.telorix-comment {
    margin-bottom: 24px;
}

.telorix-comment-body {
    display: flex;
    gap: 16px;
}

.telorix-comment-avatar img {
    border-radius: 50%;
}

.telorix-comment-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 8px;
}

.telorix-comment-author {
    font-size: 16px;
}

.telorix-comment-date {
    font-size: 13px;
    color: var(--telorix-gray);
}

.telorix-comment-text {
    font-size: 14px;
    color: #4b5563;
}

.telorix-comment-actions {
    margin-top: 8px;
}

.telorix-comment-actions a {
    font-size: 13px;
    color: var(--telorix-primary);
    font-weight: 600;
}

.telorix-comment-form label {
    display: block;
    font-weight: 600;
    margin-bottom: 6px;
}

.telorix-comment-form input[type="text"],
.telorix-comment-form input[type="email"],
.telorix-comment-form input[type="url"],
.telorix-comment-form textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid var(--telorix-border);
    border-radius: 8px;
    font-family: var(--telorix-font);
    font-size: 14px;
    margin-bottom: 16px;
}

.telorix-comment-form textarea:focus,
.telorix-comment-form input:focus {
    border-color: var(--telorix-primary);
    outline: none;
    box-shadow: 0 0 0 3px rgba(0, 85, 255, 0.1);
}

/* ── 404 Page ──────────────────────────────────────────── */
.telorix-404 {
    padding: 100px 0;
    text-align: center;
}

.telorix-404-visual {
    position: relative;
    margin-bottom: 32px;
}

.telorix-404-number {
    font-size: 140px;
    font-weight: 900;
    color: var(--telorix-primary);
    opacity: 0.15;
    line-height: 1;
}

.telorix-404-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 180px;
    height: 180px;
    border: 4px solid rgba(0, 85, 255, 0.2);
    border-radius: 50%;
    animation: telorixPulse 2s ease-in-out infinite;
}

@keyframes telorixPulse {

    0%,
    100% {
        transform: translate(-50%, -50%) scale(1)
    }

    50% {
        transform: translate(-50%, -50%) scale(1.1)
    }
}

.telorix-404-title {
    font-size: 36px;
    margin-bottom: 14px;
}

.telorix-404-desc {
    font-size: 16px;
    color: var(--telorix-gray);
    margin-bottom: 28px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.telorix-404-search {
    max-width: 400px;
    margin: 0 auto 24px;
}

.telorix-no-results {
    text-align: center;
    padding: 60px 20px;
}

.telorix-no-results h2 {
    margin-bottom: 12px;
}

.telorix-no-results p {
    color: var(--telorix-gray);
    margin-bottom: 20px;
}

/* ══════════════════════════════════════════════════════════
   WhatsApp Floating Widget
   ══════════════════════════════════════════════════════════ */
.telorix-wa {
    position: fixed;
    bottom: 24px;
    z-index: 9999;
}

.telorix-wa-right {
    right: 24px;
}

.telorix-wa-left {
    left: 24px;
}

/* ── Floating Button ──────────────────────────────────── */
.telorix-wa-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    z-index: 2;
}

.telorix-wa-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 28px rgba(37, 211, 102, 0.55);
}

.telorix-wa-btn .telorix-wa-icon-close {
    display: none;
}

.telorix-wa.is-open .telorix-wa-btn .telorix-wa-icon-wa {
    display: none;
}

.telorix-wa.is-open .telorix-wa-btn .telorix-wa-icon-close {
    display: block;
}

/* ── Animations ───────────────────────────────────────── */
.telorix-wa-anim-pulse {
    animation: telorixWaPulse 2s infinite;
}

.telorix-wa-anim-bounce {
    animation: telorixWaBounce 2s infinite;
}

.telorix-wa-anim-shake {
    animation: telorixWaShake 3s infinite;
}

.telorix-wa.is-open .telorix-wa-btn {
    animation: none !important;
}

@keyframes telorixWaPulse {

    0%,
    100% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    }

    50% {
        box-shadow: 0 4px 30px rgba(37, 211, 102, 0.7), 0 0 0 15px rgba(37, 211, 102, 0.1);
    }
}

@keyframes telorixWaBounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-12px);
    }

    60% {
        transform: translateY(-6px);
    }
}

@keyframes telorixWaShake {

    0%,
    90%,
    100% {
        transform: rotate(0deg);
    }

    92% {
        transform: rotate(8deg);
    }

    94% {
        transform: rotate(-8deg);
    }

    96% {
        transform: rotate(6deg);
    }

    98% {
        transform: rotate(-4deg);
    }
}

/* ── Chat Popup ───────────────────────────────────────── */
.telorix-wa-popup {
    position: absolute;
    bottom: 76px;
    width: 360px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 12px 48px rgba(0, 0, 0, 0.15), 0 2px 8px rgba(0, 0, 0, 0.08);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px) scale(0.95);
    transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
    pointer-events: none;
}

.telorix-wa-right .telorix-wa-popup {
    right: 0;
}

.telorix-wa-left .telorix-wa-popup {
    left: 0;
}

.telorix-wa.is-open .telorix-wa-popup {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
    pointer-events: all;
}

/* Header */
.telorix-wa-popup-header {
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #fff;
}

.telorix-wa-popup-header-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.telorix-wa-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.telorix-wa-avatar-placeholder {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.telorix-wa-popup-header-info strong {
    display: block;
    font-size: 15px;
    font-weight: 600;
}

.telorix-wa-popup-header-info span {
    font-size: 12px;
    opacity: 0.85;
}

.telorix-wa-close {
    background: rgba(255, 255, 255, 0.15);
    border: none;
    border-radius: 50%;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s;
}

.telorix-wa-close:hover {
    background: rgba(255, 255, 255, 0.3);
}

/* Body */
.telorix-wa-popup-body {
    padding: 20px;
    background: #e5ddd5 url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" opacity="0.05"><rect width="100" height="100" fill="%23000"/></svg>');
    background-color: #e5ddd5;
    min-height: 80px;
}

.telorix-wa-bubble {
    background: #fff;
    border-radius: 0 12px 12px 12px;
    padding: 14px 16px 8px;
    max-width: 85%;
    position: relative;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.08);
}

.telorix-wa-bubble::before {
    content: '';
    position: absolute;
    top: 0;
    left: -8px;
    width: 0;
    height: 0;
    border-top: 8px solid #fff;
    border-left: 8px solid transparent;
}

.telorix-wa-bubble p {
    margin: 0;
    font-size: 14px;
    color: #303030;
    line-height: 1.5;
}

.telorix-wa-time {
    display: block;
    text-align: right;
    font-size: 11px;
    color: #999;
    margin-top: 4px;
}

/* Footer */
.telorix-wa-popup-footer {
    padding: 12px 20px;
    background: #fff;
}

.telorix-wa-send-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 14px;
    border-radius: 50px;
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: opacity 0.2s, transform 0.2s;
}

.telorix-wa-send-btn:hover {
    opacity: 0.9;
    transform: scale(1.02);
    color: #fff;
}