/* wSite TechService Theme - Inspired by mxstore.com.tr */
/* All classes use ts- prefix */

/* ===== CSS Variables ===== */
:root {
    --clr-primary: #8B5CF6;
    --clr-primary-dark: #7C3AED;
    --clr-primary-light: #A78BFA;
    --clr-secondary: #f7941d;
    --clr-secondary-light: #fbbf24;
    --clr-accent: #F3F0FF;
    --clr-dark: #1a1a2e;
    --clr-text: #4a4a5a;
    --clr-text-light: #8A8A9F;
    --clr-bg: #f8f9fa;
    --clr-white: #FFFFFF;
    --radius-sm: 12px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --shadow-card: 0 4px 20px rgba(139, 92, 246, 0.08);
    --shadow-card-hover: 0 12px 32px rgba(139, 92, 246, 0.15);
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
    --transition: 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --font-heading: 'Jost', sans-serif;
    --font-body: 'Roboto Slab', sans-serif;
    --gradient-primary: linear-gradient(135deg, #8B5CF6, #a855f7);
    --gradient-secondary: linear-gradient(135deg, #f7941d, #f59e0b);
    --gradient-blog: linear-gradient(135deg, #8B5CF6 0%, #f7941d 100%);
}

/* ===== Base / Body ===== */
*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    overflow-x: hidden;
}

.ts-body,
body {
    font-family: var(--font-body);
    color: var(--clr-text);
    background-color: var(--clr-bg);
    line-height: 1.7;
    font-size: 15px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

.ts-page-wrapper {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    overflow-x: hidden;
}

.ts-main-content {
    flex: 1 0 auto;
}

h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--clr-dark);
    line-height: 1.3;
}

h1, .h1 { font-size: 3rem; font-weight: 800; }
h2, .h2 { font-size: 2.25rem; font-weight: 700; }
h3, .h3 { font-size: 1.65rem; font-weight: 600; }

a {
    color: var(--clr-primary);
    text-decoration: none;
    transition: color var(--transition);
}

a:hover {
    color: var(--clr-primary-dark);
}

img {
    max-width: 100%;
    height: auto;
}

::selection {
    background-color: var(--clr-accent);
    color: var(--clr-primary-dark);
}

/* ===== Sections ===== */
.ts-section {
    padding: 100px 0;
}

.ts-section-dark {
    padding: 100px 0;
    background-color: var(--clr-dark);
    color: var(--clr-white);
}

.ts-section-dark .ts-section-title {
    color: var(--clr-white);
}

.ts-section-dark .ts-section-subtitle {
    color: rgba(255, 255, 255, 0.7);
}

.ts-sections {
    padding: 0;
}

.ts-section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.ts-section-title {
    font-family: var(--font-heading);
    font-size: 2.75rem;
    font-weight: 800;
    margin-bottom: 0.75rem;
    color: var(--clr-dark);
    letter-spacing: -0.3px;
}

.ts-section-title--light {
    color: var(--clr-white);
}

.ts-section-subtitle {
    color: var(--clr-text-light);
    font-size: 1.05rem;
    margin-bottom: 0;
}

/* ===== Buttons ===== */
.ts-btn-primary {
    display: inline-block;
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 0.9375rem;
    letter-spacing: 0.3px;
    border-radius: 50px;
    padding: 0.75rem 2rem;
    background: var(--gradient-primary);
    border: 2px solid var(--clr-primary);
    color: var(--clr-white);
    cursor: pointer;
    transition: all var(--transition);
    text-align: center;
    text-decoration: none;
    line-height: 1.5;
}

.ts-btn-primary:hover,
.ts-btn-primary:focus {
    background: var(--gradient-primary);
    border-color: var(--clr-primary-dark);
    color: var(--clr-white);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(139, 92, 246, 0.35);
    filter: brightness(1.1);
    text-decoration: none;
}

.ts-btn-outline {
    display: inline-block;
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 0.9375rem;
    letter-spacing: 0.3px;
    border-radius: 50px;
    padding: 0.75rem 2rem;
    background: transparent;
    border: 2px solid var(--clr-primary);
    color: var(--clr-primary);
    cursor: pointer;
    transition: all var(--transition);
    text-align: center;
    text-decoration: none;
    line-height: 1.5;
}

.ts-btn-outline:hover,
.ts-btn-outline:focus {
    background: var(--gradient-primary);
    border-color: var(--clr-primary);
    color: var(--clr-white);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(139, 92, 246, 0.35);
    text-decoration: none;
}

.ts-btn-warning {
    display: inline-block;
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 0.875rem;
    letter-spacing: 0.3px;
    border-radius: 50px;
    padding: 0.6rem 1.5rem;
    background: var(--gradient-secondary);
    border: 2px solid var(--clr-secondary);
    color: var(--clr-white);
    cursor: pointer;
    transition: all var(--transition);
    text-align: center;
    text-decoration: none;
    line-height: 1.5;
}

.ts-btn-warning:hover,
.ts-btn-warning:focus {
    background: var(--gradient-secondary);
    border-color: var(--clr-secondary);
    color: var(--clr-white);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(247, 148, 29, 0.35);
    filter: brightness(1.1);
    text-decoration: none;
}

.ts-btn-lg {
    padding: 1rem 2.5rem;
    font-size: 1.0625rem;
    border-radius: 50px;
}

/* ===== Topbar ===== */
/* ===== Topbar with Marquee ===== */
.ts-topbar {
    background: var(--clr-dark);
    color: rgba(255, 255, 255, 0.85);
    padding: 0;
    font-size: 0.8125rem;
    height: 38px;
    overflow: hidden;
}

.ts-topbar .container {
    height: 100%;
}

.ts-topbar a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    transition: color var(--transition);
}

.ts-topbar a:hover {
    color: #fff;
}

.ts-topbar i {
    color: var(--clr-primary-light);
    margin-right: 0.35rem;
    font-size: 0.7rem;
}

.ts-topbar-left {
    flex: 1;
    overflow: hidden;
    margin-right: 2rem;
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
}

/* Marquee animation */
.ts-topbar-marquee {
    overflow: hidden;
    width: 100%;
    position: relative;
    mask-image: linear-gradient(to right, transparent, black 40px, black calc(100% - 40px), transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 40px, black calc(100% - 40px), transparent);
}

.ts-marquee-track {
    display: flex;
    align-items: center;
    gap: 0;
    white-space: nowrap;
    animation: marqueeScroll 25s linear infinite;
    width: max-content;
}

.ts-marquee-item {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.9);
    letter-spacing: 0.3px;
    padding: 0 0.5rem;
}

.ts-marquee-item i {
    color: var(--clr-primary-light);
    margin-right: 0.4rem;
}

.ts-marquee-separator {
    color: rgba(255, 255, 255, 0.25);
    padding: 0 0.25rem;
    font-size: 0.7rem;
}

@keyframes marqueeScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.ts-topbar-right {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 1.25rem;
    flex-shrink: 0;
    height: 100%;
}

.ts-topbar-link {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    font-size: 0.8rem;
    transition: color var(--transition);
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 0.35rem;
}

.ts-topbar-link i {
    font-size: 0.7rem;
}

.ts-topbar-link:hover {
    color: #fff;
}

/* ===== Header / Navbar ===== */
.ts-header {
    position: sticky;
    top: 0;
    z-index: 1030;
    background: var(--clr-white);
    transition: box-shadow var(--transition), background var(--transition);
}

.ts-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 0;
    min-height: 72px;
    transition: all var(--transition);
}

.ts-header.scrolled {
    box-shadow: 0 2px 24px rgba(139, 92, 246, 0.1);
}

.ts-header.scrolled .ts-header-inner {
    padding: 0.4rem 0;
}

.ts-header-actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

/* Logo */
.ts-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    gap: 0.5rem;
    flex-shrink: 0;
}

.ts-logo:hover {
    text-decoration: none;
}

.ts-logo-img {
    height: 72px;
    transition: height var(--transition);
}

.ts-header.scrolled .ts-logo-img {
    height: 50px;
}

.ts-logo-text {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--clr-primary);
    text-decoration: none;
}

/* Navigation */
.ts-nav {
    display: flex;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 0;
}

.ts-nav-item {
    position: relative;
}

.ts-nav-link {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 0.9rem;
    letter-spacing: 0.2px;
    color: var(--clr-text);
    padding: 0.5rem 0.85rem;
    position: relative;
    transition: color var(--transition);
    text-decoration: none;
    white-space: nowrap;
}

.ts-nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 1rem;
    right: 1rem;
    height: 2px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform var(--transition);
}

.ts-nav-link:hover,
.ts-nav-item.ts-active .ts-nav-link {
    color: var(--clr-primary);
    text-decoration: none;
}

.ts-nav-link:hover::after,
.ts-nav-item.ts-active .ts-nav-link::after {
    transform: scaleX(1);
}

.ts-nav-arrow {
    font-size: 0.6rem;
    transition: transform 0.2s ease;
    margin-left: 0.2rem;
}

.ts-has-submenu:hover .ts-nav-arrow {
    transform: rotate(180deg);
}

/* Submenu (Mega-menu style dropdown) */
.ts-submenu-box {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 240px;
    background: var(--clr-white);
    border-radius: var(--radius-sm);
    box-shadow: 0 8px 30px rgba(139, 92, 246, 0.12);
    padding: 0.5rem;
    margin-top: 0.5rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: all 0.25s ease;
    z-index: 1050;
}

.ts-has-submenu:hover > .ts-submenu-box {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.ts-submenu-inner {
    display: flex;
    flex-direction: column;
}

.ts-submenu-link {
    display: block;
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    color: var(--clr-text);
    border-radius: 8px;
    transition: background var(--transition), color var(--transition);
    text-decoration: none;
}

.ts-submenu-link:hover {
    background-color: var(--clr-accent);
    color: var(--clr-primary-dark);
    text-decoration: none;
}

.ts-submenu-parent {
    font-weight: 600;
    color: var(--clr-dark);
    font-family: var(--font-heading);
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    margin-top: 0.25rem;
    display: none;
}

.ts-submenu-divider {
    display: none;
}

/* Language Picker */
.ts-lang-picker {
    position: relative;
}

.ts-lang-btn {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.75rem;
    background: var(--clr-accent);
    border-radius: 8px;
    padding: 0.35rem 0.75rem;
    letter-spacing: 0.5px;
    color: var(--clr-text);
    cursor: pointer;
    border: none;
    font-family: var(--font-heading);
    font-weight: 500;
    transition: all var(--transition);
}

.ts-lang-btn:hover {
    background: var(--clr-primary);
    color: var(--clr-white);
}

.ts-lang-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    min-width: 120px;
    background: var(--clr-white);
    border-radius: var(--radius-sm);
    box-shadow: 0 8px 30px rgba(139, 92, 246, 0.12);
    padding: 0.35rem;
    margin-top: 0.4rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-5px);
    transition: all 0.25s ease;
    z-index: 1060;
}

.ts-lang-picker:hover .ts-lang-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.ts-lang-dropdown a {
    display: block;
    padding: 0.4rem 0.75rem;
    font-size: 0.8125rem;
    color: var(--clr-text);
    border-radius: 6px;
    text-decoration: none;
    transition: background var(--transition);
}

.ts-lang-dropdown a:hover {
    background: var(--clr-accent);
    color: var(--clr-primary-dark);
}

/* Login Button */
.ts-nav-login-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    padding: 0.5rem 1.25rem;
    background: var(--gradient-primary);
    color: #fff !important;
    border-radius: 50px;
    font-size: 0.85rem;
    font-family: var(--font-heading);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(139, 92, 246, 0.25);
}

.ts-nav-login-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(139, 92, 246, 0.35);
}

/* User Menu */
.ts-user-menu {
    position: relative;
}

.ts-user-btn {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.875rem;
    color: var(--clr-text);
    cursor: pointer;
    border: none;
    background: none;
    font-family: var(--font-heading);
    font-weight: 500;
    padding: 0.35rem 0.5rem;
    border-radius: 8px;
    transition: all var(--transition);
}

.ts-user-btn:hover {
    color: var(--clr-primary);
    background: var(--clr-accent);
}

.ts-user-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    min-width: 200px;
    background: var(--clr-white);
    border-radius: var(--radius-sm);
    box-shadow: 0 8px 30px rgba(139, 92, 246, 0.12);
    padding: 0.5rem;
    margin-top: 0.4rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-5px);
    transition: all 0.25s ease;
    z-index: 1060;
}

.ts-user-menu:hover .ts-user-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.ts-user-dropdown a {
    display: block;
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    color: var(--clr-text);
    border-radius: 8px;
    text-decoration: none;
    transition: background var(--transition);
}

.ts-user-dropdown a:hover {
    background: var(--clr-accent);
    color: var(--clr-primary-dark);
}

.ts-login-btn {
    display: none;
}

/* ===== Mobile Search Button ===== */
.ts-mobile-search-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    color: var(--clr-text);
    font-size: 1.15rem;
    transition: color 0.3s ease;
}
.ts-mobile-search-btn:hover,
.ts-mobile-search-btn:focus {
    color: var(--clr-primary);
    outline: none;
}

/* ===== Mobile Nav ===== */
.ts-mobile-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    transition: all 0.3s ease;
}

.ts-mobile-toggle:focus {
    outline: none;
}

.ts-hamburger {
    display: flex;
    flex-direction: column;
    gap: 6px;
    width: 24px;
}

.ts-hamburger span {
    display: block;
    height: 2.5px;
    background: var(--clr-dark);
    border-radius: 2px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: center;
}

.ts-hamburger span:nth-child(1) { width: 100%; }
.ts-hamburger span:nth-child(2) { width: 70%; }
.ts-hamburger span:nth-child(3) { width: 85%; }

.ts-mobile-toggle:hover .ts-hamburger span {
    width: 100%;
    background: var(--clr-primary);
}

/* Hamburger → X animation */
.ts-hamburger.active span { width: 100%; background: var(--clr-primary); }
.ts-hamburger.active span:nth-child(1) {
    transform: translateY(8.5px) rotate(45deg);
}
.ts-hamburger.active span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}
.ts-hamburger.active span:nth-child(3) {
    transform: translateY(-8.5px) rotate(-45deg);
}

.ts-mobile-nav {
    position: fixed;
    top: 0;
    right: 0;
    width: min(320px, 85vw);
    height: 100vh;
    height: 100dvh;
    background: #fff;
    z-index: 1100;
    display: flex;
    flex-direction: column;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: -8px 0 32px rgba(0, 0, 0, 0.15);
    overflow: hidden;
    visibility: hidden;
}

.ts-mobile-nav.ts-mobile-open {
    transform: translateX(0);
    visibility: visible;
}

.ts-mobile-nav-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 1.5rem;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.05) 0%, rgba(139, 92, 246, 0.02) 100%);
    border-bottom: 1px solid rgba(139, 92, 246, 0.1);
    flex-shrink: 0;
}

.ts-mobile-nav-body {
    flex: 1 1 auto;
    overflow-y: auto;
    padding: 0.75rem 0;
    min-height: 0;
}

.ts-mobile-nav-footer {
    padding: 1rem 1.5rem;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.04) 0%, rgba(139, 92, 246, 0.02) 100%);
    border-top: 1px solid rgba(139, 92, 246, 0.1);
    flex-shrink: 0;
    overflow-y: auto;
    max-height: 40vh;
}

.ts-mobile-logo {
    height: 36px;
}

.ts-mobile-close {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: var(--clr-accent);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    color: var(--clr-primary);
    font-size: 1.1rem;
    transition: all var(--transition);
}

.ts-mobile-close:hover {
    background: var(--clr-primary);
    color: var(--clr-white);
}

.ts-mobile-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.875rem 1.5rem;
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 0.9375rem;
    color: var(--clr-text);
    text-decoration: none;
    transition: all 0.25s ease;
    border-bottom: 1px solid rgba(0, 0, 0, 0.03);
    position: relative;
}

.ts-mobile-link::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 3px;
    height: 0;
    background: var(--gradient-primary);
    border-radius: 0 4px 4px 0;
    transition: height 0.25s ease;
}

.ts-mobile-link:hover,
.ts-mobile-link.ts-active {
    color: var(--clr-primary);
    background: linear-gradient(90deg, rgba(139, 92, 246, 0.06), transparent);
}

.ts-mobile-link:hover::before,
.ts-mobile-link.ts-active::before {
    height: 60%;
}

.ts-mobile-menu-group {
    border-bottom: 1px solid rgba(0, 0, 0, 0.03);
}

.ts-mobile-menu-parent {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0;
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 0.9375rem;
    color: var(--clr-text);
    text-decoration: none;
    cursor: pointer;
}

.ts-mobile-menu-parent .ts-mobile-link {
    flex: 1;
    border-bottom: none;
}

.ts-mobile-expand {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: rgba(139, 92, 246, 0.06);
    border: none;
    border-radius: 8px;
    cursor: pointer;
    color: var(--clr-primary);
    font-size: 0.7rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    flex-shrink: 0;
    margin-right: 1rem;
}

.ts-mobile-menu-group.ts-expanded .ts-mobile-expand {
    background: var(--gradient-primary);
    color: #fff;
    transform: rotate(45deg);
}

.ts-mobile-submenu {
    max-height: 0;
    overflow: hidden;
    background: linear-gradient(180deg, rgba(139, 92, 246, 0.04), rgba(139, 92, 246, 0.02));
    transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 0;
    border-left: 3px solid rgba(139, 92, 246, 0.15);
    margin-left: 1.5rem;
}

.ts-mobile-menu-group.ts-expanded .ts-mobile-submenu {
    max-height: 500px;
    padding: 0.25rem 0;
}

.ts-mobile-sublink {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1rem 0.6rem 1.25rem;
    font-size: 0.85rem;
    color: var(--clr-text);
    text-decoration: none;
    transition: all 0.2s ease;
}

.ts-mobile-sublink::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(139, 92, 246, 0.3);
    flex-shrink: 0;
    transition: background 0.2s ease;
}

.ts-mobile-sublink:hover {
    color: var(--clr-primary);
}

.ts-mobile-sublink:hover::before {
    background: var(--clr-primary);
}

.ts-mobile-lang {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.25rem;
}

.ts-mobile-lang-link {
    font-size: 0.8125rem;
    color: var(--clr-text);
    padding: 0.3rem 0.65rem;
    border-radius: 6px;
    text-decoration: none;
    transition: all var(--transition);
}

.ts-mobile-lang-link:hover,
.ts-mobile-lang-link.active {
    background: var(--clr-primary);
    color: var(--clr-white);
}

.ts-mobile-action-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 0;
    font-size: 0.875rem;
    color: var(--clr-text);
    text-decoration: none;
    transition: color var(--transition);
}

.ts-mobile-action-link:hover {
    color: var(--clr-primary);
}

.ts-mobile-login-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 0.875rem;
    color: var(--clr-white);
    background: var(--gradient-primary);
    border: none;
    border-radius: 50px;
    padding: 0.5rem 1.25rem;
    cursor: pointer;
    text-decoration: none;
    transition: all var(--transition);
    width: 100%;
    justify-content: center;
    margin-top: 0.5rem;
}

.ts-mobile-login-btn:hover {
    filter: brightness(1.1);
    color: var(--clr-white);
}

.ts-mobile-logout {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 0;
    font-size: 0.875rem;
    color: #ef4444;
    text-decoration: none;
    transition: opacity var(--transition);
    background: none;
    border: none;
    cursor: pointer;
    font-family: inherit;
    width: 100%;
    text-align: left;
}

.ts-mobile-logout:hover {
    opacity: 0.8;
    color: #ef4444;
}

.ts-mobile-contact-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0;
    font-size: 0.875rem;
    color: var(--clr-text);
    text-decoration: none;
    transition: color var(--transition);
}

.ts-mobile-contact-link:hover {
    color: var(--clr-primary);
}

.ts-mobile-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    z-index: 1090;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}

.ts-mobile-overlay.ts-mobile-open {
    opacity: 1;
    visibility: visible;
}

/* ===== Breadcrumb ===== */
.ts-breadcrumb-strip {
    background: var(--clr-accent);
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(139, 92, 246, 0.1);
}

.ts-breadcrumb-nav {
    font-size: 0.8125rem;
    font-family: var(--font-heading);
}

.ts-breadcrumb-trail {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 0;
}

.ts-breadcrumb-home {
    color: var(--clr-primary);
    text-decoration: none;
    font-size: 0.875rem;
}

.ts-breadcrumb-home:hover {
    color: var(--clr-primary-dark);
}

.ts-breadcrumb-link {
    color: var(--clr-primary);
    text-decoration: none;
    transition: color var(--transition);
}

.ts-breadcrumb-link:hover {
    color: var(--clr-primary-dark);
}

.ts-breadcrumb-sep {
    color: var(--clr-primary-light);
    margin: 0 0.5rem;
    font-size: 0.65rem;
}

.ts-breadcrumb-current {
    color: var(--clr-text-light);
}

.ts-breadcrumb-accent {
    color: var(--clr-primary);
    font-weight: 600;
}

/* ===== Hero Section (mxstore style - full viewport, blobs) ===== */
.ts-hero {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    background: var(--clr-white);
    overflow: hidden;
    padding: 2rem 0;
}

.ts-hero-row {
    min-height: 75vh;
}

/* Decorative blob shapes */
.ts-hero-blob {
    position: absolute;
    border-radius: 50%;
    z-index: 1;
}

.ts-hero-blob--1 {
    width: 380px;
    height: 380px;
    background: var(--clr-secondary);
    opacity: 0.85;
    top: -80px;
    left: -5%;
    animation: tsBlobFloat 6s ease-in-out infinite;
}

.ts-hero-blob--2 {
    width: 500px;
    height: 500px;
    background: var(--clr-secondary);
    opacity: 0.15;
    bottom: -120px;
    right: 10%;
    animation: tsBlobFloat 8s ease-in-out infinite reverse;
}

.ts-hero-blob--3 {
    width: 200px;
    height: 200px;
    background: var(--clr-primary-light);
    opacity: 0.2;
    bottom: 20%;
    left: -60px;
    animation: tsBlobFloat 5s ease-in-out infinite 1s;
}

@keyframes tsBlobFloat {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-20px) scale(1.03); }
}

.ts-hero-content {
    position: relative;
    z-index: 2;
    padding: 2rem 0;
}

.ts-hero-title {
    font-family: var(--font-heading);
    font-size: 3.25rem;
    font-weight: 800;
    color: var(--clr-dark);
    line-height: 1.15;
    margin-bottom: 1.5rem;
    letter-spacing: -0.5px;
}

.ts-hero-highlight {
    position: relative;
    display: inline-block;
    color: var(--clr-secondary);
}

.ts-hero-highlight::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: -4px;
    right: -4px;
    height: 35%;
    background: var(--clr-secondary);
    opacity: 0.2;
    border-radius: 4px;
    z-index: -1;
}

.ts-hero-subtitle {
    font-size: 1.1rem;
    color: var(--clr-text);
    line-height: 1.85;
    margin-bottom: 2rem;
    max-width: 500px;
}

.ts-hero-desc {
    font-size: 1.1rem;
    color: var(--clr-text);
    line-height: 1.85;
    margin-bottom: 2rem;
    max-width: 500px;
}

.ts-hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    align-items: center;
}

.ts-hero-visual {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1rem;
}

.ts-hero-img {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: var(--radius-lg);
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.12));
    animation: tsHeroImgFloat 4s ease-in-out infinite;
}

@keyframes tsHeroImgFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}

.ts-hero-img-placeholder {
    width: 100%;
    max-width: 500px;
    aspect-ratio: 4/3;
    background: var(--clr-accent);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 5rem;
    color: var(--clr-primary-light);
}

/* ===== Hero Sliding Phone Cards (mxstore style) ===== */
.ts-hero-carousel {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 420px;
    mask-image: linear-gradient(to right, transparent, black 30px, black calc(100% - 30px), transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 30px, black calc(100% - 30px), transparent);
}

.ts-hero-carousel-track {
    display: flex;
    align-items: flex-end;
    gap: 20px;
    animation: heroCardScroll 20s linear infinite;
    width: max-content;
    padding: 10px 0;
}

.ts-hero-carousel:hover .ts-hero-carousel-track {
    animation-play-state: paused;
}

@keyframes heroCardScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Phone card frame */
.ts-phone-card {
    flex-shrink: 0;
    width: 220px;
    height: 390px;
    background: #fff;
    border-radius: 28px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1), 0 2px 8px rgba(0, 0, 0, 0.06);
    overflow: hidden;
    position: relative;
    border: 3px solid #e5e7eb;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.ts-phone-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 48px rgba(139, 92, 246, 0.15), 0 4px 12px rgba(0, 0, 0, 0.08);
}

/* Phone notch / status bar */
.ts-phone-notch {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 18px 6px;
    background: #f9fafb;
    border-bottom: 1px solid #f0f0f0;
}

.ts-phone-time {
    font-size: 0.7rem;
    font-weight: 600;
    color: #374151;
    font-family: var(--font-heading);
}

.ts-phone-dot {
    width: 8px;
    height: 8px;
    background: #10B981;
    border-radius: 50%;
}

/* Phone screen content */
.ts-phone-screen {
    display: flex;
    flex-direction: column;
    height: calc(100% - 35px);
    position: relative;
    overflow: hidden;
}

.ts-phone-card-accent {
    height: 5px;
    width: 100%;
}

.ts-phone-card-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px 16px;
    text-align: center;
    position: relative;
    z-index: 2;
}

.ts-phone-card-icon {
    font-size: 2.75rem;
    margin-bottom: 16px;
    line-height: 1;
}

.ts-phone-card-title {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 700;
    line-height: 1.35;
    color: var(--clr-dark);
    margin: 0 0 8px 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.ts-phone-card-sub {
    font-size: 0.65rem;
    color: #9ca3af;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    font-weight: 500;
    margin: 0;
}

.ts-phone-card-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60px;
    z-index: 1;
}

.ts-phone-card-wave svg {
    width: 100%;
    height: 100%;
}

/* ===== Laptop Card Frame ===== */
.ts-laptop-card {
    flex-shrink: 0;
    width: 624px;
    height: 390px;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.3s ease;
}

.ts-laptop-card:hover {
    transform: translateY(-6px);
}

.ts-laptop-screen {
    width: 100%;
    flex: 1;
    background: #fff;
    border-radius: 12px 12px 0 0;
    border: 3px solid #d1d5db;
    border-bottom: none;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1), 0 2px 8px rgba(0, 0, 0, 0.06);
    display: flex;
    flex-direction: column;
}

.ts-laptop-toolbar {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 12px;
    background: #1e1e2e;
    border-bottom: 1px solid #2d2d3d;
}

.ts-toolbar-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.ts-toolbar-dot--red { background: #ff5f57; }
.ts-toolbar-dot--yellow { background: #ffbd2e; }
.ts-toolbar-dot--green { background: #28c840; }

.ts-toolbar-title {
    font-size: 0.65rem;
    color: rgba(255, 255, 255, 0.5);
    margin-left: auto;
    margin-right: auto;
    font-family: var(--font-heading);
    letter-spacing: 0.5px;
}

.ts-laptop-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.ts-laptop-base {
    width: 100%;
    height: 14px;
    background: linear-gradient(to bottom, #c4c4c4, #d4d4d4);
    border-radius: 0 0 6px 6px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.ts-laptop-hinge {
    width: 60px;
    height: 4px;
    background: #b0b0b0;
    border-radius: 0 0 4px 4px;
}

/* ===== Hero Banner (Carousel Section) ===== */
.ts-hero-banner {
    position: relative;
    overflow: hidden;
}

.ts-hero-nav {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 8px;
    z-index: 5;
}

.ts-hero-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    border: none;
    cursor: pointer;
    transition: all var(--transition);
    padding: 0;
}

.ts-hero-dot.active {
    background: var(--clr-secondary);
    width: 32px;
    border-radius: 5px;
}

.ts-hero-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 5;
    width: 52px;
    height: 52px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(4px);
    border-radius: 50%;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--clr-white);
    font-size: 1.1rem;
    opacity: 0;
    transition: opacity var(--transition);
}

.ts-hero-banner:hover .ts-hero-arrow {
    opacity: 1;
}

.ts-hero-arrow:hover {
    background: rgba(255, 255, 255, 0.3);
}

.ts-hero-arrow--prev {
    left: 1.5rem;
}

.ts-hero-arrow--next {
    right: 1.5rem;
}

/* ===== Banner Strip ===== */
.ts-banner-strip {
    padding: 2rem 0 3rem;
    position: relative;
    z-index: 3;
    margin-top: -4rem;
}

.ts-banner-card {
    display: flex;
    align-items: center;
    background: var(--clr-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    text-decoration: none;
    color: var(--clr-dark);
    transition: all var(--transition);
    height: 100%;
}

.ts-banner-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 48px rgba(139, 92, 246, 0.15);
    color: var(--clr-dark);
    text-decoration: none;
}

.ts-banner-card-img {
    width: 120px;
    height: 100px;
    object-fit: cover;
    flex-shrink: 0;
}

.ts-banner-card-body {
    padding: 1rem 1.25rem;
}

.ts-banner-card-body h4 {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
    color: var(--clr-dark);
}

.ts-banner-card-body p {
    font-size: 0.85rem;
    color: var(--clr-text-light);
    margin: 0;
}

/* ===== Blog Cards (Overlay Style) ===== */
.ts-blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.ts-blog-card {
    position: relative;
    display: block;
    border-radius: var(--radius-lg);
    overflow: hidden;
    text-decoration: none;
    box-shadow: var(--shadow-card);
    transition: all var(--transition);
    background: var(--clr-dark);
}

.ts-blog-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-card-hover);
    text-decoration: none;
}

.ts-blog-card-img {
    position: relative;
    overflow: hidden;
    height: 280px;
}

.ts-blog-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.ts-blog-card:hover .ts-blog-card-img img {
    transform: scale(1.05);
}

.ts-blog-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(139, 92, 246, 0.1) 0%, rgba(26, 26, 46, 0.85) 100%);
    opacity: 0.9;
    transition: opacity var(--transition);
}

.ts-blog-card:hover .ts-blog-card-overlay {
    opacity: 0.95;
}

.ts-blog-card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.5rem;
    z-index: 2;
    color: var(--clr-white);
}

.ts-blog-card-date {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0.3rem;
}

.ts-blog-card-author {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.8);
}

.ts-blog-card-title {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1.15rem;
    color: var(--clr-white);
    margin-bottom: 0.5rem;
    line-height: 1.4;
}

.ts-blog-card-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0.5rem;
}

.ts-blog-card-summary {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
    margin-bottom: 0.75rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.ts-blog-card-readmore {
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 0.8125rem;
    color: var(--clr-secondary-light);
    text-decoration: none;
    transition: color var(--transition);
}

.ts-blog-card-readmore:hover {
    color: var(--clr-white);
}

.ts-blog-card-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

/* ===== Blog Detail (Article) ===== */
.ts-article-hero {
    position: relative;
    min-height: 400px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: flex-end;
}

.ts-article-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(26, 26, 46, 0.85) 0%, rgba(26, 26, 46, 0.3) 100%);
}

.ts-article-hero-content {
    position: relative;
    z-index: 2;
    padding: 3rem;
    width: 100%;
}

.ts-article-hero-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--clr-white);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.ts-article-hero-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.875rem;
}

.ts-article-card {
    background: var(--clr-white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-card);
    position: relative;
    z-index: 3;
    overflow: hidden;
}

.ts-article-hero + .ts-section .ts-article-card {
    margin-top: -60px;
}

.ts-article-card-header {
    padding: 1.5rem 2rem 0;
}

.ts-article-body {
    padding: 2rem;
    font-size: 1.05rem;
    line-height: 1.85;
    color: var(--clr-text);
}

.ts-article-body img {
    max-width: 100%;
    height: auto;
    border-radius: var(--radius-md);
    margin: 1rem 0;
}

.ts-article-body h2 {
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-size: 1.75rem;
}

.ts-article-body h3 {
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.ts-article-body p {
    line-height: 1.85;
    margin-bottom: 1.25rem;
}

.ts-article-body blockquote {
    border-left: 4px solid var(--clr-primary);
    padding: 1rem 1.5rem;
    margin: 1.5rem 0;
    background: var(--clr-accent);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    font-style: italic;
}

.ts-article-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    color: var(--clr-text-light);
    font-size: 0.875rem;
    margin-bottom: 1.5rem;
}

.ts-article-meta i {
    color: var(--clr-primary-light);
    margin-right: 0.25rem;
}

.ts-article-title {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: var(--clr-dark);
    margin-bottom: 1rem;
}

.ts-article-tags {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.6rem;
    margin-top: 2rem;
    padding: 1.5rem 2rem;
    border-top: 1px solid rgba(139, 92, 246, 0.08);
}

.ts-article-tags > i {
    color: var(--clr-primary);
    font-size: 1rem;
    margin-right: 0.25rem;
}

.ts-article-tags a {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    padding: 0.4rem 1rem;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.06), rgba(139, 92, 246, 0.12));
    color: var(--clr-primary);
    border: 1px solid rgba(139, 92, 246, 0.15);
    border-radius: 50px;
    font-size: 0.8125rem;
    font-family: var(--font-heading);
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.ts-article-tags a::before {
    content: '#';
    font-weight: 700;
    opacity: 0.5;
}

.ts-article-tags a:hover {
    background: var(--gradient-primary);
    color: var(--clr-white);
    border-color: transparent;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(139, 92, 246, 0.3);
}

.ts-article-tags a:hover::before {
    opacity: 1;
}

/* Share Bar */
.ts-share-bar {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(139, 92, 246, 0.1);
}

.ts-share-label {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.875rem;
    color: var(--clr-dark);
}

.ts-share-icons {
    display: flex;
    gap: 0.5rem;
}

.ts-share-icon {
    width: 38px;
    height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 0.875rem;
    color: var(--clr-white);
    text-decoration: none;
    transition: all var(--transition);
}

.ts-share-icon:hover {
    transform: translateY(-2px);
    color: var(--clr-white);
}

.ts-share-facebook {
    background: #1877F2;
}

.ts-share-facebook:hover {
    box-shadow: 0 4px 12px rgba(24, 119, 242, 0.4);
}

.ts-share-twitter {
    background: #1DA1F2;
}

.ts-share-twitter:hover {
    box-shadow: 0 4px 12px rgba(29, 161, 242, 0.4);
}

.ts-share-linkedin {
    background: #0A66C2;
}

.ts-share-linkedin:hover {
    box-shadow: 0 4px 12px rgba(10, 102, 194, 0.4);
}

.ts-share-whatsapp {
    background: #25D366;
}

.ts-share-whatsapp:hover {
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
}

/* ===== Comments (Bubble Style) ===== */
.ts-comments-section {
    margin-top: 3rem;
    background: var(--clr-white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-card);
    padding: 2rem;
}

.ts-comments-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--clr-accent);
}

.ts-comments-header h3 {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--clr-dark);
    margin: 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.ts-comments-count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 28px;
    height: 28px;
    padding: 0 0.5rem;
    background: var(--gradient-primary);
    color: var(--clr-white);
    border-radius: 50px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.8rem;
}

.ts-comments-list {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.ts-comment {
    display: flex;
    gap: 1rem;
    animation: commentSlideIn 0.4s ease-out;
}

@keyframes commentSlideIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.ts-comment-bubble {
    flex: 1;
    background: linear-gradient(135deg, #f8f7ff, #f3f0ff);
    border-radius: var(--radius-md);
    padding: 1.25rem;
    position: relative;
    border: 1px solid rgba(139, 92, 246, 0.08);
    transition: box-shadow 0.3s ease;
}

.ts-comment-bubble:hover {
    box-shadow: 0 4px 16px rgba(139, 92, 246, 0.08);
}

.ts-comment-bubble::before {
    content: '';
    position: absolute;
    left: -8px;
    top: 16px;
    width: 0;
    height: 0;
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
    border-right: 8px solid #f8f7ff;
}

.ts-comment-avatar {
    width: 48px;
    height: 48px;
    background: var(--gradient-primary);
    color: var(--clr-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-weight: 700;
    font-size: 1.1rem;
    font-family: var(--font-heading);
    box-shadow: 0 4px 12px rgba(139, 92, 246, 0.25);
}

.ts-comment:nth-child(2n) .ts-comment-avatar {
    background: linear-gradient(135deg, #f7941d, #f59e0b);
    box-shadow: 0 4px 12px rgba(247, 148, 29, 0.25);
}

.ts-comment:nth-child(3n) .ts-comment-avatar {
    background: linear-gradient(135deg, #10b981, #34d399);
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.25);
}

.ts-comment:nth-child(4n) .ts-comment-avatar {
    background: linear-gradient(135deg, #3b82f6, #60a5fa);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.25);
}

.ts-comment-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    margin-bottom: 0.5rem;
}

.ts-comment-author {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.9375rem;
    color: var(--clr-dark);
}

.ts-comment-time {
    font-size: 0.75rem;
    color: var(--clr-text-light);
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.ts-comment-text {
    margin: 0;
    font-size: 0.9375rem;
    color: var(--clr-text);
    line-height: 1.7;
}

.ts-comment-form-wrap {
    margin-top: 2rem;
    background: var(--clr-white);
    border-radius: var(--radius-lg);
    border: 2px dashed rgba(139, 92, 246, 0.15);
    overflow: hidden;
    transition: border-color 0.3s ease;
}

.ts-comment-form-wrap:focus-within {
    border-color: var(--clr-primary);
    border-style: solid;
}

.ts-comment-form-title {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--clr-dark);
    padding: 1.25rem 1.5rem;
    background: var(--clr-accent);
    margin: 0;
}

.ts-no-comments {
    text-align: center;
    padding: 2rem;
    color: var(--clr-text-light);
    font-style: italic;
}

/* ===== Services Section (Sliding Carousel) ===== */
.ts-services-section {
    padding: 80px 0;
}

.ts-svc-carousel {
    position: relative;
    overflow: hidden;
    width: 100%;
    margin-top: 1rem;
    padding: 1rem 0 2rem;
    mask-image: linear-gradient(to right, transparent, black 40px, black calc(100% - 40px), transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 40px, black calc(100% - 40px), transparent);
}

.ts-svc-carousel-track {
    display: flex;
    gap: 24px;
    animation: svcCardScroll 30s linear infinite;
    width: max-content;
}

.ts-svc-carousel:hover .ts-svc-carousel-track {
    animation-play-state: paused;
}

@keyframes svcCardScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Service Slide Card */
.ts-svc-slide {
    --svc-color: #8B5CF6;
    flex-shrink: 0;
    width: 260px;
    min-height: 320px;
    background: var(--clr-white);
    border-radius: 24px;
    padding: 2rem 1.5rem;
    text-decoration: none;
    color: var(--clr-dark);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.04);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.ts-svc-slide::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--svc-color);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.ts-svc-slide:hover::before {
    transform: scaleX(1);
}

.ts-svc-slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: linear-gradient(180deg, color-mix(in srgb, var(--svc-color) 4%, transparent), transparent 50%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.ts-svc-slide:hover .ts-svc-slide-bg {
    opacity: 1;
}

.ts-svc-slide:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
    color: var(--clr-dark);
    text-decoration: none;
}

.ts-svc-slide-icon {
    width: 72px;
    height: 72px;
    border-radius: 20px;
    background: linear-gradient(135deg, color-mix(in srgb, var(--svc-color) 14%, white), color-mix(in srgb, var(--svc-color) 6%, white));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    color: var(--svc-color);
    margin-bottom: 1.25rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 1;
}

.ts-svc-slide:hover .ts-svc-slide-icon {
    background: var(--svc-color);
    color: #fff;
    transform: scale(1.1) rotate(-5deg);
    box-shadow: 0 8px 24px color-mix(in srgb, var(--svc-color) 35%, transparent);
}

.ts-svc-slide-title {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 700;
    line-height: 1.35;
    color: var(--clr-dark);
    margin: 0 0 0.6rem;
    position: relative;
    z-index: 1;
}

.ts-svc-slide-highlight {
    color: var(--svc-color);
}

.ts-svc-slide-desc {
    font-size: 0.82rem;
    color: var(--clr-text-light);
    line-height: 1.7;
    margin: 0 0 1rem;
    flex: 1;
    position: relative;
    z-index: 1;
}

.ts-svc-slide-cta {
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--svc-color);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    opacity: 0;
    transform: translateY(8px);
    transition: all 0.35s ease;
    position: relative;
    z-index: 1;
}

.ts-svc-slide:hover .ts-svc-slide-cta {
    opacity: 1;
    transform: translateY(0);
}

.ts-svc-slide-cta i {
    transition: transform 0.3s ease;
}

.ts-svc-slide:hover .ts-svc-slide-cta i {
    transform: translateX(4px);
}

/* ===== Features / Interactive Wizard Steps ===== */
.ts-features-section {
    padding: 80px 0;
    overflow: hidden;
}

/* Wizard Nav (top indicators) */
.ts-wizard {
    max-width: 900px;
    margin: 0 auto;
}

.ts-wizard-nav {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    position: relative;
    margin-bottom: 3rem;
    padding: 0 1rem;
}

.ts-wizard-progress {
    position: absolute;
    top: 28px;
    left: 60px;
    right: 60px;
    height: 3px;
    background: #e5e7eb;
    border-radius: 3px;
    z-index: 0;
}

.ts-wizard-progress-bar {
    height: 100%;
    background: var(--gradient-primary);
    border-radius: 3px;
    width: 0%;
    transition: width 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.ts-wizard-tab {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    border: none;
    background: none;
    cursor: pointer;
    position: relative;
    z-index: 1;
    padding: 0;
    min-width: 0;
    flex: 1;
}

.ts-wizard-tab-dot {
    --step-color: #8B5CF6;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #f3f4f6;
    color: #9ca3af;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 700;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 3px solid #e5e7eb;
    position: relative;
}

.ts-wizard-tab.active .ts-wizard-tab-dot,
.ts-wizard-tab.completed .ts-wizard-tab-dot {
    background: var(--step-color);
    color: #fff;
    border-color: var(--step-color);
    box-shadow: 0 6px 20px color-mix(in srgb, var(--step-color) 40%, transparent);
    transform: scale(1.1);
}

.ts-wizard-tab.active .ts-wizard-tab-dot {
    animation: wizardPulse 2s ease-in-out infinite;
}

@keyframes wizardPulse {
    0%, 100% { box-shadow: 0 6px 20px color-mix(in srgb, var(--step-color, #8B5CF6) 40%, transparent); }
    50% { box-shadow: 0 6px 30px color-mix(in srgb, var(--step-color, #8B5CF6) 60%, transparent), 0 0 0 8px color-mix(in srgb, var(--step-color, #8B5CF6) 10%, transparent); }
}

.ts-wizard-tab-label {
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 600;
    color: #9ca3af;
    transition: color 0.3s ease;
    text-align: center;
    line-height: 1.3;
    max-width: 120px;
}

.ts-wizard-tab.active .ts-wizard-tab-label,
.ts-wizard-tab.completed .ts-wizard-tab-label {
    color: var(--clr-dark);
}

/* Wizard Body (content panels) */
.ts-wizard-body {
    position: relative;
    min-height: 180px;
}

.ts-wizard-panel {
    display: none;
    animation: wizardFadeIn 0.5s ease forwards;
}

.ts-wizard-panel.active {
    display: block;
}

@keyframes wizardFadeIn {
    from { opacity: 0; transform: translateY(16px); }
    to { opacity: 1; transform: translateY(0); }
}

.ts-wizard-panel-inner {
    display: flex;
    align-items: center;
    gap: 2.5rem;
    background: var(--clr-white);
    border-radius: 24px;
    padding: 2.5rem;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(139, 92, 246, 0.08);
    position: relative;
    overflow: hidden;
}

.ts-wizard-panel-inner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 5px;
    background: var(--step-color, #8B5CF6);
    border-radius: 5px 0 0 5px;
}

.ts-wizard-panel-icon {
    --step-color: #8B5CF6;
    width: 90px;
    height: 90px;
    min-width: 90px;
    border-radius: 24px;
    background: linear-gradient(135deg, color-mix(in srgb, var(--step-color) 15%, transparent), color-mix(in srgb, var(--step-color) 5%, transparent));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    color: var(--step-color);
    transition: all 0.4s ease;
}

.ts-wizard-panel.active .ts-wizard-panel-icon {
    animation: wizardIconBounce 0.6s ease;
}

@keyframes wizardIconBounce {
    0% { transform: scale(0.5) rotate(-10deg); opacity: 0; }
    50% { transform: scale(1.1) rotate(3deg); }
    100% { transform: scale(1) rotate(0); opacity: 1; }
}

.ts-wizard-panel-content {
    flex: 1;
}

.ts-wizard-panel-badge {
    display: inline-block;
    padding: 4px 14px;
    border-radius: 20px;
    font-family: var(--font-heading);
    font-size: 0.7rem;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.ts-wizard-panel-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--clr-dark);
    margin-bottom: 10px;
}

.ts-wizard-panel-desc {
    color: var(--clr-text-light);
    font-size: 1rem;
    line-height: 1.8;
    margin: 0;
}

/* Wizard Actions (prev/next buttons) */
.ts-wizard-actions {
    display: flex;
    justify-content: space-between;
    margin-top: 1.5rem;
}

.ts-wizard-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 24px;
    border-radius: 12px;
    border: 2px solid #e5e7eb;
    background: #fff;
    font-family: var(--font-heading);
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--clr-text);
    cursor: pointer;
    transition: all 0.3s ease;
}

.ts-wizard-btn:hover:not(:disabled) {
    border-color: var(--clr-primary);
    color: var(--clr-primary);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(139, 92, 246, 0.15);
}

.ts-wizard-btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

.ts-wizard-btn.ts-btn-primary {
    background: var(--gradient-primary);
    color: #fff;
    border-color: transparent;
}

.ts-wizard-btn.ts-btn-primary:hover:not(:disabled) {
    box-shadow: 0 6px 20px rgba(139, 92, 246, 0.35);
    color: #fff;
}

.ts-feature-card {
    background: var(--clr-white);
    border-radius: var(--radius-lg);
    padding: 2rem;
    text-align: center;
    box-shadow: var(--shadow-card);
    transition: all var(--transition);
}

.ts-feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-card-hover);
}

.ts-feature-icon {
    width: 64px;
    height: 64px;
    background: var(--clr-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
    font-size: 1.5rem;
    color: var(--clr-primary);
    transition: all var(--transition);
}

.ts-feature-card:hover .ts-feature-icon {
    background: var(--gradient-primary);
    color: var(--clr-white);
}

.ts-feature-title {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--clr-dark);
    margin-bottom: 0.75rem;
}

.ts-feature-text {
    font-size: 0.9rem;
    color: var(--clr-text-light);
    line-height: 1.7;
}

/* ===== Counter Strip ===== */
.ts-counter-section {
    padding: 60px 0;
}

.ts-counter-strip {
    background: var(--gradient-primary);
    border-radius: var(--radius-lg);
    padding: 3rem 2rem;
    color: var(--clr-white);
}

.ts-counter-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    text-align: center;
}

.ts-counter-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.ts-counter-icon {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    opacity: 0.9;
}

.ts-counter-value {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1;
}

.ts-counter-label {
    font-size: 0.9rem;
    opacity: 0.85;
}

/* ===== CTA Banner ===== */
.ts-cta-section {
    padding: 100px 0;
}

.ts-cta-card {
    background: var(--gradient-primary);
    border-radius: var(--radius-lg);
    padding: 4rem 3rem;
    text-align: center;
    color: var(--clr-white);
    position: relative;
    overflow: hidden;
}

.ts-cta-inner {
    position: relative;
    z-index: 2;
}

.ts-cta-title {
    font-family: var(--font-heading);
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--clr-white);
}

.ts-cta-subtitle {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.ts-cta-btn {
    display: inline-block;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1rem;
    background: var(--clr-white);
    color: var(--clr-primary);
    border: none;
    border-radius: 50px;
    padding: 0.75rem 2rem;
    cursor: pointer;
    transition: all var(--transition);
    text-decoration: none;
}

.ts-cta-btn:hover {
    background: var(--clr-accent);
    color: var(--clr-primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    text-decoration: none;
}

.ts-cta-decor {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    z-index: 1;
}

.ts-cta-decor--tl {
    width: 200px;
    height: 200px;
    top: -60px;
    left: -60px;
}

.ts-cta-decor--br {
    width: 250px;
    height: 250px;
    bottom: -80px;
    right: -80px;
}

/* ===== FAQ Accordion ===== */
.ts-faq-section {
    padding: 100px 0;
}

.ts-accordion {
    max-width: 800px;
    margin: 0 auto;
}

.ts-accordion-item {
    background: var(--clr-white);
    border-radius: var(--radius-md);
    margin-bottom: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.ts-accordion-item--open {
    box-shadow: var(--shadow-card);
}

.ts-accordion-header {
    margin: 0;
}

.ts-accordion-trigger {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 1.1rem 1.5rem;
    background: var(--clr-white);
    border: none;
    cursor: pointer;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1rem;
    color: var(--clr-dark);
    text-align: left;
    transition: all var(--transition);
}

.ts-accordion-item--open .ts-accordion-trigger {
    background: var(--clr-accent);
    color: var(--clr-primary-dark);
}

.ts-accordion-icon {
    flex-shrink: 0;
    margin-left: 1rem;
    font-size: 1rem;
    color: var(--clr-primary);
    transition: transform 0.3s ease;
}

.ts-accordion-item--open .ts-accordion-icon {
    transform: rotate(180deg);
}

.ts-accordion-indicator {
    flex-shrink: 0;
    margin-left: 1rem;
    font-size: 1rem;
    color: var(--clr-primary);
    transition: transform 0.3s ease;
}

.ts-accordion-item--open .ts-accordion-indicator {
    transform: rotate(45deg);
}

.ts-accordion-title-text {
    flex: 1;
}

.ts-accordion-body {
    overflow: hidden;
}

.ts-accordion-item--open .ts-accordion-body {
    display: block;
}

.ts-accordion-content {
    padding: 1rem 1.5rem 1.5rem;
    line-height: 1.8;
    color: var(--clr-text);
    font-size: 0.95rem;
}

/* ===== Testimonials (Horizontal Layout) ===== */
.ts-testimonials-section {
    padding: 100px 0;
    background: var(--clr-accent);
}

.ts-testimonials-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.ts-testimonial-row {
    display: flex;
    align-items: center;
    gap: 2rem;
    background: var(--clr-white);
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow-card);
    transition: all var(--transition);
}

.ts-testimonial-row:hover {
    box-shadow: var(--shadow-card-hover);
    transform: translateY(-3px);
}

.ts-testimonial-avatar-col {
    flex-shrink: 0;
}

.ts-testimonial-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--clr-accent);
}

.ts-testimonial-avatar-placeholder {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--clr-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    color: var(--clr-primary);
}

.ts-testimonial-content-col {
    flex: 1;
}

.ts-testimonial-text {
    font-style: italic;
    color: var(--clr-text);
    line-height: 1.8;
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

.ts-testimonial-quote-mark {
    font-size: 2.5rem;
    color: var(--clr-primary-light);
    line-height: 1;
    margin-bottom: 0.5rem;
    font-family: Georgia, serif;
}

.ts-testimonial-footer {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.ts-testimonial-name {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--clr-dark);
}

.ts-testimonial-rating {
    color: var(--clr-secondary);
    font-size: 0.85rem;
}

.ts-testimonial-rating i {
    margin: 0 1px;
}

/* ===== Image + Content ===== */
.ts-image-content-section {
    padding: 80px 0;
}
/* Full-width section with left/right/top/bottom — clean card look */
.ts-image-content-section.img-left,
.ts-image-content-section.img-right,
.ts-image-content-section.img-top,
.ts-image-content-section.img-bottom {
    padding: 60px 0;
}
.ts-image-content-section.img-left .ts-image-content-row,
.ts-image-content-section.img-right .ts-image-content-row,
.ts-image-content-section.img-top .ts-image-content-row,
.ts-image-content-section.img-bottom .ts-image-content-row {
    background: #fff;
    border-radius: var(--radius-lg, 16px);
    box-shadow: 0 4px 24px rgba(0,0,0,.06);
    border: 1px solid rgba(0,0,0,.06);
    overflow: hidden;
    padding: 0;
    gap: 0;
    align-items: stretch;
}
.ts-image-content-section.img-left .ts-image-content-row > div,
.ts-image-content-section.img-right .ts-image-content-row > div {
    padding: 0;
}
.ts-image-content-section.img-left .ts-image-frame,
.ts-image-content-section.img-right .ts-image-frame {
    height: 100%;
}
.ts-image-content-section.img-left .ts-image-content-img,
.ts-image-content-section.img-right .ts-image-content-img {
    height: 100%;
    min-height: 360px;
    max-height: none;
    border-radius: 0;
}
.ts-image-content-section.img-left .ts-content-block,
.ts-image-content-section.img-right .ts-content-block {
    padding: 2.5rem;
}
.ts-image-content-section.img-left .ts-image-dots-decor,
.ts-image-content-section.img-right .ts-image-dots-decor,
.ts-image-content-section.img-top .ts-image-dots-decor,
.ts-image-content-section.img-bottom .ts-image-dots-decor {
    display: none;
}
/* Vertical full-width card */
.ts-image-content-section.img-top .ts-image-content-img,
.ts-image-content-section.img-bottom .ts-image-content-img {
    max-height: 400px;
    border-radius: 0;
}
.ts-image-content-section.img-top .ts-content-block,
.ts-image-content-section.img-bottom .ts-content-block {
    padding: 2.5rem;
}
.ts-image-content-section.img-top .ts-image-content-row > div,
.ts-image-content-section.img-bottom .ts-image-content-row > div {
    padding: 0;
}
/* Placeholder inside card */
.ts-image-content-section.img-left .ts-image-placeholder,
.ts-image-content-section.img-right .ts-image-placeholder,
.ts-image-content-section.img-top .ts-image-placeholder,
.ts-image-content-section.img-bottom .ts-image-placeholder {
    min-height: 300px;
    border-radius: 0;
}

.ts-image-content-row {
    display: flex;
    align-items: center;
    gap: 3rem;
}

.ts-image-frame {
    position: relative;
    flex: 1;
}

.ts-image-content-img {
    width: 100%;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-card);
    object-fit: cover;
    max-height: 500px;
}

.ts-image-dots-decor {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 80px;
    height: 80px;
    background-image: radial-gradient(circle, var(--clr-primary-light) 2px, transparent 2px);
    background-size: 12px 12px;
    z-index: -1;
    opacity: 0.5;
}

.ts-image-placeholder {
    width: 100%;
    min-height: 350px;
    background: var(--clr-accent);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--clr-primary);
    font-size: 3rem;
}

.ts-content-block {
    flex: 1;
}

.ts-content-title {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: var(--clr-dark);
    margin-bottom: 0.5rem;
}

.ts-content-subtitle {
    font-size: 1.1rem;
    color: var(--clr-primary);
    font-family: var(--font-heading);
    font-weight: 500;
    margin-bottom: 1rem;
}

.ts-content-body {
    color: var(--clr-text);
    line-height: 1.85;
    font-size: 0.95rem;
}

.ts-content-body p {
    margin-bottom: 1rem;
}

/* ── ImageContent: Card Mode (col-half) ── */
.ts-imgcontent-card-row {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    padding: 60px 0;
}
.ts-imgcontent-card-wrap {
    flex: 1 1 calc(50% - 1rem);
    min-width: 300px;
}
.ts-imgcontent-card {
    display: flex;
    background: #fff;
    border-radius: var(--radius-lg, 16px);
    box-shadow: 0 4px 24px rgba(0,0,0,.06);
    border: 1px solid rgba(0,0,0,.06);
    overflow: hidden;
    height: 100%;
    transition: transform .3s ease, box-shadow .3s ease;
}
.ts-imgcontent-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0,0,0,.1);
}

/* Direction variants */
.ts-imgcontent-card--vertical { flex-direction: column; }
.ts-imgcontent-card--horizontal { flex-direction: row; }

.ts-imgcontent-card-img {
    position: relative;
    overflow: hidden;
}
/* Vertical card — image full-width on top/bottom */
.ts-imgcontent-card--vertical .ts-imgcontent-card-img img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    display: block;
}
/* Horizontal card — image fixed width on left/right */
.ts-imgcontent-card--horizontal .ts-imgcontent-card-img {
    flex: 0 0 45%;
    max-width: 45%;
}
.ts-imgcontent-card--horizontal .ts-imgcontent-card-img img {
    width: 100%;
    height: 100%;
    min-height: 220px;
    object-fit: cover;
    display: block;
}

.ts-imgcontent-card-body {
    padding: 1.75rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.ts-imgcontent-card-title {
    font-family: var(--font-heading, inherit);
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--clr-dark, #1e293b);
    margin-bottom: .5rem;
}
.ts-imgcontent-card-subtitle {
    font-size: .95rem;
    color: var(--clr-primary, #6366f1);
    font-weight: 500;
    margin-bottom: .75rem;
}
.ts-imgcontent-card-text {
    color: var(--clr-text, #64748b);
    font-size: .9rem;
    line-height: 1.75;
    flex: 1;
}
.ts-imgcontent-card-text p {
    margin-bottom: .75rem;
}

/* Image-only card (no text) — image fills entire card */
.ts-imgcontent-card--imgonly .ts-imgcontent-card-img {
    flex: 1 1 100%;
    max-width: 100%;
}
.ts-imgcontent-card--imgonly .ts-imgcontent-card-img img {
    height: 100%;
    min-height: 320px;
    width: 100%;
}
/* Text-only card (no image) — text fills entire card */
.ts-imgcontent-card--textonly {
    justify-content: center;
}
.ts-imgcontent-card--textonly .ts-imgcontent-card-body {
    padding: 2.5rem;
}

@media (max-width: 767.98px) {
    .ts-imgcontent-card-row {
        flex-direction: column;
        padding: 40px 0;
    }
    .ts-imgcontent-card-wrap {
        flex: 1 1 100%;
    }
    .ts-imgcontent-card--horizontal {
        flex-direction: column;
    }
    .ts-imgcontent-card--horizontal .ts-imgcontent-card-img {
        flex: 0 0 auto;
        max-width: 100%;
    }
}

/* ===== Contact Page ===== */
.ts-contact-section {
    padding: 100px 0;
}

.ts-contact-card {
    background: var(--clr-white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-card);
    overflow: hidden;
    transition: all var(--transition);
}

.ts-contact-card:hover {
    box-shadow: var(--shadow-card-hover);
}

.ts-contact-card-body {
    padding: 2rem;
}

.ts-contact-card-icon {
    width: 56px;
    height: 56px;
    background: var(--clr-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: var(--clr-primary);
    margin-bottom: 1rem;
}

.ts-contact-info-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.ts-contact-info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.25rem;
}

.ts-contact-info-icon {
    width: 48px;
    height: 48px;
    background: var(--clr-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--clr-primary);
    flex-shrink: 0;
    font-size: 1rem;
    transition: all var(--transition);
}

.ts-contact-info-item:hover .ts-contact-info-icon {
    background: var(--gradient-primary);
    color: var(--clr-white);
}

.ts-contact-info-text {
    margin-left: 1rem;
}

.ts-contact-info-text small {
    color: var(--clr-text-light);
    font-size: 0.8rem;
    display: block;
}

.ts-contact-info-text a {
    color: var(--clr-text);
    font-weight: 500;
    text-decoration: none;
}

.ts-contact-info-text a:hover {
    color: var(--clr-primary);
}

/* ===== Forms ===== */
.ts-form-card {
    background: var(--clr-white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-card);
    overflow: hidden;
}

.ts-form-card-header {
    background: var(--gradient-primary);
    color: var(--clr-white);
    padding: 1.25rem 1.5rem;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1.1rem;
}

.ts-form-card-body {
    padding: 2rem;
}

.ts-form-group {
    margin-bottom: 1.25rem;
}

.ts-form-label {
    display: block;
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 0.875rem;
    color: var(--clr-dark);
    margin-bottom: 0.4rem;
}

.ts-form-input {
    width: 100%;
    border-radius: var(--radius-sm);
    border: 1.5px solid #e0e0ea;
    padding: 0.65rem 1rem;
    font-size: 0.9375rem;
    font-family: var(--font-body);
    color: var(--clr-text);
    background: var(--clr-white);
    transition: border-color var(--transition), box-shadow var(--transition);
    outline: none;
}

.ts-form-input:focus {
    border-color: var(--clr-primary);
    box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.15);
}

textarea.ts-form-input {
    resize: vertical;
    min-height: 120px;
}

.ts-form-submit {
    display: inline-block;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.9375rem;
    background: var(--gradient-primary);
    color: var(--clr-white);
    border: none;
    border-radius: 50px;
    padding: 0.7rem 2rem;
    cursor: pointer;
    transition: all var(--transition);
}

.ts-form-submit:hover {
    filter: brightness(1.1);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(139, 92, 246, 0.35);
}

.ts-field-group {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

/* ===== Appointment Form (Wizard) ===== */
.ts-appointment-section {
    padding: 100px 0;
}

.ts-wizard-card {
    background: var(--clr-white);
    border-radius: var(--radius-lg);
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

.ts-wizard-steps {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    padding: 2rem 2rem 1.5rem;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.04) 0%, rgba(139, 92, 246, 0.02) 100%);
    border-bottom: 1px solid rgba(139, 92, 246, 0.08);
}

.ts-wizard-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    position: relative;
}

.ts-wizard-step span {
    font-size: 0.75rem;
    font-family: var(--font-heading);
    font-weight: 500;
    color: var(--clr-text-light);
    transition: color 0.3s ease;
}

.ts-wizard-step.active span,
.ts-wizard-step.completed span {
    color: var(--clr-primary);
}

.ts-wizard-step-circle {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(139, 92, 246, 0.08);
    color: var(--clr-text-light);
    font-size: 1rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
}

.ts-wizard-step.active .ts-wizard-step-circle {
    background: var(--gradient-primary);
    color: #fff;
    box-shadow: 0 4px 16px rgba(139, 92, 246, 0.35);
    transform: scale(1.1);
}

.ts-wizard-step.completed .ts-wizard-step-circle {
    background: #10b981;
    color: #fff;
    border-color: #10b981;
}

.ts-wizard-step-line {
    flex: 1;
    max-width: 100px;
    height: 2px;
    background: rgba(139, 92, 246, 0.12);
    margin: 0 1rem;
    margin-bottom: 1.5rem;
    position: relative;
}

.ts-wizard-panel {
    display: none;
    animation: wizardFadeIn 0.4s ease;
}

.ts-wizard-panel.active {
    display: block;
}

@keyframes wizardFadeIn {
    from { opacity: 0; transform: translateX(20px); }
    to { opacity: 1; transform: translateX(0); }
}

.ts-wizard-panel-body {
    padding: 2rem;
}

.ts-wizard-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem 2rem;
}

.ts-wizard-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.75rem 1.75rem;
    border-radius: 50px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.9rem;
    border: 2px solid rgba(139, 92, 246, 0.2);
    background: transparent;
    color: var(--clr-text);
    cursor: pointer;
    transition: all 0.3s ease;
}

.ts-wizard-btn:hover {
    border-color: var(--clr-primary);
    color: var(--clr-primary);
}

.ts-wizard-btn.ts-btn-primary {
    background: var(--gradient-primary);
    color: #fff;
    border-color: transparent;
    box-shadow: 0 4px 12px rgba(139, 92, 246, 0.3);
}

.ts-wizard-btn.ts-btn-primary:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(139, 92, 246, 0.4);
}

/* Floating Label Inputs */
.ts-floating-group {
    position: relative;
}

.ts-floating-input {
    width: 100%;
    padding: 1.25rem 1rem 0.5rem;
    border: 2px solid rgba(139, 92, 246, 0.12);
    border-radius: 12px;
    font-size: 0.9375rem;
    background: #fff;
    transition: all 0.3s ease;
    font-family: var(--font-body);
}

.ts-floating-input:focus {
    outline: none;
    border-color: var(--clr-primary);
    box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.1);
}

.ts-floating-input.is-invalid,
.was-validated .ts-floating-input:invalid {
    border-color: #ef4444;
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}

.ts-floating-textarea {
    resize: vertical;
    min-height: 100px;
}

.ts-floating-label {
    position: absolute;
    top: 50%;
    left: 1rem;
    transform: translateY(-50%);
    font-size: 0.9rem;
    color: var(--clr-text-light);
    pointer-events: none;
    transition: all 0.25s ease;
}

.ts-floating-textarea ~ .ts-floating-label {
    top: 1.25rem;
    transform: none;
}

.ts-floating-input:focus ~ .ts-floating-label,
.ts-floating-input:not(:placeholder-shown) ~ .ts-floating-label {
    top: 0.5rem;
    transform: none;
    font-size: 0.7rem;
    color: var(--clr-primary);
    font-weight: 600;
}

/* Summary Grid */
.ts-wizard-summary h5 {
    font-family: var(--font-heading);
    font-weight: 700;
    margin-bottom: 1.25rem;
    color: var(--clr-dark);
}

.ts-summary-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
}

.ts-summary-item {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    padding: 0.75rem 1rem;
    background: var(--clr-accent);
    border-radius: 8px;
}

.ts-summary-label {
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--clr-primary);
}

.ts-summary-value {
    font-size: 0.875rem;
    color: var(--clr-dark);
    word-break: break-word;
}

/* ===== Google Map ===== */
.ts-map-section {
    padding: 60px 0;
}

.ts-map-card {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-card);
}

.ts-map-card-accent {
    height: 4px;
    background: var(--gradient-primary);
}

.ts-map-wrapper {
    position: relative;
}

.ts-map-wrapper iframe {
    width: 100%;
    min-height: 400px;
    border: none;
    display: block;
}

/* ===== Social Feed ===== */
.ts-social-feed {
    padding: 60px 0;
}

.ts-social-card {
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-card);
    background: var(--clr-white);
}

.ts-social-card-body {
    padding: 1rem;
}

.ts-social-card-body iframe {
    max-width: 100%;
    border: none;
}

/* ===== Custom HTML Section ===== */
.ts-custom-section {
    padding: 60px 0;
}

.ts-custom-content {
    line-height: 1.8;
    color: var(--clr-text);
}

.ts-custom-content img {
    max-width: 100%;
    height: auto;
    border-radius: var(--radius-md);
}

/* ===== Sidebar List ===== */
.ts-sidebar-section {
    padding: 60px 0;
}

.ts-sidebar-list {
    background: var(--clr-white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-card);
    overflow: hidden;
}

.ts-sidebar-title {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--clr-dark);
    padding: 1.25rem;
    margin: 0;
    border-bottom: 2px solid var(--clr-accent);
}

.ts-sidebar-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.85rem 1.25rem;
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 0.9375rem;
    color: var(--clr-text);
    text-decoration: none;
    border-bottom: 1px solid rgba(139, 92, 246, 0.08);
    transition: all var(--transition);
}

.ts-sidebar-item:last-child {
    border-bottom: none;
}

.ts-sidebar-item:hover {
    background-color: var(--clr-accent);
    color: var(--clr-primary-dark);
    padding-left: 1.5rem;
    text-decoration: none;
}

.ts-sidebar-item--active {
    background: var(--gradient-primary);
    color: var(--clr-white);
}

.ts-sidebar-item--active:hover {
    background: var(--gradient-primary);
    filter: brightness(0.95);
    color: var(--clr-white);
    padding-left: 1.5rem;
}

.ts-sidebar-item-icon {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--clr-accent);
    border-radius: 8px;
    color: var(--clr-primary);
    flex-shrink: 0;
    font-size: 0.75rem;
}

.ts-sidebar-item--active .ts-sidebar-item-icon {
    background: rgba(255, 255, 255, 0.2);
    color: var(--clr-white);
}

.ts-sidebar-item-img {
    width: 36px;
    height: 36px;
    object-fit: cover;
    border-radius: 8px;
    flex-shrink: 0;
}

.ts-sidebar-item-indicator {
    margin-left: auto;
    font-size: 0.65rem;
    color: var(--clr-primary-light);
}

.ts-sidebar-item--active .ts-sidebar-item-indicator {
    color: rgba(255, 255, 255, 0.7);
}

.ts-sidebar-item-text {
    flex: 1;
    min-width: 0;
}

/* ===== Blog Sidebar Widgets ===== */
.ts-sidebar {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.ts-sidebar-widget {
    background: var(--clr-white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-card);
    overflow: hidden;
}

.ts-widget-title {
    background: var(--gradient-primary);
    color: var(--clr-white);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.9375rem;
    padding: 1rem 1.25rem;
    margin: 0;
}

.ts-category-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.ts-category-list li {
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

.ts-category-list li:last-child {
    border-bottom: none;
}

.ts-category-list a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 1.25rem;
    color: var(--clr-text);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all var(--transition);
}

.ts-category-list a:hover {
    background: var(--clr-accent);
    color: var(--clr-primary-dark);
}

.ts-category-count {
    font-size: 0.75rem;
    background: var(--clr-accent);
    color: var(--clr-primary);
    padding: 0.15rem 0.5rem;
    border-radius: 10px;
    font-weight: 600;
}

.ts-popular-posts {
    padding: 0.5rem 0;
}

.ts-popular-post-item {
    display: flex;
    align-items: center;
    padding: 0.75rem 1.25rem;
    transition: background var(--transition);
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
    text-decoration: none;
    color: var(--clr-text);
    gap: 1rem;
}

.ts-popular-post-item:last-child {
    border-bottom: none;
}

.ts-popular-post-item:hover {
    background: var(--clr-accent);
    color: var(--clr-primary-dark);
}

.ts-popular-post-thumb {
    width: 64px;
    height: 64px;
    object-fit: cover;
    border-radius: var(--radius-sm);
    flex-shrink: 0;
}

.ts-popular-post-info h6 {
    font-size: 0.875rem;
    margin-bottom: 0.25rem;
    font-weight: 600;
    line-height: 1.4;
    color: var(--clr-dark);
}

.ts-popular-post-info small {
    color: var(--clr-text-light);
    font-size: 0.75rem;
}

.ts-tag-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    padding: 1.25rem;
}

.ts-tag {
    display: inline-block;
    padding: 0.35rem 0.85rem;
    background: var(--clr-accent);
    color: var(--clr-primary);
    border-radius: 20px;
    font-size: 0.8125rem;
    font-family: var(--font-heading);
    font-weight: 500;
    text-decoration: none;
    transition: all var(--transition);
}

.ts-tag:hover {
    background: var(--gradient-primary);
    color: var(--clr-white);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(139, 92, 246, 0.25);
}

/* ===== Pagination ===== */
.ts-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-top: 2rem;
    padding: 1rem 0;
}

.ts-page-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0.5rem 0.85rem;
    border: none;
    border-radius: var(--radius-sm);
    background: var(--clr-white);
    color: var(--clr-text);
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 0.875rem;
    text-decoration: none;
    transition: all var(--transition);
    box-shadow: var(--shadow-sm);
}

.ts-page-link:hover {
    background: var(--clr-accent);
    color: var(--clr-primary);
    text-decoration: none;
}

.ts-page-link.active {
    background: var(--gradient-primary);
    color: var(--clr-white);
}

.ts-page-link.disabled {
    color: var(--clr-text-light);
    background: transparent;
    box-shadow: none;
    pointer-events: none;
}

.ts-page-prev,
.ts-page-next {
    font-size: 0.8rem;
}

/* ===== Auth Pages ===== */
.ts-auth-section {
    padding: 60px 0;
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.ts-auth-card {
    background: var(--clr-white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-card);
    overflow: hidden;
    max-width: 480px;
    margin: 0 auto;
    width: 100%;
}

.ts-auth-card-accent {
    height: 4px;
    background: var(--gradient-primary);
}

.ts-auth-card-body {
    padding: 2.5rem;
}

.ts-auth-card-flat {
    background: var(--clr-white);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    max-width: 480px;
    margin: 0 auto;
    width: 100%;
}

.ts-auth-title {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--clr-dark);
    text-align: center;
    margin-bottom: 0.5rem;
}

.ts-auth-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    background: var(--clr-accent);
    border-radius: 50%;
    margin: 0 auto 1.25rem;
    font-size: 1.5rem;
    color: var(--clr-primary);
}

.ts-auth-footer {
    text-align: center;
    margin-top: 1.5rem;
    font-size: 0.875rem;
    color: var(--clr-text-light);
}

.ts-auth-footer a {
    color: var(--clr-primary);
    font-weight: 500;
}

.ts-input-icon {
    position: relative;
}

.ts-input-icon i {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--clr-primary-light);
    font-size: 0.9rem;
}

.ts-input-icon .ts-input {
    padding-left: 2.75rem;
}

.ts-input {
    width: 100%;
    border-radius: var(--radius-sm);
    border: 1.5px solid #e0e0ea;
    padding: 0.65rem 1rem;
    font-size: 0.9375rem;
    font-family: var(--font-body);
    color: var(--clr-text);
    background: var(--clr-white);
    transition: border-color var(--transition), box-shadow var(--transition);
    outline: none;
}

.ts-input:focus {
    border-color: var(--clr-primary);
    box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.15);
}

.ts-checkbox {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--clr-text);
    cursor: pointer;
}

.ts-checkbox input[type="checkbox"] {
    display: none;
}

.ts-checkbox-mark {
    width: 20px;
    height: 20px;
    border: 2px solid #e0e0ea;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all var(--transition);
}

.ts-checkbox input[type="checkbox"]:checked + .ts-checkbox-mark {
    background: var(--gradient-primary);
    border-color: var(--clr-primary);
    color: var(--clr-white);
}

/* ===== Register Side Panel ===== */
.ts-register-side-panel {
    background: var(--gradient-primary);
    border-radius: var(--radius-lg);
    padding: 3rem 2rem;
    color: var(--clr-white);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-height: 100%;
}

.ts-register-side-content {
    max-width: 280px;
}

.ts-register-side-content h3 {
    color: var(--clr-white);
    margin-bottom: 1rem;
}

.ts-register-side-content p {
    opacity: 0.9;
    font-size: 0.95rem;
    line-height: 1.7;
}

.ts-register-side-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
}

/* ===== Profile Page ===== */
.ts-profile-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 2rem;
    background: var(--clr-white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-card);
    margin-bottom: 2rem;
}

.ts-profile-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--gradient-primary);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
    font-family: var(--font-heading);
    border: 3px solid var(--clr-accent);
    flex-shrink: 0;
    box-shadow: 0 4px 16px rgba(139, 92, 246, 0.25);
}

.ts-profile-info {
    flex: 1;
}

.ts-profile-info h2,
.ts-profile-info h3 {
    margin-bottom: 0.25rem;
    font-family: var(--font-heading);
    font-weight: 700;
}

.ts-profile-info p {
    color: var(--clr-text-light);
    margin: 0;
    font-size: 0.9rem;
}

.ts-profile-tabs {
    margin-bottom: 2rem;
}

.ts-tab-nav {
    display: flex;
    gap: 0;
    border-bottom: 2px solid rgba(139, 92, 246, 0.1);
    margin-bottom: 1.5rem;
}

.ts-tab-link {
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 0.9375rem;
    color: var(--clr-text);
    padding: 0.75rem 1.5rem;
    text-decoration: none;
    border-bottom: 2px solid transparent;
    margin-bottom: -2px;
    transition: all var(--transition);
}

.ts-tab-link:hover {
    color: var(--clr-primary);
    text-decoration: none;
}

.ts-tab-link.active {
    color: var(--clr-primary);
    border-bottom-color: var(--clr-primary);
}

.ts-tab-content {
    /* container for tab panels */
}

.ts-tab-panel {
    padding: 1.5rem;
    background: var(--clr-white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-card);
}

.ts-title-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}

.ts-title-bar h2,
.ts-title-bar h3 {
    margin: 0;
}

/* ===== Page Content ===== */
.ts-page-content {
    line-height: 1.85;
    color: var(--clr-text);
}

.ts-page-content img {
    max-width: 100%;
    height: auto;
    border-radius: var(--radius-md);
    margin: 1rem 0;
}

.ts-page-content h2 {
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-size: 1.75rem;
}

.ts-page-content h3 {
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.ts-page-content p {
    margin-bottom: 1.25rem;
}

.ts-page-content blockquote {
    border-left: 4px solid var(--clr-primary);
    padding: 1rem 1.5rem;
    margin: 1.5rem 0;
    background: var(--clr-accent);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    font-style: italic;
}

.ts-page-link {
    color: var(--clr-primary);
    text-decoration: none;
    font-weight: 500;
    transition: color var(--transition);
}

.ts-page-link:hover {
    color: var(--clr-primary-dark);
}

/* ===== Alerts ===== */
.ts-alert {
    border-radius: var(--radius-sm);
    border: none;
    font-size: 0.9375rem;
    padding: 1rem 1.25rem;
    margin-bottom: 1rem;
}

.ts-alert-success {
    background-color: #ecfdf5;
    color: #065f46;
}

.ts-alert-danger {
    background-color: #fef2f2;
    color: #991b1b;
}

.ts-alert-info {
    background-color: var(--clr-accent);
    color: var(--clr-primary-dark);
}

/* ===== Empty State ===== */
.ts-empty-state {
    padding: 4rem 2rem;
    text-align: center;
    color: var(--clr-text-light);
}

.ts-empty-state-icon {
    font-size: 3rem;
    color: var(--clr-primary-light);
    margin-bottom: 1rem;
    display: block;
}

/* ===== Floating Actions ===== */
.ts-floating-actions {
    position: fixed;
    bottom: 28px;
    left: 28px;
    z-index: 1040;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.ts-fab {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.25rem;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
    transition: all var(--transition);
    text-decoration: none;
    border: none;
    cursor: pointer;
}

.ts-fab:hover {
    transform: translateY(-3px) scale(1.05);
    color: #fff;
    text-decoration: none;
}

.ts-fab-phone {
    background: var(--gradient-primary);
}

.ts-fab-phone:hover {
    box-shadow: 0 6px 20px rgba(139, 92, 246, 0.45);
}

.ts-fab-whatsapp {
    background: #25D366;
}

.ts-fab-whatsapp:hover {
    background: #1ebe5d;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

.ts-fab-email {
    background: #ef4444;
}

.ts-fab-email:hover {
    background: #dc2626;
    box-shadow: 0 6px 20px rgba(239, 68, 68, 0.4);
}

/* ===== Scroll to Top ===== */
.ts-scroll-top {
    position: fixed;
    bottom: 200px;
    right: 28px;
    z-index: 1050;
    width: 46px;
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    color: var(--clr-white);
    border: none;
    border-radius: 50%;
    box-shadow: 0 4px 16px rgba(139, 92, 246, 0.35);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all var(--transition);
    cursor: pointer;
    font-size: 0.9rem;
}

.ts-scroll-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.ts-scroll-top:hover {
    filter: brightness(1.15);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(139, 92, 246, 0.5);
}

/* ===== Placeholder ===== */
.ts-placeholder {
    background: var(--clr-accent);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--clr-primary-light);
    min-height: 200px;
    font-size: 2rem;
}

/* ===== Animations ===== */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered animation delays */
.animate-on-scroll[data-delay="1"] { transition-delay: 0.1s; }
.animate-on-scroll[data-delay="2"] { transition-delay: 0.2s; }
.animate-on-scroll[data-delay="3"] { transition-delay: 0.3s; }
.animate-on-scroll[data-delay="4"] { transition-delay: 0.4s; }
.animate-on-scroll[data-delay="5"] { transition-delay: 0.5s; }

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease forwards;
}

@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-8px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ===== Bootstrap Overrides (non-destructive) ===== */
hr {
    border-color: rgba(139, 92, 246, 0.12);
}

/* ===== Built-in Captcha Widget ===== */
.wsite-captcha-widget {
    margin-top: 0.5rem;
}

.wsite-captcha-box {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.875rem 1.25rem;
    background: linear-gradient(135deg, #f8f7ff 0%, #f0edff 100%);
    border: 2px solid rgba(139, 92, 246, 0.15);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.wsite-captcha-box:focus-within {
    border-color: var(--clr-primary);
    box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.1);
}

.wsite-captcha-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    color: #fff;
    border-radius: 10px;
}

.wsite-captcha-challenge {
    flex: 1;
}

.wsite-captcha-label {
    display: block;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--clr-primary);
    margin-bottom: 0.25rem;
}

.wsite-captcha-question {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-heading);
}

.wsite-captcha-num {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--clr-dark);
}

.wsite-captcha-op,
.wsite-captcha-eq {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--clr-primary);
}

.wsite-captcha-input {
    width: 60px;
    padding: 0.35rem 0.5rem;
    border: 2px solid rgba(139, 92, 246, 0.2);
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 700;
    font-family: var(--font-heading);
    text-align: center;
    color: var(--clr-dark);
    background: #fff;
    transition: all 0.3s ease;
    -moz-appearance: textfield;
}

.wsite-captcha-input::-webkit-inner-spin-button,
.wsite-captcha-input::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.wsite-captcha-input:focus {
    outline: none;
    border-color: var(--clr-primary);
    box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.15);
}

.wsite-captcha-status {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
}

.wsite-captcha-status.valid::after {
    content: '✓';
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background: #10b981;
    color: #fff;
    border-radius: 50%;
    font-size: 0.75rem;
    font-weight: 700;
}

/* ===== Form Submit Button Effects ===== */
.ts-form-submit,
form[data-ajax="true"] button[type="submit"] {
    position: relative;
    overflow: hidden;
}

.ts-form-submit.verifying,
form[data-ajax="true"] button[type="submit"].verifying {
    pointer-events: none;
    opacity: 0.85;
}

@keyframes shimmer {
    0% { background-position: -200% center; }
    100% { background-position: 200% center; }
}

.ts-form-submit.verifying::after,
form[data-ajax="true"] button[type="submit"].verifying::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent 25%, rgba(255,255,255,0.3) 50%, transparent 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
}

/* ===== Responsive: 991.98px (Tablet) ===== */
@media (max-width: 991.98px) {
    .ts-section {
        padding: 60px 0;
    }

    .ts-section-dark {
        padding: 60px 0;
    }

    .ts-section-title {
        font-size: 1.85rem;
    }

    h1, .h1 { font-size: 2rem; }
    h2, .h2 { font-size: 1.65rem; }

    /* Header */
    .ts-nav {
        display: none;
    }

    .ts-header-inner {
        padding: 0.5rem 0;
    }

    /* Hero */
    .ts-hero {
        min-height: auto;
        padding: 3rem 0;
    }

    .ts-hero-row {
        min-height: auto;
    }

    .ts-hero-content {
        max-width: 100%;
        text-align: center;
    }

    .ts-hero-content-inner {
        max-width: 100%;
    }

    .ts-hero-title {
        font-size: 2.5rem;
    }

    .ts-hero-buttons {
        justify-content: center;
    }

    .ts-hero-visual {
        max-width: 100%;
    }

    .ts-hero-carousel {
        height: 320px;
        margin-top: 2rem;
    }

    .ts-phone-card {
        width: 180px;
        height: 290px;
        border-radius: 22px;
    }

    .ts-phone-card-icon {
        font-size: 2rem;
        margin-bottom: 12px;
    }

    .ts-phone-card-title {
        font-size: 0.85rem;
    }

    .ts-laptop-card {
        width: 420px;
        height: 263px;
    }

    .ts-hero-blob--1 {
        width: 250px;
        height: 250px;
    }

    .ts-hero-blob--2 {
        width: 300px;
        height: 300px;
    }

    .ts-hero-split {
        flex-direction: column;
        gap: 2rem;
    }

    /* Services - Bootstrap grid handles responsive via col-md-6 col-lg-4 */

    /* Blog */
    .ts-blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Counter */
    .ts-counter-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Wizard responsive */
    .ts-wizard-nav {
        gap: 0;
    }

    .ts-wizard-tab-dot {
        width: 44px;
        height: 44px;
        font-size: 1rem;
    }

    .ts-wizard-tab-label {
        font-size: 0.7rem;
        max-width: 90px;
    }

    .ts-wizard-progress {
        top: 22px;
        left: 40px;
        right: 40px;
    }

    .ts-wizard-panel-inner {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
        padding: 2rem;
    }

    .ts-wizard-panel-inner::before {
        width: 100%;
        height: 4px;
        bottom: auto;
        right: 0;
        border-radius: 5px 5px 0 0;
    }

    .ts-wizard-panel-icon {
        width: 72px;
        height: 72px;
        min-width: 72px;
        font-size: 1.8rem;
    }

    /* Image + Content */
    .ts-image-content-row {
        flex-direction: column;
        gap: 2rem;
    }

    .ts-image-content-img {
        max-height: 350px;
    }

    /* Testimonials */
    .ts-testimonial-row {
        flex-direction: column;
        text-align: center;
    }

    /* Appointment */
    .ts-appointment-grid {
        grid-template-columns: 1fr;
    }

    /* Field group */
    .ts-field-group {
        grid-template-columns: 1fr;
    }

    /* Floating actions */
    .ts-floating-actions {
        bottom: 16px;
        left: 16px;
        gap: 8px;
    }

    .ts-fab {
        width: 44px;
        height: 44px;
        font-size: 1.1rem;
    }

    .ts-scroll-top {
        bottom: 160px;
        right: 16px;
        width: 40px;
        height: 40px;
    }

    /* CTA */
    .ts-cta-card {
        padding: 3rem 2rem;
    }

    .ts-cta-title {
        font-size: 1.75rem;
    }

    /* Article */
    .ts-article-hero-title {
        font-size: 2rem;
    }

    .ts-article-hero-content {
        padding: 2rem;
    }
}

/* ===== Responsive: 767.98px (Mobile Landscape) ===== */
@media (max-width: 767.98px) {
    .ts-section {
        padding: 48px 0;
    }

    .ts-section-dark {
        padding: 48px 0;
    }

    .ts-section-title {
        font-size: 1.65rem;
    }

    /* Hero */
    .ts-hero-title {
        font-size: 2rem;
    }

    .ts-hero-visual {
        margin-top: 2rem;
    }

    .ts-hero-blob--1 {
        width: 180px;
        height: 180px;
        top: -40px;
    }

    .ts-hero-blob--2 {
        display: none;
    }

    .ts-hero-blob--3 {
        display: none;
    }

    .ts-hero-desc {
        font-size: 0.95rem;
    }

    /* Blog grid */
    .ts-blog-grid {
        grid-template-columns: 1fr;
    }

    .ts-blog-card-img {
        height: 220px;
    }

    /* Service grid - Bootstrap handles mobile via col classes */

    /* Steps */
    .ts-step-item {
        width: 100%;
    }

    /* Counter */
    .ts-counter-strip {
        padding: 2rem 1.5rem;
    }

    .ts-counter-value {
        font-size: 2rem;
    }

    /* Article */
    .ts-article-hero {
        min-height: 280px;
    }

    .ts-article-hero-title {
        font-size: 1.5rem;
    }

    .ts-article-hero-content {
        padding: 1.5rem;
    }

    .ts-article-body {
        padding: 1.5rem;
    }

    /* Auth */
    .ts-auth-card-body {
        padding: 1.75rem;
    }

    /* Profile */
    .ts-profile-header {
        flex-direction: column;
        text-align: center;
    }

    .ts-tab-nav {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .ts-tab-link {
        white-space: nowrap;
        font-size: 0.8125rem;
        padding: 0.65rem 1rem;
    }

    /* Share */
    .ts-share-bar {
        flex-wrap: wrap;
    }

    /* CTA */
    .ts-cta-card {
        padding: 2.5rem 1.5rem;
    }

    .ts-cta-title {
        font-size: 1.5rem;
    }

    /* Map */
    .ts-map-wrapper iframe {
        min-height: 280px;
    }
}

/* ===== Responsive: 575.98px (Mobile Portrait) ===== */
@media (max-width: 575.98px) {
    .ts-topbar {
        display: none;
    }

    .ts-hero {
        padding: 40px 0;
    }

    .ts-hero-title {
        font-size: 1.75rem;
    }

    .ts-hero-subtitle {
        font-size: 1rem;
    }

    .ts-hero-desc {
        font-size: 0.9rem;
    }

    .ts-hero-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .ts-counter-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem;
    }

    .ts-counter-value {
        font-size: 1.75rem;
    }

    .ts-section-title {
        font-size: 1.5rem;
    }

    .ts-blog-card-img {
        height: 180px;
    }

    .ts-article-hero {
        min-height: 220px;
    }

    .ts-article-hero-title {
        font-size: 1.25rem;
    }

    .ts-accordion-trigger {
        padding: 0.9rem 1rem;
        font-size: 0.9rem;
    }

    .ts-accordion-content {
        padding: 0.75rem 1rem 1.25rem;
    }

    .ts-auth-card-body {
        padding: 1.5rem;
    }

    .ts-register-side-panel {
        padding: 2rem 1.5rem;
        min-height: auto;
    }

    .ts-cta-card {
        padding: 2rem 1.25rem;
    }

    .ts-cta-title {
        font-size: 1.35rem;
    }

    .ts-contact-card-body {
        padding: 1.5rem;
    }

    .ts-form-card-body {
        padding: 1.5rem;
    }

    .ts-mobile-nav {
        width: 280px;
    }
}

/* ===== Desktop-only submenu hover ===== */
@media (min-width: 992px) {
    .ts-has-submenu:hover > .ts-submenu-box {
        display: block;
        animation: fadeInDown 0.2s ease;
    }
}

@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-8px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ===== Header CTA Button (mxstore "Ara" style) ===== */
.ts-header-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--gradient-primary);
    color: var(--clr-white);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.875rem;
    padding: 0.55rem 1.35rem;
    border-radius: 50px;
    text-decoration: none;
    transition: all var(--transition);
    white-space: nowrap;
    letter-spacing: 0.3px;
}

.ts-header-cta:hover {
    color: var(--clr-white);
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(139, 92, 246, 0.35);
    filter: brightness(1.1);
}

.ts-header-cta i {
    font-size: 0.75rem;
}

/* Search Button */
.ts-header-search-btn {
    background: none;
    border: 2px solid var(--clr-primary);
    color: var(--clr-primary);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all var(--transition);
}

.ts-header-search-btn:hover {
    background: var(--clr-primary);
    color: var(--clr-white);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(139, 92, 246, 0.3);
}

/* Search Overlay */
.ts-search-overlay {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--clr-white);
    box-shadow: 0 8px 32px rgba(0,0,0,0.12);
    padding: 1.5rem 0;
    z-index: 1000;
    display: none;
    animation: tsFadeDown 0.25s ease;
}

.ts-search-overlay.ts-active {
    display: block;
}

@keyframes tsFadeDown {
    from { opacity: 0; transform: translateY(-8px); }
    to { opacity: 1; transform: translateY(0); }
}

.ts-search-input-wrap {
    display: flex;
    align-items: center;
    background: #f8f9fa;
    border: 2px solid #e2e8f0;
    border-radius: 50px;
    padding: 0.5rem 1.25rem;
    gap: 0.75rem;
    transition: border-color var(--transition);
}

.ts-search-input-wrap:focus-within {
    border-color: var(--clr-primary);
    box-shadow: 0 0 0 4px rgba(139, 92, 246, 0.1);
}

.ts-search-icon {
    color: var(--clr-primary);
    font-size: 1rem;
}

.ts-search-input {
    flex: 1;
    border: none;
    background: none;
    outline: none;
    font-size: 1rem;
    font-family: var(--font-heading);
    color: var(--clr-text);
    padding: 0.35rem 0;
}

.ts-search-input::placeholder {
    color: #94a3b8;
}

.ts-search-close {
    background: none;
    border: none;
    color: #94a3b8;
    font-size: 1.1rem;
    cursor: pointer;
    padding: 0;
    transition: color var(--transition);
}

.ts-search-close:hover {
    color: var(--clr-primary);
}

/* Search page form submit */
.ts-search-submit-btn {
    background: var(--gradient-primary);
    border: none;
    color: #fff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform var(--transition), box-shadow var(--transition);
    flex-shrink: 0;
}
.ts-search-submit-btn:hover {
    transform: scale(1.08);
    box-shadow: 0 4px 14px rgba(139, 92, 246, 0.35);
}

/* Search result type badge */
.ts-search-type-badge {
    position: absolute;
    top: 0.75rem;
    left: 0.75rem;
    background: var(--gradient-primary);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 600;
    padding: 0.25rem 0.65rem;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    z-index: 2;
}

/* ===== Footer (mxstore style - white, clean, 4 columns) ===== */
.ts-footer {
    background: var(--clr-white);
    color: var(--clr-text);
    border-top: 1px solid #eee;
}

.ts-footer-top {
    padding: 4rem 0 3rem;
}

/* Brand column */
.ts-footer-brand {
    padding-right: 1.5rem;
}

.ts-footer-logo {
    display: inline-block;
    margin-bottom: 1.25rem;
}

.ts-footer-logo img {
    height: 48px;
    width: auto;
}

.ts-footer-logo-text {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--clr-dark);
    text-decoration: none;
    margin-bottom: 1.25rem;
}

.ts-footer-logo-text:hover {
    color: var(--clr-primary);
    text-decoration: none;
}

.ts-footer-about {
    font-size: 0.9rem;
    line-height: 1.85;
    color: var(--clr-text);
    margin-bottom: 0;
}

/* Column titles - mxstore uses underlined headings */
.ts-footer-col-title {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1rem;
    color: var(--clr-dark);
    margin-bottom: 1.25rem;
    padding-bottom: 0.6rem;
    border-bottom: 2px solid var(--clr-dark);
    display: inline-block;
    text-transform: none;
    letter-spacing: 0;
}

/* Navigation links - clean, no bullets, stacked */
.ts-footer-nav {
    display: flex;
    flex-direction: column;
}

.ts-footer-nav a {
    display: block;
    padding: 0.3rem 0;
    font-size: 0.9rem;
    color: var(--clr-text);
    text-decoration: none;
    transition: color var(--transition);
    line-height: 1.6;
}

.ts-footer-nav a:hover {
    color: var(--clr-primary);
}

/* Contact list - mxstore style with bold labels */
.ts-footer-contact-list {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.ts-footer-contact-item {
    font-size: 0.9rem;
    line-height: 1.6;
    color: var(--clr-text);
}

.ts-footer-contact-item strong {
    color: var(--clr-dark);
    font-weight: 700;
    display: block;
    margin-bottom: 0.1rem;
}

.ts-footer-contact-item a {
    color: var(--clr-text);
    text-decoration: none;
    transition: color var(--transition);
}

.ts-footer-contact-item a:hover {
    color: var(--clr-primary);
}

/* Footer bottom - copyright + SEO text */
.ts-footer-bottom {
    border-top: 1px solid #eee;
    padding: 1.5rem 0;
    text-align: center;
}

.ts-footer-copyright {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--clr-dark);
    margin-bottom: 0.75rem;
}

.ts-footer-seo {
    font-size: 0.8rem;
    color: var(--clr-text-light);
    line-height: 1.7;
    max-width: 900px;
    margin: 0 auto;
}

.ts-footer-signature {
    font-size: 0.75rem;
    color: var(--clr-text-light);
    margin-top: 0.75rem;
    opacity: 0.8;
}

.ts-footer-signature a {
    color: var(--clr-primary);
    text-decoration: none;
    font-weight: 500;
}

.ts-footer-signature a:hover {
    text-decoration: underline;
    opacity: 1;
}

/* ===== Footer Responsive ===== */
@media (max-width: 991.98px) {
    .ts-footer-top {
        padding: 3rem 0 2rem;
    }

    .ts-footer-brand {
        padding-right: 0;
        margin-bottom: 1rem;
    }
}

@media (max-width: 767.98px) {
    .ts-footer-top {
        padding: 2.5rem 0 1.5rem;
    }

    .ts-footer-col-title {
        margin-bottom: 0.75rem;
    }

    .ts-footer-bottom {
        padding-bottom: 5rem;
    }
}

/* ═══════════════════════════════════════════════════════════
   PAGE HERO — Shared internal page hero
   ═══════════════════════════════════════════════════════════ */
.ts-page-hero {
    position: relative;
    min-height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 50px 0 40px;
}

.ts-page-hero-sm {
    min-height: 160px;
    padding: 40px 0 30px;
}

.ts-page-hero-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #8B5CF6 0%, #a855f7 40%, #c084fc 100%);
    z-index: 0;
}

.ts-page-hero-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
    background-size: 40px 40px;
}

.ts-page-hero-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: .25;
}

.ts-page-hero-blob-1 {
    width: 300px;
    height: 300px;
    background: #f7941d;
    top: -80px;
    right: -60px;
}

.ts-page-hero-blob-2 {
    width: 200px;
    height: 200px;
    background: #10b981;
    bottom: -60px;
    left: -40px;
}

.ts-page-hero-content {
    text-align: center;
    position: relative;
    z-index: 2;
}

.ts-page-hero-badge {
    display: inline-block;
    background: rgba(255,255,255,.15);
    backdrop-filter: blur(8px);
    color: #fff;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: .875rem;
    font-weight: 500;
    letter-spacing: .5px;
    margin-bottom: 1.25rem;
    border: 1px solid rgba(255,255,255,.2);
}

.ts-page-hero-title {
    font-family: 'Jost', sans-serif;
    font-size: 2.75rem;
    font-weight: 700;
    color: #fff;
    margin: 0 0 .75rem;
    line-height: 1.2;
}

.ts-page-hero-subtitle {
    font-size: 1.1rem;
    color: rgba(255,255,255,.85);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* ═══════════════════════════════════════════════════════════
   ABOUT PAGE
   ═══════════════════════════════════════════════════════════ */
.ts-about-content {
    padding: 80px 0;
}

.ts-about-image-wrap {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
}

.ts-about-image-accent {
    position: absolute;
    top: -15px;
    left: -15px;
    width: 100%;
    height: 100%;
    border-radius: 24px;
    background: linear-gradient(135deg, rgba(139,92,246,.2), rgba(247,148,29,.2));
    z-index: 0;
}

.ts-about-image {
    position: relative;
    width: 100%;
    height: auto;
    border-radius: 24px;
    object-fit: cover;
    z-index: 1;
    box-shadow: 0 20px 60px rgba(139,92,246,.15);
}

.ts-about-image-dots {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 100px;
    height: 100px;
    background-image: radial-gradient(circle, rgba(139,92,246,.3) 2px, transparent 2px);
    background-size: 12px 12px;
    z-index: 0;
}

.ts-about-text {
    padding-left: 1rem;
}

.ts-about-text-full {
    padding: 0;
}

/* ═══════════════════════════════════════════════════════════
   SERVICES LISTING PAGE
   ═══════════════════════════════════════════════════════════ */
.ts-services-listing {
    padding: 80px 0;
    background: #f8f9fc;
}

.ts-service-listing-card {
    display: flex;
    flex-direction: column;
    background: #fff;
    border-radius: 24px;
    padding: 2rem;
    height: 100%;
    text-decoration: none;
    color: inherit;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,.04);
    transition: all .35s cubic-bezier(.4,0,.2,1);
}

.ts-service-listing-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 48px rgba(139,92,246,.12);
    color: inherit;
    text-decoration: none;
}

.ts-service-listing-card-accent {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--svc-accent, #8B5CF6);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .4s cubic-bezier(.4,0,.2,1);
}

.ts-service-listing-card:hover .ts-service-listing-card-accent {
    transform: scaleX(1);
}

.ts-service-listing-card-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.25rem;
    transition: all .35s ease;
}

.ts-service-listing-card:hover .ts-service-listing-card-icon {
    transform: scale(1.1) rotate(-5deg);
    background: var(--svc-accent, #8B5CF6) !important;
    color: #fff !important;
}

.ts-service-listing-card-title {
    font-family: 'Jost', sans-serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: #1e293b;
    margin: 0 0 .75rem;
}

.ts-service-listing-card-desc {
    font-size: .9rem;
    color: #64748b;
    line-height: 1.65;
    flex: 1;
    margin-bottom: 1.25rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.ts-service-listing-card-link {
    font-size: .875rem;
    font-weight: 600;
    color: var(--svc-accent, #8B5CF6);
    display: inline-flex;
    align-items: center;
    transition: gap .3s ease;
    gap: 0;
}

.ts-service-listing-card:hover .ts-service-listing-card-link {
    gap: 4px;
}

.ts-service-listing-card-link i {
    transition: transform .3s ease;
    font-size: .75rem;
}

.ts-service-listing-card:hover .ts-service-listing-card-link i {
    transform: translateX(4px);
}

/* ═══════════════════════════════════════════════════════════
   SERVICE DETAIL PAGE
   ═══════════════════════════════════════════════════════════ */
.ts-service-detail-layout {
    padding: 60px 0;
}

.ts-service-detail-main {
    background: #fff;
    border-radius: 24px;
    padding: 2.5rem;
    box-shadow: 0 4px 20px rgba(0,0,0,.04);
}

.ts-service-detail-image-wrap {
    border-radius: 16px;
    overflow: hidden;
}

.ts-service-detail-image {
    width: 100%;
    height: auto;
    border-radius: 16px;
    object-fit: cover;
}

/* Sidebar */
.ts-service-sidebar {
    position: sticky;
    top: 100px;
}

.ts-sidebar-card {
    background: #fff;
    border-radius: 20px;
    padding: 1.75rem;
    box-shadow: 0 4px 20px rgba(0,0,0,.04);
    margin-bottom: 1.5rem;
}

.ts-sidebar-card-title {
    font-family: 'Jost', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: #1e293b;
    margin: 0 0 1.25rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #f1f5f9;
}

.ts-sidebar-services-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.ts-sidebar-services-item {
    margin-bottom: 2px;
}

.ts-sidebar-services-item a {
    display: flex;
    align-items: center;
    padding: .75rem 1rem;
    border-radius: 12px;
    text-decoration: none;
    color: #475569;
    font-size: .9rem;
    font-weight: 500;
    transition: all .25s ease;
    gap: .75rem;
    border-left: 3px solid transparent;
}

.ts-sidebar-services-item a:hover {
    background: #f8f9fc;
    color: var(--svc-accent, #8B5CF6);
    border-left-color: var(--svc-accent, #8B5CF6);
    padding-left: 1.25rem;
}

.ts-sidebar-services-item.active a {
    background: linear-gradient(135deg, rgba(139,92,246,.08), rgba(139,92,246,.04));
    color: #8B5CF6;
    font-weight: 600;
    border-left-color: #8B5CF6;
}

.ts-sidebar-services-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--svc-accent, #8B5CF6);
    opacity: .4;
    flex-shrink: 0;
    transition: opacity .25s ease;
}

.ts-sidebar-services-item.active .ts-sidebar-services-dot,
.ts-sidebar-services-item a:hover .ts-sidebar-services-dot {
    opacity: 1;
}

.ts-sidebar-services-item a i {
    margin-left: auto;
    font-size: .65rem;
    opacity: 0;
    transform: translateX(-4px);
    transition: all .25s ease;
}

.ts-sidebar-services-item a:hover i,
.ts-sidebar-services-item.active a i {
    opacity: .6;
    transform: translateX(0);
}

/* CTA Sidebar Card */
.ts-sidebar-cta {
    background: linear-gradient(135deg, #1e1b4b, #312e81);
    color: #fff;
    text-align: center;
    border: none;
}

.ts-sidebar-cta-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: rgba(139,92,246,.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin: 0 auto 1rem;
    color: #c4b5fd;
}

.ts-sidebar-cta-title {
    font-family: 'Jost', sans-serif;
    font-size: 1.15rem;
    font-weight: 600;
    margin: 0 0 .5rem;
}

.ts-sidebar-cta-text {
    font-size: .85rem;
    color: rgba(255,255,255,.7);
    margin: 0 0 1.25rem;
    line-height: 1.5;
}

/* Related Services */
.ts-related-services {
    padding: 80px 0;
    background: #f8f9fc;
}

/* ═══════════════════════════════════════════════════════════
   CONTACT PAGE
   ═══════════════════════════════════════════════════════════ */
.ts-contact-section {
    padding: 60px 0 80px;
}

.ts-contact-info-wrap {
    padding-right: 1rem;
}

.ts-contact-info-title {
    font-family: 'Jost', sans-serif;
    font-size: 1.75rem;
    font-weight: 700;
    color: #1e293b;
    margin: 0 0 .75rem;
}

.ts-contact-info-subtitle {
    color: #64748b;
    line-height: 1.65;
    margin-bottom: 2rem;
}

.ts-contact-info-list {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.ts-contact-info-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.ts-contact-info-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.ts-contact-info-item h5 {
    font-family: 'Jost', sans-serif;
    font-size: .9rem;
    font-weight: 600;
    color: #1e293b;
    margin: 0 0 .25rem;
}

.ts-contact-info-item p {
    font-size: .875rem;
    color: #64748b;
    margin: 0;
    line-height: 1.5;
}

.ts-contact-info-item a {
    color: #64748b;
    text-decoration: none;
    transition: color .2s;
}

.ts-contact-info-item a:hover {
    color: #8B5CF6;
}

.ts-contact-form-card {
    background: #fff;
    border-radius: 24px;
    padding: 2.5rem;
    box-shadow: 0 4px 24px rgba(0,0,0,.05);
}

.ts-contact-form-title {
    font-family: 'Jost', sans-serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: #1e293b;
    margin: 0 0 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #f1f5f9;
}

.ts-contact-form-card .form-control {
    border-radius: 12px;
    border: 1.5px solid #e2e8f0;
    padding: .65rem 1rem;
    transition: border-color .2s, box-shadow .2s;
}

.ts-contact-form-card .form-control:focus {
    border-color: #8B5CF6;
    box-shadow: 0 0 0 3px rgba(139,92,246,.1);
}

.ts-contact-form-card .form-label {
    font-size: .85rem;
    font-weight: 500;
    color: #475569;
}

/* ═══════════════════════════════════════════════════════════
   BRANDS CAROUSEL
   ═══════════════════════════════════════════════════════════ */
.ts-brands-section {
    padding: 60px 0 50px;
    background: #f8f9fc;
    overflow: hidden;
}

.ts-brands-carousel {
    position: relative;
    width: 100%;
    overflow: hidden;
    -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 10%, #000 90%, transparent 100%);
    mask-image: linear-gradient(90deg, transparent 0%, #000 10%, #000 90%, transparent 100%);
}

.ts-brands-track {
    display: flex;
    gap: 48px;
    width: max-content;
    animation: ts-brands-scroll 30s linear infinite;
}

.ts-brands-track:hover {
    animation-play-state: paused;
}

.ts-brand-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    min-width: 100px;
    padding: 18px 12px;
    cursor: default;
    transition: transform .3s ease;
}

.ts-brand-item:hover {
    transform: translateY(-4px);
}

.ts-brand-icon {
    font-size: 2.4rem;
    transition: transform .3s ease;
}

.ts-brand-item:hover .ts-brand-icon {
    transform: scale(1.15);
}

.ts-brand-name {
    font-size: .82rem;
    font-weight: 600;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: .04em;
}

@keyframes ts-brands-scroll {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE — Page Views
   ═══════════════════════════════════════════════════════════ */
@media (max-width: 991.98px) {
    .ts-page-hero-title {
        font-size: 1.75rem;
    }

    .ts-page-hero {
        min-height: 160px;
        padding: 40px 0 30px;
    }

    .ts-page-hero-sm {
        min-height: 130px;
    }

    .ts-service-detail-main {
        padding: 1.5rem;
    }

    .ts-service-sidebar {
        position: static;
    }

    .ts-contact-info-wrap {
        padding-right: 0;
        margin-bottom: 2rem;
    }

    .ts-contact-form-card {
        padding: 1.5rem;
    }
}

@media (max-width: 767.98px) {
    .ts-page-hero-title {
        font-size: 1.4rem;
    }

    .ts-page-hero {
        min-height: 140px;
        padding: 35px 0 25px;
    }

    .ts-page-hero-sm {
        min-height: 110px;
        padding: 30px 0 20px;
    }

    .ts-page-hero-badge {
        font-size: .75rem;
        padding: 6px 14px;
        margin-bottom: .75rem;
    }

    .ts-about-content {
        padding: 40px 0;
    }

    .ts-about-text {
        padding-left: 0;
        margin-top: 2rem;
    }

    .ts-services-listing {
        padding: 40px 0;
    }

    .ts-service-detail-layout {
        padding: 30px 0;
    }

    .ts-service-detail-main {
        border-radius: 16px;
        padding: 1.25rem;
    }

    .ts-sidebar-card {
        border-radius: 16px;
    }

    .ts-related-services {
        padding: 40px 0;
    }

    .ts-contact-section {
        padding: 40px 0;
    }

    .ts-contact-form-card {
        padding: 1.25rem;
        border-radius: 16px;
    }
}

/* ── File Drop Zone ── */
.ts-file-drop-zone {
    border: 2px dashed #e2e8f0;
    border-radius: 12px;
    padding: 24px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    background: #fafbfc;
}

.ts-file-drop-zone:hover,
.ts-file-drop-zone.drag-over {
    border-color: #8B5CF6;
    background: #f5f3ff;
}

/* ===== Error Page ===== */
.ts-error-section {
    position: relative;
    min-height: 60vh;
    display: flex;
    align-items: center;
    padding: 4rem 0;
    overflow: hidden;
}
.ts-error-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.ts-error-icon-wrap {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: linear-gradient(135deg, #8B5CF620, #f7941d20);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}
.ts-error-icon-wrap i {
    font-size: 2.5rem;
    background: linear-gradient(135deg, #8B5CF6, #f7941d);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.ts-error-code {
    font-size: 8rem;
    font-weight: 800;
    line-height: 1;
    background: linear-gradient(135deg, #8B5CF630, #f7941d30);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}
.ts-error-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--ts-text);
    margin-bottom: 0.75rem;
}
.ts-error-message {
    color: #6b7280;
    font-size: 1.1rem;
    margin-bottom: 2rem;
}
.ts-btn-outline {
    border: 2px solid #e5e7eb;
    color: var(--ts-text);
    border-radius: 12px;
    padding: 0.6rem 1.5rem;
    font-weight: 600;
    transition: all 0.3s;
}
.ts-btn-outline:hover {
    border-color: #8B5CF6;
    color: #8B5CF6;
    background: #8B5CF608;
}

/* ── Section Item Image Support ── */
.ts-svc-slide-img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    border-radius: 10px;
}
.ts-wizard-dot-img {
    width: 28px;
    height: 28px;
    object-fit: contain;
    border-radius: 6px;
}
.ts-wizard-panel-img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    border-radius: 10px;
}
.ts-feature-img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    border-radius: 10px;
}
.ts-counter-img {
    width: 64px;
    height: 64px;
    object-fit: contain;
    filter: brightness(0) invert(1);
}
.ts-accordion-item-img {
    width: 36px;
    height: 36px;
    object-fit: contain;
    vertical-align: middle;
    border-radius: 6px;
}
.ts-hero-card-img {
    width: 88px;
    height: 88px;
    object-fit: contain;
    border-radius: 12px;
}
.ts-catalog-card-img {
    width: 72px;
    height: 72px;
    object-fit: contain;
    border-radius: 14px;
}

/* ── Blog-Style Service Image Card ── */
.ts-svc-img-card {
    display: flex;
    flex-direction: column;
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    height: 100%;
    box-shadow: 0 4px 20px rgba(0,0,0,.06);
    transition: transform .35s ease, box-shadow .35s ease;
}
.ts-svc-img-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(139,92,246,.15);
    color: inherit;
    text-decoration: none;
}
.ts-svc-img-card-visual {
    position: relative;
    width: 100%;
    height: 220px;
    overflow: hidden;
}
.ts-svc-img-card-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s ease;
}
.ts-svc-img-card:hover .ts-svc-img-card-visual img {
    transform: scale(1.06);
}
.ts-svc-img-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(0,0,0,.15) 100%);
    pointer-events: none;
}
.ts-svc-img-card-body {
    padding: 1.25rem 1.5rem 1.5rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}
.ts-svc-img-card-title {
    font-family: 'Jost', sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: .5rem;
}
.ts-svc-img-card-desc {
    font-size: .875rem;
    color: #64748b;
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    flex: 1;
}
.ts-svc-img-card-link {
    font-size: .875rem;
    font-weight: 600;
    margin-top: .75rem;
    display: inline-flex;
    align-items: center;
    transition: gap .3s ease;
}
.ts-svc-img-card:hover .ts-svc-img-card-link {
    gap: 6px;
}
.ts-svc-img-card-link i {
    transition: transform .3s ease;
}
.ts-svc-img-card:hover .ts-svc-img-card-link i {
    transform: translateX(4px);
}

/* ═══════════════════════════════════════════════════════════
   HERO BANNER V2 — Dark cinematic full-width
   CssClass: hero-v2
   ═══════════════════════════════════════════════════════════ */
.ts-hero-v2 {
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: #0f0f1a;
}
.ts-hero-v2-bg {
    position: absolute; inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0.35;
}
.ts-hero-v2-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(15,15,26,.95) 0%, rgba(108,60,224,.3) 100%);
}
.ts-hero-v2-shapes { position: absolute; inset: 0; overflow: hidden; pointer-events: none; }
.ts-hero-v2-circle {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(139,92,246,.15);
}
.ts-hero-v2-circle--1 { width: 500px; height: 500px; top: -120px; right: -100px; }
.ts-hero-v2-circle--2 { width: 300px; height: 300px; bottom: -80px; left: -60px; border-color: rgba(247,148,29,.1); }

.min-vh-65 { min-height: 65vh; }

.ts-hero-v2-content { padding: 3rem 0; }

.ts-hero-v2-badge {
    display: inline-block;
    background: rgba(139,92,246,.15);
    color: #a78bfa;
    padding: 0.4rem 1.25rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    letter-spacing: 0.5px;
}
.ts-hero-v2-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    color: #fff;
    line-height: 1.15;
    margin-bottom: 2rem;
}
.ts-hero-v2-gradient-text {
    background: linear-gradient(135deg, var(--clr-primary) 0%, #a78bfa 50%, #f7941d 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.ts-hero-v2-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}
.ts-hero-v2-btn-primary {
    display: inline-flex;
    align-items: center;
    padding: 0.85rem 2rem;
    background: linear-gradient(135deg, var(--clr-primary), #8b5cf6);
    color: #fff;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all .3s ease;
    box-shadow: 0 4px 20px rgba(108,60,224,.4);
}
.ts-hero-v2-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(108,60,224,.5);
    color: #fff;
}
.ts-hero-v2-btn-outline {
    display: inline-flex;
    align-items: center;
    padding: 0.85rem 2rem;
    border: 1px solid rgba(255,255,255,.25);
    color: #fff;
    border-radius: 50px;
    font-weight: 500;
    text-decoration: none;
    transition: all .3s ease;
}
.ts-hero-v2-btn-outline:hover {
    border-color: rgba(255,255,255,.5);
    background: rgba(255,255,255,.05);
    color: #fff;
}

/* V2 Scrolling cards */
.ts-hero-v2-cards-wrap {
    overflow: hidden;
    max-height: 65vh;
    mask-image: linear-gradient(to bottom, transparent 0%, black 10%, black 90%, transparent 100%);
    -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 10%, black 90%, transparent 100%);
}
.ts-hero-v2-cards-track {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    animation: tsScrollV2 20s linear infinite;
}
@keyframes tsScrollV2 {
    0% { transform: translateY(0); }
    100% { transform: translateY(-50%); }
}
.ts-hero-v2-cards-wrap:hover .ts-hero-v2-cards-track {
    animation-play-state: paused;
}
.ts-hero-v2-stat-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1rem;
    background: rgba(255,255,255,.06);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 16px;
    padding: 1.25rem 1.5rem;
    transition: all .3s ease;
    flex-shrink: 0;
}
a.ts-hero-v2-stat-card {
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}
.ts-hero-v2-stat-card:hover {
    background: rgba(255,255,255,.1);
    transform: translateX(-4px);
}
.ts-hero-v2-stat-icon {
    width: 256px;
    height: 256px;
    border-radius: 24px;
    background: linear-gradient(135deg, var(--clr-primary), #a78bfa);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 4rem;
    flex-shrink: 0;
    overflow: hidden;
}
.ts-hero-v2-stat-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 24px;
}
.ts-hero-v2-stat-value {
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
}
.ts-hero-v2-stat-label {
    font-size: 0.8rem;
    color: rgba(255,255,255,.5);
}

/* V2 Wave */
.ts-hero-v2-wave {
    position: absolute;
    bottom: -1px; left: 0; right: 0;
    z-index: 2;
    line-height: 0;
}
.ts-hero-v2-wave svg { width: 100%; height: 60px; }

@media (max-width: 991.98px) {
    .ts-hero-v2 { min-height: 50vh; }
    .ts-hero-v2-content { padding: 2rem 0; text-align: center; }
    .ts-hero-v2-buttons { justify-content: center; }
    .ts-hero-v2-badge { margin-left: auto; margin-right: auto; }
}

/* ── Hero V2 — Image layout variants (img-left/right/top/bottom) ── */
.ts-hero-v2-feature-img {
    border-radius: 24px;
    width: 100%;
    object-fit: cover;
    box-shadow: 0 20px 60px rgba(0,0,0,.4);
    display: block;
}
.ts-hero-v2-feature-img--block {
    max-height: 45vh;
    object-fit: contain;
    margin: 0 auto;
}
.ts-hero-v2.img-left .ts-hero-v2-feature-img,
.ts-hero-v2.img-right .ts-hero-v2-feature-img {
    max-height: 65vh;
}
.ts-hero-v2.img-top .ts-hero-v2-feature-img,
.ts-hero-v2.img-bottom .ts-hero-v2-feature-img {
    max-height: 45vh;
}
.ts-hero-v2-content--center {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-height: 30vh;
}
.ts-hero-v2-content--center .ts-hero-v2-title { text-align: center; }
.ts-hero-v2-content--center .ts-hero-v2-buttons { justify-content: center; }
.ts-hero-v2-row { flex-direction: row; }
@media (max-width: 991.98px) {
    .ts-hero-v2-row { flex-direction: column !important; }
    .ts-hero-v2.img-left .ts-hero-v2-feature-img,
    .ts-hero-v2.img-right .ts-hero-v2-feature-img { max-height: 40vh; margin-bottom: 1.5rem; }
}

/* ─── Hero V2: per-card image layout variants ─── */
/* img-bottom: resim altta, metin üstte */
.ts-hero-v2-stat-card.img-bottom { flex-direction: column-reverse; }

/* img-left: resim solda, metin sağda */
.ts-hero-v2-stat-card.img-left {
    flex-direction: row;
    align-items: center;
    gap: 1rem;
}
.ts-hero-v2-stat-card.img-left .ts-hero-v2-stat-text { text-align: left; }

/* img-right: resim sağda, metin solda */
.ts-hero-v2-stat-card.img-right {
    flex-direction: row-reverse;
    align-items: center;
    gap: 1rem;
}
.ts-hero-v2-stat-card.img-right .ts-hero-v2-stat-text { text-align: right; }

/* ─── Brand Badges (BrandBadges section + footer widget) ─── */
.ts-brand-badges-wrap,
.ts-brand-badges-section {
    padding: 1.25rem 0;
    border-top: 1px solid rgba(0,0,0,.07);
}
.ts-brand-badges-title {
    font-size: .72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .09em;
    color: var(--clr-muted, #9ca3af);
    margin-bottom: .65rem;
}
.ts-brand-badges-list {
    display: flex;
    flex-wrap: wrap;
    gap: .45rem;
    align-items: center;
}
.ts-brand-badge {
    display: inline-flex;
    align-items: center;
    gap: .25rem;
    padding: .3rem .8rem;
    border-radius: 50px;
    font-size: .78rem;
    font-weight: 600;
    color: #fff;
    text-decoration: none;
    white-space: nowrap;
    transition: filter .18s, transform .18s;
}
a.ts-brand-badge:hover {
    filter: brightness(1.18);
    transform: translateY(-2px);
}

/* ═══════════════════════════════════════════════════════════
   HERO BANNER V3 — Split gradient + image frame
   CssClass: hero-v3
   ═══════════════════════════════════════════════════════════ */
.ts-hero-v3 {
    position: relative;
    overflow: hidden;
    padding: 5rem 0 4rem;
}
.ts-hero-v3-bg {
    position: absolute; inset: 0;
    pointer-events: none;
}
.ts-hero-v3-gradient {
    position: absolute; inset: 0;
    background: linear-gradient(160deg, #f8f5ff 0%, #ede9fe 30%, #fff 70%);
}
.ts-hero-v3-row { min-height: 55vh; }

/* Floating particles */
.ts-hero-v3-particles {
    position: absolute; inset: 0;
}
.ts-hero-v3-particles span {
    position: absolute;
    width: 6px;
    height: 6px;
    background: var(--clr-primary);
    border-radius: 50%;
    opacity: 0.15;
    animation: tsFloat 8s ease-in-out infinite;
}
.ts-hero-v3-particles span:nth-child(1) { left: 10%; top: 20%; animation-delay: 0s; }
.ts-hero-v3-particles span:nth-child(2) { left: 25%; top: 60%; animation-delay: 1s; width: 4px; height: 4px; }
.ts-hero-v3-particles span:nth-child(3) { left: 50%; top: 15%; animation-delay: 2s; width: 8px; height: 8px; }
.ts-hero-v3-particles span:nth-child(4) { left: 70%; top: 70%; animation-delay: 3s; }
.ts-hero-v3-particles span:nth-child(5) { left: 85%; top: 30%; animation-delay: 4s; width: 5px; height: 5px; }
.ts-hero-v3-particles span:nth-child(6) { left: 15%; top: 80%; animation-delay: 5s; }
.ts-hero-v3-particles span:nth-child(7) { left: 60%; top: 45%; animation-delay: 6s; width: 3px; height: 3px; }
.ts-hero-v3-particles span:nth-child(8) { left: 90%; top: 10%; animation-delay: 7s; }

@keyframes tsFloat {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-20px) scale(1.3); }
}

/* V3 Content */
.ts-hero-v3-content { padding: 2rem 0; }

.ts-hero-v3-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #fff;
    border: 1px solid #e9e5f5;
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--clr-primary);
    margin-bottom: 1.5rem;
    box-shadow: 0 2px 8px rgba(108,60,224,.08);
}
.ts-hero-v3-chip-dot {
    width: 8px; height: 8px;
    background: #10b981;
    border-radius: 50%;
    animation: tsPulse 2s ease infinite;
}
@keyframes tsPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}

.ts-hero-v3-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4.5vw, 3.25rem);
    font-weight: 800;
    color: var(--clr-dark);
    line-height: 1.2;
    margin-bottom: 1.5rem;
}
.ts-hero-v3-accent {
    color: var(--clr-primary);
    position: relative;
}
.ts-hero-v3-accent::after {
    content: '';
    position: absolute;
    bottom: 2px; left: 0; right: 0;
    height: 8px;
    background: rgba(139,92,246,.15);
    border-radius: 4px;
    z-index: -1;
}

.ts-hero-v3-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}
.ts-hero-v3-btn {
    display: inline-flex;
    align-items: center;
    padding: 0.8rem 1.75rem;
    background: var(--clr-primary);
    color: #fff;
    border-radius: 12px;
    font-weight: 600;
    text-decoration: none;
    transition: all .3s ease;
    box-shadow: 0 4px 16px rgba(108,60,224,.3);
}
.ts-hero-v3-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(108,60,224,.4);
    color: #fff;
}
.ts-hero-v3-btn-ghost {
    display: inline-flex;
    align-items: center;
    padding: 0.8rem 1.75rem;
    color: var(--clr-text);
    font-weight: 600;
    text-decoration: none;
    border-radius: 12px;
    transition: all .3s ease;
}
.ts-hero-v3-btn-ghost:hover {
    background: rgba(108,60,224,.06);
    color: var(--clr-primary);
}

/* V3 Features */
.ts-hero-v3-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}
.ts-hero-v3-feature {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #fff;
    border: 1px solid #f0ecf9;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--clr-text);
    opacity: 0;
    transform: translateY(12px);
    animation: tsFeatureFadeIn 0.5s ease forwards;
}
@keyframes tsFeatureFadeIn {
    to { opacity: 1; transform: translateY(0); }
}
.ts-hero-v3-feature-icon {
    color: var(--clr-primary);
    font-size: 0.9rem;
}
.ts-hero-v3-feature-img {
    width: 20px;
    height: 20px;
    border-radius: 4px;
    object-fit: cover;
}

/* V3 Visual */
.ts-hero-v3-visual {
    position: relative;
    display: flex;
    justify-content: center;
}
.ts-hero-v3-img-frame {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,.12);
    max-width: 500px;
}
.ts-hero-v3-img-frame img {
    width: 100%;
    height: auto;
    display: block;
}
.ts-hero-v3-img-border {
    position: absolute; inset: 0;
    border: 2px solid rgba(139,92,246,.2);
    border-radius: 20px;
    pointer-events: none;
}
.ts-hero-v3-placeholder {
    width: 100%;
    aspect-ratio: 4/3;
    background: linear-gradient(135deg, #ede9fe, #f5f3ff);
}
.ts-hero-v3-placeholder-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    font-size: 4rem;
    color: var(--clr-primary);
    opacity: 0.3;
}

/* V3 Floating card */
.ts-hero-v3-float-card {
    position: absolute;
    bottom: -16px; left: -24px;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: #fff;
    padding: 1rem 1.25rem;
    border-radius: 14px;
    box-shadow: 0 8px 32px rgba(0,0,0,.12);
    z-index: 3;
    animation: tsFloatCard 4s ease-in-out infinite;
}
@keyframes tsFloatCard {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}
.ts-hero-v3-float-icon {
    width: 44px; height: 44px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--clr-primary), #a78bfa);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.1rem;
    flex-shrink: 0;
    overflow: hidden;
}
.ts-hero-v3-float-icon img {
    width: 100%; height: 100%;
    object-fit: cover;
    border-radius: 12px;
}
.ts-hero-v3-float-card strong {
    display: block;
    font-size: 0.9rem;
    color: var(--clr-dark);
}
.ts-hero-v3-float-card small {
    display: block;
    font-size: 0.75rem;
    color: var(--clr-text-light);
}

@media (max-width: 991.98px) {
    .ts-hero-v3 { padding: 3rem 0; }
    .ts-hero-v3-content { text-align: center; }
    .ts-hero-v3-buttons { justify-content: center; }
    .ts-hero-v3-features { justify-content: center; }
    .ts-hero-v3-chip { margin-left: auto; margin-right: auto; }
    .ts-hero-v3-visual { margin-top: 2rem; }
    .ts-hero-v3-float-card { left: 50%; transform: translateX(-50%); bottom: -20px; }
    @keyframes tsFloatCard {
        0%, 100% { transform: translateX(-50%) translateY(0); }
        50% { transform: translateX(-50%) translateY(-8px); }
    }
}

/* ═══════════════════════════════════════════════════════════
   HERO BANNER V4 — Cinematic fullscreen + typewriter marquee
   CssClass: hero-v4
   ═══════════════════════════════════════════════════════════ */
.ts-hero-v4 {
    position: relative;
    min-height: 75vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
    background: #1a1a2e;
}
.ts-hero-v4-bg {
    position: absolute; inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease;
    z-index: 0;
}
.ts-hero-v4-bg.active {
    opacity: 0.4;
}
.ts-hero-v4-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(180deg, rgba(26,26,46,.7) 0%, rgba(26,26,46,.5) 50%, rgba(26,26,46,.85) 100%);
}

/* Decorative circles */
.ts-hero-v4-deco { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.ts-hero-v4-deco-circle {
    position: absolute;
    border-radius: 50%;
    background: rgba(255,255,255,.03);
}
.ts-hero-v4-deco-circle--1 { width: 400px; height: 400px; top: -100px; right: 10%; }
.ts-hero-v4-deco-circle--2 { width: 250px; height: 250px; bottom: 20%; left: -60px; }

/* V4 Center content */
.ts-hero-v4-center {
    text-align: center;
    padding: 3rem 0 2rem;
}

.ts-hero-v4-dots-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
    color: rgba(255,255,255,.7);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}
.ts-hero-v4-dot-line {
    display: inline-block;
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,.4), transparent);
}

.ts-hero-v4-title {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 900;
    color: #fff;
    line-height: 1.1;
    margin-bottom: 2rem;
    text-shadow: 0 4px 20px rgba(0,0,0,.3);
}
.ts-hero-v4-highlight {
    color: var(--clr-primary-light, #a78bfa);
}

.ts-hero-v4-buttons {
    margin-bottom: 2rem;
}
.ts-hero-v4-btn-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--clr-primary);
    color: #fff;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    transition: all .3s ease;
    box-shadow: 0 4px 20px rgba(108,60,224,.4);
}
.ts-hero-v4-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(108,60,224,.5);
    color: #fff;
}

/* V4 Indicators */
.ts-hero-v4-indicators {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
}
.ts-hero-v4-dot {
    width: 10px; height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,.25);
    transition: all .3s ease;
    cursor: pointer;
}
.ts-hero-v4-dot.active {
    background: var(--clr-primary);
    box-shadow: 0 0 8px rgba(108,60,224,.5);
}

/* V4 Marquee Bar */
.ts-hero-v4-marquee-bar {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    background: linear-gradient(135deg, #0ea5e9, #2563eb);
    padding: 1rem 0;
    z-index: 4;
}
.ts-hero-v4-marquee-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    padding: 0 1rem;
}
.ts-hero-v4-marquee-left {
    flex: 1;
    min-width: 0;
}
.ts-hero-v4-marquee-static {
    color: #fff;
    font-weight: 700;
    font-size: 0.95rem;
    margin: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.ts-hero-v4-marquee-static small {
    display: block;
    font-weight: 400;
    font-size: 0.8rem;
    opacity: 0.8;
}
.ts-hero-v4-marquee-center {
    flex-shrink: 0;
}
.ts-hero-v4-typewriter {
    font-family: 'Georgia', serif;
    font-size: 1.6rem;
    font-style: italic;
    color: #fff;
    border-right: 2px solid rgba(255,255,255,.7);
    padding-right: 4px;
    animation: tsBlink 0.8s step-end infinite;
    min-width: 120px;
    display: inline-block;
}
@keyframes tsBlink {
    50% { border-color: transparent; }
}
.ts-hero-v4-marquee-right {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    gap: 1rem;
}
.ts-hero-v4-marquee-btn {
    display: inline-block;
    padding: 0.6rem 1.5rem;
    background: #1a1a2e;
    color: #fff;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.85rem;
    text-decoration: none;
    transition: all .3s ease;
    white-space: nowrap;
}
.ts-hero-v4-marquee-btn:hover {
    background: #2d2d4a;
    color: #fff;
}

@media (max-width: 991.98px) {
    .ts-hero-v4 { min-height: 60vh; }
    .ts-hero-v4-marquee-row { flex-direction: column; gap: 0.5rem; text-align: center; }
    .ts-hero-v4-marquee-left { display: none; }
    .ts-hero-v4-typewriter { font-size: 1.2rem; }
}
@media (max-width: 575.98px) {
    .ts-hero-v4-center { padding: 2rem 0 1rem; }
    .ts-hero-v4-title { font-size: 2rem; }
}

/* ===== SweetAlert2 Theme Override (.swal-wsite) ===== */
.swal-wsite {
    border-radius: var(--radius-md) !important;
    font-family: var(--font-body) !important;
    padding: 2.5rem 2rem 2rem !important;
    border: none !important;
    box-shadow: 0 25px 60px rgba(139, 92, 246, 0.18), 0 4px 16px rgba(0,0,0,0.06) !important;
    overflow: visible !important;
}
.swal-wsite .swal2-title {
    font-family: var(--font-heading) !important;
    font-weight: 700 !important;
    font-size: 1.35rem !important;
    color: var(--clr-dark) !important;
    margin-top: 0.5rem !important;
}
.swal-wsite .swal2-html-container {
    font-size: 0.95rem !important;
    color: var(--clr-text) !important;
    line-height: 1.6 !important;
}
/* Icon ring colors */
.swal-wsite .swal2-icon.swal2-success {
    border-color: #10b981 !important;
    color: #10b981 !important;
}
.swal-wsite .swal2-icon.swal2-success .swal2-success-ring {
    border-color: rgba(16, 185, 129, 0.3) !important;
}
.swal-wsite .swal2-icon.swal2-success [class^="swal2-success-line"] {
    background-color: #10b981 !important;
}
.swal-wsite .swal2-icon.swal2-error {
    border-color: #ef4444 !important;
    color: #ef4444 !important;
}
.swal-wsite .swal2-icon.swal2-error .swal2-x-mark-line-left,
.swal-wsite .swal2-icon.swal2-error .swal2-x-mark-line-right {
    background-color: #ef4444 !important;
}
.swal-wsite .swal2-icon.swal2-warning {
    border-color: var(--clr-secondary) !important;
    color: var(--clr-secondary) !important;
}
/* Confirm / action buttons */
.swal-wsite .swal2-confirm {
    background: var(--gradient-primary) !important;
    border: none !important;
    border-radius: var(--radius-sm) !important;
    font-family: var(--font-heading) !important;
    font-weight: 600 !important;
    font-size: 0.95rem !important;
    padding: 0.65rem 2rem !important;
    box-shadow: 0 4px 14px rgba(139, 92, 246, 0.3) !important;
    transition: all 0.3s ease !important;
}
.swal-wsite .swal2-confirm:hover {
    box-shadow: 0 6px 20px rgba(139, 92, 246, 0.45) !important;
    transform: translateY(-1px);
}
.swal-wsite .swal2-cancel {
    border-radius: var(--radius-sm) !important;
    font-family: var(--font-heading) !important;
    font-weight: 600 !important;
    font-size: 0.95rem !important;
    padding: 0.65rem 2rem !important;
}
.swal-wsite .swal2-timer-progress-bar {
    background: var(--gradient-primary) !important;
}
/* Top accent bar */
.swal-wsite::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    border-radius: 0 0 4px 4px;
    background: var(--gradient-primary);
}
.swal-wsite.swal2-icon-success::before { background: linear-gradient(135deg, #10b981, #34d399); }
.swal-wsite.swal2-icon-error::before { background: linear-gradient(135deg, #ef4444, #f87171); }
.swal-wsite.swal2-icon-warning::before { background: linear-gradient(135deg, #f7941d, #fbbf24); }
/* Backdrop */
body.swal2-shown > .swal2-container.swal2-backdrop-show {
    background: rgba(26, 26, 46, 0.4) !important;
    backdrop-filter: blur(4px) !important;
}
