  /* RESET */
  * {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
  }

  :root {
    --primary: #2563eb;
    --primary-2: #3b82f6;
    --dark: #1e3a8a;
    --muted: #64748b;
    --bg: #ffffff;
    --shadow: 0 20px 40px rgba(37, 99, 235, .12);
    --ring: 0 0 0 4px rgba(37, 99, 235, .08);
  }

  body {
    font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
    color: #1f2937;
  }

  /* TOP BAR */
  .tc-topbar {
    background: linear-gradient(135deg, #1e3a8a 0%, #2563eb 100%);
    color: #fff;
    font-size: 14px;
  }

  .tc-topbar-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 10px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
  }

  .tc-topbar-left a.tc-pill {
    background: rgba(37, 99, 235, .9);
    color: #fff;
    text-decoration: none;
    padding: 8px 14px;
    border-radius: 999px;
    font-weight: 700;
    transition: .25s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
  }

  .tc-topbar-left a.tc-pill:hover {
    transform: translateY(-1px);
    background: #2563eb;
  }

  .tc-topbar-right {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
  }

  .tc-topbar-right a {
    color: rgba(255, 255, 255, .9);
    text-decoration: none;
    padding: 6px 10px;
    border-radius: 8px;
    transition: .25s;
    display: flex;
    align-items: center;
    gap: 8px;
  }

  .tc-topbar-right a:hover {
    background: rgba(255, 255, 255, .1);
    color: #fff;
  }

  .tc-social {
    display: flex;
    gap: 8px;
  }

  .tc-social a {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    transition: .25s;
  }

  .tc-social a.tc-fb {
    background: #1877f2;
  }

  .tc-social a.tc-ig {
    background: linear-gradient(45deg, #2563eb 0%, #3b82f6 25%, #1d4ed8 50%, #1e40af 75%, #1e3a8a 100%);
  }

  .tc-social a.tc-li {
    background: #0ea5e9;
  }

  .tc-social a:hover {
    transform: translateY(-2px);
  }

  /* MAIN HEADER */
  .tc-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, .95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(226, 232, 240, .8);
    box-shadow: 0 2px 12px rgba(0, 0, 0, .06);
  }

  .tc-header-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 14px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
  }

  .tc-logo {
    flex-shrink: 0;
  }

  .tc-logo img {
    height: 56px;
    display: block;
    transition: .25s;
  }

  .tc-logo:hover img {
    transform: scale(1.03);
  }

  /* DESKTOP NAV */
  .tc-nav {
    display: flex;
    align-items: center;
    gap: 28px;
    flex: 1;
    justify-content: center;
    margin: 0 20px;
  }

  .tc-nav>li {
    list-style: none;
    position: relative;
  }

  .tc-link {
    color: #1e3a8a;
    text-decoration: none;
    font-weight: 700;
    font-size: 15px;
    padding: 12px 8px;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: .25s;
    white-space: nowrap;
  }

  .tc-link:hover {
    color: var(--primary);
  }

  .tc-underline::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 4px;
    height: 3px;
    width: 0;
    background: linear-gradient(135deg, var(--primary), var(--primary-2));
    border-radius: 2px;
    transition: .25s;
  }

  li:hover>.tc-underline::after {
    width: 100%;
  }

  /* SIMPLE SUBMENU */
  .tc-submenu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 240px;
    background: #fff;
    border: 1px solid rgba(226, 232, 240, .9);
    border-radius: 14px;
    padding: 12px;
    box-shadow: var(--shadow);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: .25s;
    z-index: 10;
  }

  .tc-submenu li {
    list-style: none;
  }

  .tc-submenu a {
    display: block;
    text-decoration: none;
    color: #64748b;
    font-weight: 600;
    padding: 10px 12px;
    border-radius: 10px;
    transition: .25s;
  }

  .tc-submenu a:hover {
    color: var(--primary);
    background: rgba(37, 99, 235, .06);
    padding-left: 16px;
  }

  .tc-has-dropdown:hover>.tc-submenu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  /* MEGA MENU */
  .tc-mega {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translate(-50%, 10px);
    width: min(1100px, 92vw);
    background: #fff;
    border: 1px solid rgba(226, 232, 240, .9);
    border-radius: 16px;
    padding: 22px 24px;
    box-shadow: var(--shadow);
    opacity: 0;
    visibility: hidden;
    transition: .25s;
    z-index: 15;
  }

  .tc-has-mega:hover>.tc-mega {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, 0);
  }

  .tc-mega-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
  }

  .tc-mega h5 {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: .4px;
    color: var(--primary);
    margin-bottom: 12px;
  }

  .tc-mega a {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #64748b;
    text-decoration: none;
    padding: 8px 0;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    transition: .25s;
  }

  .tc-mega a:hover {
    color: var(--primary);
    padding-left: 10px;
    background: transparent;
  }

  .tc-badge {
    background: linear-gradient(135deg, #2563eb, #3b82f6);
    color: #fff;
    font-size: 10px;
    padding: 2px 6px;
    border-radius: 999px;
    font-weight: 700;
  }

  /* ACTIONS */
  .tc-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
    justify-content: flex-end;
  }

  .tc-btn {
    border: none;
    border-radius: 12px;
    padding: 12px 20px;
    font-weight: 700;
    font-size: 14px;
    color: #fff;
    cursor: pointer;
    transition: .25s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    white-space: nowrap;
  }

  .tc-btn.tc-green {
    background: linear-gradient(135deg, #1d4ed8, #2563eb);
    box-shadow: 0 8px 20px rgba(37, 99, 235, .3);
  }

  .tc-btn.tc-green:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(37, 99, 235, .38);
  }

  .tc-btn.tc-purple {
    background: linear-gradient(135deg, #2563eb, #3b82f6);
    box-shadow: 0 8px 20px rgba(37, 99, 235, .25);
  }

  .tc-btn.tc-purple:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(37, 99, 235, .34);
  }

  /* MOBILE TOGGLE */
  .tc-mobile-toggle {
    display: none;
    background: var(--primary);
    color: #fff;
    border: none;
    width: 44px;
    height: 44px;
    border-radius: 10px;
    font-size: 18px;
  }

  /* MOBILE MENU (off-canvas) */
  .tc-mobile-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .5);
    z-index: 999;
    display: none;
    opacity: 0;
    transition: .3s;
  }

  .tc-mobile {
    position: fixed;
    inset: 0 auto 0 0;
    width: min(92vw, 380px);
    background: #fff;
    z-index: 1000;
    transform: translateX(-100%);
    transition: .35s cubic-bezier(.4, 0, .2, 1);
    box-shadow: 12px 0 30px rgba(0, 0, 0, .15);
    overflow: auto;
    -webkit-overflow-scrolling: touch;
  }

  .tc-mobile-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 16px;
    border-bottom: 1px solid #e2e8f0;
  }

  .tc-mobile-head img {
    height: 38px;
  }

  .tc-mobile-close {
    background: rgba(37, 99, 235, .12);
    color: #2563eb;
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
  }

  .tc-mlinks>a,
  .tc-accord-btn {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 12px;
    width: 100%;
    text-decoration: none;
    color: #1e3a8a;
    font-weight: 800;
    padding: 14px 16px;
    border-bottom: 1px solid #f1f5f9;
    font-size: 16px;
  }

  .tc-mlinks>a i,
  .tc-accord-btn i.fas:not(.tc-accord-icon) {
    color: var(--primary);
    font-size: 16px;
    width: 20px;
    text-align: center;
    margin-right: 8px;
  }

  .tc-accord-btn {
    justify-content: space-between;
  }

  .tc-accord-btn span {
    display: flex;
    align-items: center;
    gap: 12px;
  }

  .tc-accord-icon {
    color: #64748b;
    transition: .25s;
  }

  .tc-accord-panel {
    height: 0;
    overflow: hidden;
    transition: height .3s ease;
    background: #f8fafc;
  }

  .tc-accord-inner {
    padding: 10px 0 10px 18px;
  }

  .tc-accord-title {
    color: var(--primary);
    font-size: 13px;
    font-weight: 900;
    margin: 10px 0 6px;
  }

  .tc-accord-link {
    display: block;
    padding: 8px 0;
    color: #64748b;
    text-decoration: none;
    font-weight: 600;
  }

  .tc-accord-link:hover {
    color: var(--primary);
  }

  /* FLOATING BUTTONS - Only Chat and WhatsApp */
  .tc-floating-buttons {
    display: none;
    /* Completely removed right side buttons */
  }

  /* LEFT SIDE FLOATING BUTTONS - WhatsApp above Chat */
  .tc-floating-buttons-left {
    position: fixed;
    left: 20px;
    bottom: 100px;
    /* Above chat button */
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 999;
  }

  .tc-float-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: none;
    color: white;
    font-size: 20px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15), 0 4px 10px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    text-decoration: none;
    backdrop-filter: blur(10px);
    border: 3px solid rgba(255, 255, 255, 0.2);
    overflow: hidden;
  }

  .tc-float-btn::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 50%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
  }

  .tc-float-btn:hover::before {
    opacity: 1;
    animation: rotate 2s linear infinite;
  }

  @keyframes rotate {
    0% {
      transform: rotate(0deg);
    }

    100% {
      transform: rotate(360deg);
    }
  }

  .tc-float-btn:hover {
    transform: scale(1.15) translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25), 0 8px 20px rgba(0, 0, 0, 0.15);
    color: white;
  }

  .tc-float-btn.whatsapp {
    background: linear-gradient(135deg, #25d366, #128c7e, #075e54);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4), 0 4px 10px rgba(37, 211, 102, 0.2);
  }

  .tc-float-tooltip {
    position: absolute;
    right: 80px;
    background: linear-gradient(135deg, #1f2937, #374151);
    color: white;
    padding: 10px 15px;
    border-radius: 12px;
    font-size: 13px;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transform: translateX(10px);
    transition: all 0.3s ease;
    pointer-events: none;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
  }

  .tc-float-tooltip::after {
    content: '';
    position: absolute;
    left: 100%;
    top: 50%;
    transform: translateY(-50%);
    border: 8px solid transparent;
    border-left-color: #1f2937;
  }

  .tc-float-btn:hover .tc-float-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
  }

  /* LIVE CHAT BUTTON (Bottom position) */
  .tc-chat-button {
    position: fixed;
    left: 20px;
    bottom: 20px;
    /* Bottom position */
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #0ea5e9, #3b82f6);
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 24px;
    cursor: pointer;
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.4);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 999;
    animation: pulse 2s infinite;
  }

  .tc-chat-button:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 30px rgba(59, 130, 246, 0.6);
  }

  @keyframes pulse {
    0% {
      box-shadow: 0 6px 20px rgba(59, 130, 246, 0.4), 0 0 0 0 rgba(59, 130, 246, 0.7);
    }

    70% {
      box-shadow: 0 6px 20px rgba(59, 130, 246, 0.4), 0 0 0 15px rgba(59, 130, 246, 0);
    }

    100% {
      box-shadow: 0 6px 20px rgba(59, 130, 246, 0.4), 0 0 0 0 rgba(59, 130, 246, 0);
    }
  }

  /* ENHANCED CHATBOT MODAL */
  .tc-chatbot-modal {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(8px);
    z-index: 10000;
    display: none;
    opacity: 0;
    transition: all 0.4s ease;
  }

  .tc-chatbot-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
  }

  .tc-chatbot-container {
    background: linear-gradient(145deg, #ffffff, #f8fafc);
    border-radius: 24px;
    width: min(480px, 90vw);
    height: min(650px, 85vh);
    overflow: hidden;
    transform: scale(0.8) translateY(50px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow:
      0 25px 50px rgba(0, 0, 0, 0.3),
      0 15px 25px rgba(0, 0, 0, 0.1),
      inset 0 1px 0 rgba(255, 255, 255, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    flex-direction: column;
    position: relative;
  }

  .tc-chatbot-container::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 24px;
    background: linear-gradient(145deg, transparent, rgba(255, 255, 255, 0.1));
    pointer-events: none;
  }

  .tc-chatbot-modal.active .tc-chatbot-container {
    transform: scale(1) translateY(0);
  }

  .tc-chatbot-header {
    background: linear-gradient(135deg, #0ea5e9, #3b82f6, #6366f1);
    color: white;
    padding: 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
  }

  .tc-chatbot-header::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    animation: shine 3s infinite;
  }

  .tc-chatbot-title {
    font-size: 20px;
    font-weight: 800;
    margin: 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .tc-chatbot-title::before {
    content: '🤖';
    font-size: 24px;
  }

  .tc-chatbot-close {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 18px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
  }

  .tc-chatbot-close:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(90deg) scale(1.1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  }

  .tc-chatbot-body {
    flex: 1;
    padding: 20px;
    overflow-y: auto;
    background: linear-gradient(145deg, #f8fafc, #ffffff);
    scrollbar-width: thin;
    scrollbar-color: #e5e7eb transparent;
  }

  .tc-chatbot-body::-webkit-scrollbar {
    width: 6px;
  }

  .tc-chatbot-body::-webkit-scrollbar-track {
    background: transparent;
  }

  .tc-chatbot-body::-webkit-scrollbar-thumb {
    background: #e5e7eb;
    border-radius: 3px;
  }

  .tc-chatbot-body::-webkit-scrollbar-thumb:hover {
    background: #d1d5db;
  }

  .tc-chat-message {
    margin-bottom: 16px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    animation: fadeInUp 0.3s ease;
  }

  @keyframes fadeInUp {
    from {
      opacity: 0;
      transform: translateY(10px);
    }

    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  .tc-chat-message.bot {
    justify-content: flex-start;
  }

  .tc-chat-message.user {
    justify-content: flex-end;
  }

  .tc-chat-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: linear-gradient(135deg, #0ea5e9, #3b82f6);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 16px;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(14, 165, 233, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.9);
  }

  .tc-chat-bubble {
    background: linear-gradient(145deg, #ffffff, #f9fafb);
    padding: 14px 18px;
    border-radius: 20px;
    max-width: 300px;
    box-shadow:
      0 4px 12px rgba(0, 0, 0, 0.1),
      inset 0 1px 0 rgba(255, 255, 255, 0.8);
    font-size: 14px;
    line-height: 1.5;
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
  }

  .tc-chat-message.user .tc-chat-bubble {
    background: linear-gradient(135deg, #2563eb, #3b82f6);
    color: white;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.2);
  }

  .tc-chat-message.user .tc-chat-avatar {
    background: linear-gradient(135deg, #2563eb, #3b82f6);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
  }

  .tc-chatbot-footer {
    padding: 20px;
    border-top: 1px solid rgba(229, 231, 235, 0.8);
    background: linear-gradient(145deg, #ffffff, #f9fafb);
  }

  .tc-chat-input-container {
    display: flex;
    gap: 12px;
    align-items: center;
  }

  .tc-chat-input {
    flex: 1;
    padding: 14px 18px;
    border: 2px solid #e5e7eb;
    border-radius: 25px;
    font-size: 14px;
    outline: none;
    transition: all 0.3s ease;
    background: linear-gradient(145deg, #ffffff, #f9fafb);
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.06);
  }

  .tc-chat-input:focus {
    border-color: #2563eb;
    box-shadow:
      0 0 0 4px rgba(37, 99, 235, 0.1),
      inset 0 2px 4px rgba(0, 0, 0, 0.06);
    background: white;
  }

  .tc-chat-send {
    background: linear-gradient(135deg, #2563eb, #3b82f6);
    border: none;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(79, 70, 229, 0.3);
  }

  .tc-chat-send:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 16px rgba(79, 70, 229, 0.4);
  }

  /* ENHANCED DEMO MODAL - Perfect Design */
  .tc-modal-overlay {
    position: fixed;
    inset: 0;
    background:
      radial-gradient(circle at 50% 50%, rgba(79, 70, 229, 0.15) 0%, transparent 50%),
      linear-gradient(135deg, rgba(0, 0, 0, 0.8), rgba(30, 41, 59, 0.9));
    backdrop-filter: blur(12px) saturate(1.8);
    z-index: 10000;
    display: none;
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    animation: overlayFadeIn 0.5s ease-out;
  }

  .tc-modal-overlay.active {
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
  }

  @keyframes overlayFadeIn {
    from {
      backdrop-filter: blur(0px) saturate(1);
      opacity: 0;
    }

    to {
      backdrop-filter: blur(12px) saturate(1.8);
      opacity: 1;
    }
  }

  .tc-modal {
    background:
      linear-gradient(145deg, #ffffff 0%, #f8fafc 50%, #ffffff 100%),
      radial-gradient(circle at 20% 80%, rgba(79, 70, 229, 0.03) 0%, transparent 50%),
      radial-gradient(circle at 80% 20%, rgba(168, 85, 247, 0.03) 0%, transparent 50%);
    border-radius: 28px;
    padding: 0;
    width: min(620px, 92vw);
    max-height: 85vh;
    overflow-y: auto;
    transform: scale(0.7) translateY(80px) rotateX(10deg);
    transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow:
      0 32px 64px rgba(0, 0, 0, 0.4),
      0 16px 32px rgba(0, 0, 0, 0.2),
      0 8px 16px rgba(0, 0, 0, 0.1),
      inset 0 1px 0 rgba(255, 255, 255, 0.8),
      inset 0 -1px 0 rgba(0, 0, 0, 0.05);
    border: 2px solid;
    border-image: linear-gradient(145deg,
        rgba(255, 255, 255, 0.8) 0%,
        rgba(255, 255, 255, 0.2) 50%,
        rgba(79, 70, 229, 0.1) 100%) 1;
    position: relative;
    scrollbar-width: thin;
    scrollbar-color: #e5e7eb transparent;
  }

  .tc-modal::-webkit-scrollbar {
    width: 8px;
  }

  .tc-modal::-webkit-scrollbar-track {
    background: transparent;
  }

  .tc-modal::-webkit-scrollbar-thumb {
    background: #e5e7eb;
    border-radius: 4px;
  }

  .tc-modal::-webkit-scrollbar-thumb:hover {
    background: #d1d5db;
  }

  .tc-modal::-webkit-scrollbar {
    display: none;
  }

  .tc-modal::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 30px;
    background: linear-gradient(45deg,
        rgba(79, 70, 229, 0.1) 0%,
        rgba(168, 85, 247, 0.05) 25%,
        transparent 50%,
        rgba(79, 70, 229, 0.05) 75%,
        rgba(168, 85, 247, 0.1) 100%);
    z-index: -1;
    animation: borderGlow 4s ease-in-out infinite;
  }

  @keyframes borderGlow {

    0%,
    100% {
      opacity: 0.3;
      transform: scale(1);
    }

    50% {
      opacity: 0.8;
      transform: scale(1.02);
    }
  }

  .tc-modal::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
        transparent,
        rgba(255, 255, 255, 0.4),
        transparent);
    animation: modalShine 3s ease-in-out infinite;
    pointer-events: none;
  }

  @keyframes modalShine {
    0% {
      left: -100%;
    }

    50% {
      left: 100%;
    }

    100% {
      left: 100%;
    }
  }

  .tc-modal-overlay.active .tc-modal {
    transform: scale(1) translateY(0) rotateX(0deg);
    animation: modalEntry 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
  }

  @keyframes modalEntry {
    0% {
      transform: scale(0.5) translateY(100px) rotateX(15deg);
      opacity: 0;
    }

    50% {
      transform: scale(1.05) translateY(-10px) rotateX(-2deg);
      opacity: 0.8;
    }

    100% {
      transform: scale(1) translateY(0) rotateX(0deg);
      opacity: 1;
    }
  }

  .tc-modal-header {
    background:
      linear-gradient(135deg, #2563eb 0%, #3b82f6 50%, #60a5fa 100%),
      radial-gradient(circle at 30% 70%, rgba(255, 255, 255, 0.2) 0%, transparent 50%);
    color: white;
    padding: 40px 36px;
    text-align: center;
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  }

  .tc-modal-header::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background:
      linear-gradient(45deg,
        transparent 30%,
        rgba(255, 255, 255, 0.1) 50%,
        transparent 70%),
      radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    animation: headerShine 4s ease-in-out infinite;
    pointer-events: none;
  }

  @keyframes headerShine {
    0% {
      transform: translateX(-100%) translateY(-100%) rotate(45deg);
      opacity: 0;
    }

    50% {
      transform: translateX(0%) translateY(0%) rotate(45deg);
      opacity: 1;
    }

    100% {
      transform: translateX(100%) translateY(100%) rotate(45deg);
      opacity: 0;
    }
  }

  .tc-modal-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg,
        transparent,
        rgba(255, 255, 255, 0.5),
        transparent);
  }

  @keyframes shine {
    0% {
      transform: translateX(-100%) translateY(-100%) rotate(45deg);
      opacity: 0;
    }

    50% {
      transform: translateX(0%) translateY(0%) rotate(45deg);
      opacity: 1;
    }

    100% {
      transform: translateX(100%) translateY(100%) rotate(45deg);
      opacity: 0;
    }
  }

  .tc-modal-header h2 {
    font-size: 28px;
    font-weight: 900;
    margin: 0;
    text-shadow:
      0 2px 4px rgba(0, 0, 0, 0.3),
      0 1px 2px rgba(0, 0, 0, 0.2);
    letter-spacing: -0.5px;
    position: relative;
    z-index: 2;
    background: linear-gradient(135deg,
        rgba(255, 255, 255, 1) 0%,
        rgba(255, 255, 255, 0.9) 50%,
        rgba(255, 255, 255, 1) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    animation: titleGlow 3s ease-in-out infinite;
  }

  @keyframes titleGlow {

    0%,
    100% {
      text-shadow:
        0 2px 4px rgba(0, 0, 0, 0.3),
        0 1px 2px rgba(0, 0, 0, 0.2);
    }

    50% {
      text-shadow:
        0 2px 4px rgba(0, 0, 0, 0.3),
        0 1px 2px rgba(0, 0, 0, 0.2),
        0 0 20px rgba(255, 255, 255, 0.4);
    }
  }

  .tc-modal-header p {
    margin: 12px 0 0 0;
    opacity: 0.95;
    font-size: 17px;
    font-weight: 600;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    letter-spacing: 0.3px;
    position: relative;
    z-index: 2;
  }

  .tc-modal-close {
    position: absolute;
    top: 24px;
    right: 24px;
    background:
      linear-gradient(135deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.1)),
      radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
    border: 2px solid rgba(255, 255, 255, 0.4);
    color: white;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 20px;
    font-weight: 700;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px) saturate(1.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    box-shadow:
      0 4px 12px rgba(0, 0, 0, 0.2),
      inset 0 1px 0 rgba(255, 255, 255, 0.5);
  }

  .tc-modal-close:hover {
    background:
      linear-gradient(135deg, rgba(255, 255, 255, 0.35), rgba(255, 255, 255, 0.25)),
      radial-gradient(circle, rgba(255, 255, 255, 0.4) 0%, transparent 70%);
    transform: rotate(90deg) scale(1.15);
    box-shadow:
      0 8px 20px rgba(0, 0, 0, 0.3),
      inset 0 1px 0 rgba(255, 255, 255, 0.6),
      0 0 20px rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.6);
  }

  .tc-modal-close:active {
    transform: rotate(90deg) scale(1.05);
    box-shadow:
      0 4px 12px rgba(0, 0, 0, 0.4),
      inset 0 1px 0 rgba(255, 255, 255, 0.4);
  }

  .tc-modal-body {
    padding: 48px 40px;
    background:
      linear-gradient(145deg, #ffffff 0%, #f8fafc 30%, #ffffff 70%, #f1f5f9 100%),
      radial-gradient(circle at 20% 80%, rgba(79, 70, 229, 0.02) 0%, transparent 50%),
      radial-gradient(circle at 80% 20%, rgba(168, 85, 247, 0.02) 0%, transparent 50%);
    position: relative;
    overflow: hidden;
  }

  .tc-modal-body::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg,
        transparent,
        rgba(79, 70, 229, 0.2),
        rgba(168, 85, 247, 0.2),
        transparent);
    animation: topBorderFlow 3s ease-in-out infinite;
  }

  @keyframes topBorderFlow {

    0%,
    100% {
      opacity: 0.3;
      transform: translateX(-100%);
    }

    50% {
      opacity: 1;
      transform: translateX(100%);
    }
  }

  .tc-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 28px;
  }

  .tc-form-group {
    margin-bottom: 28px;
    position: relative;
    animation: formGroupFadeIn 0.6s ease-out;
    animation-fill-mode: both;
  }

  .tc-form-group:nth-child(1) {
    animation-delay: 0.1s;
  }

  .tc-form-group:nth-child(2) {
    animation-delay: 0.2s;
  }

  .tc-form-group:nth-child(3) {
    animation-delay: 0.3s;
  }

  .tc-form-group:nth-child(4) {
    animation-delay: 0.4s;
  }

  .tc-form-group:nth-child(5) {
    animation-delay: 0.5s;
  }

  /* Mobile responsive for form */
  @media (max-width: 768px) {
    .tc-form-row {
      grid-template-columns: 1fr;
      gap: 0;
    }

    .tc-modal-body {
      padding: 32px 24px;
    }
  }

  @keyframes formGroupFadeIn {
    from {
      opacity: 0;
      transform: translateY(20px);
    }

    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  .tc-form-label {
    display: block;
    font-weight: 800;
    color: #1f2937;
    margin-bottom: 10px;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    padding-left: 8px;
  }

  .tc-form-label::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 3px;
    height: 16px;
    background: linear-gradient(135deg, #2563eb, #3b82f6);
    border-radius: 2px;
  }

  .tc-form-input,
  .tc-form-select {
    width: 100%;
    padding: 18px 24px;
    border: 2px solid #e5e7eb;
    border-radius: 18px;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background:
      linear-gradient(145deg, #ffffff 0%, #f9fafb 50%, #ffffff 100%),
      radial-gradient(circle at 10% 10%, rgba(79, 70, 229, 0.01) 0%, transparent 50%);
    box-shadow:
      inset 0 2px 4px rgba(0, 0, 0, 0.06),
      0 1px 3px rgba(0, 0, 0, 0.05);
    position: relative;
    outline: none;
  }

  .tc-form-input::placeholder {
    color: #9ca3af;
    font-weight: 400;
    opacity: 0.8;
  }

  .tc-form-input:focus,
  .tc-form-select:focus {
    border-color: #2563eb;
    background:
      linear-gradient(145deg, #ffffff 0%, #fefeff 50%, #ffffff 100%);
    box-shadow:
      0 0 0 4px rgba(37, 99, 235, 0.12),
      inset 0 2px 4px rgba(0, 0, 0, 0.04),
      0 4px 12px rgba(37, 99, 235, 0.15),
      0 2px 6px rgba(0, 0, 0, 0.08);
    transform: translateY(-2px) scale(1.01);
  }

  .tc-form-input:hover,
  .tc-form-select:hover {
    border-color: #6366f1;
    box-shadow:
      inset 0 2px 4px rgba(0, 0, 0, 0.06),
      0 2px 8px rgba(99, 102, 241, 0.1);
    transform: translateY(-1px);
  }

  .tc-form-submit {
    width: 100%;
    background:
      linear-gradient(135deg, #2563eb 0%, #3b82f6 50%, #60a5fa 100%),
      radial-gradient(circle at 30% 70%, rgba(255, 255, 255, 0.2) 0%, transparent 50%);
    color: white;
    border: none;
    padding: 20px 28px;
    border-radius: 18px;
    font-size: 18px;
    font-weight: 900;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    box-shadow:
      0 8px 25px rgba(37, 99, 235, 0.35),
      0 4px 12px rgba(37, 99, 235, 0.2),
      inset 0 1px 0 rgba(255, 255, 255, 0.3);
    position: relative;
    overflow: hidden;
    border: 2px solid rgba(255, 255, 255, 0.2);
  }

  .tc-form-submit::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(45deg,
        transparent 30%,
        rgba(255, 255, 255, 0.3) 50%,
        transparent 70%);
    transform: translateX(-100%) skewX(-15deg);
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .tc-form-submit::after {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg,
        rgba(37, 99, 235, 0.8) 0%,
        rgba(96, 165, 250, 0.6) 50%,
        rgba(37, 99, 235, 0.8) 100%);
    border-radius: 20px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
  }

  .tc-form-submit:hover::before {
    transform: translateX(100%) skewX(-15deg);
  }

  .tc-form-submit:hover::after {
    opacity: 1;
    animation: submitGlow 1.5s ease-in-out infinite;
  }

  @keyframes submitGlow {

    0%,
    100% {
      opacity: 0.6;
      transform: scale(1);
    }

    50% {
      opacity: 1;
      transform: scale(1.02);
    }
  }

  .tc-form-submit:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow:
      0 15px 40px rgba(37, 99, 235, 0.5),
      0 8px 20px rgba(37, 99, 235, 0.3),
      inset 0 1px 0 rgba(255, 255, 255, 0.4),
      0 0 30px rgba(168, 85, 247, 0.3);
    border-color: rgba(255, 255, 255, 0.4);
  }

  .tc-form-submit:active {
    transform: translateY(-2px) scale(1.01);
    box-shadow:
      0 8px 25px rgba(79, 70, 229, 0.4),
      0 4px 12px rgba(79, 70, 229, 0.25),
      inset 0 1px 0 rgba(255, 255, 255, 0.3);
  }

  /* RESPONSIVE DESIGN - Enhanced */
  @media (max-width: 1200px) {
    .tc-nav {
      gap: 24px;
    }

    .tc-link {
      font-size: 15px;
    }
  }

  /* Small Desktop Screens (14 inch laptops) - Fix overflow */
  @media (max-width: 1366px) and (min-width: 993px) {
    .tc-header-inner {
      max-width: 1200px;
      padding: 12px 16px;
    }

    .tc-nav {
      gap: 18px;
      margin: 0 10px;
    }

    .tc-link {
      font-size: 14px;
      padding: 10px 6px;
    }

    .tc-mega {
      width: min(950px, 90vw);
      left: 50%;
      transform: translate(-50%, 10px);
    }

    .tc-mega-grid {
      grid-template-columns: repeat(4, 1fr);
      gap: 18px;
    }

    .tc-mega a {
      font-size: 13px;
      padding: 6px 0;
    }

    .tc-actions {
      gap: 8px;
    }

    .tc-btn {
      padding: 10px 16px;
      font-size: 13px;
    }
  }

  @media (max-width: 992px) {

    .tc-nav,
    .tc-actions .tc-green,
    .tc-actions .tc-purple {
      display: none;
    }

    .tc-mobile-toggle {
      display: inline-flex;
      align-items: center;
      justify-content: center;
    }

    .tc-topbar {
      display: none;
    }

    .tc-header-inner {
      padding: 12px 16px;
      gap: 16px;
    }

    .tc-logo img {
      height: 48px;
    }

    .tc-actions {
      justify-content: center;
    }

    /* Adjust floating buttons for tablet */
    .tc-float-btn {
      width: 55px;
      height: 55px;
      font-size: 18px;
    }

    .tc-chat-button {
      width: 55px;
      height: 55px;
      font-size: 20px;
      left: 15px;
      bottom: 15px;
      /* Bottom position */
    }

    .tc-floating-buttons-left {
      left: 15px;
      bottom: 85px;
      /* Above chat button */
    }
  }

  @media (max-width: 768px) {
    .tc-topbar-inner {
      padding: 8px 16px;
      flex-direction: column;
      gap: 12px;
    }

    .tc-topbar-right {
      order: -1;
      justify-content: center;
    }

    /* Perfect mobile header */
    .tc-header-inner {
      padding: 12px 16px;
      gap: 12px;
      position: relative;
    }

    .tc-logo img {
      height: 44px;
    }

    .tc-mobile-toggle {
      width: 42px;
      height: 42px;
      font-size: 18px;
      border-radius: 10px;
      transition: all 0.3s ease;
      background: linear-gradient(135deg, var(--primary), var(--primary-2));
      box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
    }

    .tc-mobile-toggle:hover {
      background: linear-gradient(135deg, var(--primary-2), #60a5fa);
      transform: scale(1.05);
      box-shadow: 0 6px 16px rgba(37, 99, 235, 0.4);
    }

    /* Enhanced Mobile Menu */
    .tc-mobile {
      width: min(88vw, 380px);
      box-shadow: 20px 0 40px rgba(0, 0, 0, .25);
      backdrop-filter: blur(10px);
    }

    .tc-mobile-head {
      padding: 20px;
      background: linear-gradient(135deg, #f8fafc, #ffffff);
      border-bottom: 2px solid #e2e8f0;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    }

    .tc-mobile-head img {
      height: 38px;
    }

    .tc-mobile-close {
      width: 42px;
      height: 42px;
      font-size: 18px;
      background: linear-gradient(135deg, #fee2e2, #fecaca);
      color: #dc2626;
      transition: all 0.3s ease;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 4px 12px rgba(220, 38, 38, 0.2);
    }

    .tc-mobile-close:hover {
      background: linear-gradient(135deg, #fecaca, #fca5a5);
      transform: rotate(90deg) scale(1.1);
      box-shadow: 0 6px 16px rgba(220, 38, 38, 0.3);
    }

    /* Perfect mobile navigation links */
    .tc-mlinks>a,
    .tc-accord-btn {
      padding: 18px 20px;
      font-size: 16px;
      font-weight: 700;
      border-bottom: 1px solid #f1f5f9;
      transition: all 0.3s ease;
      position: relative;
      overflow: hidden;
    }

    .tc-mlinks>a::before,
    .tc-accord-btn::before {
      content: '';
      position: absolute;
      left: -100%;
      top: 0;
      width: 100%;
      height: 100%;
      background: linear-gradient(90deg, transparent, rgba(79, 70, 229, 0.08), transparent);
      transition: left 0.5s ease;
    }

    .tc-mlinks>a:hover::before,
    .tc-accord-btn:hover::before {
      left: 100%;
    }

    .tc-mlinks>a:hover,
    .tc-accord-btn:hover {
      background: linear-gradient(135deg, #f8fafc, #f1f5f9);
      color: var(--primary);
      padding-left: 28px;
      border-left: 4px solid var(--primary);
      box-shadow: inset 0 2px 4px rgba(79, 70, 229, 0.1);
    }

    /* Enhanced accordion panels */
    .tc-accord-panel {
      background: linear-gradient(135deg, #f9fafb, #f3f4f6);
      border-left: 4px solid var(--primary);
      margin-left: 20px;
      margin-right: 20px;
      border-radius: 0 12px 12px 0;
      box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.05);
    }

    .tc-accord-inner {
      padding: 16px 20px;
    }

    .tc-accord-title {
      font-size: 13px;
      font-weight: 800;
      margin: 12px 0 10px;
      color: var(--primary);
      text-transform: uppercase;
      letter-spacing: 0.5px;
      position: relative;
      padding-left: 20px;
    }

    .tc-accord-title::before {
      content: '';
      position: absolute;
      left: 0;
      top: 50%;
      transform: translateY(-50%);
      width: 10px;
      height: 10px;
      background: var(--primary);
      border-radius: 50%;
      box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.2);
    }

    .tc-accord-link {
      padding: 12px 0;
      font-size: 15px;
      font-weight: 600;
      color: #6b7280;
      transition: all 0.3s ease;
      border-left: 3px solid transparent;
      padding-left: 16px;
      position: relative;
      border-radius: 8px;
      margin: 4px 0;
    }

    .tc-accord-link:hover {
      color: var(--primary);
      border-left-color: var(--primary);
      padding-left: 20px;
      background: rgba(79, 70, 229, 0.08);
      transform: translateX(4px);
      box-shadow: 0 2px 8px rgba(79, 70, 229, 0.1);
    }

    /* Perfect floating buttons for mobile */
    .tc-chat-button {
      width: 52px;
      height: 52px;
      font-size: 20px;
      bottom: 75px;
      left: 15px;
      box-shadow: 0 6px 20px rgba(59, 130, 246, 0.4);
    }

    .tc-floating-buttons-left {
      left: 15px;
      bottom: 15px;
    }

    .tc-float-btn {
      width: 52px;
      height: 52px;
      font-size: 18px;
      box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15), 0 3px 8px rgba(0, 0, 0, 0.1);
    }

    /* Perfect modal for mobile */
    .tc-modal-container {
      width: 95%;
      margin: 10px;
      border-radius: 20px;
      max-height: 90vh;
    }

    .tc-modal-header {
      padding: 24px 20px;
    }

    .tc-modal-header h3 {
      font-size: 18px;
    }

    .tc-modal-close {
      width: 36px;
      height: 36px;
      top: 16px;
      right: 16px;
      font-size: 18px;
    }

    .tc-modal-body {
      padding: 24px 20px;
      max-height: calc(90vh - 120px);
      overflow-y: auto;
    }

    .tc-form-row {
      grid-template-columns: 1fr;
      gap: 0;
      margin-bottom: 20px;
    }

    .tc-form-group {
      margin-bottom: 20px;
    }

    .tc-form-group label {
      font-size: 13px;
    }

    .tc-form-group input,
    .tc-form-group select {
      padding: 14px 16px;
      font-size: 15px;
      border-radius: 12px;
    }

    .tc-form-submit {
      padding: 16px 20px;
      font-size: 16px;
      border-radius: 12px;
    }

    /* Enhanced chatbot for mobile */
    .tc-chatbot-container {
      width: 95vw;
      height: 85vh;
      border-radius: 20px;
    }

    .tc-chatbot-header {
      padding: 20px;
    }

    .tc-chatbot-title {
      font-size: 18px;
    }

    .tc-chatbot-body {
      padding: 16px;
    }

    .tc-chat-bubble {
      max-width: 250px;
      font-size: 13px;
      padding: 12px 16px;
    }

    .tc-chatbot-footer {
      padding: 16px;
    }

    .tc-chat-input {
      padding: 12px 16px;
      font-size: 14px;
    }
  }

  .tc-chat-bubble {
    max-width: 260px;
  }
  }

  @media (max-width: 480px) {
    .tc-floating-buttons {
      right: 8px;
      bottom: 80px;
      flex-direction: row;
      flex-wrap: wrap;
      width: 110px;
      gap: 6px;
    }

    .tc-float-btn {
      width: 44px;
      height: 44px;
      font-size: 14px;
    }

    .tc-float-btn img.tc-logo {
      width: 28px;
      height: 28px;
    }

    .tc-float-tooltip {
      display: none;
      /* Hide tooltips on very small screens */
    }

    .tc-chat-button {
      width: 48px;
      height: 48px;
      font-size: 18px;
      left: 8px;
      bottom: 10px;
    }

    .tc-chatbot-container {
      width: 98vw;
      height: 92vh;
      border-radius: 20px;
    }

    .tc-chatbot-header {
      padding: 18px;
    }

    .tc-chatbot-title {
      font-size: 18px;
    }

    .tc-modal-body {
      padding: 24px 20px;
    }

    .tc-form-input,
    .tc-form-select {
      padding: 14px 16px;
      font-size: 15px;
    }
  }

  /* Typing indicator animation */
  .tc-typing-dots {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 8px 0;
  }

  .tc-typing-dots span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #666;
    animation: typing 1.4s infinite ease-in-out;
  }

  .tc-typing-dots span:nth-child(1) {
    animation-delay: 0s;
  }

  .tc-typing-dots span:nth-child(2) {
    animation-delay: 0.2s;
  }

  .tc-typing-dots span:nth-child(3) {
    animation-delay: 0.4s;
  }

  @keyframes typing {

    0%,
    60%,
    100% {
      transform: translateY(0);
      opacity: 0.4;
    }

    30% {
      transform: translateY(-10px);
      opacity: 1;
    }
  }

  /* Enhanced Quick replies */
  .tc-quick-replies {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 10px 0;
    padding: 0 15px;
    animation: fadeInUp 0.5s ease;
  }

  .tc-quick-reply-btn {
    background: linear-gradient(135deg, #2563eb, #3b82f6);
    color: white;
    border: none;
    border-radius: 20px;
    padding: 8px 16px;
    font-size: 12px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    box-shadow: 0 2px 8px rgba(79, 70, 229, 0.2);
  }

  .tc-quick-reply-btn:hover {
    background: linear-gradient(135deg, #3730a3, #5b21b6);
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(79, 70, 229, 0.4);
  }

  .tc-quick-reply-btn:active {
    transform: translateY(0);
  }

  @keyframes fadeInUp {
    from {
      opacity: 0;
      transform: translateY(20px);
    }

    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  /* Responsive quick replies */
  @media (max-width: 768px) {
    .tc-quick-replies {
      padding: 0 10px;
    }

    .tc-quick-reply-btn {
      font-size: 11px;
      padding: 6px 12px;
    }
  }

  /* INLINE DEMO MODAL STYLES */
  .tc-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.75);
    backdrop-filter: blur(8px);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .tc-modal-overlay.active {
    opacity: 1;
    visibility: visible;
  }

  .tc-modal-container {
    background:
      linear-gradient(145deg, #ffffff 0%, #f8fafc 50%, #ffffff 100%),
      radial-gradient(circle at 20% 80%, rgba(79, 70, 229, 0.03) 0%, transparent 50%),
      radial-gradient(circle at 80% 20%, rgba(168, 85, 247, 0.03) 0%, transparent 50%);
    border-radius: 24px;
    width: 90%;
    max-width: 600px;
    max-height: 90vh;
    overflow: hidden;
    box-shadow:
      0 25px 50px -12px rgba(0, 0, 0, 0.25),
      0 10px 25px -3px rgba(0, 0, 0, 0.1),
      0 0 0 1px rgba(255, 255, 255, 0.1);
    transform: scale(0.95) translateY(20px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
  }

  .tc-modal-overlay.active .tc-modal-container {
    transform: scale(1) translateY(0);
  }

  .tc-modal-header {
    background: linear-gradient(135deg, #2563eb 0%, #3b82f6 100%);
    color: white;
    padding: 24px 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
  }

  .tc-modal-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
      radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
      radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
    pointer-events: none;
  }

  .tc-modal-header h3 {
    font-size: 20px;
    font-weight: 700;
    margin: 0;
    position: relative;
    z-index: 1;
  }

  .tc-modal-header h3 i {
    margin-right: 10px;
    color: #fbbf24;
  }

  .tc-modal-close {
    position: relative;
    z-index: 1;
    font-size: 28px;
    font-weight: 300;
    cursor: pointer;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.1);
  }

  .tc-modal-close:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(90deg);
  }

  .tc-modal-body {
    padding: 30px;
    overflow-y: auto;
    max-height: calc(90vh - 100px);
  }

  .tc-modal-subtitle {
    color: #64748b;
    font-size: 16px;
    margin-bottom: 24px;
    text-align: center;
  }

  .tc-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
  }

  .tc-form-group {
    margin-bottom: 20px;
  }

  .tc-form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #374151;
    font-size: 14px;
  }

  .tc-form-group label i {
    margin-right: 8px;
    color: #2563eb;
    width: 16px;
  }

  .tc-form-group input,
  .tc-form-group select {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    font-size: 14px;
    transition: all 0.3s ease;
    background: #ffffff;
    color: #374151;
  }

  .tc-form-group input:focus,
  .tc-form-group select:focus {
    outline: none;
    border-color: #4f46e5;
    box-shadow: 0 0 0 4px rgba(79, 70, 229, 0.1);
    transform: translateY(-1px);
  }

  .tc-form-submit {
    width: 100%;
    background: linear-gradient(135deg, #4f46e5 0%, #7c3aed 100%);
    color: white;
    border: none;
    padding: 16px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
    position: relative;
    overflow: hidden;
  }

  .tc-form-submit::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
  }

  .tc-form-submit:hover::before {
    left: 100%;
  }

  .tc-form-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(79, 70, 229, 0.3);
  }

  .tc-form-submit i {
    margin-right: 8px;
  }

  /* Mobile Responsive */
  @media (max-width: 768px) {
    .tc-modal-container {
      width: 95%;
      margin: 20px;
    }

    .tc-modal-header {
      padding: 20px;
    }

    .tc-modal-body {
      padding: 20px;
    }

    .tc-form-row {
      grid-template-columns: 1fr;
      gap: 0;
    }

    .tc-modal-header h3 {
      font-size: 18px;
    }
  }

      .tc-hide-mobile {
        display: inline-block;
      }

      @media (max-width: 992px) {
        .tc-hide-mobile {
          display: none;
        }
      }

  .tc-floating-buttons-left {
    position: fixed;
    left: 24px;
    bottom: 24px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 999;
    /* Responsive for mobile */
  }

  @media (max-width: 768px) {
    .tc-floating-buttons-left {
      left: 12px;
      bottom: 12px;
      gap: 10px;
    }
  }

  .tc-float-btn.whatsapp {
    position: relative;
    animation: wowBorder 2.5s linear infinite;
    box-shadow: 0 8px 32px rgba(37, 211, 102, 0.25), 0 2px 8px rgba(0, 0, 0, 0.08);
    border: 3px solid #fff;
    overflow: visible;
  }

  @keyframes wowBorder {
    0% {
      box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.25), 0 8px 32px rgba(37, 211, 102, 0.25), 0 2px 8px rgba(0, 0, 0, 0.08);
      border-color: #fff;
    }

    40% {
      box-shadow: 0 0 0 12px rgba(37, 211, 102, 0.12), 0 8px 32px rgba(37, 211, 102, 0.25), 0 2px 8px rgba(0, 0, 0, 0.08);
      border-color: #25d366;
    }

    60% {
      box-shadow: 0 0 0 18px rgba(37, 211, 102, 0.08), 0 8px 32px rgba(37, 211, 102, 0.25), 0 2px 8px rgba(0, 0, 0, 0.08);
      border-color: #128c7e;
    }

    100% {
      box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.25), 0 8px 32px rgba(37, 211, 102, 0.25), 0 2px 8px rgba(0, 0, 0, 0.08);
      border-color: #fff;
    }
  }

  /* Waving Hand */
  .wave {
    display: inline-block;
    transform-origin: 70% 70%;
    animation: waveHand 1.6s infinite;
  }

  @keyframes waveHand {
    0% {
      transform: rotate(0deg);
    }

    15% {
      transform: rotate(14deg);
    }

    30% {
      transform: rotate(-8deg);
    }

    45% {
      transform: rotate(14deg);
    }

    60% {
      transform: rotate(-4deg);
    }

    75% {
      transform: rotate(10deg);
    }

    100% {
      transform: rotate(0deg);
    }
  }

  /* Overlay */
  .modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .55);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    backdrop-filter: blur(6px);
    padding: 20px;
  }

  /* Modal Box */
  .modal-box {
    background: #fff;
    width: 100%;
    max-width: 800px;
    border-radius: 20px;
    display: flex;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
    animation: fadeInUp .4s ease;
  }

  /* Left */
  .modal-left {
    flex: 1;
    background: #2563eb;
    color: #fff;
    padding: 40px 24px;
  }

  .modal-left {
    @media (max-width: 768px) {
      display: none !important;
    }
  }

  .modal-left h2 {
    font-size: 26px;
    font-weight: 800;
    margin-bottom: 12px;
  }

  .modal-left p {
    margin-bottom: 16px;
    font-size: 16px;
  }

  .modal-left ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }

  .modal-left li {
    margin: 10px 0;
    font-size: 15px;
  }

  /* Right */
  .modal-right {
    flex: 1.3;
    padding: 40px 32px;
    background: linear-gradient(135deg, #f0f9ff, #e0f2fe);
    position: relative;
  }

  .form-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 18px;
    color: #1f2937;
  }

  /* Close Button */
  .close-btn {
    position: absolute;
    top: 18px;
    right: 22px;
    font-size: 26px;
    cursor: pointer;
    color: #2563eb;
    font-weight: bold;
    transition: transform .3s, color .3s;
  }

  .close-btn:hover {
    color: #ef4444;
    transform: rotate(90deg) scale(1.1);
  }

  /* Form */
  form {
    display: flex;
    flex-direction: column;
    gap: 14px;
  }

  input,
  select {
    padding: 12px;
    border: 1px solid #d1d5db;
    border-radius: 10px;
    font-size: 15px;
    outline: none;
    transition: border .3s, box-shadow .3s;
  }

  input:focus,
  select:focus {
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.2);
  }

  /* Submit Button */
  .submit-btn {
    background: linear-gradient(135deg, #2563eb, #3b82f6);
    color: #fff;
    font-weight: 700;
    border: none;
    border-radius: 10px;
    padding: 12px;
    cursor: pointer;
    transition: transform .2s;
  }

  .submit-btn:hover {
    transform: scale(1.03);
  }

  /* Other Button */
  .other-btn {
    margin-top: 6px;
    background: #e5e7eb;
    color: #1f2937;
    font-weight: 600;
    border: none;
    border-radius: 10px;
    padding: 12px;
    cursor: pointer;
    transition: background .3s;
  }

  .other-btn:hover {
    background: #d1d5db;
  }

  /* Animations */
  @keyframes fadeInUp {
    from {
      opacity: 0;
      transform: translateY(40px);
    }

    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  /* Responsive (Mobile Friendly) */
  @media (max-width: 768px) {
    .modal-box {
      flex-direction: column;
      max-width: 95%;
    }

    .modal-left,
    .modal-right {
      flex: unset;
      padding: 24px 20px;
      text-align: center;
    }

    .modal-left h2 {
      font-size: 22px;
    }

    .modal-left p {
      font-size: 14px;
    }

    .form-title {
      font-size: 18px;
    }

    input,
    select {
      font-size: 14px;
      padding: 10px;
    }

    .submit-btn,
    .other-btn {
      padding: 10px;
      font-size: 14px;
    }

    .close-btn {
      top: 12px;
      right: 16px;
      font-size: 22px;
    }
  }
