/* ============================================
   TEMIZLIK EXPRESS V2 - Crystal Blue Design
   Complete Rewrite - Polished Edition
   ============================================ */

/* ---------- CSS Variables ---------- */
:root {
    --te-primary: #0284C7;
    --te-primary-dark: #0369A1;
    --te-hero-dark: #0C4A6E;
    --te-hero-mid: #0284C7;
    --te-hero-light: #38BDF8;
    --te-cyan: #06B6D4;
    --te-green: #10B981;
    --te-dark: #0F172A;
    --te-dark-mid: #1E3A5F;
    --te-light-bg: #F0F9FF;
    --te-text-dark: #1E293B;
    --te-text-mid: #64748B;
    --te-white: #FFFFFF;
    --te-radius-lg: 16px;
    --te-radius-xl: 20px;
    --te-radius-full: 9999px;
    --te-shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
    --te-shadow-md: 0 4px 16px rgba(0,0,0,0.1);
    --te-shadow-lg: 0 8px 32px rgba(0,0,0,0.12);
    --te-shadow-xl: 0 16px 48px rgba(0,0,0,0.15);
    --te-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --te-container: 1320px;
    --te-font: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* ---------- Base / Reset ---------- */
.te-v2 {
    background: var(--te-dark) !important;
    font-family: var(--te-font) !important;
}

.te-v2 input,
.te-v2 select,
.te-v2 button,
.te-v2 textarea {
    font-family: var(--te-font) !important;
}

/* Force SVGs to respect container sizing */
.te-v2 svg:not([width]):not([height]) {
    width: 1em;
    height: 1em;
}

.te-container {
    max-width: var(--te-container);
    margin: 0 auto;
    padding: 0 24px;
    width: 100%;
}

/* ---------- TOP ANNOUNCEMENT BANNER ---------- */
.te-top-banner {
    background: linear-gradient(135deg, #0F172A 0%, #0C4A6E 100%);
    position: relative;
    overflow: hidden;
    z-index: 1001;
}

.te-top-banner-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 0;
    gap: 24px;
}

.te-top-banner-content {
    display: flex;
    align-items: center;
    gap: 14px;
    min-width: 0;
}

.te-top-banner-icon {
    width: 42px;
    height: 42px;
    min-width: 42px;
    background: linear-gradient(135deg, var(--te-primary), var(--te-hero-light));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.te-top-banner-icon svg {
    width: 22px !important;
    height: 22px !important;
    color: white;
}

.te-top-banner-text h6 {
    margin: 0;
    font-size: 17px;
    font-weight: 700;
    color: #FFFFFF;
    line-height: 1.3;
}

.te-top-banner-text p {
    margin: 2px 0 0;
    font-size: 14px;
    color: rgba(255,255,255,0.55);
    line-height: 1.3;
}

.te-top-banner-stores {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.te-top-banner-store {
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;
    padding: 8px 18px !important;
    background: #000 !important;
    border: 1.5px solid rgba(255,255,255,0.2) !important;
    border-radius: 10px !important;
    color: #FFF !important;
    text-decoration: none !important;
    transition: var(--te-transition);
    white-space: nowrap !important;
}

.te-top-banner-store:hover {
    background: #222 !important;
    border-color: rgba(255,255,255,0.4) !important;
    color: #FFF !important;
    text-decoration: none !important;
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(0,0,0,0.4);
}

.te-top-banner-store svg {
    width: 24px !important;
    height: 24px !important;
    min-width: 24px !important;
    color: #FFF !important;
    fill: #FFF !important;
    flex-shrink: 0 !important;
}

.te-top-banner-store-text {
    display: flex !important;
    flex-direction: column !important;
    line-height: 1 !important;
    justify-content: flex-start !important;
}

.te-top-banner-store-text small {
    font-size: 9px !important;
    color: rgba(255,255,255,0.7) !important;
    font-weight: 500 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
    line-height: 1 !important;
    margin-bottom: 1px !important;
}

.te-top-banner-store-text strong {
    font-size: 16px !important;
    font-weight: 700 !important;
    color: #FFF !important;
    letter-spacing: -0.3px !important;
    line-height: 1.1 !important;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .te-top-banner-inner {
        flex-wrap: wrap !important;
        padding: 10px 0 8px !important;
        gap: 6px !important;
    }
    .te-top-banner-content {
        width: 100% !important;
        gap: 0 !important;
    }
    .te-top-banner-icon {
        display: none !important;
    }
    .te-top-banner-text {
        text-align: center !important;
        width: 100% !important;
    }
    .te-top-banner-text h6 {
        font-size: 13px !important;
        text-align: center !important;
    }
    .te-top-banner-text p {
        display: block !important;
        font-size: 11px !important;
        text-align: center !important;
        margin-top: 1px !important;
    }
    .te-top-banner-stores {
        display: flex !important;
        gap: 8px !important;
        width: 100% !important;
        justify-content: center !important;
    }
    .te-top-banner-store {
        padding: 6px 10px !important;
        gap: 6px !important;
        border-radius: 8px !important;
    }
    .te-top-banner-store svg {
        width: 16px !important;
        height: 16px !important;
        min-width: 16px !important;
    }
    .te-top-banner-store-text small {
        font-size: 7px !important;
        letter-spacing: 0.3px !important;
    }
    .te-top-banner-store-text strong {
        font-size: 11px !important;
    }
}

/* ---------- NAVBAR ---------- */
.te-navbar {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: #FFFFFF;
    border-bottom: 1px solid #E8EDF2;
    transition: var(--te-transition);
}

.te-navbar.scrolled {
    box-shadow: 0 1px 12px rgba(0,0,0,0.06);
}

.te-navbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 68px;
    gap: 24px;
}

.te-navbar-logo img {
    height: 40px;
    width: auto;
    object-fit: contain;
}

.te-navbar-search {
    flex: 1;
    max-width: 480px;
}

.te-navbar-search form {
    margin: 0;
}

.te-navbar-search .te-search-pill {
    display: flex;
    align-items: center;
    background: #F8FAFC;
    border: 1px solid #E2E8F0;
    border-radius: var(--te-radius-full);
    padding: 0 16px;
    height: 40px;
    transition: var(--te-transition);
}

.te-navbar-search .te-search-pill:focus-within {
    border-color: var(--te-primary);
    box-shadow: 0 0 0 3px rgba(2,132,199,0.08);
    background: #FFFFFF;
}

.te-navbar-search .te-search-pill input {
    border: none;
    background: transparent;
    outline: none;
    flex: 1;
    font-size: 14px;
    color: var(--te-text-dark);
    padding: 0 8px;
}

.te-navbar-search .te-search-pill input::placeholder {
    color: var(--te-text-mid);
}

.te-navbar-search .te-search-pill button {
    background: none;
    border: none;
    color: var(--te-primary);
    cursor: pointer;
    padding: 4px;
    display: flex;
    align-items: center;
}

.te-navbar-actions {
    display: flex;
    align-items: center;
    gap: 8px;
}

.te-nav-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    border-radius: var(--te-radius-full);
    font-size: 14px;
    font-weight: 500;
    color: var(--te-text-dark);
    text-decoration: none;
    transition: var(--te-transition);
    white-space: nowrap;
    border: none;
    background: none;
    cursor: pointer;
}

.te-nav-btn:hover {
    background: var(--te-light-bg);
    color: var(--te-primary);
    text-decoration: none;
}

.te-nav-btn i {
    font-size: 16px;
}

.te-nav-btn img {
    width: 18px;
    height: 18px;
    object-fit: contain;
}

.te-nav-btn--primary {
    background: linear-gradient(135deg, var(--te-primary), var(--te-primary-dark));
    color: var(--te-white);
}

.te-nav-btn--primary:hover {
    background: linear-gradient(135deg, var(--te-primary-dark), var(--te-hero-dark));
    color: var(--te-white);
    box-shadow: var(--te-shadow-md);
    transform: translateY(-1px);
}

/* Language dropdown */
.te-lang-dropdown {
    position: relative;
}

.te-lang-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border: 1px solid #E2E8F0;
    border-radius: 50%;
    font-size: 13px;
    font-weight: 600;
    color: var(--te-text-dark);
    cursor: pointer;
    background: var(--te-white);
    transition: var(--te-transition);
}

.te-lang-toggle:hover {
    border-color: var(--te-primary);
}

.te-lang-dropdown ul {
    display: none;
    position: absolute;
    top: calc(100% + 4px);
    right: 0;
    background: var(--te-white);
    border: 1px solid #E2E8F0;
    border-radius: 12px;
    box-shadow: var(--te-shadow-lg);
    list-style: none;
    padding: 6px;
    margin: 0;
    min-width: 80px;
    z-index: 100;
}

.te-lang-dropdown ul.show {
    display: block;
}

.te-lang-dropdown ul li {
    padding: 8px 12px;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    border-radius: 8px;
    transition: var(--te-transition);
}

.te-lang-dropdown ul li:hover {
    background: var(--te-light-bg);
    color: var(--te-primary);
}

/* Cart badge */
.te-cart-badge {
    background: var(--te-primary);
    color: var(--te-white);
    font-size: 11px;
    font-weight: 700;
    border-radius: var(--te-radius-full);
    min-width: 18px;
    height: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 5px;
}

/* Mobile hamburger */
.te-hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    flex-direction: column;
    gap: 5px;
}

.te-hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--te-text-dark);
    border-radius: 2px;
    transition: var(--te-transition);
}

/* Mobile overlay */
.te-mobile-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.4);
    z-index: 1099;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
    backdrop-filter: blur(2px);
}
.te-mobile-overlay.open {
    opacity: 1;
    visibility: visible;
}

/* Mobile menu drawer */
.te-mobile-menu {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: 320px;
    max-width: 85vw;
    background: #fff;
    z-index: 1100;
    padding: 0;
    overflow-y: auto;
    transform: translateX(100%);
    transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
    box-shadow: -8px 0 32px rgba(0,0,0,0.12);
}
.te-mobile-menu.open {
    transform: translateX(0);
}

/* Menu header */
.te-mm-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 20px;
    border-bottom: 1px solid #f1f5f9;
}
.te-mm-logo {
    height: 32px;
    width: auto;
}
.te-mm-close {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    background: #f1f5f9;
    border-radius: 10px;
    color: #64748b;
    cursor: pointer;
    transition: all 0.2s;
}
.te-mm-close:hover {
    background: #e2e8f0;
    color: #0f172a;
}

/* Search */
.te-mm-search {
    margin: 16px 20px;
    display: flex;
    align-items: center;
    gap: 8px;
    background: #f8fafc;
    border: 1.5px solid #e2e8f0;
    border-radius: 12px;
    padding: 0 14px;
    height: 44px;
    transition: border-color 0.2s;
}
.te-mm-search:focus-within {
    border-color: var(--te-primary);
}
.te-mm-search input {
    border: none;
    background: transparent;
    outline: none;
    flex: 1;
    font-size: 14px;
    color: #0f172a;
}
.te-mm-search input::placeholder {
    color: #94a3b8;
}

/* User card */
.te-mm-user-card {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 8px 20px 16px;
    padding: 14px 16px;
    background: linear-gradient(135deg, #f0f4ff, #e8f0fe);
    border-radius: 14px;
    text-decoration: none;
    transition: all 0.2s;
}
.te-mm-user-card:hover {
    background: linear-gradient(135deg, #e0ecff, #dbeafe);
    text-decoration: none;
}
.te-mm-user-avatar {
    width: 42px;
    height: 42px;
    background: linear-gradient(135deg, var(--te-primary), var(--te-primary-dark));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.te-mm-user-info {
    flex: 1;
    min-width: 0;
}
.te-mm-user-name {
    display: block;
    font-size: 0.92rem;
    font-weight: 700;
    color: #0f172a;
}
.te-mm-user-sub {
    display: block;
    font-size: 0.75rem;
    color: #64748b;
    margin-top: 1px;
}

/* Login button (not logged in) */
.te-mm-login-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin: 8px 20px 16px;
    padding: 14px;
    background: linear-gradient(135deg, var(--te-primary), var(--te-primary-dark));
    color: #fff !important;
    border-radius: 14px;
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.25s;
}
.te-mm-login-btn:hover {
    box-shadow: 0 4px 16px rgba(2,132,199,0.3);
    transform: translateY(-1px);
    text-decoration: none;
    color: #fff;
}

/* Navigation items */
.te-mm-nav {
    padding: 4px 20px 16px;
}
.te-mm-nav-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 13px 0;
    border-bottom: 1px solid #f1f5f9;
    color: #334155;
    font-size: 0.95rem;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.2s;
}
.te-mm-nav-item:hover {
    color: var(--te-primary);
    text-decoration: none;
}
.te-mm-nav-item:last-child {
    border-bottom: none;
}
.te-mm-nav-icon {
    width: 36px;
    height: 36px;
    background: #f1f5f9;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #64748b;
    transition: all 0.2s;
}
.te-mm-nav-item:hover .te-mm-nav-icon {
    background: #e0ecff;
    color: var(--te-primary);
}
.te-mm-badge {
    margin-left: auto;
    background: var(--te-primary);
    color: #fff;
    font-size: 0.72rem;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 20px;
}

.te-mm-nav-title {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #94a3b8;
    padding: 16px 0 4px;
    margin-top: 4px;
    border-top: 1px solid #e2e8f0;
}

/* Partner section */
.te-mm-partner {
    padding: 16px 20px;
    border-top: 1px solid #f1f5f9;
    margin-top: auto;
}
.te-mm-partner-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px;
    background: #f8fafc;
    border: 1.5px solid #e2e8f0;
    border-radius: 12px;
    color: #334155;
    font-size: 0.88rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s;
}
.te-mm-partner-btn:hover {
    border-color: var(--te-primary);
    color: var(--te-primary);
    background: #f0f4ff;
    text-decoration: none;
}

/* ---------- HERO ---------- */
.te-hero {
    position: relative;
    overflow: hidden;
    min-height: 580px;
    display: flex;
    align-items: center;
}

/* Background image layer - slight blur */
.te-hero::before {
    content: '';
    position: absolute;
    inset: -8px;
    background: url('../ferisoft/images/anasayfa/banners/temizlikbanner.png') center/cover no-repeat;
    filter: blur(2px);
    z-index: 0;
}

/* Blue gradient overlay on top of image */
.te-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(12,74,110,0.7) 0%, rgba(2,132,199,0.65) 50%, rgba(56,189,248,0.6) 100%);
    z-index: 1;
}

.te-hero-inner {
    display: flex;
    align-items: center;
    gap: 60px;
    position: relative;
    z-index: 2;
    padding: 80px 0;
}

.te-hero-content {
    flex: 1;
    min-width: 0;
}

.te-hero-title {
    font-size: 3rem;
    font-weight: 800;
    color: var(--te-white);
    line-height: 1.15;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.te-hero-subtitle {
    font-size: 1.15rem;
    color: rgba(255,255,255,0.85);
    line-height: 1.7;
    margin-bottom: 36px;
    max-width: 540px;
}

/* Hero search */
.te-hero-search {
    background: var(--te-white);
    border-radius: var(--te-radius-xl);
    padding: 8px;
    box-shadow: var(--te-shadow-xl), 0 0 0 1px rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    gap: 8px;
    max-width: 580px;
}

.te-hero-search input[type="text"] {
    flex: 1;
    border: none;
    outline: none;
    padding: 14px 16px;
    font-size: 15px;
    color: var(--te-text-dark);
    background: transparent;
    min-width: 0;
}

.te-hero-search input::placeholder {
    color: var(--te-text-mid);
}

/* Location button - BIG and visible */
.te-location-btn {
    background: var(--te-light-bg) !important;
    border: 2px solid #E2E8F0 !important;
    cursor: pointer;
    padding: 0 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    transition: var(--te-transition);
    border-radius: 12px !important;
    min-width: 40px !important;
    width: 40px !important;
    height: 40px !important;
    flex-shrink: 0;
}

.te-location-btn:hover {
    background: #DBEAFE !important;
    border-color: var(--te-primary) !important;
    transform: scale(1.05);
}

.te-location-btn:active {
    transform: scale(0.95);
}

.te-location-btn svg {
    flex-shrink: 0;
    transition: var(--te-transition);
}

.te-location-btn:hover svg {
    stroke: var(--te-primary-dark);
}

/* Override old location icon styles */
.te-hero-search .main-search-icon-styles {
    margin: 0 !important;
    cursor: pointer;
}

.te-hero-search .te-search-submit {
    background: linear-gradient(135deg, var(--te-primary), var(--te-primary-dark));
    color: var(--te-white);
    border: none;
    border-radius: 14px;
    padding: 14px 28px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: var(--te-transition);
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 8px;
}

.te-hero-search .te-search-submit:hover {
    background: linear-gradient(135deg, var(--te-primary-dark), var(--te-hero-dark));
    box-shadow: var(--te-shadow-md);
    transform: translateY(-1px);
}

.te-hero-visual {
    flex: 0 0 320px;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Mobile hero search */
.te-hero-search-mobile {
    display: none;
}

/* ---------- iPhone Frame Mockup - Realistic ---------- */
.te-iphone-frame {
    width: 280px;
    height: 570px;
    background: #1C1C1E;
    border-radius: 50px;
    padding: 10px;
    position: relative;
    box-shadow:
        0 0 0 1px #3A3A3C,
        0 0 0 3px #1C1C1E,
        0 0 0 4px #3A3A3C,
        0 20px 60px rgba(0,0,0,0.4),
        0 40px 80px rgba(0,0,0,0.2);
}

.te-iphone-frame--dark {
    background: #000000;
    box-shadow:
        0 0 0 1px #2C2C2E,
        0 0 0 3px #000000,
        0 0 0 4px #2C2C2E,
        0 20px 60px rgba(0,0,0,0.5),
        0 40px 80px rgba(0,0,0,0.3);
}

/* Dynamic Island */
.te-iphone-notch {
    position: absolute;
    top: 18px;
    left: 50%;
    transform: translateX(-50%);
    width: 90px;
    height: 26px;
    background: #000000;
    border-radius: 20px;
    z-index: 3;
    box-shadow: 0 0 0 1px rgba(255,255,255,0.05);
}

.te-iphone-notch::before {
    content: '';
    position: absolute;
    right: 18px;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #1C1C1E;
    box-shadow: inset 0 0 2px rgba(255,255,255,0.1);
}

.te-iphone-frame--dark .te-iphone-notch {
    background: #000000;
}

/* Side buttons */
.te-iphone-frame::before {
    content: '';
    position: absolute;
    left: -3px;
    top: 120px;
    width: 3px;
    height: 28px;
    background: #3A3A3C;
    border-radius: 2px 0 0 2px;
    box-shadow: 0 44px 0 0 #3A3A3C, 0 -36px 0 0 #3A3A3C;
}

.te-iphone-frame::after {
    content: '';
    position: absolute;
    right: -3px;
    top: 140px;
    width: 3px;
    height: 50px;
    background: #3A3A3C;
    border-radius: 0 2px 2px 0;
}

.te-iphone-screen {
    width: 100%;
    height: 100%;
    border-radius: 42px;
    overflow: hidden;
    background: #f5f5f5;
    position: relative;
}

.te-iphone-screen img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
}

/* Home indicator bar */
.te-iphone-screen::after {
    content: '';
    position: absolute;
    bottom: 6px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 4px;
    background: rgba(0,0,0,0.2);
    border-radius: 4px;
    z-index: 4;
}

/* ---------- STATS CARD (Inside Hero, Animated BG) ---------- */
.te-hero-stats-card {
    position: relative;
    z-index: 2;
    margin-top: 36px;
    padding: 24px 32px;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255,255,255,0.18);
    border-radius: 20px;
    overflow: hidden;
    max-width: 580px;
}

/* Animated floating blobs inside stats card */
.te-stats-blob {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}

.te-stats-blob--1 {
    width: 120px;
    height: 120px;
    background: radial-gradient(circle, rgba(56,189,248,0.35), transparent 70%);
    top: -30px;
    left: -20px;
    animation: te-float 6s ease-in-out infinite;
}

.te-stats-blob--2 {
    width: 90px;
    height: 90px;
    background: radial-gradient(circle, rgba(6,182,212,0.3), transparent 70%);
    bottom: -25px;
    right: 10%;
    animation: te-float 5s ease-in-out infinite reverse;
}

.te-stats-blob--3 {
    width: 70px;
    height: 70px;
    background: radial-gradient(circle, rgba(255,255,255,0.25), transparent 70%);
    top: -10px;
    right: 20%;
    animation: te-pulse-glow 4s ease-in-out infinite;
}

@keyframes te-float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-14px) rotate(3deg); }
}

@keyframes te-pulse-glow {
    0%, 100% { transform: scale(1); opacity: 0.6; }
    50% { transform: scale(1.3); opacity: 1; }
}

.te-stats-grid {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0;
    position: relative;
    z-index: 1;
}

.te-stat-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 4px 0;
    flex: 1;
    justify-content: center;
    transition: transform 0.3s ease;
}

.te-stat-item:hover {
    transform: translateY(-2px);
}

.te-stat-icon-wrap {
    width: 40px;
    height: 40px;
    min-width: 40px;
    border-radius: 12px;
    background: rgba(255,255,255,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.9);
    border: 1px solid rgba(255,255,255,0.2);
    transition: all 0.3s ease;
}

.te-stat-item:hover .te-stat-icon-wrap {
    background: rgba(255,255,255,0.25);
    border-color: rgba(255,255,255,0.4);
}

.te-stat-content {
    display: flex;
    flex-direction: column;
}

.te-stat-number {
    font-size: 1.5rem;
    font-weight: 800;
    color: #FFFFFF;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.te-stat-label {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.7);
    font-weight: 500;
    margin-top: 2px;
}

.te-stat-divider {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, transparent, rgba(255,255,255,0.3), transparent);
    flex-shrink: 0;
}

/* ---------- VALUE PROPS ---------- */
.te-value-props {
    padding: 72px 0;
    background: var(--te-white);
}

.te-value-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.te-value-card {
    background: var(--te-white);
    border: 1px solid #E2E8F0;
    border-radius: var(--te-radius-xl);
    padding: 36px 30px;
    transition: var(--te-transition);
    position: relative;
    overflow: hidden;
}

.te-value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--te-primary), var(--te-cyan));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.te-value-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--te-shadow-lg);
    border-color: transparent;
}

.te-value-card:hover::before {
    transform: scaleX(1);
}

.te-value-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    max-width: 44px;
    border-radius: 12px;
    background: var(--te-light-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    overflow: hidden;
}

.te-value-icon svg {
    width: 22px !important;
    height: 22px !important;
    max-width: 22px !important;
    max-height: 22px !important;
    flex-shrink: 0;
}

.te-value-card img {
    width: 48px;
    height: 48px;
    object-fit: contain;
    margin-bottom: 20px;
}

.te-value-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--te-text-dark);
    margin-bottom: 10px;
}

.te-value-card p {
    font-size: 0.95rem;
    color: var(--te-text-mid);
    line-height: 1.6;
    margin: 0;
}

/* ---------- SERVICES SECTION ---------- */
.te-services {
    padding: 80px 0;
    background: var(--te-light-bg);
}

.te-section-header {
    text-align: center;
    margin-bottom: 48px;
}

.te-section-title {
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--te-text-dark);
    margin-bottom: 12px;
    letter-spacing: -0.02em;
}

.te-section-subtitle {
    font-size: 1.05rem;
    color: var(--te-text-mid);
    max-width: 520px;
    margin: 0 auto;
    line-height: 1.6;
}

.te-services-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px;
}

.te-service-card {
    position: relative;
    border-radius: var(--te-radius-lg);
    overflow: hidden;
    aspect-ratio: 4/3;
    cursor: pointer;
    display: block;
    text-decoration: none;
    flex: 0 1 calc(20% - 20px);
    min-width: 180px;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.4s ease;
    z-index: 1;
}

.te-service-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.te-service-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 55%;
    background: linear-gradient(to top, rgba(0,0,0,0.65) 0%, transparent 100%);
    transition: var(--te-transition);
    pointer-events: none;
}

.te-service-card:hover {
    transform: scale(1.06);
    box-shadow: 0 12px 36px rgba(0,0,0,0.2);
    z-index: 2;
    text-decoration: none;
}

.te-service-card:hover img {
    transform: scale(1.05);
}

.te-service-card:hover::after {
    height: 60%;
    background: linear-gradient(to top, rgba(0,0,0,0.72) 0%, transparent 100%);
}

.te-service-card-name {
    position: absolute;
    bottom: 14px;
    left: 14px;
    right: 14px;
    z-index: 1;
    color: var(--te-white);
    font-size: 0.9rem;
    font-weight: 700;
    text-shadow: 0 1px 4px rgba(0,0,0,0.4);
    text-decoration: none;
    transition: transform 0.3s ease;
}

.te-service-card:hover .te-service-card-name {
    transform: translateY(-3px);
}

/* Featured card placeholder - actual mobile styles below in main mobile block */

/* ---------- PARTNER CTA ---------- */
.te-partner {
    padding: 80px 0;
    background: linear-gradient(180deg, var(--te-white) 0%, var(--te-light-bg) 100%);
}

.te-partner-content .te-partner-lead {
    font-size: 1.1rem;
    color: var(--te-text-mid);
    line-height: 1.6;
    margin-bottom: 28px;
    font-weight: 500;
}

.te-partner-content h2 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--te-text-dark);
    margin-bottom: 12px;
    letter-spacing: -0.02em;
}

.te-partner-paths {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.te-partner-path {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 20px;
    border-radius: 14px;
    text-decoration: none !important;
    transition: var(--te-transition);
    border: 1px solid #E2E8F0;
    background: var(--te-white);
}

.te-partner-path:hover {
    transform: translateX(6px);
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}

.te-partner-path-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.te-partner-path--firma .te-partner-path-icon {
    background: linear-gradient(135deg, rgba(2,132,199,0.1), rgba(56,189,248,0.15));
    color: var(--te-primary);
}

.te-partner-path--bireysel .te-partner-path-icon {
    background: linear-gradient(135deg, rgba(16,185,129,0.1), rgba(52,211,153,0.15));
    color: #10b981;
}

.te-partner-path--firma:hover {
    border-color: var(--te-primary);
    background: linear-gradient(135deg, rgba(2,132,199,0.03), rgba(56,189,248,0.05));
}

.te-partner-path--bireysel:hover {
    border-color: #10b981;
    background: linear-gradient(135deg, rgba(16,185,129,0.03), rgba(52,211,153,0.05));
}

.te-partner-path-text {
    flex: 1;
    min-width: 0;
}

.te-partner-path-text strong {
    display: block;
    font-size: 1rem;
    font-weight: 700;
    color: var(--te-text-dark);
    margin-bottom: 2px;
}

.te-partner-path-text span {
    font-size: 0.85rem;
    color: var(--te-text-mid);
}

.te-partner-path-arrow {
    flex-shrink: 0;
    color: #cbd5e1;
    transition: var(--te-transition);
}

.te-partner-path--firma:hover .te-partner-path-arrow {
    color: var(--te-primary);
    transform: translateX(4px);
}

.te-partner-path--bireysel:hover .te-partner-path-arrow {
    color: #10b981;
    transform: translateX(4px);
}

.te-partner-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    background: linear-gradient(135deg, rgba(2,132,199,0.1), rgba(6,182,212,0.1));
    border-radius: var(--te-radius-full);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--te-primary);
    margin-bottom: 20px;
}

.te-partner-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    max-width: 900px;
    margin: 0 auto;
}

.te-partner-card {
    background: var(--te-white);
    border-radius: 20px;
    padding: 40px 36px;
    border: 1px solid #E2E8F0;
    box-shadow: var(--te-shadow-sm);
    transition: var(--te-transition);
    position: relative;
    overflow: hidden;
}

.te-partner-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

.te-partner-card--firma::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--te-primary), #38bdf8);
}

.te-partner-card--bireysel {
    border-color: #10b981;
}

.te-partner-card--bireysel::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #10b981, #34d399);
}

.te-partner-card-popular {
    position: absolute;
    top: 16px;
    right: -32px;
    background: linear-gradient(135deg, #10b981, #059669);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    padding: 4px 40px;
    transform: rotate(45deg);
    letter-spacing: 0.5px;
    text-transform: uppercase;
    box-shadow: 0 2px 8px rgba(16,185,129,0.3);
}

.te-partner-card-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.te-partner-card--firma .te-partner-card-icon {
    background: linear-gradient(135deg, rgba(2,132,199,0.1), rgba(56,189,248,0.1));
    color: var(--te-primary);
}

.te-partner-card--bireysel .te-partner-card-icon {
    background: linear-gradient(135deg, rgba(16,185,129,0.1), rgba(52,211,153,0.1));
    color: #10b981;
}

.te-partner-card h3 {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--te-text-dark);
    margin-bottom: 8px;
}

.te-partner-card-desc {
    font-size: 0.95rem;
    color: var(--te-text-mid);
    line-height: 1.6;
    margin-bottom: 20px;
}

.te-partner-card-list {
    list-style: none;
    padding: 0;
    margin: 0 0 28px 0;
}

.te-partner-card-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    font-size: 0.9rem;
    color: var(--te-text-dark);
    font-weight: 500;
}

.te-partner-card--firma .te-partner-card-list li svg {
    color: var(--te-primary);
    flex-shrink: 0;
}

.te-partner-card--bireysel .te-partner-card-list li svg {
    color: #10b981;
    flex-shrink: 0;
}

.te-partner-card-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 14px 24px;
    border-radius: var(--te-radius-full);
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none !important;
    transition: var(--te-transition);
    border: none;
    cursor: pointer;
}

.te-partner-card-btn--firma {
    background: linear-gradient(135deg, var(--te-primary), var(--te-primary-dark));
    color: var(--te-white) !important;
}

.te-partner-card-btn--firma:hover {
    box-shadow: 0 8px 24px rgba(2,132,199,0.35);
    transform: translateY(-2px);
}

.te-partner-card-btn--bireysel {
    background: linear-gradient(135deg, #10b981, #059669);
    color: var(--te-white) !important;
}

.te-partner-card-btn--bireysel:hover {
    box-shadow: 0 8px 24px rgba(16,185,129,0.35);
    transform: translateY(-2px);
}

/* Legacy - keep for other usages */
.te-partner-inner {
    display: flex;
    align-items: center;
    gap: 60px;
    background: linear-gradient(135deg, var(--te-light-bg) 0%, #FFFFFF 100%);
    border-radius: 28px;
    padding: 64px;
    box-shadow: var(--te-shadow-sm);
    overflow: hidden;
    position: relative;
    border: 1px solid #E2E8F0;
}

.te-partner-content {
    flex: 1;
    min-width: 0;
}

.te-partner-visual {
    flex: 0 0 480px;
    align-self: stretch;
    border-radius: var(--te-radius-xl);
    overflow: hidden;
}

.te-partner-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--te-radius-xl);
}

.te-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: var(--te-radius-full);
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
    transition: var(--te-transition);
    border: none;
    cursor: pointer;
}

.te-btn--primary {
    background: linear-gradient(135deg, var(--te-primary), var(--te-primary-dark));
    color: var(--te-white);
}

.te-btn--primary:hover {
    background: linear-gradient(135deg, var(--te-primary-dark), var(--te-hero-dark));
    box-shadow: 0 8px 24px rgba(2,132,199,0.35);
    transform: translateY(-2px);
    color: var(--te-white);
    text-decoration: none;
}

.te-btn--outline {
    background: transparent;
    border: 2px solid rgba(255,255,255,0.3);
    color: var(--te-white);
}

.te-btn--outline:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.6);
    color: var(--te-white);
    text-decoration: none;
}

.te-btn--secondary {
    background: var(--te-white);
    color: var(--te-primary);
    border: 2px solid var(--te-primary);
}

.te-btn--secondary:hover {
    background: var(--te-primary);
    color: var(--te-white);
    box-shadow: 0 8px 24px rgba(2,132,199,0.25);
    transform: translateY(-2px);
    text-decoration: none;
}

.te-partner-buttons {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

/* ---------- APP DOWNLOAD ---------- */
.te-app-download {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--te-dark) 0%, var(--te-dark-mid) 100%);
    position: relative;
    overflow: hidden;
}

.te-app-download::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(2,132,199,0.12) 0%, transparent 70%);
    border-radius: 50%;
}

.te-app-inner {
    display: flex;
    align-items: center;
    gap: 80px;
    position: relative;
    z-index: 1;
}

.te-app-content {
    flex: 1;
    min-width: 0;
}

.te-app-content h2 {
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--te-white);
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.te-app-content > p {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.7);
    line-height: 1.7;
    margin-bottom: 44px;
}

.te-app-steps {
    display: flex;
    gap: 36px;
    margin-bottom: 52px;
}

.te-app-step {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.te-app-step-num {
    width: 44px;
    height: 44px;
    min-width: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--te-primary), var(--te-cyan));
    color: var(--te-white);
    font-weight: 800;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(2,132,199,0.3);
}

.te-app-step-text h4 {
    color: var(--te-white);
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.te-app-step-text p {
    color: rgba(255,255,255,0.6);
    font-size: 0.875rem;
    margin: 0;
    line-height: 1.5;
}

.te-app-stores {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.te-store-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 22px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: var(--te-radius-lg);
    color: var(--te-white);
    text-decoration: none;
    transition: var(--te-transition);
    backdrop-filter: blur(10px);
}

.te-store-link:hover {
    background: rgba(255,255,255,0.14);
    border-color: rgba(255,255,255,0.3);
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.2);
    color: var(--te-white);
    text-decoration: none;
}

.te-store-link img {
    width: 28px;
    height: 28px;
    object-fit: contain;
}

.te-store-link span {
    font-size: 0.9rem;
    font-weight: 600;
}

.te-app-visual {
    flex: 0 0 300px;
    display: flex;
    justify-content: center;
}

/* ---------- WHY CHOOSE US ---------- */
.te-why-us {
    padding: 80px 0;
    background: var(--te-white);
}

.te-why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.te-why-card {
    background: var(--te-white);
    border: 1px solid #E2E8F0;
    border-radius: var(--te-radius-lg);
    padding: 28px 22px;
    text-align: center;
    transition: var(--te-transition);
    position: relative;
}

.te-why-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--te-shadow-lg);
    border-color: transparent;
}

.te-why-card::after {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: var(--te-radius-xl);
    padding: 1px;
    background: linear-gradient(135deg, var(--te-primary), var(--te-cyan));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: var(--te-transition);
}

.te-why-card:hover::after {
    opacity: 1;
}

.te-why-icon {
    width: 42px;
    height: 42px;
    min-width: 42px;
    max-width: 42px;
    border-radius: 11px;
    background: var(--te-light-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 14px;
    overflow: hidden;
}

.te-why-icon svg {
    width: 22px !important;
    height: 22px !important;
    max-width: 22px !important;
    max-height: 22px !important;
    flex-shrink: 0;
}

.te-why-card img {
    width: 52px;
    height: 52px;
    object-fit: contain;
    margin-bottom: 18px;
}

.te-why-card h3 {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--te-text-dark);
    margin-bottom: 8px;
}

.te-why-card p {
    font-size: 0.82rem;
    color: var(--te-text-mid);
    line-height: 1.55;
    margin: 0;
}

/* ---------- CITIES ---------- */
.te-cities {
    padding: 80px 0;
    background: var(--te-light-bg);
}

.te-cities-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.te-city-card {
    position: relative;
    border-radius: var(--te-radius-xl);
    overflow: hidden;
    aspect-ratio: 3/4;
    cursor: pointer;
    display: block;
    text-decoration: none;
}

.te-city-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.te-city-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60%;
    background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 100%);
}

.te-city-card:hover img {
    transform: scale(1.08);
}

.te-city-card:hover {
    box-shadow: var(--te-shadow-xl);
    text-decoration: none;
}

.te-city-card-name {
    position: absolute;
    bottom: 20px;
    left: 0;
    right: 0;
    text-align: center;
    z-index: 1;
    color: var(--te-white);
    font-size: 1.15rem;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0,0,0,0.4);
}

/* All cities toggle */
.te-all-cities-toggle {
    text-align: center;
    margin-bottom: 24px;
}

.te-all-cities-toggle button {
    background: var(--te-white);
    border: 2px solid #E2E8F0;
    border-radius: var(--te-radius-full);
    padding: 14px 32px;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--te-primary);
    cursor: pointer;
    transition: var(--te-transition);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.te-all-cities-toggle button:hover {
    background: var(--te-primary);
    color: var(--te-white);
    border-color: var(--te-primary);
    box-shadow: 0 4px 16px rgba(2,132,199,0.3);
}

.te-all-cities-list {
    display: none;
    padding: 36px;
    background: var(--te-white);
    border-radius: var(--te-radius-xl);
    box-shadow: var(--te-shadow-md);
    border: 1px solid #E2E8F0;
}

.te-all-cities-list.open {
    display: block;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-8px); }
    to { opacity: 1; transform: translateY(0); }
}

.te-all-cities-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 8px;
}

.te-all-cities-grid a {
    display: block;
    padding: 10px 14px;
    border-radius: var(--te-radius-full);
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--te-text-dark);
    text-decoration: none;
    text-align: center;
    transition: var(--te-transition);
    border: 1px solid transparent;
}

.te-all-cities-grid a:hover {
    background: var(--te-light-bg);
    color: var(--te-primary);
    border-color: #E2E8F0;
    text-decoration: none;
}

/* ---------- FOOTER ---------- */
.te-footer {
    background: linear-gradient(170deg, #0c1929 0%, #0f172a 40%, #0a1628 100%);
    position: relative;
    overflow: hidden;
}

/* Animated gradient top line */
.te-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--te-primary), var(--te-cyan), var(--te-green), var(--te-primary));
    background-size: 300% 100%;
    animation: te-gradient-slide 6s linear infinite;
}

/* Decorative glow orbs */
.te-footer::after {
    content: '';
    position: absolute;
    top: -120px;
    right: -80px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(59,130,246,0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.te-footer-main::before {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -60px;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(6,182,212,0.06) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

@keyframes te-gradient-slide {
    0% { background-position: 0% 50%; }
    100% { background-position: 300% 50%; }
}

/* Scroll fade-in */
.te-footer-col {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.te-footer-col:nth-child(2) { transition-delay: 0.12s; }
.te-footer-col:nth-child(3) { transition-delay: 0.24s; }
.te-footer-col:nth-child(4) { transition-delay: 0.36s; }
.te-footer.te-visible .te-footer-col {
    opacity: 1;
    transform: translateY(0);
}

.te-footer-main {
    padding: 72px 0 52px;
    position: relative;
}

.te-footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 48px;
}

/* Column headings with gradient underline */
.te-footer-col h4 {
    color: var(--te-white);
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 28px;
    padding-bottom: 14px;
    position: relative;
    letter-spacing: 0.01em;
}

.te-footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 36px;
    height: 2.5px;
    background: linear-gradient(90deg, var(--te-primary), var(--te-cyan));
    border-radius: 2px;
}

.te-footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.te-footer-col ul li {
    margin-bottom: 6px;
}

.te-footer-col ul li a {
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    font-size: 0.92rem;
    transition: all 0.25s ease;
    display: flex;
    align-items: center;
    gap: 0;
    padding: 7px 0;
    border-radius: 6px;
}

.te-footer-col ul li a::before {
    content: '';
    display: inline-block;
    width: 0;
    height: 2px;
    background: var(--te-cyan);
    border-radius: 2px;
    transition: all 0.25s ease;
    margin-right: 0;
}

.te-footer-col ul li a:hover {
    color: var(--te-white);
    padding-left: 0;
}

.te-footer-col ul li a:hover::before {
    width: 14px;
    margin-right: 10px;
}

/* Partner cards in footer */
.te-footer-partner-cards {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.te-footer-partner-card {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 13px 15px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(8px);
}

.te-footer-partner-card:hover {
    background: rgba(59,130,246,0.08);
    border-color: rgba(59,130,246,0.3);
    transform: translateY(-3px);
    text-decoration: none;
    box-shadow: 0 8px 30px rgba(59,130,246,0.12), 0 0 0 1px rgba(59,130,246,0.06);
}

.te-footer-partner-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--te-primary), var(--te-cyan));
    border-radius: 11px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #fff;
    box-shadow: 0 4px 12px rgba(59,130,246,0.25);
    transition: all 0.3s ease;
}

.te-footer-partner-card:hover .te-footer-partner-icon {
    box-shadow: 0 4px 20px rgba(59,130,246,0.35);
    transform: scale(1.05);
}

.te-footer-partner-text {
    flex: 1;
    min-width: 0;
}

.te-footer-partner-title {
    display: block;
    color: #fff;
    font-weight: 600;
    font-size: 0.9rem;
    line-height: 1.2;
}

.te-footer-partner-desc {
    display: block;
    color: rgba(255,255,255,0.45);
    font-size: 0.78rem;
    margin-top: 2px;
}

.te-footer-partner-arrow {
    color: rgba(255,255,255,0.2);
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.te-footer-partner-card:hover .te-footer-partner-arrow {
    color: var(--te-cyan);
    transform: translateX(3px);
}

/* Store badges */
.te-footer-badges {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 8px;
}

.te-store-badge {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 11px 18px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 14px;
    color: var(--te-white);
    text-decoration: none;
    transition: all 0.3s ease;
    width: fit-content;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(8px);
}

.te-store-badge::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -75%;
    width: 50%;
    height: 200%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.12), transparent);
    transform: skewX(-20deg);
    transition: left 0.5s ease;
}

.te-store-badge:hover::after {
    left: 125%;
}

.te-store-badge:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.25);
    transform: translateY(-2px);
    color: var(--te-white);
    text-decoration: none;
    box-shadow: 0 6px 20px rgba(0,0,0,0.2);
}

.te-store-badge svg {
    flex-shrink: 0;
    opacity: 0.85;
}

.te-store-badge small {
    display: block;
    font-size: 0.62rem;
    opacity: 0.6;
    line-height: 1;
    font-weight: 400;
    letter-spacing: 0.02em;
}

.te-store-badge strong {
    display: block;
    font-size: 0.95rem;
    font-weight: 700;
    line-height: 1.2;
}

/* Bottom bar — glassmorphism */
.te-footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 22px 0;
    background: rgba(0,0,0,0.15);
    backdrop-filter: blur(10px);
}

.te-footer-bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.te-copyright {
    color: rgba(255,255,255,0.45);
    font-size: 0.85rem;
    letter-spacing: 0.01em;
}

/* Kill any white gap below footer */
.te-v2 footer.te-footer {
    margin-bottom: 0 !important;
}
.te-v2 footer.te-footer + * {
    margin-top: 0;
}

/* Social links — circle buttons */
.te-social-links {
    display: flex;
    gap: 8px;
}

.te-social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    background: rgba(255,255,255,0.06) !important;
    border: 1px solid rgba(255,255,255,0.1) !important;
    border-radius: 50% !important;
    box-shadow: none !important;
    transition: all 0.3s ease;
}

.te-social-links a:hover {
    opacity: 1;
    transform: translateY(-3px);
    border-color: rgba(255,255,255,0.25) !important;
}

/* Platform-specific hover colors */
.te-social-links a:nth-child(1):hover { background: rgba(0,0,0,0.4) !important; border-color: rgba(255,255,255,0.3) !important; } /* TikTok */
.te-social-links a:nth-child(2):hover { background: rgba(24,119,242,0.2) !important; border-color: rgba(24,119,242,0.4) !important; } /* Facebook */
.te-social-links a:nth-child(3):hover { background: rgba(225,48,108,0.2) !important; border-color: rgba(225,48,108,0.4) !important; } /* Instagram */
.te-social-links a:nth-child(4):hover { background: rgba(29,161,242,0.2) !important; border-color: rgba(29,161,242,0.4) !important; } /* Twitter */
.te-social-links a:nth-child(5):hover { background: rgba(255,0,0,0.15) !important; border-color: rgba(255,0,0,0.35) !important; } /* YouTube */
.te-social-links a:nth-child(6):hover { background: rgba(0,119,181,0.2) !important; border-color: rgba(0,119,181,0.4) !important; } /* LinkedIn */

.te-social-links a img {
    width: 15px;
    height: 15px;
    filter: brightness(0) invert(1);
    opacity: 0.65;
    transition: all 0.3s ease;
}

.te-social-links a:hover img {
    opacity: 1;
    transform: scale(1.1);
}

/* Footer language */
.te-footer-lang {
    display: flex;
    align-items: center;
    gap: 16px;
}

.te-footer .te-lang-toggle {
    background: rgba(255,255,255,0.08) !important;
    border-color: rgba(255,255,255,0.15) !important;
    color: rgba(255,255,255,0.7) !important;
}

.te-footer .te-lang-toggle:hover {
    border-color: rgba(255,255,255,0.3) !important;
    color: var(--te-white) !important;
}

.te-footer .te-lang-dropdown ul {
    background: var(--te-dark) !important;
    border-color: rgba(255,255,255,0.15) !important;
}

.te-footer .te-lang-dropdown ul li {
    color: rgba(255,255,255,0.7) !important;
}

.te-footer .te-lang-dropdown ul li:hover {
    background: rgba(255,255,255,0.1) !important;
    color: var(--te-white) !important;
}

/* ---------- WhatsApp Floating Button - Modern ---------- */
.te-whatsapp-float {
    position: fixed;
    left: 25px;
    bottom: 25px;
    z-index: 9999999;
    display: block;
}

.te-whatsapp-float a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #25D366;
    box-shadow: 0 4px 16px rgba(37,211,102,0.4), 0 0 0 0 rgba(37,211,102,0.4);
    transition: var(--te-transition);
    text-decoration: none;
    animation: whatsapp-pulse 2s infinite;
}

.te-whatsapp-float a:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 24px rgba(37,211,102,0.5);
    animation: none;
}

.te-whatsapp-float a:active {
    transform: scale(0.95);
}

.te-whatsapp-float svg {
    width: 30px !important;
    height: 30px !important;
    max-width: 30px !important;
    max-height: 30px !important;
    fill: #FFFFFF;
}

.te-whatsapp-float a {
    overflow: hidden;
}

@keyframes whatsapp-pulse {
    0% { box-shadow: 0 4px 16px rgba(37,211,102,0.4), 0 0 0 0 rgba(37,211,102,0.4); }
    70% { box-shadow: 0 4px 16px rgba(37,211,102,0.4), 0 0 0 12px rgba(37,211,102,0); }
    100% { box-shadow: 0 4px 16px rgba(37,211,102,0.4), 0 0 0 0 rgba(37,211,102,0); }
}

/* ---------- Back to top ---------- */
.te-v2 .back-to-top {
    border-radius: 50% !important;
    width: 48px !important;
    height: 48px !important;
    background: var(--te-primary) !important;
    color: var(--te-white) !important;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--te-shadow-md);
    transition: var(--te-transition);
    position: fixed;
    bottom: 100px;
    right: 25px;
    z-index: 999;
}

.te-v2 .back-to-top:hover {
    transform: translateY(-3px);
    box-shadow: var(--te-shadow-lg);
}

/* ---------- UTILITIES ---------- */
.te-gradient-text {
    background: linear-gradient(135deg, var(--te-primary), var(--te-cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1024px) {
    .te-hero-visual {
        flex: 0 0 260px;
    }

    .te-hero-title {
        font-size: 2.25rem;
    }

    .te-partner-inner {
        padding: 44px;
    }

    .te-app-inner {
        gap: 40px;
    }

    .te-service-card {
        flex: 0 0 calc(25% - 12px);
    }

    .te-cities-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .te-all-cities-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .te-iphone-frame {
        width: 240px;
        height: 490px;
        border-radius: 44px;
    }

    .te-iphone-screen {
        border-radius: 36px;
    }

    .te-iphone-notch {
        width: 76px;
        height: 22px;
        top: 15px;
    }
}

@media (max-width: 768px) {
    .te-navbar-search,
    .te-partner-deco,
    .te-app-visual {
        display: none !important;
    }

    .te-hero-inner {
        flex-direction: column;
        gap: 32px;
    }

    .te-hero-visual {
        flex: none !important;
        display: flex !important;
        justify-content: center;
        order: -1;
    }

    .te-hero-visual .te-iphone-frame {
        width: 180px;
        height: 368px;
        border-radius: 36px;
        padding: 7px;
    }

    .te-hero-visual .te-iphone-screen {
        border-radius: 30px;
    }

    .te-hero-visual .te-iphone-notch {
        width: 60px;
        height: 18px;
        top: 12px;
    }

    .te-hero-visual .te-iphone-notch::before {
        width: 6px;
        height: 6px;
        right: 14px;
    }

    .te-hamburger {
        display: flex;
    }

    .te-navbar-actions .te-nav-btn span.te-hide-mobile {
        display: none;
    }

    .te-hero {
        min-height: 420px;
        padding: 0;
    }

    .te-hero-inner {
        padding: 60px 0 40px;
    }

    .te-hero-title {
        font-size: 1.75rem;
    }

    .te-hero-subtitle {
        font-size: 1rem;
    }

    .te-hero-search {
        flex-wrap: wrap;
        padding: 12px;
        gap: 8px;
    }

    .te-hero-search input[type="text"] {
        flex: 1;
        min-width: 0;
    }

    .te-hero-search .te-search-submit {
        flex-basis: 100%;
        justify-content: center;
    }

    .te-hero-search-mobile {
        display: flex;
    }

    .te-hero-search-desktop {
        display: none;
    }

    .te-hero-stats-card {
        margin-top: 24px;
        padding: 14px 16px;
        max-width: 100%;
    }

    .te-stats-grid {
        flex-direction: row;
        justify-content: space-around;
        gap: 0;
    }

    .te-stat-item {
        flex-direction: column;
        gap: 4px;
        padding: 4px 8px;
        text-align: center;
        flex: 1;
    }

    .te-stat-icon-wrap {
        display: none;
    }

    .te-stat-content {
        align-items: center;
    }

    .te-stat-number {
        font-size: 1.35rem;
    }

    .te-stat-label {
        font-size: 0.7rem;
    }

    .te-stat-divider {
        width: 1px;
        height: 36px;
        background: linear-gradient(to bottom, transparent, rgba(255,255,255,0.25), transparent);
    }

    .te-stats-blob {
        display: none;
    }

    .te-value-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .te-value-card {
        padding: 24px 20px;
    }

    .te-service-card {
        flex: 0 0 calc(50% - 6px) !important;
        min-width: 0 !important;
    }

    .te-service-card.te-service-card--featured {
        flex: 0 0 100% !important;
        min-width: 0 !important;
        aspect-ratio: 21/9 !important;
    }
    .te-service-card--featured .te-service-card-name {
        font-size: 1.15rem !important;
        bottom: 16px !important;
        left: 16px !important;
    }

    .te-services-grid {
        gap: 10px;
    }

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

    .te-partner-inner {
        padding: 32px 24px;
        flex-direction: column;
    }
    .te-partner-visual {
        flex: none !important;
        width: 100%;
        max-height: 240px;
        border-radius: var(--te-radius-lg);
        overflow: hidden;
    }
    .te-partner-visual img {
        width: 100%;
        height: 240px;
        object-fit: cover;
    }
    .te-partner-path {
        padding: 14px 16px;
    }

    .te-app-download {
        padding: 60px 0;
    }

    .te-app-steps {
        flex-direction: column;
        gap: 20px;
    }

    .te-app-stores {
        flex-direction: column;
    }

    .te-why-grid {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 12px;
    }

    .te-why-card {
        padding: 20px 16px;
        flex: 0 0 calc(50% - 6px);
    }

    .te-cities-grid {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 12px;
    }

    .te-cities-grid .te-city-card {
        flex: 0 0 calc(50% - 6px);
    }

    .te-all-cities-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .te-footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
    }

    .te-footer-bottom-inner {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }

    .te-container {
        padding: 0 16px;
    }

    .te-whatsapp-float a {
        width: 54px;
        height: 54px;
    }

    .te-whatsapp-float svg {
        width: 26px;
        height: 26px;
    }

    .te-location-btn {
        min-width: 36px !important;
        width: 36px !important;
        height: 36px !important;
    }
}

@media (max-width: 480px) {
    .te-hero-title {
        font-size: 1.5rem;
    }

    .te-service-card-name {
        font-size: 0.8rem;
        bottom: 10px;
        left: 10px;
        right: 10px;
    }

    .te-footer-grid {
        grid-template-columns: 1fr;
    }

}

/* ============================================
   SEARCH RESULTS PAGE - Crystal Blue V2
   All styles scoped under .te-search-page
   ============================================ */

/* ---------- Page Background ---------- */
.te-search-page {
    background: #F8FAFC;
    min-height: 100vh;
    font-family: var(--te-font) !important;
}

/* ---------- Banner Carousel (Flutter SmoothBannerCarousel) ---------- */
.te-search-page .te-banner-carousel {
    padding: 8px 0 8px;
    overflow: hidden;
}

.te-search-page .te-banner-viewport {
    overflow: hidden;
    position: relative;
}

.te-search-page .te-banner-track {
    display: flex;
    will-change: transform;
}

.te-search-page .te-banner-item {
    flex-shrink: 0;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0,0,0,0.10);
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1),
                filter 0.6s cubic-bezier(0.4, 0, 0.2, 1),
                opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.te-search-page .te-banner-item img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 16px;
    user-select: none;
    -webkit-user-drag: none;
}

.te-search-page .te-banner-dots {
    display: flex;
    justify-content: center;
    gap: 6px;
    padding: 12px 0 4px;
}

.te-search-page .te-banner-dot {
    height: 6px;
    width: 6px;
    border-radius: 3px;
    background: #D0D5DD;
    cursor: pointer;
    transition: width 0.3s ease, background 0.3s ease;
}

.te-search-page .te-banner-dot.active {
    background: #0D76BD;
    width: 20px;
}

/* ---------- Category Bar ---------- */
/* ---------- Shared Category Bar (used in search, helper-detail, company-detail) ---------- */
.te-category-bar {
    background: var(--te-white);
    border-bottom: 1px solid #E2E8F0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    padding: 14px 0;
}

.te-category-bar-inner {
    max-width: var(--te-container);
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.te-category-bar-inner::-webkit-scrollbar {
    display: none;
}

.te-category-pill {
    display: inline-flex;
    align-items: center;
    padding: 6px 14px;
    border-radius: var(--te-radius-full);
    font-size: 0.75rem;
    font-weight: 600;
    white-space: nowrap;
    text-decoration: none;
    transition: var(--te-transition);
    border: 1.5px solid #E2E8F0;
    background: var(--te-white);
    color: var(--te-text-mid);
}

.te-category-pill:hover {
    border-color: var(--te-primary);
    color: var(--te-primary);
    background: #F0F9FF;
    text-decoration: none;
}

.te-category-pill.active {
    background: linear-gradient(135deg, var(--te-primary) 0%, var(--te-cyan) 100%);
    color: var(--te-white);
    border-color: transparent;
    box-shadow: 0 2px 8px rgba(2, 132, 199, 0.3);
}

/* Search page: sticky category bar */
.te-search-page .te-category-bar {
    padding: 16px 0;
    position: sticky;
    top: 80px;
    z-index: 100;
}

/* ---------- Results Header ---------- */
.te-search-page .te-results-header {
    max-width: var(--te-container);
    margin: 0 auto;
    padding: 28px 24px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.te-search-page .te-results-count {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--te-text-dark);
}

.te-search-page .te-results-count span {
    color: var(--te-primary);
}

.te-search-page .te-sort-select {
    padding: 10px 40px 10px 16px;
    border: 1.5px solid #E2E8F0;
    border-radius: 12px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--te-text-dark);
    background: var(--te-white);
    cursor: pointer;
    transition: var(--te-transition);
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%2364748B' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10l-5 5z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
}

.te-search-page .te-sort-select:focus {
    outline: none;
    border-color: var(--te-primary);
    box-shadow: 0 0 0 3px rgba(2, 132, 199, 0.1);
}

/* ---------- Results Grid ---------- */
.te-search-page .te-results-grid {
    max-width: var(--te-container);
    margin: 0 auto;
    padding: 24px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

/* ---------- Company Card ---------- */
.te-search-page .te-company-card {
    background: var(--te-white);
    border-radius: var(--te-radius-lg);
    overflow: hidden;
    box-shadow: var(--te-shadow-sm);
    transition: var(--te-transition);
    text-decoration: none;
    display: block;
}

.te-search-page .te-company-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--te-shadow-lg);
    text-decoration: none;
}

.te-search-page .te-company-card-banner {
    position: relative;
    width: 100%;
    aspect-ratio: 16/9;
    overflow: hidden;
}

.te-search-page .te-company-card-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.te-search-page .te-company-card:hover .te-company-card-banner img {
    transform: scale(1.05);
}

.te-search-page .te-company-card-banner::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60%;
    background: linear-gradient(to top, rgba(0,0,0,0.5) 0%, transparent 100%);
    pointer-events: none;
}

.te-search-page .te-company-card-body {
    padding: 16px 20px 20px;
}

.te-search-page .te-company-card-rating {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 8px;
}

.te-search-page .te-company-card-stars {
    display: flex;
    gap: 2px;
}

.te-search-page .te-company-card-stars i {
    color: #FBBF24;
    font-size: 0.8rem;
}

.te-search-page .te-company-card-stars i.empty {
    color: #E2E8F0;
}

.te-search-page .te-company-card-score {
    font-weight: 700;
    font-size: 0.85rem;
    color: var(--te-text-dark);
}

.te-search-page .te-company-card-reviews {
    font-size: 0.8rem;
    color: var(--te-text-mid);
}

.te-search-page .te-company-card-name {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--te-text-dark);
    margin: 0 0 6px;
    line-height: 1.3;
}

.te-search-page .te-company-card-address {
    font-size: 0.85rem;
    color: var(--te-text-mid);
    display: flex;
    align-items: flex-start;
    gap: 6px;
    margin-bottom: 14px;
}

.te-search-page .te-company-card-address i {
    color: var(--te-primary);
    margin-top: 2px;
    flex-shrink: 0;
}

.te-search-page .te-company-card-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 18px;
    border-radius: var(--te-radius-full);
    background: linear-gradient(135deg, var(--te-primary) 0%, var(--te-cyan) 100%);
    color: var(--te-white);
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
    transition: var(--te-transition);
}

.te-search-page .te-company-card-btn:hover {
    box-shadow: 0 4px 12px rgba(2, 132, 199, 0.35);
    transform: translateX(2px);
    color: var(--te-white);
    text-decoration: none;
}

/* ---------- Helper Card ---------- */
.te-search-page .te-helper-card {
    background: var(--te-white);
    border-radius: var(--te-radius-lg);
    overflow: hidden;
    box-shadow: var(--te-shadow-sm);
    transition: var(--te-transition);
    border-left: 4px solid transparent;
    border-image: linear-gradient(to bottom, var(--te-primary), #8B5CF6) 1;
    display: block;
    text-decoration: none;
}

.te-search-page .te-helper-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--te-shadow-lg);
    text-decoration: none;
}

/* Helper Card Header */
.te-search-page .te-helper-header {
    padding: 20px 20px 14px;
    display: flex;
    align-items: center;
    gap: 14px;
}

.te-search-page .te-helper-avatar {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #F0F9FF;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    flex-shrink: 0;
}

.te-search-page .te-helper-info {
    flex: 1;
    min-width: 0;
}

.te-search-page .te-helper-name {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--te-text-dark);
    margin: 0 0 4px;
    line-height: 1.3;
}

.te-search-page .te-helper-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.te-search-page .te-helper-rating {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--te-text-dark);
}

.te-search-page .te-helper-rating i {
    color: #FBBF24;
    font-size: 0.8rem;
}

.te-search-page .te-helper-new-badge {
    display: inline-flex;
    align-items: center;
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--te-primary);
    background: #F0F9FF;
    padding: 2px 10px;
    border-radius: var(--te-radius-full);
    border: 1px solid #BAE6FD;
}

.te-search-page .te-helper-verified {
    display: inline-flex;
    align-items: center;
    gap: 3px;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--te-green);
    background: #ECFDF5;
    padding: 2px 8px;
    border-radius: var(--te-radius-full);
}

.te-search-page .te-helper-verified i {
    font-size: 0.7rem;
}

/* Helper Card Skills */
.te-search-page .te-helper-skills {
    padding: 0 20px 14px;
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.te-search-page .te-helper-skill-chip {
    display: inline-block;
    padding: 4px 12px;
    border-radius: var(--te-radius-full);
    background: #F0F9FF;
    color: var(--te-primary);
    font-size: 0.75rem;
    font-weight: 600;
    border: 1px solid #BAE6FD;
}

/* Helper Card Days — dot style */
.te-search-page .te-helper-days {
    padding: 6px 20px 14px;
    margin-top: 4px;
    border-top: 1px solid #F1F5F9;
    display: flex;
    align-items: center;
    gap: 10px;
}

.te-search-page .te-day-pill {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

.te-search-page .te-day-pill::before {
    content: '';
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: #E2E8F0;
    transition: all 0.2s ease;
}

.te-search-page .te-day-pill.active::before {
    background: #10B981;
    box-shadow: 0 0 8px rgba(16, 185, 129, 0.4);
}

.te-search-page .te-day-pill span {
    font-size: 0.68rem;
    font-weight: 600;
    color: #94A3B8;
    line-height: 1;
}

.te-search-page .te-day-pill.active span {
    color: #10B981;
    font-weight: 700;
}

/* Helper Card Footer */
.te-search-page .te-helper-footer {
    padding: 14px 20px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #F1F5F9;
}

.te-search-page .te-helper-price {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--te-text-dark);
}

.te-search-page .te-helper-price small {
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--te-text-mid);
}

.te-search-page .te-helper-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 18px;
    border-radius: var(--te-radius-full);
    background: linear-gradient(135deg, #8B5CF6 0%, var(--te-primary) 100%);
    color: var(--te-white);
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
    transition: var(--te-transition);
}

.te-search-page .te-helper-btn:hover {
    box-shadow: 0 4px 12px rgba(139, 92, 246, 0.35);
    transform: translateX(2px);
    color: var(--te-white);
    text-decoration: none;
}

/* ---------- Empty State ---------- */
.te-search-page .te-empty-state {
    grid-column: 1 / -1;
    text-align: center;
    padding: 80px 20px;
}

.te-search-page .te-empty-icon {
    font-size: 3.5rem;
    color: #CBD5E1;
    margin-bottom: 16px;
}

.te-search-page .te-empty-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--te-text-dark);
    margin-bottom: 8px;
}

.te-search-page .te-empty-text {
    font-size: 0.95rem;
    color: var(--te-text-mid);
}

/* ---------- Trust Strip (Premium Glassmorphism) ---------- */
.te-search-page .te-trust-strip {
    background: linear-gradient(135deg, #0C4A6E 0%, #0369A1 40%, #0891B2 100%);
    padding: 0;
    position: relative;
    overflow: hidden;
}

.te-search-page .te-trust-strip::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -10%;
    width: 40%;
    height: 200%;
    background: radial-gradient(ellipse, rgba(255,255,255,0.07) 0%, transparent 70%);
    pointer-events: none;
}

.te-search-page .te-trust-strip::after {
    content: '';
    position: absolute;
    bottom: -50%;
    right: -10%;
    width: 35%;
    height: 200%;
    background: radial-gradient(ellipse, rgba(6,182,212,0.12) 0%, transparent 70%);
    pointer-events: none;
}

.te-search-page .te-trust-strip-inner {
    max-width: var(--te-container);
    margin: 0 auto;
    padding: 28px 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    position: relative;
    z-index: 1;
}

.te-search-page .te-trust-badge {
    display: flex;
    align-items: center;
    gap: 14px;
    flex: 1;
    justify-content: center;
    padding: 8px 16px;
}

.te-search-page .te-trust-divider {
    width: 1px;
    height: 40px;
    background: rgba(255,255,255,0.15);
    flex-shrink: 0;
}

.te-search-page .te-trust-badge-icon {
    width: 50px;
    height: 50px;
    border-radius: 14px;
    background: rgba(255,255,255,0.12);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border: 1px solid rgba(255,255,255,0.15);
}

.te-search-page .te-trust-badge-icon svg {
    stroke: #7DD3FC;
    width: 24px;
    height: 24px;
}

.te-search-page .te-trust-badge-text {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.te-search-page .te-trust-badge-text strong {
    font-size: 0.92rem;
    font-weight: 700;
    color: #FFFFFF;
    letter-spacing: 0.01em;
}

.te-search-page .te-trust-badge-text span {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.6);
    line-height: 1.35;
    font-weight: 400;
}

/* ---------- Timeline Section (Nasıl Çalışır) ---------- */
.te-search-page .te-timeline-section {
    max-width: var(--te-container);
    margin: 0 auto;
    padding: 56px 24px 48px;
    position: relative;
}

.te-search-page .te-timeline-header {
    text-align: center;
    margin-bottom: 48px;
}

.te-search-page .te-timeline-label {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--te-primary);
    background: linear-gradient(135deg, #F0F9FF 0%, #E0F2FE 100%);
    padding: 6px 16px;
    border-radius: var(--te-radius-full);
    margin-bottom: 12px;
    border: 1px solid #BAE6FD;
}

.te-search-page .te-timeline-title {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--te-text-dark);
    margin: 0;
    letter-spacing: -0.02em;
}

.te-search-page .te-timeline {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0;
    position: relative;
    padding: 0 40px;
}

.te-search-page .te-timeline-line {
    position: absolute;
    top: 28px;
    left: calc(50% - 340px);
    right: calc(50% - 340px);
    height: 3px;
    background: linear-gradient(90deg, var(--te-primary) 0%, var(--te-cyan) 50%, #8B5CF6 100%);
    border-radius: 2px;
    z-index: 0;
}

.te-search-page .te-timeline-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
    max-width: 280px;
    position: relative;
    z-index: 1;
}

.te-search-page .te-timeline-num {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--te-primary) 0%, var(--te-cyan) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    box-shadow: 0 8px 24px rgba(2, 132, 199, 0.3);
    position: relative;
}

.te-search-page .te-timeline-step:nth-child(3) .te-timeline-num {
    background: linear-gradient(135deg, var(--te-primary) 0%, #0891B2 100%);
}

.te-search-page .te-timeline-step:nth-child(4) .te-timeline-num {
    background: linear-gradient(135deg, #0891B2 0%, #8B5CF6 100%);
    box-shadow: 0 8px 24px rgba(139, 92, 246, 0.3);
}

.te-search-page .te-timeline-num span {
    font-size: 1.2rem;
    font-weight: 800;
    color: #FFFFFF;
}

.te-search-page .te-timeline-content {
    text-align: center;
    background: var(--te-white);
    border-radius: var(--te-radius-lg);
    padding: 28px 22px 24px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.05);
    border: 1px solid #F1F5F9;
    transition: var(--te-transition);
    width: 100%;
}

.te-search-page .te-timeline-content:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 28px rgba(0,0,0,0.08);
    border-color: #E0F2FE;
}

.te-search-page .te-timeline-icon-wrap {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: linear-gradient(135deg, #F0F9FF 0%, #E0F2FE 100%);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
    border: 1px solid #BAE6FD;
}

.te-search-page .te-timeline-icon-wrap svg {
    width: 24px;
    height: 24px;
}

.te-search-page .te-timeline-content h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--te-text-dark);
    margin: 0 0 8px;
}

.te-search-page .te-timeline-content p {
    font-size: 0.82rem;
    color: var(--te-text-mid);
    line-height: 1.55;
    margin: 0;
}

/* ---------- Search Page Responsive ---------- */
@media (max-width: 1024px) {
    .te-search-page .te-results-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .te-search-page .te-results-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
        padding: 12px;
    }

    .te-search-page .te-helper-card {
        grid-column: span 2;
    }

    .te-search-page .te-results-header {
        padding: 20px 16px 0;
        flex-direction: column;
        align-items: flex-start;
    }

    .te-search-page .te-sort-select {
        width: 100%;
    }

    .te-search-page .te-category-bar {
        top: 60px;
    }

    .te-search-page .te-category-bar-inner {
        padding: 0 16px;
        flex-wrap: nowrap;
        justify-content: flex-start;
        overflow-x: auto;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }

    .te-search-page .te-category-bar-inner::-webkit-scrollbar {
        display: none;
    }

    .te-search-page .te-helper-days {
        gap: 6px;
    }

    .te-search-page .te-day-pill::before {
        width: 8px;
        height: 8px;
    }

    .te-search-page .te-day-pill span {
        font-size: 0.55rem;
    }

    .te-search-page .te-banner-item {
        border-radius: 12px;
    }

    .te-search-page .te-banner-item img {
        border-radius: 12px;
    }

    /* Trust Strip Mobile — tek satır, yatay scroll */
    .te-search-page .te-trust-strip-inner {
        flex-direction: row;
        gap: 0;
        padding: 14px 12px;
        justify-content: space-between;
    }

    .te-search-page .te-trust-badge {
        padding: 6px 4px;
        gap: 8px;
        flex: 1;
        min-width: 0;
    }

    .te-search-page .te-trust-badge-icon {
        width: 36px;
        height: 36px;
        border-radius: 10px;
    }

    .te-search-page .te-trust-badge-icon svg {
        width: 18px;
        height: 18px;
    }

    .te-search-page .te-trust-badge-text strong {
        font-size: 0.68rem;
    }

    .te-search-page .te-trust-badge-text span {
        display: none;
    }

    .te-search-page .te-trust-divider {
        width: 1px;
        height: 28px;
    }

    /* Timeline Mobile */
    .te-search-page .te-timeline {
        flex-direction: column;
        align-items: center;
        padding: 0 16px;
        gap: 0;
    }

    .te-search-page .te-timeline-line {
        top: 0;
        bottom: 0;
        left: 44px;
        right: auto;
        width: 3px;
        height: auto;
    }

    .te-search-page .te-timeline-step {
        flex-direction: row;
        align-items: flex-start;
        max-width: 100%;
        gap: 16px;
        margin-bottom: 24px;
    }

    .te-search-page .te-timeline-step:last-child {
        margin-bottom: 0;
    }

    .te-search-page .te-timeline-num {
        width: 48px;
        height: 48px;
        flex-shrink: 0;
        margin-bottom: 0;
    }

    .te-search-page .te-timeline-content {
        text-align: left;
        flex: 1;
    }

    .te-search-page .te-timeline-section {
        padding: 36px 16px 32px;
    }

    .te-search-page .te-timeline-title {
        font-size: 1.3rem;
    }
}


/* ============================================
   HELPER DETAIL PAGE - Crystal Blue V2
   All styles scoped under .te-helper-detail
   ============================================ */

/* Fix navbar gap for helper detail page */
.te-helper-detail {
    background: var(--te-light-bg) !important;
    padding-bottom: 16px;
    font-family: var(--te-font) !important;
}

/* Category bar — reuse search page pill styles inside helper detail */
/* ---------- Main Container Grid ---------- */
.te-helper-detail .te-hd-container {
    max-width: var(--te-container);
    margin: 0 auto;
    padding: 16px 24px;
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 20px;
    align-items: start;
}

/* ---------- Profile Card ---------- */
.te-helper-detail .te-hd-profile-card {
    background: var(--te-white);
    border-radius: var(--te-radius-lg);
    padding: 0;
    box-shadow: var(--te-shadow-sm);
    overflow: hidden;
    border-top: 3px solid transparent;
    border-image: linear-gradient(90deg, var(--te-primary), #8B5CF6) 1;
}

.te-helper-detail .te-hd-profile-top {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 20px 14px;
}

.te-helper-detail .te-hd-avatar {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #F0F9FF;
    box-shadow: 0 2px 10px rgba(2, 132, 199, 0.12);
    flex-shrink: 0;
}

.te-helper-detail .te-hd-profile-info {
    flex: 1;
    min-width: 0;
}

.te-helper-detail .te-hd-name {
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--te-text-dark);
    margin: 0 0 5px;
    letter-spacing: -0.02em;
}

.te-helper-detail .te-hd-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 4px;
}

.te-helper-detail .te-hd-rating {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--te-text-dark);
}

.te-helper-detail .te-hd-rating i {
    color: #FBBF24;
}

.te-helper-detail .te-hd-review-count {
    font-weight: 500;
    color: var(--te-text-mid);
    font-size: 0.8rem;
}

.te-helper-detail .te-hd-verified-badge {
    display: inline-flex;
    align-items: center;
    gap: 3px;
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--te-green);
    background: #ECFDF5;
    padding: 2px 10px;
    border-radius: var(--te-radius-full);
    border: 1px solid #A7F3D0;
}

.te-helper-detail .te-hd-verified-badge i {
    font-size: 0.65rem;
}

.te-helper-detail .te-hd-address {
    font-size: 0.8rem;
    color: var(--te-text-mid);
    display: flex;
    align-items: center;
    gap: 5px;
}

.te-helper-detail .te-hd-address i {
    color: var(--te-primary);
    font-size: 0.72rem;
}

/* Days - dot style (compact) */
.te-helper-detail .te-hd-days {
    padding: 10px 20px;
    border-top: 1px solid #F1F5F9;
    display: flex;
    align-items: center;
    gap: 10px;
}

.te-helper-detail .te-hd-day-pill {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.te-helper-detail .te-hd-day-pill::before {
    content: '';
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: #E2E8F0;
    transition: all 0.2s ease;
}

.te-helper-detail .te-hd-day-pill.active::before {
    background: #10B981;
    box-shadow: 0 0 8px rgba(16, 185, 129, 0.4);
}

.te-helper-detail .te-hd-day-pill span {
    font-size: 0.65rem;
    font-weight: 600;
    color: #94A3B8;
    line-height: 1;
}

.te-helper-detail .te-hd-day-pill.active span {
    color: #10B981;
    font-weight: 700;
}

/* Skills (compact, inline) */
.te-helper-detail .te-hd-skills {
    padding: 0 20px 14px;
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.te-helper-detail .te-hd-skill-chip {
    display: inline-block;
    padding: 3px 10px;
    border-radius: var(--te-radius-full);
    background: #F0F9FF;
    color: var(--te-primary);
    font-size: 0.72rem;
    font-weight: 600;
    border: 1px solid #BAE6FD;
}

/* ---------- Tab Navigation (compact) ---------- */
.te-helper-detail .te-hd-tabs {
    display: flex;
    gap: 6px;
    padding: 6px;
    background: var(--te-white);
    border-radius: 12px;
    box-shadow: var(--te-shadow-sm);
    margin-top: 4px;
}

.te-helper-detail .te-hd-tab {
    flex: 1;
    padding: 10px 12px;
    border: none;
    background: transparent;
    border-radius: 10px;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--te-text-mid);
    cursor: pointer;
    transition: var(--te-transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    white-space: nowrap;
}

.te-helper-detail .te-hd-tab:hover {
    background: var(--te-light-bg);
    color: var(--te-text-dark);
}

.te-helper-detail .te-hd-tab.active {
    background: linear-gradient(135deg, var(--te-primary), #0EA5E9);
    color: var(--te-white);
    box-shadow: 0 3px 10px rgba(2, 132, 199, 0.3);
}

.te-helper-detail .te-hd-tab i {
    font-size: 0.75rem;
}

/* ---------- Tab Content ---------- */
.te-helper-detail .te-hd-tab-content {
    display: none;
    margin-top: 4px;
}

.te-helper-detail .te-hd-tab-content.active {
    display: block;
}

/* ---------- Sections (compact) ---------- */
.te-helper-detail .te-hd-section {
    background: var(--te-white);
    border-radius: 12px;
    padding: 16px 18px;
    margin-bottom: 10px;
    box-shadow: var(--te-shadow-sm);
}

.te-helper-detail .te-hd-section-title {
    font-size: 0.92rem;
    font-weight: 700;
    color: var(--te-text-dark);
    margin: 0 0 14px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.te-helper-detail .te-hd-section-title i {
    color: var(--te-primary);
    font-size: 0.88rem;
}

/* ---------- Duration Cards (compact) ---------- */
.te-helper-detail .te-hd-duration-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
    gap: 10px;
}

.te-helper-detail .te-hd-duration-card {
    position: relative;
    border: 2px solid #E2E8F0;
    border-radius: 12px;
    cursor: pointer;
    transition: var(--te-transition);
    overflow: hidden;
}

.te-helper-detail .te-hd-duration-card input[type="radio"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.te-helper-detail .te-hd-duration-card label {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 14px 8px;
    cursor: pointer;
    margin: 0;
}

.te-helper-detail .te-hd-duration-hours {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--te-text-dark);
    line-height: 1;
}

.te-helper-detail .te-hd-duration-label {
    font-size: 0.68rem;
    font-weight: 600;
    color: var(--te-text-mid);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin: 2px 0 8px;
}

.te-helper-detail .te-hd-duration-price {
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--te-primary);
}

.te-helper-detail .te-hd-duration-card:hover {
    border-color: var(--te-primary);
    box-shadow: 0 2px 8px rgba(2, 132, 199, 0.12);
}

.te-helper-detail .te-hd-duration-card.active {
    border-color: var(--te-primary);
    background: linear-gradient(135deg, #F0F9FF, #E0F2FE);
    box-shadow: 0 3px 12px rgba(2, 132, 199, 0.18);
}

.te-helper-detail .te-hd-duration-card.active .te-hd-duration-hours {
    color: var(--te-primary);
}

/* ---------- Material Cards (compact, side by side) ---------- */
.te-helper-detail .te-hd-material-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.te-helper-detail .te-hd-material-card {
    position: relative;
    border: 2px solid #E2E8F0;
    border-radius: 12px;
    cursor: pointer;
    transition: var(--te-transition);
}

.te-helper-detail .te-hd-material-card input[type="radio"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.te-helper-detail .te-hd-material-card label {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 14px 12px;
    cursor: pointer;
    margin: 0;
}

.te-helper-detail .te-hd-material-icon {
    font-size: 1.4rem;
    margin-bottom: 6px;
}

.te-helper-detail .te-hd-material-name {
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--te-text-dark);
    margin-bottom: 4px;
}

.te-helper-detail .te-hd-material-price {
    font-size: 1rem;
    font-weight: 800;
    color: var(--te-primary);
}

.te-helper-detail .te-hd-material-price.free {
    color: var(--te-green);
}

.te-helper-detail .te-hd-material-detail {
    display: block;
    font-size: 0.68rem;
    color: var(--te-text-mid);
    line-height: 1.4;
    margin-top: 6px;
}

.te-helper-detail .te-hd-material-card:hover {
    border-color: var(--te-primary);
}

.te-helper-detail .te-hd-material-card.active {
    border-color: var(--te-primary);
    background: linear-gradient(135deg, #F0F9FF, #E0F2FE);
}

/* ---------- Plan Cards (compact) ---------- */
.te-helper-detail .te-hd-plan-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.te-helper-detail .te-hd-plan-card {
    position: relative;
    border: 2px solid #E2E8F0;
    border-radius: 12px;
    cursor: pointer;
    transition: var(--te-transition);
}

.te-helper-detail .te-hd-plan-card input[type="radio"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.te-helper-detail .te-hd-plan-card label {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 12px;
    cursor: pointer;
    margin: 0;
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--te-text-dark);
}

.te-helper-detail .te-hd-plan-card label i {
    color: var(--te-primary);
}

.te-helper-detail .te-hd-plan-card:hover {
    border-color: var(--te-primary);
}

.te-helper-detail .te-hd-plan-card.active {
    border-color: var(--te-primary);
    background: linear-gradient(135deg, #F0F9FF, #E0F2FE);
}

/* Regular options (compact) */
.te-helper-detail .te-hd-regular-options {
    margin-top: 14px;
    padding-top: 14px;
    border-top: 1px solid #F1F5F9;
}

.te-helper-detail .te-hd-regular-label {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--te-text-dark);
    display: block;
    margin-bottom: 10px;
}

.te-helper-detail .te-hd-regular-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
}

.te-helper-detail .te-hd-regular-card {
    position: relative;
    border: 2px solid #E2E8F0;
    border-radius: 10px;
    cursor: pointer;
    transition: var(--te-transition);
}

.te-helper-detail .te-hd-regular-card input[type="radio"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.te-helper-detail .te-hd-regular-card label {
    display: block;
    text-align: center;
    padding: 10px 6px;
    cursor: pointer;
    margin: 0;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--te-text-dark);
}

.te-helper-detail .te-hd-regular-card:hover {
    border-color: var(--te-primary);
}

.te-helper-detail .te-hd-regular-card.active {
    border-color: var(--te-primary);
    background: #F0F9FF;
}

/* ---------- Notes (compact) ---------- */
.te-helper-detail .te-hd-notes {
    list-style: none;
    padding: 0;
    margin: 0;
}

.te-helper-detail .te-hd-notes li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 8px 0;
    border-bottom: 1px solid #F1F5F9;
    font-size: 0.8rem;
    color: var(--te-text-dark);
    line-height: 1.5;
}

.te-helper-detail .te-hd-notes li:last-child {
    border-bottom: none;
}

.te-helper-detail .te-hd-notes li i {
    color: var(--te-primary);
    margin-top: 3px;
    flex-shrink: 0;
    font-size: 0.72rem;
}

/* ---------- Add to Cart Button ---------- */
.te-helper-detail .te-hd-submit-desktop {
    margin-top: 4px;
}

.te-helper-detail .te-hd-add-to-cart-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 15px 20px;
    border: none;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--te-primary) 0%, #0EA5E9 50%, #8B5CF6 100%);
    background-size: 200% auto;
    color: var(--te-white);
    font-size: 0.95rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.4s ease;
    box-shadow: 0 4px 14px rgba(2, 132, 199, 0.25);
}

.te-helper-detail .te-hd-add-to-cart-btn:hover {
    background-position: right center;
    box-shadow: 0 6px 20px rgba(2, 132, 199, 0.35);
    transform: translateY(-1px);
}

/* ---------- Reviews Tab ---------- */
.te-helper-detail .te-hd-review-summary {
    background: var(--te-white);
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    margin-bottom: 10px;
    box-shadow: var(--te-shadow-sm);
}

.te-helper-detail .te-hd-review-avg {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}

.te-helper-detail .te-hd-avg-number {
    font-size: 2.4rem;
    font-weight: 800;
    color: var(--te-text-dark);
    line-height: 1;
}

.te-helper-detail .te-hd-avg-stars i {
    color: #E2E8F0;
    font-size: 1rem;
    margin: 0 1px;
}

.te-helper-detail .te-hd-avg-stars i.filled {
    color: #FBBF24;
}

.te-helper-detail .te-hd-avg-count {
    font-size: 0.82rem;
    color: var(--te-text-mid);
    font-weight: 500;
}

.te-helper-detail .te-hd-review-card {
    background: var(--te-white);
    border-radius: 12px;
    padding: 16px 18px;
    margin-bottom: 8px;
    box-shadow: var(--te-shadow-sm);
}

.te-helper-detail .te-hd-review-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 8px;
}

.te-helper-detail .te-hd-review-name {
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--te-text-dark);
    margin: 0;
}

.te-helper-detail .te-hd-review-stars i {
    color: #E2E8F0;
    font-size: 0.78rem;
}

.te-helper-detail .te-hd-review-stars i.filled {
    color: #FBBF24;
}

.te-helper-detail .te-hd-review-text {
    font-size: 0.82rem;
    color: var(--te-text-mid);
    line-height: 1.5;
    margin: 0;
}

.te-helper-detail .te-hd-pagination {
    margin-top: 12px;
}

.te-helper-detail .te-hd-empty-reviews {
    text-align: center;
    padding: 36px 20px;
    background: var(--te-white);
    border-radius: 12px;
    box-shadow: var(--te-shadow-sm);
}

.te-helper-detail .te-hd-empty-reviews i {
    font-size: 2rem;
    color: #CBD5E1;
    margin-bottom: 10px;
    display: block;
}

.te-helper-detail .te-hd-empty-reviews p {
    font-size: 0.88rem;
    color: var(--te-text-mid);
    margin: 0;
}

/* ---------- About Tab ---------- */
.te-helper-detail .te-hd-about-address {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    color: var(--te-text-dark);
    margin-bottom: 10px;
}

.te-helper-detail .te-hd-about-address i {
    color: var(--te-primary);
}

.te-helper-detail .te-hd-about-note {
    font-size: 0.78rem;
    color: var(--te-text-mid);
    line-height: 1.5;
}

.te-helper-detail .te-hd-verification-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.te-helper-detail .te-hd-verification-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    border-radius: 10px;
    background: #F8FAFC;
    border: 1px solid #F1F5F9;
}

.te-helper-detail .te-hd-verification-item.verified {
    background: #F0FDF4;
    border-color: #BBF7D0;
}

.te-helper-detail .te-hd-verification-icon i {
    font-size: 1rem;
}

.te-helper-detail .te-hd-verification-item.verified .te-hd-verification-icon i {
    color: var(--te-green);
}

.te-helper-detail .te-hd-verification-item.unverified .te-hd-verification-icon i {
    color: #EF4444;
}

.te-helper-detail .te-hd-verification-label {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--te-text-dark);
}

.te-helper-detail .te-hd-verification-hint {
    font-size: 0.7rem;
    color: var(--te-text-mid);
    margin-top: 1px;
}

.te-helper-detail .te-hd-verification-note {
    font-size: 0.72rem;
    color: var(--te-text-mid);
    margin-top: 12px;
    line-height: 1.5;
}

/* ---------- Cart Sidebar (compact) ---------- */
.te-helper-detail .te-hd-sidebar {
    position: sticky;
    top: 90px;
}

.te-helper-detail .te-hd-cart {
    background: var(--te-white);
    border-radius: var(--te-radius-lg);
    padding: 18px;
    box-shadow: var(--te-shadow-md);
}

.te-helper-detail .te-hd-cart-title {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--te-text-dark);
    margin: 0 0 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.te-helper-detail .te-hd-cart-title i {
    color: var(--te-primary);
}

.te-helper-detail .te-hd-cart-img {
    text-align: center;
    margin-bottom: 12px;
}

.te-helper-detail .te-hd-cart-img img {
    max-width: 90px;
    opacity: 0.6;
}

.te-helper-detail .te-hd-cart .cart-items {
    max-height: 250px;
    overflow-y: auto;
    scrollbar-width: thin;
}

.te-helper-detail .te-hd-cart-total {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 12px;
    margin-top: 12px;
    border-top: 2px solid #F1F5F9;
}

.te-helper-detail .te-hd-cart-total span {
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--te-text-mid);
}

.te-helper-detail .te-hd-cart-total strong {
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--te-text-dark);
}

/* ---------- Mobile Cart Bar ---------- */
.te-helper-detail .te-hd-mobile-cart-bar {
    display: none;
}

/* ---------- Responsive: Tablet (768-991px) ---------- */
@media (max-width: 991px) {
    .te-helper-detail .te-category-bar-inner,
    .te-company-detail .te-category-bar-inner {
        padding: 0 16px;
        flex-wrap: nowrap;
        justify-content: flex-start;
        overflow-x: auto;
    }

    .te-helper-detail .te-hd-container {
        grid-template-columns: 1fr;
        padding: 12px;
        gap: 10px;
    }

    .te-helper-detail .te-hd-sidebar {
        display: none;
    }

    .te-helper-detail .te-hd-duration-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .te-helper-detail .te-hd-regular-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .te-helper-detail .te-hd-mobile-cart-bar {
        display: flex;
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        z-index: 999;
        background: var(--te-white);
        padding: 10px 16px;
        box-shadow: 0 -4px 20px rgba(0,0,0,0.1);
        align-items: center;
        justify-content: space-between;
        gap: 12px;
    }

    .te-helper-detail .te-hd-mobile-cart-info {
        display: flex;
        flex-direction: column;
    }

    .te-helper-detail .te-hd-mobile-cart-label {
        font-size: 0.7rem;
        color: var(--te-text-mid);
        font-weight: 500;
    }

    .te-helper-detail .te-hd-mobile-cart-total {
        font-size: 1.1rem;
        font-weight: 800;
        color: var(--te-text-dark);
    }

    .te-helper-detail .te-hd-mobile-cart-btn {
        padding: 10px 22px;
        border: none;
        border-radius: var(--te-radius-full);
        background: linear-gradient(135deg, var(--te-primary), #8B5CF6);
        color: var(--te-white);
        font-size: 0.85rem;
        font-weight: 700;
        cursor: pointer;
        white-space: nowrap;
        display: flex;
        align-items: center;
        gap: 6px;
        box-shadow: 0 4px 12px rgba(2, 132, 199, 0.3);
    }

    .te-helper-detail {
        padding-bottom: 70px !important;
    }
}

/* ---------- Responsive: Mobile (<768px) ---------- */
@media (max-width: 767px) {
    .te-helper-detail .te-hd-container {
        padding: 10px;
        gap: 8px;
    }

    .te-helper-detail .te-hd-profile-top {
        flex-direction: column;
        text-align: center;
        padding: 16px 16px 10px;
    }

    .te-helper-detail .te-hd-avatar {
        width: 64px;
        height: 64px;
    }

    .te-helper-detail .te-hd-profile-info {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .te-helper-detail .te-hd-meta {
        justify-content: center;
    }

    .te-helper-detail .te-hd-address {
        justify-content: center;
        text-align: center;
    }

    .te-helper-detail .te-hd-name {
        font-size: 1.05rem;
    }

    .te-helper-detail .te-hd-days {
        justify-content: center;
        padding: 8px 12px;
        gap: 6px;
    }

    .te-helper-detail .te-hd-day-pill::before {
        width: 10px;
        height: 10px;
    }

    .te-helper-detail .te-hd-day-pill span {
        font-size: 0.55rem;
    }

    .te-helper-detail .te-hd-skills {
        justify-content: center;
        padding: 0 12px 12px;
    }

    .te-helper-detail .te-hd-tabs {
        overflow-x: auto;
        scrollbar-width: none;
        -ms-overflow-style: none;
        gap: 4px;
        padding: 5px;
    }

    .te-helper-detail .te-hd-tabs::-webkit-scrollbar {
        display: none;
    }

    .te-helper-detail .te-hd-tab {
        padding: 8px 12px;
        font-size: 0.75rem;
        min-width: max-content;
    }

    .te-helper-detail .te-hd-section {
        padding: 14px 12px;
        margin-bottom: 8px;
    }

    .te-helper-detail .te-hd-section-title {
        font-size: 0.85rem;
        margin-bottom: 10px;
    }

    .te-helper-detail .te-hd-duration-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }

    .te-helper-detail .te-hd-duration-card label {
        padding: 12px 8px;
    }

    .te-helper-detail .te-hd-duration-hours {
        font-size: 1.3rem;
    }

    .te-helper-detail .te-hd-material-grid {
        grid-template-columns: 1fr;
    }

    .te-helper-detail .te-hd-plan-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .te-helper-detail .te-hd-regular-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .te-helper-detail .te-hd-verification-grid {
        grid-template-columns: 1fr;
    }

    .te-helper-detail .te-hd-submit-desktop {
        display: none;
    }
}


/* ============================================
   COMPANY DETAIL PAGE - Crystal Blue V2
   All styles scoped under .te-company-detail
   ============================================ */

/* ---------- Base ---------- */
.te-company-detail {
    background: var(--te-light-bg) !important;
    padding-bottom: 80px;
    font-family: var(--te-font) !important;
    min-height: 100vh;
}

/* Override parent bgr-grey-supplier if present */
.bgr-grey-supplier.te-company-detail {
    background: var(--te-light-bg) !important;
}

/* ---------- Category Bar (reuse helper pill style) ---------- */
/* ---------- Main Container Grid ---------- */
.te-company-detail .te-cd-container {
    max-width: var(--te-container);
    margin: 0 auto;
    padding: 16px 24px;
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 20px;
    align-items: start;
}

.te-company-detail .te-cd-main {
    min-width: 0;
}

/* ---------- Info Card ---------- */
.te-company-detail .te-cd-info-card {
    background: var(--te-white);
    border-radius: var(--te-radius-lg);
    padding: 24px;
    box-shadow: var(--te-shadow-sm);
    margin-bottom: 16px;
    position: relative;
    overflow: hidden;
}

.te-company-detail .te-cd-info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, var(--te-primary) 0%, var(--te-cyan) 100%);
    border-radius: var(--te-radius-lg) var(--te-radius-lg) 0 0;
}

.te-company-detail .te-cd-info-header {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 12px;
}

.te-company-detail .te-cd-company-name {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--te-text-dark);
    margin: 0;
    line-height: 1.2;
}

.te-company-detail .te-cd-status-badge {
    display: inline-flex;
    align-items: center;
    padding: 4px 12px;
    border-radius: var(--te-radius-full);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.te-company-detail .te-cd-status-open {
    background: #DCFCE7;
    color: #166534;
}

.te-company-detail .te-cd-status-closed {
    background: #FEE2E2;
    color: #991B1B;
}

.te-company-detail .te-cd-rating {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 16px;
    font-size: 0.95rem;
}

.te-company-detail .te-cd-rating i {
    color: #F59E0B;
    font-size: 1.1rem;
}

.te-company-detail .te-cd-rating strong {
    color: var(--te-text-dark);
    font-size: 1.05rem;
}

.te-company-detail .te-cd-rating span {
    color: var(--te-text-mid);
}

.te-company-detail .te-cd-details {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 16px;
}

.te-company-detail .te-cd-detail-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.88rem;
    color: var(--te-text-dark);
}

.te-company-detail .te-cd-detail-item i {
    color: var(--te-primary);
    width: 18px;
    text-align: center;
    flex-shrink: 0;
}

.te-company-detail .te-cd-distance {
    color: var(--te-primary);
    font-weight: 600;
    margin-left: auto;
    white-space: nowrap;
}

.te-company-detail .te-cd-actions {
    display: flex;
    gap: 16px;
    padding-top: 12px;
    border-top: 1px solid #F1F5F9;
}

.te-company-detail .te-cd-action-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--te-primary);
    text-decoration: none;
    transition: var(--te-transition);
}

.te-company-detail .te-cd-action-link:hover {
    color: var(--te-primary-dark);
    text-decoration: none;
}

/* ---------- Tab Navigation ---------- */
.te-company-detail .te-cd-tabs {
    background: var(--te-white);
    border-radius: var(--te-radius-lg);
    padding: 8px;
    box-shadow: var(--te-shadow-sm);
    margin-bottom: 16px;
}

.te-company-detail .te-cd-tab-list {
    display: flex;
    gap: 4px;
    margin: 0;
    padding: 0;
    overflow-x: auto;
    scrollbar-width: none;
}

.te-company-detail .te-cd-tab-list::-webkit-scrollbar {
    display: none;
}

.te-company-detail .te-cd-tab-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 18px;
    border-radius: var(--te-radius-full) !important;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--te-text-mid);
    background: transparent;
    border: none;
    white-space: nowrap;
    transition: var(--te-transition);
}

.te-company-detail .te-cd-tab-btn:hover {
    color: var(--te-primary);
    background: #F0F9FF;
}

.te-company-detail .te-cd-tab-btn.active {
    background: linear-gradient(135deg, var(--te-primary) 0%, var(--te-cyan) 100%) !important;
    color: var(--te-white) !important;
    box-shadow: 0 2px 8px rgba(2, 132, 199, 0.3);
}

.te-company-detail .te-cd-tab-btn i {
    font-size: 0.9rem;
}

/* ---------- Tab Content ---------- */
.te-company-detail .te-cd-tab-content {
    background: transparent;
}

.te-company-detail .te-cd-tab-content > .tab-pane {
    padding: 0;
}

/* ---------- Menu Tab - Section Title ---------- */
.te-company-detail .te-cd-section-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--te-text-dark);
    margin: 20px 0 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.te-company-detail .te-cd-section-title i {
    color: var(--te-primary);
}

/* ---------- House Type Selection ---------- */
.te-company-detail .te-cd-house-types {
    margin-bottom: 20px;
}

.te-company-detail .te-cd-house-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--te-text-dark);
    margin-bottom: 12px;
}

.te-company-detail .te-cd-house-title i {
    color: var(--te-primary);
}

.te-company-detail .te-cd-house-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}

.te-company-detail .te-cd-house-card {
    background: var(--te-white);
    border-radius: var(--te-radius-lg);
    overflow: hidden;
    cursor: pointer;
    box-shadow: var(--te-shadow-sm);
    transition: var(--te-transition);
    border: 2px solid transparent;
}

.te-company-detail .te-cd-house-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--te-shadow-md);
    border-color: var(--te-primary);
}

.te-company-detail .te-cd-house-img {
    height: 160px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.te-company-detail .te-cd-house-label {
    padding: 10px;
    text-align: center;
    font-weight: 700;
    font-size: 0.85rem;
    color: var(--te-text-dark);
    background: linear-gradient(135deg, rgba(2,132,199,0.08) 0%, rgba(6,182,212,0.08) 100%);
}

/* ---------- Service List ---------- */
.te-company-detail .te-cd-services-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 16px;
}

/* ---------- Category Header (Oto yıkama bölümleri) ---------- */
.te-company-detail .te-cd-category-header {
    background: linear-gradient(135deg, rgba(2,132,199,0.08) 0%, rgba(6,182,212,0.08) 100%);
    border-left: 4px solid var(--te-primary);
    border-radius: 0 var(--te-radius-lg) var(--te-radius-lg) 0;
    padding: 14px 18px;
    margin: 12px 0 8px;
}

.te-company-detail .te-cd-category-header h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--te-text-dark);
    margin: 0 0 4px;
}

.te-company-detail .te-cd-category-header p {
    font-size: 0.82rem;
    color: var(--te-text-mid);
    margin: 0;
}

/* ---------- Service Item ---------- */
.te-company-detail .te-cd-service-item {
    background: var(--te-white);
    border-radius: var(--te-radius-lg);
    padding: 16px 18px;
    box-shadow: var(--te-shadow-sm);
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
    transition: var(--te-transition);
}

.te-company-detail .te-cd-service-item:hover {
    box-shadow: var(--te-shadow-md);
}

.te-company-detail .te-cd-service-info {
    flex: 1 1 200px;
    min-width: 200px;
}

.te-company-detail .te-cd-service-name {
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--te-text-dark);
    display: block;
}

.te-company-detail .te-cd-service-desc {
    font-size: 0.82rem;
    color: var(--te-text-mid);
    margin: 4px 0 0;
    line-height: 1.4;
}

.te-company-detail .te-cd-service-controls {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
    max-width: 100%;
}

.te-company-detail .te-cd-select-group {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.te-company-detail .te-cd-select-wrap {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.te-company-detail .te-cd-select-label {
    font-size: 0.72rem;
    color: var(--te-text-mid);
    font-weight: 600;
    white-space: nowrap;
}

.te-company-detail .te-cd-select {
    padding: 7px 28px 7px 10px;
    border: 1.5px solid #E2E8F0;
    border-radius: 10px;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--te-text-dark);
    background: var(--te-white);
    cursor: pointer;
    transition: var(--te-transition);
    min-width: 100px;
    appearance: auto;
}

.te-company-detail .te-cd-select:focus {
    border-color: var(--te-primary);
    outline: none;
    box-shadow: 0 0 0 3px rgba(2, 132, 199, 0.15);
}

.te-company-detail .te-cd-qty-select {
    min-width: 60px;
    max-width: 80px;
}

.te-company-detail .te-cd-service-action {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
    min-width: 140px;
    justify-content: flex-end;
}

.te-company-detail .te-cd-service-action-inner {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
}

.te-company-detail .te-cd-service-price {
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--te-primary);
    white-space: nowrap;
    text-align: center;
}

.te-company-detail .te-cd-add-btn {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 8px 16px;
    background: linear-gradient(135deg, var(--te-primary) 0%, var(--te-cyan) 100%);
    color: var(--te-white);
    border-radius: var(--te-radius-full);
    font-size: 0.8rem;
    font-weight: 700;
    cursor: pointer;
    transition: var(--te-transition);
    white-space: nowrap;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.te-company-detail .te-cd-add-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(2, 132, 199, 0.35);
}

.te-company-detail .te-cd-add-btn i {
    font-size: 0.75rem;
}

.te-company-detail .te-cd-empty-msg {
    text-align: center;
    padding: 40px 20px;
    color: var(--te-text-mid);
    font-size: 0.95rem;
}

/* ---------- Car Selector (oto yıkama araç tipi) ---------- */
.te-company-detail .te-cd-car-selector {
    background: linear-gradient(135deg, rgba(2,132,199,0.05) 0%, rgba(6,182,212,0.05) 100%);
    border: 1.5px solid rgba(2,132,199,0.15);
}

/* ---------- Reviews Tab ---------- */
.te-company-detail .te-cd-review-form-card {
    background: var(--te-white);
    border-radius: var(--te-radius-lg);
    padding: 24px;
    box-shadow: var(--te-shadow-sm);
    margin-bottom: 16px;
    position: relative;
    overflow: hidden;
}

.te-company-detail .te-cd-review-form-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, var(--te-primary) 0%, var(--te-cyan) 100%);
    border-radius: var(--te-radius-lg) var(--te-radius-lg) 0 0;
}

.te-company-detail .te-cd-rate-section {
    margin-bottom: 20px;
}

.te-company-detail .te-cd-rate-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--te-text-dark);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.te-company-detail .te-cd-rate-title i {
    color: var(--te-primary);
}

.te-company-detail .te-cd-rate-row {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    gap: 8px;
}

.te-company-detail .te-cd-rate-label {
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--te-text-dark);
    min-width: 100px;
}

.te-company-detail .te-cd-rate-label i {
    color: var(--te-primary);
    margin-right: 6px;
}

.te-company-detail .te-cd-comment-section {
    border-top: 1px solid #F1F5F9;
    padding-top: 20px;
}

.te-company-detail .te-cd-textarea {
    width: 100%;
    border: 1.5px solid #E2E8F0;
    border-radius: 12px;
    padding: 14px;
    font-size: 0.88rem;
    font-family: var(--te-font);
    resize: vertical;
    transition: var(--te-transition);
}

.te-company-detail .te-cd-textarea:focus {
    border-color: var(--te-primary);
    outline: none;
    box-shadow: 0 0 0 3px rgba(2, 132, 199, 0.15);
}

.te-company-detail .te-cd-submit-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 32px;
    background: linear-gradient(135deg, var(--te-primary) 0%, var(--te-cyan) 100%);
    color: var(--te-white);
    border: none;
    border-radius: var(--te-radius-full);
    font-size: 0.88rem;
    font-weight: 700;
    cursor: pointer;
    transition: var(--te-transition);
}

.te-company-detail .te-cd-submit-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(2, 132, 199, 0.35);
}

/* Review Summary */
.te-company-detail .te-cd-review-summary-card {
    background: var(--te-white);
    border-radius: var(--te-radius-lg);
    padding: 24px;
    box-shadow: var(--te-shadow-sm);
    margin-bottom: 16px;
}

.te-company-detail .te-cd-review-summary-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--te-text-dark);
    margin-bottom: 20px;
}

.te-company-detail .te-cd-review-stats {
    display: flex;
    gap: 24px;
    align-items: flex-start;
    margin-bottom: 20px;
}

.te-company-detail .te-cd-avg-score {
    background: #F0F9FF;
    border-radius: 14px;
    padding: 16px 24px;
    text-align: center;
    flex-shrink: 0;
}

.te-company-detail .te-cd-avg-star {
    font-size: 2.5rem;
    color: var(--te-primary);
}

.te-company-detail .te-cd-avg-number {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--te-primary);
    margin: 0;
}

.te-company-detail .te-cd-star-bars {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.te-company-detail .te-cd-star-bar-row {
    display: flex;
    align-items: center;
    gap: 8px;
}

.te-company-detail .te-cd-star-label {
    font-size: 0.85rem;
    min-width: 80px;
    white-space: nowrap;
}

.te-company-detail .te-cd-star-active {
    color: var(--te-primary);
}

.te-company-detail .te-cd-star-inactive {
    color: #DADADA;
}

.te-company-detail .te-cd-star-count {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--te-text-mid);
    min-width: 24px;
    text-align: right;
}

.te-company-detail .progress {
    width: 100px;
    height: 9px;
    border-radius: 6px;
    background: #F1F5F9;
}

.te-company-detail .progress-bar {
    background: linear-gradient(135deg, var(--te-primary) 0%, var(--te-cyan) 100%) !important;
    border-radius: 6px;
}

.te-company-detail .te-cd-chart-container {
    margin-bottom: 16px;
    overflow: hidden;
}

.te-company-detail .te-cd-review-note {
    font-size: 0.82rem;
    color: var(--te-text-mid);
    margin: 0;
}

/* Individual Review Cards */
.te-company-detail .te-cd-review-card {
    background: var(--te-white);
    border-radius: var(--te-radius-lg);
    padding: 18px 20px;
    box-shadow: var(--te-shadow-sm);
    margin-bottom: 10px;
}

.te-company-detail .te-cd-review-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
}

.te-company-detail .te-cd-review-user {
    display: flex;
    align-items: center;
    gap: 10px;
}

.te-company-detail .te-cd-review-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
}

.te-company-detail .te-cd-review-username {
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--te-text-dark);
}

.te-company-detail .te-cd-review-meta {
    display: flex;
    align-items: center;
    gap: 12px;
}

.te-company-detail .te-cd-review-date {
    font-size: 0.82rem;
    color: var(--te-text-mid);
    font-weight: 600;
}

.te-company-detail .te-cd-review-score {
    font-size: 1rem;
    font-weight: 800;
    color: var(--te-text-dark);
}

.te-company-detail .te-cd-review-score i {
    color: #F59E0B;
    margin-right: 4px;
}

.te-company-detail .te-cd-review-message {
    font-size: 0.88rem;
    color: var(--te-text-dark);
    line-height: 1.5;
    margin: 0;
}

.te-company-detail .te-cd-pagination {
    padding: 16px 0;
}

.te-company-detail .te-cd-notice {
    padding: 24px;
    color: var(--te-text-mid);
    font-size: 0.95rem;
}

/* ---------- About Tab ---------- */
.te-company-detail .te-cd-about-card {
    background: var(--te-white);
    border-radius: var(--te-radius-lg);
    padding: 32px;
    box-shadow: var(--te-shadow-sm);
    max-width: 600px;
    margin: 24px auto;
}

.te-company-detail .te-cd-about-section {
    margin-bottom: 24px;
    padding-bottom: 20px;
    border-bottom: 1px solid #F1F5F9;
}

.te-company-detail .te-cd-about-section:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.te-company-detail .te-cd-about-section h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--te-text-dark);
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.te-company-detail .te-cd-about-section h3 i {
    color: var(--te-primary);
}

.te-company-detail .te-cd-about-section p {
    font-size: 0.88rem;
    color: var(--te-text-mid);
    margin: 4px 0 0;
    line-height: 1.5;
}

/* ---------- Map Tab ---------- */
.te-company-detail .te-cd-map-container {
    border-radius: var(--te-radius-lg);
    overflow: hidden;
    box-shadow: var(--te-shadow-sm);
}

.te-company-detail .te-cd-map {
    width: 100%;
    height: 500px;
}

/* ---------- Cart Sidebar (Desktop) ---------- */
.te-company-detail .te-cd-sidebar {
    position: sticky;
    top: 80px;
}

.te-company-detail .te-cd-cart {
    background: var(--te-white);
    border-radius: var(--te-radius-lg);
    padding: 20px;
    box-shadow: var(--te-shadow-md);
}

.te-company-detail .te-cd-cart-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--te-text-dark);
    text-align: center;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.te-company-detail .te-cd-cart-title i {
    color: var(--te-primary);
}

.te-company-detail .te-cd-cart-img {
    text-align: center;
    margin-bottom: 12px;
}

.te-company-detail .te-cd-cart-img img {
    max-width: 80px;
    opacity: 0.6;
}

.te-company-detail .cart-items {
    max-height: 300px;
    overflow: auto;
    scrollbar-width: thin;
}

.te-company-detail .te-cd-cart-item {
    padding: 8px 0;
    border-bottom: 1px solid #F1F5F9;
}

.te-company-detail .te-cd-cart-item .group {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 8px;
}

.te-company-detail .te-cd-cart-item .product-title {
    font-size: 0.82rem;
    color: var(--te-text-dark);
    display: flex;
    align-items: center;
    gap: 4px;
    flex: 1;
    min-width: 0;
}

.te-company-detail .te-cd-cart-item .product-price {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--te-primary);
    white-space: nowrap;
}

.te-company-detail .te-cd-remove-btn {
    background: transparent;
    border: none;
    outline: none;
    padding: 0;
    cursor: pointer;
    flex-shrink: 0;
}

.te-company-detail .te-cd-cart-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 0 10px;
    border-top: 2px solid #F1F5F9;
    margin-top: 8px;
}

.te-company-detail .te-cd-cart-total span {
    font-size: 1rem;
    font-weight: 700;
    color: var(--te-text-dark);
}

.te-company-detail .te-cd-cart-total strong {
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--te-primary);
}

.te-company-detail .te-cd-checkout-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 12px;
    background: linear-gradient(135deg, var(--te-primary) 0%, var(--te-cyan) 100%);
    color: var(--te-white);
    border-radius: var(--te-radius-full);
    font-size: 0.9rem;
    font-weight: 700;
    text-decoration: none;
    transition: var(--te-transition);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.te-company-detail .te-cd-checkout-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(2, 132, 199, 0.35);
    color: var(--te-white);
    text-decoration: none;
}

/* ---------- Mobile Cart Bar ---------- */
.te-company-detail .te-cd-mobile-cart-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--te-white);
    box-shadow: 0 -4px 16px rgba(0,0,0,0.1);
    padding: 12px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 1000;
    border-top: 1px solid #E2E8F0;
}

.te-company-detail .te-cd-mobile-cart-info {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: var(--te-text-dark);
}

.te-company-detail .te-cd-mobile-cart-info i {
    color: var(--te-primary);
    font-size: 1.1rem;
}

.te-company-detail .te-cd-mobile-subtotal {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--te-primary);
}

.te-company-detail .te-cd-mobile-checkout-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 20px;
    background: linear-gradient(135deg, var(--te-primary) 0%, var(--te-cyan) 100%);
    color: var(--te-white);
    border-radius: var(--te-radius-full);
    font-size: 0.85rem;
    font-weight: 700;
    text-decoration: none;
    transition: var(--te-transition);
}

.te-company-detail .te-cd-mobile-checkout-btn:hover {
    color: var(--te-white);
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(2, 132, 199, 0.35);
}

/* ---------- Star Rating Override ---------- */
.te-company-detail .rate:not(:checked) > input {
    top: 0px;
    opacity: 0;
}

.te-company-detail h4 {
    color: var(--te-text-dark);
}

.te-company-detail h3 {
    color: var(--te-text-dark);
}

.te-company-detail .swal2-html-container {
    text-wrap: balance;
}

/* ============================================
   COMPANY DETAIL - Responsive
   ============================================ */

/* Tablet: single column, hide sidebar */
@media (max-width: 991px) {
    .te-company-detail .te-cd-container {
        grid-template-columns: 1fr;
        padding: 12px 16px;
    }

    .te-company-detail .te-cd-house-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .te-company-detail .te-cd-company-name {
        font-size: 1.25rem;
    }

    .te-company-detail .te-cd-review-stats {
        flex-direction: column;
    }
}

/* Mobile */
@media (max-width: 767px) {
    .te-company-detail {
        padding-bottom: 70px;
    }

    .te-company-detail .te-cd-container {
        padding: 10px 12px;
    }

    .te-company-detail .te-cd-info-card {
        padding: 16px;
    }

    .te-company-detail .te-cd-company-name {
        font-size: 1.1rem;
    }

    .te-company-detail .te-cd-house-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .te-company-detail .te-cd-house-img {
        height: 120px;
    }

    .te-company-detail .te-cd-service-item {
        flex-direction: column;
        align-items: stretch;
        padding: 14px;
        gap: 10px;
    }

    .te-company-detail .te-cd-service-controls {
        flex-direction: column;
        align-items: stretch;
    }

    .te-company-detail .te-cd-select-group {
        flex-direction: column;
    }

    .te-company-detail .te-cd-select {
        width: 100%;
    }

    .te-company-detail .te-cd-service-action {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }

    .te-company-detail .te-cd-service-action-inner {
        flex-direction: row;
        align-items: center;
        width: 100%;
        justify-content: space-between;
    }

    .te-company-detail .te-cd-tab-list {
        flex-wrap: nowrap;
        overflow-x: auto;
    }

    .te-company-detail .te-cd-tab-btn {
        padding: 8px 14px;
        font-size: 0.8rem;
    }

    .te-company-detail .te-cd-about-card {
        padding: 20px;
        margin: 12px auto;
    }

    .te-company-detail .te-cd-map {
        height: 350px;
    }

    .te-company-detail .te-cd-review-form-card {
        padding: 16px;
    }

    .te-company-detail .te-cd-rate-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
    }

    .te-company-detail .fronted-rate {
        padding: 22px 0px 0px 0px;
    }

    .te-company-detail .review-icon {
        margin-bottom: 1rem;
    }

    .te-company-detail .te-cd-review-summary-card {
        padding: 16px;
    }

    .te-company-detail .te-cd-review-card {
        padding: 14px;
    }

    .te-company-detail .te-cd-category-bar-inner {
        padding: 0 12px;
        flex-wrap: nowrap;
        overflow-x: auto;
    }
}


/* ============================================
   FAQ PAGE - Crystal Blue V2
   All styles scoped under .te-faq-page
   ============================================ */

.te-faq-page {
    background: var(--te-light-bg);
    font-family: var(--te-font) !important;
    min-height: 100vh;
}

/* ---------- Hero ---------- */
.te-faq-hero {
    background: linear-gradient(135deg, #0C4A6E 0%, var(--te-primary) 40%, var(--te-cyan) 100%);
    padding: 64px 24px 56px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.te-faq-hero::before {
    content: '';
    position: absolute;
    top: -40%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255,255,255,0.06) 0%, transparent 70%);
    border-radius: 50%;
}

.te-faq-hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(6,182,212,0.12) 0%, transparent 70%);
    border-radius: 50%;
}

.te-faq-hero-inner {
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.te-faq-hero-badge {
    display: inline-block;
    padding: 6px 20px;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: var(--te-radius-full);
    color: white;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 16px;
    border: 1px solid rgba(255,255,255,0.2);
}

.te-faq-hero-title {
    font-size: 2.4rem;
    font-weight: 800;
    color: white;
    margin: 0 0 12px;
    line-height: 1.15;
}

.te-faq-hero-subtitle {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.8);
    margin: 0;
    line-height: 1.5;
}

/* ---------- Container ---------- */
.te-faq-container {
    max-width: 820px;
    margin: -32px auto 0;
    padding: 0 24px 64px;
    position: relative;
    z-index: 2;
}

/* ---------- Category Tabs ---------- */
.te-faq-categories {
    display: flex;
    gap: 8px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 28px;
    background: var(--te-white);
    padding: 12px;
    border-radius: var(--te-radius-xl);
    box-shadow: var(--te-shadow-md);
}

.te-faq-cat-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 18px;
    border: 1.5px solid #E2E8F0;
    border-radius: var(--te-radius-full);
    background: transparent;
    color: var(--te-text-mid);
    font-size: 0.82rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--te-transition);
    font-family: var(--te-font);
    white-space: nowrap;
}

.te-faq-cat-btn:hover {
    border-color: var(--te-primary);
    color: var(--te-primary);
    background: #F0F9FF;
}

.te-faq-cat-btn.active {
    background: linear-gradient(135deg, var(--te-primary) 0%, var(--te-cyan) 100%);
    color: white;
    border-color: transparent;
    box-shadow: 0 2px 8px rgba(2, 132, 199, 0.3);
}

.te-faq-cat-btn i {
    font-size: 0.85rem;
}

/* ---------- FAQ List ---------- */
.te-faq-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* ---------- FAQ Item ---------- */
.te-faq-item {
    background: var(--te-white);
    border-radius: var(--te-radius-lg);
    box-shadow: var(--te-shadow-sm);
    overflow: hidden;
    transition: var(--te-transition);
    border: 1.5px solid transparent;
}

.te-faq-item:hover {
    box-shadow: var(--te-shadow-md);
}

.te-faq-item.te-faq-open {
    border-color: rgba(2, 132, 199, 0.2);
    box-shadow: 0 4px 20px rgba(2, 132, 199, 0.1);
}

.te-faq-item[style*="display: none"] {
    display: none !important;
}

/* ---------- Question Button ---------- */
.te-faq-question {
    display: flex;
    align-items: center;
    gap: 16px;
    width: 100%;
    padding: 18px 22px;
    border: none;
    background: transparent;
    cursor: pointer;
    text-align: left;
    font-family: var(--te-font);
    transition: var(--te-transition);
}

.te-faq-question:hover {
    background: rgba(2, 132, 199, 0.03);
}

.te-faq-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    min-width: 36px;
    border-radius: 10px;
    background: linear-gradient(135deg, rgba(2,132,199,0.1) 0%, rgba(6,182,212,0.1) 100%);
    color: var(--te-primary);
    font-size: 0.8rem;
    font-weight: 800;
}

.te-faq-open .te-faq-number {
    background: linear-gradient(135deg, var(--te-primary) 0%, var(--te-cyan) 100%);
    color: white;
}

.te-faq-q-text {
    flex: 1;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--te-text-dark);
    line-height: 1.4;
    text-decoration: none !important;
}

.te-faq-question,
.te-faq-question:hover,
.te-faq-question:focus,
.te-faq-question:active {
    text-decoration: none !important;
}

.te-faq-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    min-width: 32px;
    border-radius: 50%;
    background: #F1F5F9;
    color: var(--te-text-mid);
    font-size: 1.3rem;
    font-weight: 300;
    transition: var(--te-transition);
    line-height: 1;
}

.te-faq-open .te-faq-icon {
    background: linear-gradient(135deg, var(--te-primary) 0%, var(--te-cyan) 100%);
    color: white;
    transform: rotate(0deg);
}

/* ---------- Answer ---------- */
.te-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.te-faq-answer-inner {
    padding: 0 22px 20px 74px;
    font-size: 0.9rem;
    color: var(--te-text-mid);
    line-height: 1.7;
}

/* ---------- Contact CTA ---------- */
.te-faq-cta {
    margin-top: 40px;
}

.te-faq-cta-inner {
    background: linear-gradient(135deg, #0C4A6E 0%, var(--te-primary) 50%, var(--te-cyan) 100%);
    border-radius: var(--te-radius-xl);
    padding: 36px;
    display: flex;
    align-items: center;
    gap: 24px;
    position: relative;
    overflow: hidden;
}

.te-faq-cta-inner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255,255,255,0.08) 0%, transparent 70%);
    border-radius: 50%;
}

.te-faq-cta-icon {
    width: 56px;
    height: 56px;
    min-width: 56px;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: white;
}

.te-faq-cta-text {
    flex: 1;
    position: relative;
    z-index: 1;
}

.te-faq-cta-text h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: white;
    margin: 0 0 4px;
}

.te-faq-cta-text p {
    font-size: 0.88rem;
    color: rgba(255,255,255,0.75);
    margin: 0;
}

.te-faq-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: white;
    color: var(--te-primary);
    border-radius: var(--te-radius-full);
    font-size: 0.85rem;
    font-weight: 700;
    text-decoration: none;
    transition: var(--te-transition);
    white-space: nowrap;
    position: relative;
    z-index: 1;
}

.te-faq-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0,0,0,0.2);
    color: var(--te-primary);
    text-decoration: none;
}

/* ---------- FAQ Responsive ---------- */
@media (max-width: 767px) {
    .te-faq-hero {
        padding: 40px 16px 44px;
    }

    .te-faq-hero-title {
        font-size: 1.6rem;
    }

    .te-faq-hero-subtitle {
        font-size: 0.9rem;
    }

    .te-faq-container {
        padding: 0 12px 48px;
        margin-top: -24px;
    }

    .te-faq-categories {
        gap: 6px;
        padding: 8px;
        overflow-x: auto;
        flex-wrap: nowrap;
        justify-content: flex-start;
        scrollbar-width: none;
    }

    .te-faq-categories::-webkit-scrollbar {
        display: none;
    }

    .te-faq-cat-btn {
        padding: 6px 14px;
        font-size: 0.78rem;
    }

    .te-faq-question {
        padding: 14px 16px;
        gap: 12px;
    }

    .te-faq-number {
        width: 30px;
        height: 30px;
        min-width: 30px;
        font-size: 0.72rem;
        border-radius: 8px;
    }

    .te-faq-q-text {
        font-size: 0.88rem;
    }

    .te-faq-icon {
        width: 28px;
        height: 28px;
        min-width: 28px;
        font-size: 1.1rem;
    }

    .te-faq-answer-inner {
        padding: 0 16px 16px 58px;
        font-size: 0.85rem;
    }

    .te-faq-cta-inner {
        flex-direction: column;
        text-align: center;
        padding: 28px 20px;
        gap: 16px;
    }

    .te-faq-cta-btn {
        width: 100%;
        justify-content: center;
    }
}


/* ============================================================
   LEGAL / STATIC PAGES — Crystal Blue V2
   (KVKK, Gizlilik, Kullanım Şartları, Çerez, Hakkımızda, vs.)
   ============================================================ */

.te-legal-page {
    background: #F0F9FF;
    min-height: 100vh;
    font-family: var(--te-font);
}

/* --- Hero --- */
.te-legal-hero {
    background: linear-gradient(135deg, #0C4A6E 0%, #0284C7 50%, #06B6D4 100%);
    padding: 48px 24px 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.te-legal-hero::before {
    content: '';
    position: absolute;
    top: -60px;
    right: -60px;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: rgba(255,255,255,0.04);
}

.te-legal-hero::after {
    content: '';
    position: absolute;
    bottom: -40px;
    left: -40px;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: rgba(255,255,255,0.03);
}

.te-legal-hero-inner {
    max-width: var(--te-container);
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.te-legal-hero-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(8px);
    color: white;
    font-size: 1.25rem;
    margin-bottom: 14px;
}

.te-legal-hero-title {
    font-size: 1.65rem;
    font-weight: 800;
    color: white;
    margin: 0;
    line-height: 1.3;
    letter-spacing: -0.02em;
}

/* --- Container --- */
.te-legal-container {
    max-width: 900px;
    margin: -20px auto 0;
    padding: 0 20px 60px;
    position: relative;
    z-index: 2;
}

/* --- Card --- */
.te-legal-card {
    background: white;
    border-radius: var(--te-radius-lg, 16px);
    box-shadow: 0 4px 24px rgba(0,0,0,0.06), 0 1px 4px rgba(0,0,0,0.04);
    padding: 40px 48px;
    position: relative;
}

.te-legal-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    border-radius: 16px 16px 0 0;
    background: linear-gradient(90deg, var(--te-primary) 0%, var(--te-cyan) 100%);
}

/* --- Content typography (handles Word-exported HTML) --- */
.te-legal-content {
    color: var(--te-text-dark, #1E293B);
    font-size: 0.9rem;
    line-height: 1.75;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.te-legal-content h1,
.te-legal-content h2,
.te-legal-content h3,
.te-legal-content h4,
.te-legal-content h5 {
    color: var(--te-text-dark, #1E293B);
    font-weight: 700;
    margin-top: 1.5em;
    margin-bottom: 0.5em;
    line-height: 1.3;
}

.te-legal-content h1 { font-size: 1.4rem; }
.te-legal-content h2 { font-size: 1.2rem; }
.te-legal-content h3 { font-size: 1.05rem; }

.te-legal-content p,
.te-legal-content .MsoNormal {
    margin-bottom: 0.6em !important;
    color: var(--te-text-mid, #475569) !important;
    font-size: 0.88rem !important;
    line-height: 1.7 !important;
    font-family: var(--te-font) !important;
}

.te-legal-content b,
.te-legal-content strong {
    color: var(--te-text-dark, #1E293B);
    font-weight: 700;
}

.te-legal-content u {
    text-decoration-color: var(--te-primary, #0284C7);
    text-underline-offset: 3px;
}

.te-legal-content a {
    color: var(--te-primary, #0284C7);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.te-legal-content a:hover {
    color: var(--te-cyan, #06B6D4);
}

/* --- Tables (Word MsoTableGrid) --- */
.te-legal-content table,
.te-legal-content .MsoTableGrid {
    width: 100% !important;
    border-collapse: collapse;
    margin: 1.2em 0;
    font-size: 0.85rem;
    border: none !important;
    border-radius: 8px;
    overflow: hidden;
}

.te-legal-content table td,
.te-legal-content table th,
.te-legal-content .MsoTableGrid td {
    padding: 10px 14px !important;
    border: 1px solid #E2E8F0 !important;
    vertical-align: top;
    color: var(--te-text-mid, #475569);
    font-family: var(--te-font) !important;
    font-size: 0.85rem !important;
    line-height: 1.6 !important;
}

.te-legal-content table tr:first-child td,
.te-legal-content table thead td,
.te-legal-content table thead th {
    background: linear-gradient(135deg, rgba(2,132,199,0.06) 0%, rgba(6,182,212,0.06) 100%);
    font-weight: 700;
    color: var(--te-text-dark, #1E293B);
}

.te-legal-content table tr:nth-child(even) td {
    background: #F8FAFC;
}

/* --- Lists --- */
.te-legal-content ul,
.te-legal-content ol {
    padding-left: 1.5em;
    margin-bottom: 1em;
    color: var(--te-text-mid, #475569);
}

.te-legal-content li {
    margin-bottom: 0.4em;
    line-height: 1.65;
}

/* --- Remove Word cruft --- */
.te-legal-content o\:p,
.te-legal-content .MsoNormal o\:p {
    display: none;
}

.te-legal-content [style*="font-family"] {
    font-family: var(--te-font) !important;
}

.te-legal-content [style*="color"] {
    color: inherit !important;
}

.te-legal-content [style*="background"] {
    background: transparent !important;
}

/* --- Responsive --- */
@media (max-width: 768px) {
    .te-legal-hero {
        padding: 36px 16px 32px;
    }

    .te-legal-hero-title {
        font-size: 1.3rem;
    }

    .te-legal-container {
        padding: 0 12px 40px;
    }

    .te-legal-card {
        padding: 24px 18px;
        border-radius: 12px;
    }

    .te-legal-content table,
    .te-legal-content .MsoTableGrid {
        display: block;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .te-legal-content p,
    .te-legal-content .MsoNormal {
        font-size: 0.84rem !important;
    }
}


/* ============================================================
   ABOUT PAGE — Crystal Blue V2
   ============================================================ */

.te-about-page {
    font-family: var(--te-font);
    background: #F0F9FF;
}

/* --- Hero --- */
.te-about-hero {
    position: relative;
    height: 420px;
    overflow: hidden;
}

.te-about-hero-bg {
    position: absolute;
    inset: 0;
}

.te-about-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 30%;
}

.te-about-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg,
        rgba(12,74,110,0.55) 0%,
        rgba(2,132,199,0.65) 50%,
        rgba(12,74,110,0.8) 100%);
}

.te-about-hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    text-align: center;
    padding: 24px;
}

.te-about-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    border-radius: var(--te-radius-full);
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(12px);
    color: white;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 16px;
    border: 1px solid rgba(255,255,255,0.2);
}

.te-about-hero-title {
    font-size: 2.8rem;
    font-weight: 900;
    color: white;
    margin: 0 0 12px;
    letter-spacing: -0.03em;
    text-shadow: 0 2px 16px rgba(0,0,0,0.2);
}

.te-about-hero-spacer {
    height: 16px;
}

.te-about-hero-subtitle {
    font-size: 1.15rem;
    color: rgba(255,255,255,0.9);
    margin: 0;
    font-weight: 400;
    max-width: 500px;
}

.te-about-hero-scroll {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255,255,255,0.6);
    font-size: 1.2rem;
    animation: te-about-bounce 2s infinite;
}

@keyframes te-about-bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-8px); }
    60% { transform: translateX(-50%) translateY(-4px); }
}

/* --- Container --- */
.te-about-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px 80px;
}

/* --- Mission --- */
.te-about-mission {
    display: flex;
    gap: 28px;
    align-items: flex-start;
    background: white;
    border-radius: 20px;
    padding: 40px 44px;
    margin-top: -48px;
    position: relative;
    z-index: 3;
    box-shadow: 0 8px 32px rgba(0,0,0,0.08), 0 2px 8px rgba(0,0,0,0.04);
}

.te-about-mission::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    border-radius: 20px 20px 0 0;
    background: linear-gradient(90deg, var(--te-primary) 0%, var(--te-cyan) 100%);
}

.te-about-mission-icon {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--te-primary) 0%, var(--te-cyan) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.4rem;
}

.te-about-mission-body h2 {
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--te-text-dark);
    margin: 0 0 12px;
}

.te-about-mission-body p {
    font-size: 0.92rem;
    line-height: 1.75;
    color: var(--te-text-mid);
    margin: 0 0 8px;
}

/* --- Stats --- */
.te-about-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin: 40px 0;
}

.te-about-stat {
    background: white;
    border-radius: 16px;
    padding: 28px 20px;
    text-align: center;
    box-shadow: 0 2px 12px rgba(0,0,0,0.04);
    transition: var(--te-transition);
}

.te-about-stat:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(2,132,199,0.12);
}

.te-about-stat-num {
    display: block;
    font-size: 2rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--te-primary) 0%, var(--te-cyan) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 4px;
}

.te-about-stat-lbl {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--te-text-mid);
}

/* --- Section Titles --- */
.te-about-sec-title {
    text-align: center;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--te-text-dark);
    margin: 48px 0 24px;
}

.te-about-sec-sub {
    text-align: center;
    font-size: 0.9rem;
    color: var(--te-text-mid);
    margin: 0 0 28px;
}

/* --- Features Grid --- */
.te-about-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 48px;
}

.te-about-feat {
    background: white;
    border-radius: 16px;
    padding: 28px 24px;
    text-align: center;
    box-shadow: 0 2px 12px rgba(0,0,0,0.04);
    transition: var(--te-transition);
}

.te-about-feat:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(2,132,199,0.1);
}

.te-about-feat-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(2,132,199,0.08) 0%, rgba(6,182,212,0.08) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 14px;
    color: var(--te-primary);
    font-size: 1.3rem;
    transition: var(--te-transition);
}

.te-about-feat:hover .te-about-feat-icon {
    background: linear-gradient(135deg, var(--te-primary) 0%, var(--te-cyan) 100%);
    color: white;
}

.te-about-feat h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--te-text-dark);
    margin: 0 0 8px;
}

.te-about-feat p {
    font-size: 0.84rem;
    color: var(--te-text-mid);
    line-height: 1.6;
    margin: 0;
}

/* --- Categories --- */
.te-about-cats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
    margin-bottom: 48px;
}

.te-about-cat {
    display: flex;
    align-items: center;
    gap: 12px;
    background: white;
    border-radius: 12px;
    padding: 16px 18px;
    box-shadow: 0 1px 6px rgba(0,0,0,0.04);
    transition: var(--te-transition);
    cursor: default;
}

.te-about-cat:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(2,132,199,0.1);
}

.te-about-cat i {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: linear-gradient(135deg, rgba(2,132,199,0.08) 0%, rgba(6,182,212,0.08) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--te-primary);
    font-size: 0.95rem;
    flex-shrink: 0;
}

.te-about-cat span {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--te-text-dark);
}

/* --- Vision --- */
.te-about-vision {
    background: linear-gradient(135deg, #0C4A6E 0%, var(--te-primary) 50%, var(--te-cyan) 100%);
    border-radius: 20px;
    padding: 48px 52px;
    margin-bottom: 40px;
    position: relative;
    overflow: hidden;
}

.te-about-vision::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: rgba(255,255,255,0.06);
}

.te-about-vision::after {
    content: '';
    position: absolute;
    bottom: -30px;
    left: -30px;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: rgba(255,255,255,0.04);
}

.te-about-vision-content {
    position: relative;
    z-index: 1;
}

.te-about-vision-content h2 {
    font-size: 1.4rem;
    font-weight: 800;
    color: white;
    margin: 0 0 16px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.te-about-vision-content p {
    font-size: 0.92rem;
    line-height: 1.75;
    color: rgba(255,255,255,0.88);
    margin: 0 0 10px;
    max-width: 700px;
}

.te-about-vision-content strong {
    color: white;
}

/* --- CTA --- */
.te-about-cta {
    text-align: center;
    background: white;
    border-radius: 20px;
    padding: 48px 40px;
    margin-top: 48px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    position: relative;
}

.te-about-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    border-radius: 20px 20px 0 0;
    background: linear-gradient(90deg, var(--te-primary) 0%, var(--te-cyan) 100%);
}

.te-about-cta h2 {
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--te-text-dark);
    margin: 0 0 8px;
}

.te-about-cta > p {
    font-size: 0.9rem;
    color: var(--te-text-mid);
    margin: 0 0 24px;
}

.te-about-cta-btns {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
}

.te-about-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    border-radius: var(--te-radius-full);
    font-size: 0.9rem;
    font-weight: 700;
    text-decoration: none;
    transition: var(--te-transition);
    background: linear-gradient(135deg, var(--te-primary) 0%, var(--te-cyan) 100%);
    color: white;
    box-shadow: 0 4px 14px rgba(2,132,199,0.3);
}

.te-about-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(2,132,199,0.4);
    color: white;
    text-decoration: none;
}

.te-about-cta-outline {
    background: transparent;
    color: var(--te-primary);
    border: 2px solid var(--te-primary);
    box-shadow: none;
}

.te-about-cta-outline:hover {
    background: var(--te-primary);
    color: white;
    box-shadow: 0 4px 14px rgba(2,132,199,0.3);
}

/* --- Responsive --- */
@media (max-width: 991px) {
    .te-about-hero { height: 340px; }
    .te-about-hero-title { font-size: 2.2rem; }
    .te-about-features { grid-template-columns: repeat(2, 1fr); }
    .te-about-cats { grid-template-columns: repeat(3, 1fr); }
    .te-about-stats { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .te-about-hero { height: 300px; }
    .te-about-hero-title { font-size: 1.8rem; }
    .te-about-hero-subtitle { font-size: 0.95rem; }

    .te-about-container { padding: 0 16px 48px; }

    .te-about-mission {
        flex-direction: column;
        padding: 28px 24px;
        margin-top: -36px;
        gap: 16px;
    }

    .te-about-stats { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .te-about-stat { padding: 20px 16px; }
    .te-about-stat-num { font-size: 1.6rem; }

    .te-about-features { grid-template-columns: 1fr; gap: 14px; }

    .te-about-cats { grid-template-columns: repeat(2, 1fr); gap: 10px; }
    .te-about-cat { padding: 12px 14px; }

    .te-about-vision { padding: 32px 24px; border-radius: 16px; }

    .te-about-cta { padding: 32px 24px; }
    .te-about-cta-btns { flex-direction: column; }
    .te-about-cta-btn { justify-content: center; }
}


/* ============================================================
   CAREER PAGE — Crystal Blue V2
   ============================================================ */

.te-career-page {
    font-family: var(--te-font);
    background: #F0F9FF;
}

/* --- Hero --- */
.te-career-hero {
    background: linear-gradient(135deg, #0C4A6E 0%, #0369A1 40%, var(--te-primary) 70%, var(--te-cyan) 100%);
    padding: 72px 24px 64px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.te-career-hero::before {
    content: '';
    position: absolute;
    top: -80px;
    right: -80px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: rgba(255,255,255,0.04);
}

.te-career-hero::after {
    content: '';
    position: absolute;
    bottom: -60px;
    left: -40px;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: rgba(255,255,255,0.03);
}

.te-career-hero-inner {
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.te-career-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    border-radius: var(--te-radius-full);
    background: rgba(255,255,255,0.12);
    backdrop-filter: blur(12px);
    color: white;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 20px;
    border: 1px solid rgba(255,255,255,0.15);
}

.te-career-hero-title {
    font-size: 2.6rem;
    font-weight: 900;
    color: white;
    margin: 0 0 16px;
    line-height: 1.2;
    letter-spacing: -0.03em;
    text-shadow: 0 2px 16px rgba(0,0,0,0.15);
}

.te-career-hero-subtitle {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.85);
    margin: 0 0 28px;
    line-height: 1.65;
}

.te-career-hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 30px;
    border-radius: var(--te-radius-full);
    background: white;
    color: var(--te-primary);
    font-size: 0.9rem;
    font-weight: 700;
    text-decoration: none;
    transition: var(--te-transition);
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

.te-career-hero-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 28px rgba(0,0,0,0.2);
    color: var(--te-primary);
    text-decoration: none;
}

/* --- Container --- */
.te-career-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px 80px;
}

/* --- Why Join --- */
.te-career-why {
    margin-top: -32px;
    position: relative;
    z-index: 2;
}

.te-career-why-header {
    text-align: center;
    background: white;
    border-radius: 20px;
    padding: 36px 40px 28px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.08);
    margin-bottom: 24px;
    position: relative;
}

.te-career-why-header::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    border-radius: 20px 20px 0 0;
    background: linear-gradient(90deg, var(--te-primary) 0%, var(--te-cyan) 100%);
}

.te-career-why-header h2 {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--te-text-dark);
    margin: 0 0 6px;
}

.te-career-why-header p {
    font-size: 0.9rem;
    color: var(--te-text-mid);
    margin: 0;
}

.te-career-perks {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.te-career-perk {
    background: white;
    border-radius: 16px;
    padding: 28px 24px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.04);
    transition: var(--te-transition);
}

.te-career-perk:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(2,132,199,0.1);
}

.te-career-perk-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(2,132,199,0.08) 0%, rgba(6,182,212,0.08) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--te-primary);
    font-size: 1.2rem;
    margin-bottom: 14px;
    transition: var(--te-transition);
}

.te-career-perk:hover .te-career-perk-icon {
    background: linear-gradient(135deg, var(--te-primary) 0%, var(--te-cyan) 100%);
    color: white;
}

.te-career-perk h3 {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--te-text-dark);
    margin: 0 0 8px;
}

.te-career-perk p {
    font-size: 0.82rem;
    color: var(--te-text-mid);
    line-height: 1.6;
    margin: 0;
}

/* --- Culture --- */
.te-career-culture {
    background: linear-gradient(135deg, #0C4A6E 0%, var(--te-primary) 50%, var(--te-cyan) 100%);
    border-radius: 20px;
    padding: 48px 52px;
    margin: 40px 0;
    position: relative;
    overflow: hidden;
}

.te-career-culture::before {
    content: '';
    position: absolute;
    top: -50px; right: -50px;
    width: 180px; height: 180px;
    border-radius: 50%;
    background: rgba(255,255,255,0.05);
}

.te-career-culture-text {
    position: relative;
    z-index: 1;
}

.te-career-culture-text h2 {
    font-size: 1.35rem;
    font-weight: 800;
    color: white;
    margin: 0 0 16px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.te-career-culture-text p {
    font-size: 0.9rem;
    line-height: 1.75;
    color: rgba(255,255,255,0.88);
    margin: 0 0 12px;
    max-width: 750px;
}

.te-career-culture-text ul {
    list-style: none;
    padding: 0;
    margin: 18px 0 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.te-career-culture-text li {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.9);
    line-height: 1.5;
    padding-left: 20px;
    position: relative;
}

.te-career-culture-text li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--te-cyan);
    font-weight: 700;
}

.te-career-culture-text li strong {
    color: white;
}

/* --- Positions --- */
.te-career-sec-title {
    text-align: center;
    font-size: 1.45rem;
    font-weight: 800;
    color: var(--te-text-dark);
    margin: 0 0 6px;
}

.te-career-sec-sub {
    text-align: center;
    font-size: 0.88rem;
    color: var(--te-text-mid);
    margin: 0 0 28px;
}

.te-career-jobs {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.te-career-job {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    background: white;
    border-radius: 16px;
    padding: 28px 32px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.04);
    transition: var(--te-transition);
    border-left: 4px solid transparent;
}

.te-career-job:hover {
    border-left-color: var(--te-primary);
    box-shadow: 0 6px 20px rgba(2,132,199,0.1);
    transform: translateX(4px);
}

.te-career-job-info {
    flex: 1;
}

.te-career-job-info h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--te-text-dark);
    margin: 0 0 8px;
}

.te-career-job-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 10px;
}

.te-career-job-tags span {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 4px 12px;
    border-radius: var(--te-radius-full);
    background: rgba(2,132,199,0.06);
    color: var(--te-primary);
    font-size: 0.75rem;
    font-weight: 600;
}

.te-career-job-info p {
    font-size: 0.84rem;
    color: var(--te-text-mid);
    line-height: 1.6;
    margin: 0;
}

.te-career-job-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 24px;
    border-radius: var(--te-radius-full);
    background: linear-gradient(135deg, var(--te-primary) 0%, var(--te-cyan) 100%);
    color: white;
    font-size: 0.85rem;
    font-weight: 700;
    text-decoration: none;
    white-space: nowrap;
    transition: var(--te-transition);
    box-shadow: 0 3px 12px rgba(2,132,199,0.25);
}

.te-career-job-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(2,132,199,0.35);
    color: white;
    text-decoration: none;
}

/* --- CTA --- */
.te-career-cta {
    text-align: center;
    background: white;
    border-radius: 20px;
    padding: 48px 40px;
    margin-top: 40px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    position: relative;
}

.te-career-cta::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    border-radius: 20px 20px 0 0;
    background: linear-gradient(90deg, var(--te-primary) 0%, var(--te-cyan) 100%);
}

.te-career-cta-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(2,132,199,0.08) 0%, rgba(6,182,212,0.08) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--te-primary);
    font-size: 1.4rem;
    margin: 0 auto 16px;
}

.te-career-cta h2 {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--te-text-dark);
    margin: 0 0 8px;
}

.te-career-cta > p {
    font-size: 0.9rem;
    color: var(--te-text-mid);
    margin: 0 0 24px;
}

.te-career-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 30px;
    border-radius: var(--te-radius-full);
    background: linear-gradient(135deg, var(--te-primary) 0%, var(--te-cyan) 100%);
    color: white;
    font-size: 0.9rem;
    font-weight: 700;
    text-decoration: none;
    transition: var(--te-transition);
    box-shadow: 0 4px 14px rgba(2,132,199,0.3);
}

.te-career-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(2,132,199,0.4);
    color: white;
    text-decoration: none;
}

/* --- Responsive --- */
@media (max-width: 991px) {
    .te-career-hero-title { font-size: 2rem; }
    .te-career-perks { grid-template-columns: repeat(2, 1fr); }
    .te-career-culture-text ul { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .te-career-hero { padding: 48px 20px 44px; }
    .te-career-hero-title { font-size: 1.7rem; }
    .te-career-hero-subtitle { font-size: 0.92rem; }
    .te-career-container { padding: 0 16px 48px; }
    .te-career-why-header { padding: 28px 24px 20px; }
    .te-career-perks { grid-template-columns: 1fr; gap: 12px; }
    .te-career-culture { padding: 32px 24px; border-radius: 16px; }
    .te-career-job {
        flex-direction: column;
        align-items: flex-start;
        padding: 24px 20px;
    }
    .te-career-job-btn { width: 100%; justify-content: center; }
    .te-career-cta { padding: 32px 24px; }
}

/* ==========================================================================
   CONTACT PAGE — Crystal Blue V2
   ========================================================================== */

.te-contact-page {
    background: var(--te-bg, #F0F9FF);
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* Hero */
.te-contact-hero {
    background: linear-gradient(135deg, #0284C7 0%, #0EA5E9 40%, #06B6D4 100%);
    padding: 80px 24px 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.te-contact-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255,255,255,0.08) 0%, transparent 70%);
    border-radius: 50%;
}
.te-contact-hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255,255,255,0.05) 0%, transparent 70%);
    border-radius: 50%;
}
.te-contact-hero-inner {
    position: relative;
    z-index: 1;
    max-width: 640px;
    margin: 0 auto;
}
.te-contact-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    padding: 6px 16px;
    border-radius: 100px;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
}
.te-contact-hero-title {
    color: #fff;
    font-size: 2.4rem;
    font-weight: 800;
    line-height: 1.2;
    margin: 0 0 16px;
}
.te-contact-hero-subtitle {
    color: rgba(255,255,255,0.85);
    font-size: 1.05rem;
    line-height: 1.6;
    margin: 0;
}

/* Container */
.te-contact-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 48px 24px 56px;
}

/* Grid: info left, form right */
.te-contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 40px;
    align-items: start;
}

/* --- Left: Contact Info --- */
.te-contact-info-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #0C4A6E;
    margin: 0 0 8px;
}
.te-contact-info-desc {
    color: #64748B;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0 0 28px;
}

.te-contact-cards {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.te-contact-card {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    background: #fff;
    border-radius: 16px;
    padding: 20px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.06), 0 4px 12px rgba(2,132,199,0.04);
    transition: transform 0.2s, box-shadow 0.2s;
}
.te-contact-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(2,132,199,0.10);
}
.te-contact-card-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: linear-gradient(135deg, #E0F2FE, #BAE6FD);
    color: #0284C7;
    font-size: 18px;
}
.te-contact-card-body h4 {
    font-size: 0.85rem;
    font-weight: 600;
    color: #94A3B8;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 0 0 6px;
}
.te-contact-card-body p {
    margin: 0;
    color: #334155;
    font-size: 0.95rem;
    line-height: 1.5;
}
.te-contact-card-body a {
    display: block;
    color: #0284C7;
    font-size: 0.95rem;
    font-weight: 500;
    text-decoration: none;
    line-height: 1.6;
    transition: color 0.2s;
}
.te-contact-card-body a:hover {
    color: #0369A1;
    text-decoration: underline;
}

/* Social */
.te-contact-social {
    margin-top: 28px;
    padding-top: 24px;
    border-top: 1px solid #E2E8F0;
}
.te-contact-social h4 {
    font-size: 0.9rem;
    font-weight: 600;
    color: #475569;
    margin: 0 0 12px;
}
.te-contact-social-links {
    display: flex;
    gap: 10px;
}
.te-contact-social-links a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: #F1F5F9;
    color: #475569;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.2s;
}
.te-contact-social-links a:hover {
    background: linear-gradient(135deg, #0284C7, #06B6D4);
    color: #fff;
    transform: translateY(-2px);
}

/* --- Right: Contact Form --- */
.te-contact-form-card {
    background: #fff;
    border-radius: 20px;
    padding: 36px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.06), 0 8px 24px rgba(2,132,199,0.06);
    position: relative;
    overflow: hidden;
}
.te-contact-form-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #0284C7, #06B6D4);
}
.te-contact-form-title {
    font-size: 1.35rem;
    font-weight: 700;
    color: #0C4A6E;
    margin: 0 0 6px;
}
.te-contact-form-desc {
    color: #64748B;
    font-size: 0.9rem;
    margin: 0 0 28px;
}

.te-contact-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.te-contact-field {
    margin-bottom: 18px;
}
.te-contact-field label {
    display: block;
    font-size: 0.82rem;
    font-weight: 600;
    color: #475569;
    margin-bottom: 6px;
}
.te-contact-field label i {
    color: #0284C7;
    margin-right: 4px;
    font-size: 12px;
}
.te-contact-field input,
.te-contact-field textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1.5px solid #E2E8F0;
    border-radius: 12px;
    font-size: 0.95rem;
    color: #334155;
    background: #F8FAFC;
    transition: all 0.2s;
    font-family: inherit;
    outline: none;
    box-sizing: border-box;
}
.te-contact-field input::placeholder,
.te-contact-field textarea::placeholder {
    color: #94A3B8;
}
.te-contact-field input:focus,
.te-contact-field textarea:focus {
    border-color: #0284C7;
    background: #fff;
    box-shadow: 0 0 0 3px rgba(2,132,199,0.10);
}
.te-contact-field textarea {
    resize: vertical;
    min-height: 120px;
}

.te-contact-submit-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    width: 100%;
    justify-content: center;
    padding: 14px 32px;
    background: linear-gradient(135deg, #0284C7, #06B6D4);
    color: #fff;
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.25s;
    font-family: inherit;
    margin-top: 4px;
}
.te-contact-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(2,132,199,0.3);
}
.te-contact-submit-btn:active {
    transform: translateY(0);
}

/* --- Map --- */
.te-contact-map {
    width: 100%;
    height: 400px;
    position: relative;
}
.te-contact-map iframe {
    width: 100%;
    height: 100%;
    display: block;
}

/* ==========================================================================
   CONTACT PAGE — Responsive
   ========================================================================== */

@media (max-width: 991px) {
    .te-contact-hero { padding: 64px 20px 48px; }
    .te-contact-hero-title { font-size: 2rem; }
    .te-contact-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .te-contact-container { padding: 36px 20px 40px; }
    .te-contact-map { height: 350px; }
}

@media (max-width: 575px) {
    .te-contact-hero { padding: 56px 16px 40px; }
    .te-contact-hero-title { font-size: 1.6rem; }
    .te-contact-hero-subtitle { font-size: 0.95rem; }
    .te-contact-container { padding: 28px 16px 32px; }
    .te-contact-form-card { padding: 24px 20px; border-radius: 16px; }
    .te-contact-form-row { grid-template-columns: 1fr; gap: 0; }
    .te-contact-card { padding: 16px; }
    .te-contact-map { height: 280px; }
    .te-contact-social-links a { width: 36px; height: 36px; font-size: 14px; }
}

/* ============================================
   Search Category Result Page
   ============================================ */
.te-search-page .te-search-categories {
    padding: 48px 0 80px;
}
@media (max-width: 768px) {
    .te-search-page .te-search-categories {
        padding: 32px 0 48px;
    }
    .te-search-page .te-search-categories .te-section-header {
        margin-bottom: 24px;
    }
}

/* ============================================
   Login Page — Crystal Blue V2
   ============================================ */

/* Split-screen layout */
.te-login-page {
    display: flex !important;
    flex-wrap: nowrap !important;
    flex-direction: row !important;
    min-height: 100vh;
    margin-top: -1px;
    width: 100% !important;
    max-width: 100% !important;
}

/* ---- Left Panel ---- */
.te-login-left {
    position: relative;
    flex: 0 0 45% !important;
    width: 45% !important;
    max-width: 45% !important;
    min-height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.te-login-left-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 30%;
}

.te-login-left-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(160deg,
        rgba(12,74,110,0.82) 0%,
        rgba(2,132,199,0.75) 45%,
        rgba(6,182,212,0.7) 100%);
    z-index: 1;
}

/* Floating decorative circles */
.te-login-left-circle {
    position: absolute;
    border-radius: 50%;
    z-index: 2;
    pointer-events: none;
}

.te-login-left-circle--1 {
    width: 180px;
    height: 180px;
    background: radial-gradient(circle, rgba(255,255,255,0.12), transparent 70%);
    top: 8%;
    left: -40px;
    animation: te-float 6s ease-in-out infinite;
}

.te-login-left-circle--2 {
    width: 120px;
    height: 120px;
    background: radial-gradient(circle, rgba(6,182,212,0.3), transparent 70%);
    bottom: 12%;
    right: -20px;
    animation: te-float 5s ease-in-out infinite reverse;
}

.te-login-left-circle--3 {
    width: 80px;
    height: 80px;
    background: radial-gradient(circle, rgba(255,255,255,0.18), transparent 70%);
    top: 55%;
    left: 15%;
    animation: te-pulse-glow 4s ease-in-out infinite;
}

/* Left panel content */
.te-login-left-content {
    position: relative;
    z-index: 3;
    text-align: center;
    padding: 40px 32px;
    max-width: 420px;
}

.te-login-logo {
    height: 48px;
    margin-bottom: 28px;
    filter: brightness(0) invert(1);
}

.te-login-title {
    font-size: 2.4rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 12px;
    letter-spacing: -0.5px;
}

.te-login-tagline {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.88);
    line-height: 1.6;
    margin-bottom: 32px;
}

/* Glass morphism trust badges */
.te-login-badges {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

.te-login-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 18px;
    border-radius: 50px;
    background: rgba(255,255,255,0.13);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.18);
    color: #fff;
    font-size: 0.82rem;
    font-weight: 600;
    transition: background 0.3s, transform 0.3s;
}

.te-login-badge:hover {
    background: rgba(255,255,255,0.22);
    transform: translateY(-2px);
}

.te-login-badge i {
    font-size: 0.9rem;
    opacity: 0.9;
}

/* ---- Right Panel ---- */
.te-login-right {
    flex: 1 1 55% !important;
    width: 55% !important;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #fff;
    padding: 40px 20px;
    min-height: 100vh;
    overflow-y: auto;
}

.te-login-form-container {
    width: 100%;
    max-width: 440px;
    padding: 0 8px;
}

/* Mobile hero (hidden on desktop) */
.te-login-mobile-hero {
    display: none;
}

/* ---- Gradient Pill Tabs ---- */
.te-login-tabs {
    display: flex;
    padding: 5px;
    background: #f1f5f9;
    border-radius: 14px;
    margin-bottom: 28px;
    list-style: none;
}

.te-login-tab-item {
    flex: 1;
    text-align: center;
}

.te-login-tab {
    display: block;
    padding: 11px 16px;
    border-radius: 10px;
    font-size: 0.95rem;
    font-weight: 600;
    color: #64748b;
    background: transparent;
    border: none;
    transition: all 0.3s ease;
    cursor: pointer;
    text-decoration: none;
}

.te-login-tab:hover {
    color: #0284c7;
    text-decoration: none;
}

.te-login-tab.active,
.te-login-tabs .nav-link.active {
    background: linear-gradient(135deg, #0284c7, #06b6d4) !important;
    color: #fff !important;
    box-shadow: 0 4px 14px rgba(2,132,199,0.35);
}

/* ---- Form Fields ---- */
.te-login-field {
    position: relative;
    margin-bottom: 18px;
}

.te-login-field-icon {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: #94a3b8;
    font-size: 0.9rem;
    z-index: 2;
    pointer-events: none;
}

.te-login-input {
    width: 100%;
    padding: 14px 16px 14px 44px !important;
    border: 2px solid #e2e8f0 !important;
    border-radius: 12px !important;
    font-size: 0.95rem !important;
    color: #1e293b !important;
    background: #fff !important;
    transition: border-color 0.3s, box-shadow 0.3s !important;
    height: auto !important;
}

.te-login-input:focus {
    border-color: #0284c7 !important;
    box-shadow: 0 0 0 4px rgba(2,132,199,0.12) !important;
    outline: none !important;
}

.te-login-input::placeholder {
    color: #94a3b8;
}

/* Password wrapper with eye toggle */
.te-login-password-wrap {
    position: relative;
    width: 100%;
}

.te-login-password-wrap .te-login-input {
    padding-right: 48px !important;
}

.te-login-eye {
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    color: #94a3b8;
    font-size: 1rem;
    z-index: 3;
    padding: 4px;
    transition: color 0.2s;
    display: flex;
    align-items: center;
}

.te-login-eye:hover {
    color: #0284c7;
}

/* Remember + Forgot row */
.te-login-options {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 22px;
    flex-wrap: wrap;
    gap: 8px;
}

.te-login-remember {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.88rem;
    color: #475569;
    cursor: pointer;
    margin: 0;
}

.te-login-checkbox {
    width: 18px;
    height: 18px;
    accent-color: #0284c7;
    cursor: pointer;
    flex-shrink: 0;
}

.te-login-forgot {
    font-size: 0.88rem;
    font-weight: 600;
    color: #0284c7;
    text-decoration: none;
    transition: color 0.2s;
}

.te-login-forgot:hover {
    color: #0c4a6e;
    text-decoration: underline;
}

/* Gradient CTA button */
.te-login-btn-wrap {
    margin-bottom: 8px;
}

.te-login-submit {
    display: block;
    width: 100%;
    padding: 14px 24px;
    text-align: center;
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    background: linear-gradient(135deg, #0284c7, #06b6d4);
    border: none;
    border-radius: 12px;
    cursor: pointer;
    text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s, opacity 0.2s;
    box-shadow: 0 4px 16px rgba(2,132,199,0.3);
}

.te-login-submit:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 24px rgba(2,132,199,0.4);
    color: #fff;
    text-decoration: none;
    opacity: 0.95;
}

.te-login-submit:active {
    transform: translateY(0);
}

/* Register tab terms & checkboxes */
.te-login-terms {
    margin-bottom: 12px;
}

.te-login-terms-link {
    font-size: 0.85rem;
    color: #0284c7;
    text-decoration: underline;
    transition: color 0.2s;
}

.te-login-terms-link:hover {
    color: #0c4a6e;
}

.te-login-check-row {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 14px;
}

.te-login-check-label {
    font-size: 0.85rem;
    color: #475569;
    line-height: 1.5;
    cursor: pointer;
    margin: 0;
}

/* "or" divider */
.te-login-divider {
    display: flex;
    align-items: center;
    gap: 16px;
    margin: 24px 0;
    color: #94a3b8;
    font-size: 0.85rem;
    font-weight: 500;
}

.te-login-divider::before,
.te-login-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: #e2e8f0;
}

/* Form logo */
.te-login-form-logo {
    text-align: center;
    margin-bottom: 28px;
}

.te-login-form-logo img {
    height: 56px;
    width: auto;
    object-fit: contain;
}

/* Social buttons — pill style */
.te-login-social-wrap {
    display: flex;
    justify-content: center;
    gap: 12px;
}

.te-login-social-pill {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    flex: 1;
    padding: 12px 20px;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    background: #fff;
    color: #334155;
    font-size: 0.88rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.25s;
}

.te-login-social-pill svg {
    flex-shrink: 0;
}

.te-login-social-pill:hover {
    border-color: #cbd5e1;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    transform: translateY(-1px);
    text-decoration: none;
    color: #334155;
}

.te-login-social-pill--fb {
    background: #1877F2;
    border-color: #1877F2;
    color: #fff;
}

.te-login-social-pill--fb:hover {
    background: #166fe5;
    border-color: #166fe5;
    box-shadow: 0 2px 8px rgba(24,119,242,0.3);
    color: #fff;
}

/* Partner section on login page */
.te-login-partner-section {
    margin-top: 22px;
    padding-top: 18px;
    border-top: 1px solid #e8edf6;
}

.te-login-partner-label {
    font-size: 0.72rem;
    font-weight: 600;
    color: #8892a4;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    text-align: center;
    margin-bottom: 10px;
}

.te-login-partner-row {
    display: flex;
    gap: 8px;
}

.te-login-partner-card {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 12px;
    background: linear-gradient(135deg, #f0f7ff 0%, #f8faff 100%);
    border: 1.5px solid #e2e8f0;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.25s;
}

.te-login-partner-card:hover {
    border-color: #0284c7;
    background: linear-gradient(135deg, #e0f0ff 0%, #f0f7ff 100%);
    box-shadow: 0 4px 16px rgba(2,132,199,0.12);
    transform: translateY(-2px);
    text-decoration: none;
}

.te-login-partner-icon {
    width: 34px;
    height: 34px;
    border-radius: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #fff;
}

.te-login-partner-icon svg {
    width: 18px;
    height: 18px;
}

.te-login-partner-icon--giris {
    background: linear-gradient(135deg, #0f172a, #1e40af);
}

.te-login-partner-icon--firma {
    background: linear-gradient(135deg, #0369a1, #0284c7);
}

.te-login-partner-icon--bireysel {
    background: linear-gradient(135deg, #7c3aed, #a78bfa);
}

.te-login-partner-text-wrap {
    flex: 1;
    min-width: 0;
}

.te-login-partner-name {
    display: block;
    font-size: 0.82rem;
    font-weight: 700;
    color: #1e293b;
}

.te-login-partner-sub {
    display: block;
    font-size: 0.7rem;
    color: #94a3b8;
    margin-top: 1px;
}

.te-login-partner-card--main {
    margin-bottom: 8px;
    background: linear-gradient(135deg, #f0f4ff 0%, #e8f0fe 100%);
    border-color: #c7d6f5;
}

.te-login-partner-card--main:hover {
    border-color: #1e40af;
    background: linear-gradient(135deg, #e0ecff 0%, #dbeafe 100%);
}

.te-login-partner-arrow {
    color: #cbd5e1;
    flex-shrink: 0;
    transition: all 0.25s;
}

.te-login-partner-card:hover .te-login-partner-arrow {
    color: #0284c7;
    transform: translateX(3px);
}

@media (max-width: 480px) {
    .te-login-partner-row {
        flex-direction: column;
    }
}

/* ---- Responsive ---- */

/* Tablet */
@media (max-width: 1200px) {
    .te-login-left {
        width: 40%;
    }

    .te-login-title {
        font-size: 2rem;
    }

    .te-login-left-content {
        padding: 32px 24px;
    }
}

/* Mobile — hide left panel, show mobile hero */
@media (max-width: 991px) {
    .te-login-page {
        flex-direction: column;
    }

    .te-login-left {
        display: none;
    }

    .te-login-right {
        min-height: auto;
        padding: 0 0 32px;
    }

    .te-login-mobile-hero {
        display: block;
        position: relative;
        width: 100%;
        height: 180px;
        overflow: hidden;
        margin-bottom: 28px;
    }

    .te-login-mobile-hero-bg {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center 30%;
    }

    .te-login-mobile-hero-overlay {
        position: absolute;
        inset: 0;
        background: linear-gradient(160deg,
            rgba(12,74,110,0.8) 0%,
            rgba(2,132,199,0.75) 50%,
            rgba(6,182,212,0.65) 100%);
    }

    .te-login-mobile-hero-content {
        position: relative;
        z-index: 2;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        height: 100%;
        text-align: center;
        padding: 20px;
    }

    .te-login-mobile-logo {
        height: 36px;
        margin-bottom: 10px;
        filter: brightness(0) invert(1);
    }

    .te-login-mobile-text {
        color: rgba(255,255,255,0.9);
        font-size: 0.95rem;
        font-weight: 500;
        margin: 0;
    }

    .te-login-form-container {
        padding: 0 20px;
        max-width: 480px;
    }
}

/* Small phones */
@media (max-width: 575px) {
    .te-login-mobile-hero {
        height: 150px;
    }

    .te-login-form-container {
        padding: 0 16px;
    }

    .te-login-tabs {
        margin-bottom: 22px;
    }

    .te-login-tab {
        padding: 10px 12px;
        font-size: 0.88rem;
    }

    .te-login-input {
        padding: 12px 14px 12px 40px !important;
        font-size: 0.9rem !important;
    }

    .te-login-submit {
        padding: 12px 20px;
        font-size: 0.95rem;
    }

    .te-login-social-pill {
        padding: 10px 14px;
        font-size: 0.82rem;
    }

    .te-login-options {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
}

/* Login page: kill ALL gaps between topbar and content */

/* Target header wrapper when followed by login page */
.header-style-01:has(+ .te-login-page) {
    display: flex !important;
    flex-direction: column !important;
    margin: 0 !important;
    padding: 0 !important;
    min-height: 0 !important;
    border: none !important;
    overflow: hidden !important;
    gap: 0 !important;
}

/* Remove sticky on login page — navbar container is too small for sticky anyway */
.header-style-01:has(+ .te-login-page) .te-navbar {
    position: relative !important;
}

/* Fallback for ALL browsers (covers browsers without :has() too) */
body.te-v2 .header-style-01 {
    margin: 0 !important;
    padding: 0 !important;
    min-height: 0 !important;
    border-bottom: none !important;
    overflow: hidden !important;
}

body.te-v2 .te-navbar {
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
}

body.te-v2 .te-top-banner {
    margin-bottom: 0 !important;
}

/* Pull login content flush against header — nuclear fix for mobile gap */
body.te-v2 .te-login-page {
    margin-top: -1px !important;
    padding-top: 0 !important;
}

/* Mobile-specific: disable sticky navbar on login + force tight layout */
@media (max-width: 768px) {
    body.te-v2 .header-style-01 {
        display: flex !important;
        flex-direction: column !important;
        overflow: hidden !important;
    }
    body.te-v2 .header-style-01 .te-navbar {
        position: relative !important;
    }
}

/* ============================================
   Work With Us Page — Crystal Blue V2
   ============================================ */

.te-wws-page {
    overflow-x: hidden;
}

/* ---- Hero ---- */
.te-wws-hero {
    position: relative;
    min-height: 520px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.te-wws-hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 30%;
}

.te-wws-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(160deg,
        rgba(12,74,110,0.88) 0%,
        rgba(2,132,199,0.8) 40%,
        rgba(6,182,212,0.72) 100%);
    z-index: 1;
}

.te-wws-hero-circle {
    position: absolute;
    border-radius: 50%;
    z-index: 2;
    pointer-events: none;
}

.te-wws-hero-circle--1 {
    width: 220px;
    height: 220px;
    background: radial-gradient(circle, rgba(255,255,255,0.1), transparent 70%);
    top: -40px;
    right: 10%;
    animation: te-float 6s ease-in-out infinite;
}

.te-wws-hero-circle--2 {
    width: 140px;
    height: 140px;
    background: radial-gradient(circle, rgba(6,182,212,0.25), transparent 70%);
    bottom: 10%;
    left: 5%;
    animation: te-float 5s ease-in-out infinite reverse;
}

.te-wws-hero-circle--3 {
    width: 90px;
    height: 90px;
    background: radial-gradient(circle, rgba(255,255,255,0.15), transparent 70%);
    top: 40%;
    right: 30%;
    animation: te-pulse-glow 4s ease-in-out infinite;
}

.te-wws-hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    padding: 80px 24px 60px;
    max-width: 700px;
}

.te-wws-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 22px;
    border-radius: 50px;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.2);
    color: #fff;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 24px;
}

.te-wws-hero-title {
    font-size: 3rem;
    font-weight: 800;
    color: #fff;
    line-height: 1.15;
    margin-bottom: 18px;
    letter-spacing: -0.5px;
}

.te-wws-hero-desc {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.9);
    line-height: 1.65;
    margin-bottom: 32px;
    max-width: 550px;
    margin-left: auto;
    margin-right: auto;
}

.te-wws-hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 36px;
    background: #fff;
    color: #0284c7;
    font-size: 1rem;
    font-weight: 700;
    border-radius: 12px;
    text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

.te-wws-hero-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.2);
    color: #0c4a6e;
    text-decoration: none;
}

/* ---- Section shared ---- */
.te-wws-section-header {
    text-align: center;
    margin-bottom: 48px;
}

.te-wws-section-badge {
    display: inline-block;
    padding: 6px 18px;
    border-radius: 50px;
    background: linear-gradient(135deg, rgba(2,132,199,0.1), rgba(6,182,212,0.1));
    color: #0284c7;
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.te-wws-section-title {
    font-size: 2rem;
    font-weight: 800;
    color: #0f172a;
    letter-spacing: -0.3px;
}

/* ---- Steps Section ---- */
.te-wws-steps {
    padding: 80px 0;
    background: #f8fafc;
}

.te-wws-steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.te-wws-steps-grid--2col {
    grid-template-columns: repeat(2, 1fr);
    max-width: 640px;
    margin: 0 auto;
}

.te-wws-step-card {
    position: relative;
    background: #fff;
    border-radius: 20px;
    padding: 40px 28px 32px;
    text-align: center;
    box-shadow: 0 2px 20px rgba(0,0,0,0.06);
    border: 1px solid #e2e8f0;
    transition: transform 0.3s, box-shadow 0.3s;
}

.te-wws-step-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(2,132,199,0.12);
    border-color: rgba(2,132,199,0.3);
}

.te-wws-step-number {
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: linear-gradient(135deg, #0284c7, #06b6d4);
    color: #fff;
    font-size: 0.9rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(2,132,199,0.35);
}

.te-wws-step-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(2,132,199,0.1), rgba(6,182,212,0.1));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
    font-size: 1.5rem;
    color: #0284c7;
}

.te-wws-step-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 8px;
}

.te-wws-step-card p {
    font-size: 0.9rem;
    color: #64748b;
    line-height: 1.55;
    margin: 0;
}

/* ---- Benefits Section ---- */
.te-wws-benefits {
    padding: 80px 0;
    background: #fff;
}

.te-wws-benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.te-wws-benefit-card {
    background: linear-gradient(160deg, #f0f9ff, #ecfeff);
    border-radius: 20px;
    padding: 36px 28px;
    text-align: center;
    border: 1px solid rgba(2,132,199,0.12);
    transition: transform 0.3s, box-shadow 0.3s;
}

.te-wws-benefit-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(2,132,199,0.12);
}

.te-wws-benefit-icon {
    width: 72px;
    height: 72px;
    border-radius: 18px;
    background: linear-gradient(135deg, #0284c7, #06b6d4);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.6rem;
    color: #fff;
    box-shadow: 0 6px 20px rgba(2,132,199,0.3);
}

.te-wws-benefit-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 10px;
}

.te-wws-benefit-card p {
    font-size: 0.9rem;
    color: #64748b;
    line-height: 1.55;
    margin: 0;
}

/* ---- Form Section ---- */
.te-wws-form-section {
    padding: 80px 0;
    background: #f8fafc;
}

.te-wws-form-card {
    background: #fff;
    border-radius: 24px;
    box-shadow: 0 4px 30px rgba(0,0,0,0.08);
    overflow: hidden;
    max-width: 800px;
    margin: 0 auto;
}

.te-wws-form-header {
    background: linear-gradient(135deg, #0284c7, #06b6d4);
    padding: 32px 36px;
    text-align: center;
    color: #fff;
}

.te-wws-form-header i {
    font-size: 2rem;
    margin-bottom: 12px;
    display: block;
    opacity: 0.9;
}

.te-wws-form-header h3 {
    font-size: 1.15rem;
    font-weight: 700;
    margin: 0;
    line-height: 1.5;
    color: #fff;
}

.te-wws-form-body {
    padding: 36px;
}

.te-wws-field {
    margin-bottom: 18px;
}

.te-wws-label {
    display: block;
    font-size: 0.82rem;
    font-weight: 600;
    color: #334155;
    margin-bottom: 6px;
}

.te-wws-input {
    width: 100%;
    padding: 12px 16px !important;
    border: 2px solid #e2e8f0 !important;
    border-radius: 10px !important;
    font-size: 0.92rem !important;
    color: #1e293b !important;
    background: #fff !important;
    transition: border-color 0.3s, box-shadow 0.3s !important;
    height: auto !important;
}

.te-wws-input:focus {
    border-color: #0284c7 !important;
    box-shadow: 0 0 0 3px rgba(2,132,199,0.1) !important;
    outline: none !important;
}

.te-wws-input.invalid-input {
    border-color: #ef4444 !important;
    box-shadow: 0 0 0 3px rgba(239,68,68,0.1) !important;
}

.te-wws-divider-text {
    position: relative;
    text-align: center;
    font-size: 0.8rem;
    font-weight: 700;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 8px 0;
}

.te-wws-divider-text::before,
.te-wws-divider-text::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 30%;
    height: 1px;
    background: #e2e8f0;
}

.te-wws-divider-text::before { left: 0; }
.te-wws-divider-text::after { right: 0; }

.te-wws-radio-group {
    display: flex;
    gap: 20px;
    padding-top: 6px;
}

.te-wws-radio {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.9rem;
    color: #475569;
    cursor: pointer;
    margin: 0;
}

.te-wws-radio input {
    accent-color: #0284c7;
}

.te-wws-eye {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
}

.te-wws-eye a {
    color: #94a3b8;
    text-decoration: none;
    padding: 6px;
    display: flex;
}

.te-wws-eye a:hover {
    color: #0284c7;
}

.te-wws-terms-link {
    font-size: 0.85rem;
    color: #0284c7;
    text-decoration: none;
    font-weight: 500;
}

.te-wws-terms-link:hover {
    text-decoration: underline;
    color: #0c4a6e;
}

.te-wws-check-row {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.te-wws-check-label {
    font-size: 0.82rem;
    color: #475569;
    line-height: 1.5;
    cursor: pointer;
    margin: 0;
}

.te-wws-submit {
    display: block;
    width: 100%;
    padding: 14px 24px;
    text-align: center;
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    background: linear-gradient(135deg, #0284c7, #06b6d4);
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 4px 16px rgba(2,132,199,0.3);
}

.te-wws-submit:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 24px rgba(2,132,199,0.4);
}

/* ---- How It Works ---- */
.te-wws-how {
    padding: 80px 0;
    background: #fff;
}

.te-wws-how-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.te-wws-how-card {
    text-align: center;
    padding: 28px 20px;
}

.te-wws-how-num {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(2,132,199,0.1), rgba(6,182,212,0.1));
    color: #0284c7;
    font-size: 1.2rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    border: 2px solid rgba(2,132,199,0.2);
}

.te-wws-how-card h3 {
    font-size: 1rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 8px;
}

.te-wws-how-card p {
    font-size: 0.85rem;
    color: #64748b;
    line-height: 1.55;
    margin: 0;
}

/* ---- CTA Section ---- */
.te-wws-cta {
    padding: 80px 24px;
    background: linear-gradient(160deg,
        rgba(12,74,110,0.95) 0%,
        rgba(2,132,199,0.9) 50%,
        rgba(6,182,212,0.85) 100%);
    text-align: center;
}

.te-wws-cta-inner {
    max-width: 500px;
    margin: 0 auto;
}

.te-wws-cta h2 {
    font-size: 2.2rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 12px;
}

.te-wws-cta p {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.88);
    margin-bottom: 28px;
}

.te-wws-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 36px;
    background: #fff;
    color: #0284c7;
    font-size: 1rem;
    font-weight: 700;
    border-radius: 12px;
    text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

.te-wws-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.2);
    color: #0c4a6e;
    text-decoration: none;
}

/* ---- Responsive ---- */
@media (max-width: 991px) {
    .te-wws-hero { min-height: 420px; }
    .te-wws-hero-title { font-size: 2.2rem; }
    .te-wws-steps-grid,
    .te-wws-benefits-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
    .te-wws-how-grid { grid-template-columns: repeat(2, 1fr); }
    .te-wws-steps,
    .te-wws-benefits,
    .te-wws-form-section,
    .te-wws-how,
    .te-wws-cta { padding: 48px 0; }
}

@media (max-width: 575px) {
    .te-wws-hero { min-height: 360px; }
    .te-wws-hero-content { padding: 60px 16px 40px; }
    .te-wws-hero-title { font-size: 1.8rem; }
    .te-wws-hero-desc { font-size: 0.95rem; }
    .te-wws-section-title { font-size: 1.5rem; }
    .te-wws-how-grid { grid-template-columns: 1fr; }
    .te-wws-form-body { padding: 24px 16px; }
    .te-wws-cta h2 { font-size: 1.6rem; }
}

/* =====================================================
   CRYSTAL BLUE V2 — USER DASHBOARD
   ===================================================== */

/* --- Page Wrapper --- */
.te-dash-page {
    background: #f0f4f8;
    min-height: 100vh;
    padding: 30px 0 60px;
}

.te-dash-wrapper {
    display: flex;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* --- Sidebar --- */
.te-dash-sidebar {
    width: 280px;
    min-width: 280px;
    background: linear-gradient(180deg, #0c4a6e 0%, #0284c7 100%);
    border-radius: 20px;
    padding: 0;
    position: sticky;
    top: 100px;
    height: fit-content;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(12, 74, 110, 0.3);
}

.te-dash-user-info {
    padding: 30px 24px 20px;
    text-align: center;
    border-bottom: 1px solid rgba(255,255,255,0.15);
}

.te-dash-avatar {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: rgba(255,255,255,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
    font-size: 32px;
    color: #fff;
    border: 3px solid rgba(255,255,255,0.3);
}

.te-dash-user-name {
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    margin: 0;
}

.te-dash-user-email {
    color: rgba(255,255,255,0.7);
    font-size: 12px;
    margin-top: 4px;
}

.te-dash-nav {
    list-style: none;
    padding: 12px 0;
    margin: 0;
}

.te-dash-nav-item {
    margin: 2px 10px;
}

.te-dash-nav-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 11px 18px;
    color: rgba(255,255,255,0.85);
    text-decoration: none;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.25s ease;
}

.te-dash-nav-link:hover {
    background: rgba(255,255,255,0.15);
    color: #fff;
    text-decoration: none;
}

.te-dash-nav-link.active {
    background: #fff;
    color: #0c4a6e;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.te-dash-nav-link i {
    width: 20px;
    text-align: center;
    font-size: 15px;
}

.te-dash-nav-separator {
    height: 1px;
    background: rgba(255,255,255,0.12);
    margin: 8px 18px;
}

.te-dash-nav-link.te-dash-nav-danger {
    color: rgba(255,255,255,0.7);
}
.te-dash-nav-link.te-dash-nav-danger:hover {
    background: rgba(239, 68, 68, 0.2);
    color: #fca5a5;
}
.te-dash-nav-link.te-dash-nav-logout {
    color: rgba(255,255,255,0.7);
}
.te-dash-nav-link.te-dash-nav-logout:hover {
    background: rgba(239, 68, 68, 0.2);
    color: #fca5a5;
}

/* --- Content Area --- */
.te-dash-content {
    flex: 1;
    min-width: 0;
}

.te-dash-content-inner {
    background: #fff;
    border-radius: 20px;
    padding: 32px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    border-top: 4px solid;
    border-image: linear-gradient(90deg, #0284c7, #0ea5e9, #38bdf8) 1;
}

/* --- Page Headers --- */
.te-dash-header {
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 2px solid #f0f4f8;
}

.te-dash-header h4 {
    font-size: 22px;
    font-weight: 700;
    color: #0c4a6e;
    margin: 0;
}

.te-dash-header p {
    color: #64748b;
    font-size: 14px;
    margin: 4px 0 0;
}

/* --- Stat Cards (user-home) --- */
.te-dash-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

.te-dash-stat-card {
    background: linear-gradient(135deg, #0c4a6e 0%, #0284c7 50%, #0ea5e9 100%);
    border-radius: 16px;
    padding: 24px;
    color: #fff;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: default;
}

.te-dash-stat-card::before {
    content: '';
    position: absolute;
    top: -30px;
    right: -30px;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
}

.te-dash-stat-card::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: -20px;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: rgba(255,255,255,0.06);
}

.te-dash-stat-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(12, 74, 110, 0.35);
}

.te-dash-stat-card:nth-child(2) {
    background: linear-gradient(135deg, #0369a1 0%, #0ea5e9 50%, #38bdf8 100%);
}

.te-dash-stat-card:nth-child(3) {
    background: linear-gradient(135deg, #075985 0%, #0284c7 50%, #22d3ee 100%);
}

.te-dash-stat-icon {
    font-size: 28px;
    margin-bottom: 12px;
    opacity: 0.9;
}

.te-dash-stat-number {
    font-size: 36px;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 6px;
}

.te-dash-stat-label {
    font-size: 14px;
    opacity: 0.85;
    font-weight: 500;
}

/* --- Welcome Section --- */
.te-dash-welcome {
    margin-bottom: 28px;
}

.te-dash-welcome h3 {
    font-size: 24px;
    font-weight: 700;
    color: #0c4a6e;
    margin: 0 0 4px;
}

.te-dash-welcome p {
    color: #64748b;
    font-size: 14px;
    margin: 0;
}

/* --- Quick Actions --- */
.te-dash-quick-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.te-dash-quick-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: linear-gradient(135deg, #0284c7, #0ea5e9);
    color: #fff;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.25s ease;
    border: none;
}

.te-dash-quick-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(2, 132, 199, 0.35);
    color: #fff;
    text-decoration: none;
}

/* --- Order Cards --- */
.te-dash-order-card {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 20px 24px;
    margin-bottom: 16px;
    transition: all 0.25s ease;
    position: relative;
    overflow: hidden;
}

.te-dash-order-card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, #0284c7, #0ea5e9);
    border-radius: 4px 0 0 4px;
}

.te-dash-order-card:hover {
    border-color: #bae6fd;
    box-shadow: 0 4px 16px rgba(2, 132, 199, 0.1);
}

.te-dash-order-card .profile-order-business-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: linear-gradient(135deg, #e0f2fe, #bae6fd);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0284c7;
    font-size: 18px;
}

.te-dash-order-card .profile-order-date {
    color: #64748b;
    font-size: 13px;
}

.te-dash-order-card .profile-order-amount {
    background: linear-gradient(135deg, #0284c7, #0ea5e9);
    color: #fff;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.te-dash-order-card .profile-order-details {
    cursor: pointer;
    color: #0284c7;
    font-weight: 500;
}

.te-dash-order-card .profile-order-details:hover {
    color: #0369a1;
}

.te-dash-order-card.bg-light {
    background: #f8fafc;
}

/* --- Stepper / Timeline --- */
.te-dash-order-card .stepper .circle {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: #cbd5e1;
    border: 3px solid #e2e8f0;
    transition: all 0.3s ease;
}

.te-dash-order-card .stepper .circle.active {
    background: #0284c7;
    border-color: #bae6fd;
    box-shadow: 0 0 0 4px rgba(2, 132, 199, 0.15);
}

.te-dash-order-card .stepper .line {
    width: 2px;
    background: #e2e8f0;
    min-height: 20px;
}

.te-dash-order-card .stepper .stepper-step h5 {
    font-size: 14px;
    font-weight: 500;
}

/* --- Address Cards --- */
.te-dash-address-card {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    padding: 18px 22px;
    margin-bottom: 12px;
    transition: all 0.25s ease;
}

.te-dash-address-card:hover {
    border-color: #bae6fd;
    box-shadow: 0 4px 12px rgba(2, 132, 199, 0.08);
}

.te-dash-address-card i.fa-home,
.te-dash-address-card i.fa-building {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: linear-gradient(135deg, #e0f2fe, #bae6fd);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0284c7;
    font-size: 16px;
}

.te-dash-address-card .far.fa-edit {
    width: 34px;
    height: 34px;
    border-radius: 8px;
    background: #f0f9ff;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0284c7;
    cursor: pointer;
    transition: all 0.2s ease;
}

.te-dash-address-card .far.fa-edit:hover {
    background: #e0f2fe;
}

.te-dash-address-card .fas.fa-trash-alt {
    width: 34px;
    height: 34px;
    border-radius: 8px;
    background: #fef2f2;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ef4444;
    transition: all 0.2s ease;
}

.te-dash-address-card .fas.fa-trash-alt:hover {
    background: #fee2e2;
}

/* --- Address Form --- */
.te-dash-address-form .card {
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    box-shadow: none;
}

.te-dash-address-form .card-body {
    padding: 24px;
}

.te-dash-address-add {
    background: #fff;
    border: 2px dashed #bae6fd;
    border-radius: 14px;
    padding: 18px 22px;
    margin-bottom: 12px;
    transition: all 0.25s ease;
    cursor: pointer;
}

.te-dash-address-add:hover {
    border-color: #0284c7;
    background: #f0f9ff;
}

.te-dash-address-add .fa-plus {
    width: 34px;
    height: 34px;
    border-radius: 8px;
    background: linear-gradient(135deg, #0284c7, #0ea5e9);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    cursor: pointer;
    transition: all 0.2s ease;
}

/* --- Favorite Cards --- */
.te-dash-fav-card {
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
    background: #fff;
    height: 100%;
}

.te-dash-fav-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.1);
}

.te-dash-fav-card .post-img {
    position: relative;
    overflow: hidden;
    height: 180px;
}

.te-dash-fav-card .post-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.te-dash-fav-card:hover .post-img img {
    transform: scale(1.05);
}

.te-dash-fav-card .profile-favorite-heart {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255,255,255,0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ef4444;
    font-size: 16px;
    transition: all 0.25s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
    z-index: 2;
}

.te-dash-fav-card .profile-favorite-heart:hover {
    background: #ef4444;
    color: #fff;
    transform: scale(1.1);
}

.te-dash-fav-card .post-content {
    padding: 16px 18px;
}

.te-dash-fav-card .post-content h3 a {
    font-size: 16px;
    font-weight: 600;
    color: #0f172a;
    text-decoration: none;
}

.te-dash-fav-card .post-content h3 a:hover {
    color: #0284c7;
}

.te-dash-fav-card .rating-color {
    color: #f59e0b;
}

/* --- Favorite Tabs --- */
.te-dash-fav-tabs {
    list-style: none;
    display: flex;
    gap: 8px;
    padding: 0;
    margin: 0 0 20px 0;
    border: none;
}

.te-dash-fav-tab {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    color: #475569;
    background: #f1f5f9;
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
}

.te-dash-fav-tab:hover {
    background: #e2e8f0;
    color: #334155;
    text-decoration: none;
}

.te-dash-fav-tab.active {
    background: #0284c7;
    color: #fff;
}

.te-dash-fav-tab.active:hover {
    background: #0369a1;
    color: #fff;
    text-decoration: none;
}

/* --- Helper Cards --- */
.te-dash-fav-helper-card {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 16px;
    position: relative;
    transition: all 0.25s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    height: 100%;
}

.te-dash-fav-helper-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.1);
}

.te-dash-fav-helper-avatar {
    flex-shrink: 0;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: linear-gradient(135deg, #e0f2fe, #bae6fd);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: #0284c7;
}

.te-dash-fav-helper-info {
    flex: 1;
    min-width: 0;
}

.te-dash-fav-helper-name-row {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 6px;
    flex-wrap: wrap;
}

.te-dash-fav-helper-name-row h3 {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
}

.te-dash-fav-helper-name-row h3 a {
    color: #0f172a;
    text-decoration: none;
}

.te-dash-fav-helper-name-row h3 a:hover {
    color: #0284c7;
}

.te-dash-fav-helper-badge {
    display: inline-block;
    padding: 2px 10px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 600;
    background: #e0f2fe;
    color: #0284c7;
}

.te-dash-fav-helper-address {
    font-size: 13px;
    color: #64748b;
    margin: 0 0 6px 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.te-dash-fav-helper-address i {
    margin-right: 4px;
    color: #94a3b8;
}

.te-dash-fav-helper-rating {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 14px;
    margin-bottom: 8px;
}

.te-dash-fav-helper-rating .rating-color {
    color: #f59e0b;
}

.te-dash-fav-helper-rating b {
    color: #0f172a;
}

.te-dash-fav-helper-rating span {
    color: #94a3b8;
    font-size: 13px;
}

.te-dash-fav-helper-skills {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
}

.te-dash-fav-helper-skill-tag {
    display: inline-block;
    padding: 3px 10px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 500;
    background: #f1f5f9;
    color: #475569;
    border: 1px solid #e2e8f0;
}

.te-dash-fav-helper-heart {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255,255,255,0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ef4444;
    font-size: 16px;
    transition: all 0.2s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    z-index: 2;
}

.te-dash-fav-helper-heart:hover {
    background: #ef4444;
    color: #fff;
    transform: scale(1.1);
}

/* --- Coupon Cards --- */
.te-dash-coupon-card {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.25s ease;
    position: relative;
    height: 100%;
}

.te-dash-coupon-card::before,
.te-dash-coupon-card::after {
    content: '';
    position: absolute;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #f0f4f8;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
}

.te-dash-coupon-card::before {
    left: -12px;
}

.te-dash-coupon-card::after {
    right: -12px;
}

.te-dash-coupon-card:hover {
    box-shadow: 0 6px 20px rgba(2, 132, 199, 0.12);
    border-color: #bae6fd;
}

.te-dash-coupon-header {
    background: linear-gradient(135deg, #0c4a6e 0%, #0284c7 100%);
    padding: 18px 20px;
    color: #fff;
    text-align: center;
}

.te-dash-coupon-header span {
    font-size: 15px;
    font-weight: 600;
}

.te-dash-coupon-body {
    padding: 20px;
    text-align: center;
}

.te-dash-coupon-body .te-dash-coupon-code {
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: center;
    margin-bottom: 14px;
}

.te-dash-coupon-body .te-dash-coupon-code input {
    background: #f0f9ff;
    border: 2px dashed #0284c7;
    border-radius: 8px;
    padding: 8px 14px;
    font-size: 16px;
    font-weight: 700;
    color: #0c4a6e;
    text-align: center;
    max-width: 180px;
}

.te-dash-coupon-copy-btn {
    background: linear-gradient(135deg, #0284c7, #0ea5e9);
    color: #fff;
    border: none;
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.25s ease;
}

.te-dash-coupon-copy-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(2, 132, 199, 0.3);
}

.te-dash-coupon-discount {
    color: #0284c7;
    font-size: 18px;
    font-weight: 700;
}

/* --- Notification Cards --- */
.te-dash-notif-card {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 18px 20px;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    margin-bottom: 12px;
    transition: all 0.25s ease;
    background: #fff;
}

.te-dash-notif-card:hover {
    border-color: #bae6fd;
    box-shadow: 0 2px 10px rgba(2, 132, 199, 0.06);
}

.te-dash-notif-icon {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: linear-gradient(135deg, #e0f2fe, #bae6fd);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0284c7;
    font-size: 16px;
    flex-shrink: 0;
}

.te-dash-notif-content {
    flex: 1;
    min-width: 0;
}

.te-dash-notif-title {
    font-weight: 600;
    color: #0f172a;
    font-size: 15px;
    margin-bottom: 4px;
}

.te-dash-notif-msg {
    color: #64748b;
    font-size: 13px;
    margin-bottom: 4px;
    line-height: 1.4;
}

.te-dash-notif-date {
    color: #94a3b8;
    font-size: 12px;
}

.te-dash-notif-delete {
    background: none;
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #94a3b8;
    cursor: pointer;
    transition: all 0.2s ease;
    flex-shrink: 0;
}

.te-dash-notif-delete:hover {
    background: #fef2f2;
    color: #ef4444;
}

/* --- Form Styling --- */
.te-dash-form .form-group {
    margin-bottom: 20px;
}

.te-dash-form label {
    font-weight: 600;
    color: #334155;
    font-size: 14px;
    margin-bottom: 6px;
}

.te-dash-form .form-control,
.te-dash-input {
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    padding: 12px 16px;
    font-size: 14px;
    transition: all 0.25s ease;
    background: #fff;
}

.te-dash-form .form-control:focus,
.te-dash-input:focus {
    border-color: #0284c7;
    box-shadow: 0 0 0 4px rgba(2, 132, 199, 0.1);
    outline: none;
}

.te-dash-form select.form-control {
    appearance: auto;
}

.te-dash-btn {
    background: linear-gradient(135deg, #0284c7, #0ea5e9);
    color: #fff;
    border: none;
    padding: 12px 32px;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.25s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.te-dash-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(2, 132, 199, 0.35);
}

.te-dash-btn:active {
    transform: translateY(0);
}

/* --- Toggle Switch (Contact Preferences) --- */
.te-dash-toggle-section .profile-contact-prefs-item {
    border-bottom: 1px solid #f0f4f8;
    padding: 22px 0;
}

.te-dash-toggle-section .profile-contact-prefs-item h6 {
    color: #0f172a;
    font-weight: 600;
    font-size: 15px;
}

.te-dash-toggle-section .toggle {
    position: relative;
    display: inline-block;
    width: 64px;
    height: 28px;
}

.te-dash-toggle-section .toggle input {
    opacity: 0;
    width: 0;
    height: 0;
}

.te-dash-toggle-section .toggle .slider {
    position: absolute;
    cursor: pointer;
    inset: 0;
    background: #cbd5e1;
    border-radius: 28px;
    transition: 0.3s;
}

.te-dash-toggle-section .toggle .slider::before {
    content: '';
    position: absolute;
    height: 22px;
    width: 22px;
    left: 3px;
    bottom: 3px;
    background: #fff;
    border-radius: 50%;
    transition: 0.3s;
}

.te-dash-toggle-section .toggle input:checked + .slider {
    background: linear-gradient(135deg, #0284c7, #0ea5e9);
}

.te-dash-toggle-section .toggle input:checked + .slider::before {
    transform: translateX(36px);
}

.te-dash-toggle-section .toggle .labels {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    font-size: 10px;
    font-weight: 600;
    line-height: 28px;
    text-align: center;
    pointer-events: none;
    user-select: none;
}

.te-dash-toggle-section .toggle .labels::after {
    content: attr(data-off);
    position: absolute;
    right: 8px;
    color: #64748b;
    opacity: 1;
    transition: 0.3s;
}

.te-dash-toggle-section .toggle input:checked ~ .labels::after {
    opacity: 0;
}

.te-dash-toggle-section .toggle .labels::before {
    content: attr(data-on);
    position: absolute;
    left: 8px;
    color: #fff;
    opacity: 0;
    transition: 0.3s;
}

.te-dash-toggle-section .toggle input:checked ~ .labels::before {
    opacity: 1;
}

/* ---------- Dolap Grid (Ev Temizliği - AJAX) ---------- */
.te-cd-dolap-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 10px;
    width: 100%;
    margin-top: 8px;
}

.te-cd-dolap-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 12px;
    background: var(--te-gray-50, #f8fafc);
    border-radius: 10px;
    border: 1px solid #e2e8f0;
    overflow: hidden;
}

.te-cd-dolap-name {
    flex: 1;
    min-width: 0;
    font-weight: 600;
    font-size: 0.85rem;
    color: #1e293b;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.te-cd-dolap-price {
    font-weight: 700;
    font-size: 0.88rem;
    color: #0284c7;
    white-space: nowrap;
}

/* --- Empty State --- */
.te-dash-empty {
    text-align: center;
    padding: 48px 24px;
}

.te-dash-empty-icon {
    font-size: 48px;
    color: #cbd5e1;
    margin-bottom: 16px;
}

.te-dash-empty p {
    color: #64748b;
    font-size: 15px;
    margin-bottom: 16px;
}

.te-dash-empty a {
    color: #0284c7;
    font-weight: 600;
    text-decoration: none;
}

.te-dash-empty a:hover {
    text-decoration: underline;
}

/* --- Mobile Toggle --- */
.te-dash-mobile-toggle {
    display: none;
    background: linear-gradient(135deg, #0c4a6e, #0284c7);
    color: #fff;
    border: none;
    padding: 12px 20px;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    margin-bottom: 20px;
    width: 100%;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.te-dash-mobile-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    z-index: 1040;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.te-dash-mobile-overlay.show {
    opacity: 1;
}

/* --- Blog Pagination Override --- */
.te-dash-content .blog-pagination .pagination {
    justify-content: center;
    margin-top: 20px;
}

.te-dash-content .blog-pagination .page-link {
    border-radius: 8px;
    margin: 0 3px;
    border-color: #e2e8f0;
    color: #0284c7;
}

.te-dash-content .blog-pagination .page-item.active .page-link {
    background: linear-gradient(135deg, #0284c7, #0ea5e9);
    border-color: transparent;
}

/* --- Delete Account Modal Override --- */
#deleteAccountModal .modal-content {
    border-radius: 16px;
    border: none;
    overflow: hidden;
}

#deleteAccountModal .modal-header {
    border-bottom: 1px solid #f0f4f8;
    padding: 20px 24px;
}

#deleteAccountModal .modal-footer {
    border-top: 1px solid #f0f4f8;
    padding: 16px 24px;
}

/* --- Cancel Order Modal Override --- */
#cancelOrderModal .modal-content {
    border-radius: 16px;
    border: none;
    overflow: hidden;
}

/* --- Responsive: 1200px --- */
@media (max-width: 1200px) {
    .te-dash-sidebar {
        width: 260px;
        min-width: 260px;
    }
    .te-dash-stats {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* --- Responsive: 991px --- */
@media (max-width: 991px) {
    .te-dash-mobile-toggle {
        display: flex;
    }
    .te-dash-sidebar {
        position: fixed;
        left: -300px;
        top: 0;
        bottom: 0;
        width: 280px;
        min-width: 280px;
        border-radius: 0 20px 20px 0;
        z-index: 1050;
        transition: left 0.3s ease;
        overflow-y: auto;
    }
    .te-dash-sidebar.show {
        left: 0;
    }
    .te-dash-mobile-overlay.show {
        display: block;
    }
    .te-dash-wrapper {
        flex-direction: column;
    }
    .te-dash-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    .te-dash-content-inner {
        padding: 24px;
    }
}

/* --- Responsive: 768px --- */
@media (max-width: 768px) {
    .te-dash-page {
        padding: 16px 0 40px;
    }
    .te-dash-content-inner {
        padding: 20px 16px;
        border-radius: 14px;
    }
    .te-dash-stats {
        grid-template-columns: 1fr;
    }
    .te-dash-stat-card {
        padding: 20px;
    }
    .te-dash-stat-number {
        font-size: 28px;
    }
    .te-dash-order-card {
        padding: 16px;
    }
    .te-dash-welcome h3 {
        font-size: 20px;
    }
}

/* --- Responsive: 575px --- */
@media (max-width: 575px) {
    .te-dash-content-inner {
        padding: 16px 12px;
    }
    .te-dash-header h4 {
        font-size: 18px;
    }
    .te-dash-quick-actions {
        flex-direction: column;
    }
    .te-dash-quick-btn {
        justify-content: center;
    }
    .te-dash-coupon-card::before,
    .te-dash-coupon-card::after {
        display: none;
    }
    .te-dash-notif-card {
        flex-direction: column;
        align-items: stretch;
    }
    .te-dash-notif-delete {
        align-self: flex-end;
    }
}
