/* ===================================================
   Tally on Cloud Modern Custom Styles for AS InfoTech
   =================================================== */

:root {
  --tc-primary: #0066cc;
  --tc-primary-dark: #004c99;
  --tc-secondary: #00b4d8;
  --tc-accent: #ff6b35;
  --tc-green: #25d366;
  --tc-dark: #0f172a;
  --tc-gray-bg: #f8fafc;
  --tc-card-border: #e2e8f0;
  --tc-text-muted: #64748b;
  --tc-text-dark: #1e293b;
  --tc-shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.07), 0 2px 4px -2px rgba(0, 0, 0, 0.05);
  --tc-shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.05);
  --tc-radius: 12px;
}

/* Top bar */
.tc-topbar {
  background: linear-gradient(90deg, #0f172a 0%, #1e3a8a 100%);
  color: #fff;
  padding: 8px 0;
  font-size: 13px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.tc-topbar a {
  color: #e2e8f0;
  text-decoration: none;
  transition: all 0.2s ease;
}
.tc-topbar a:hover {
  color: #38bdf8;
}
.tc-badge-pill {
  background: #ff6b35;
  color: white;
  padding: 3px 10px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 700;
  margin-right: 8px;
  display: inline-block;
}
.tc-contact-links a {
  margin-left: 15px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

/* ===================================================
   RESPONSIVE HEADER & NAVIGATION
   =================================================== */
.tc-navbar-wrapper {
  background: #ffffff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  position: relative;
  z-index: 1000;
  transition: all 0.3s ease;
}
.tc-navbar-wrapper.sticky {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  animation: tcSlideDown 0.35s ease;
}
@keyframes tcSlideDown {
  from { transform: translateY(-100%); }
  to { transform: translateY(0); }
}

.tc-navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
}
.tc-brand-logo img {
  max-height: 48px;
  width: auto;
  display: block;
}

/* Desktop Menu */
.tc-desktop-nav {
  display: flex;
  align-items: center;
}
.tc-desktop-nav ul.tc-nav-list {
  display: flex;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
}
.tc-desktop-nav ul.tc-nav-list > li {
  position: relative;
  margin: 0 4px;
}
.tc-desktop-nav ul.tc-nav-list > li > a {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 14px;
  font-size: 15px;
  font-weight: 600;
  color: #1e293b;
  text-decoration: none;
  border-radius: 6px;
  transition: all 0.2s ease;
}
.tc-desktop-nav ul.tc-nav-list > li > a:hover,
.tc-desktop-nav ul.tc-nav-list > li.active > a {
  color: var(--tc-primary);
  background: #eff6ff;
}

/* Dropdown Menu on Desktop */
.tc-desktop-nav ul.tc-nav-list > li .tc-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 270px;
  background: #ffffff;
  border-radius: 10px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
  border: 1px solid #e2e8f0;
  padding: 10px 0;
  margin-top: 10px;
  list-style: none;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.25s cubic-bezier(0.165, 0.84, 0.44, 1);
  z-index: 1050;
}
.tc-desktop-nav ul.tc-nav-list > li:hover .tc-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.tc-desktop-nav ul.tc-nav-list > li .tc-dropdown li a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  font-size: 14px;
  font-weight: 500;
  color: #334155;
  text-decoration: none;
  transition: all 0.2s ease;
}
.tc-desktop-nav ul.tc-nav-list > li .tc-dropdown li a:hover {
  background: #eff6ff;
  color: var(--tc-primary);
  padding-left: 22px;
}

/* Mobile Hamburger Toggle */
.tc-mobile-actions {
  display: none;
  align-items: center;
  gap: 10px;
}
.tc-hamburger {
  width: 44px;
  height: 44px;
  border-radius: 8px;
  background: #f1f5f9;
  border: 1px solid #cbd5e1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
  padding: 0;
  transition: all 0.2s ease;
}
.tc-hamburger:hover {
  background: #e2e8f0;
}
.tc-hamburger span {
  display: block;
  width: 22px;
  height: 2.5px;
  background: #0f172a;
  border-radius: 2px;
  transition: all 0.3s ease;
}
.tc-hamburger.open span:nth-child(1) {
  transform: translateY(7.5px) rotate(45deg);
}
.tc-hamburger.open span:nth-child(2) {
  opacity: 0;
}
.tc-hamburger.open span:nth-child(3) {
  transform: translateY(-7.5px) rotate(-45deg);
}

/* Offcanvas Mobile Drawer */
.tc-mobile-drawer {
  position: fixed;
  top: 0;
  right: -340px;
  width: 320px;
  max-width: 85vw;
  height: 100vh;
  background: #ffffff;
  box-shadow: -10px 0 30px rgba(0, 0, 0, 0.2);
  z-index: 99999;
  display: flex;
  flex-direction: column;
  transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
}
.tc-mobile-drawer.open {
  right: 0;
}

.tc-drawer-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(15, 23, 42, 0.6);
  backdrop-filter: blur(4px);
  z-index: 99998;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}
.tc-drawer-overlay.open {
  opacity: 1;
  visibility: visible;
}

.tc-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  border-bottom: 1px solid #e2e8f0;
  background: #f8fafc;
}
.tc-drawer-close {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #ffffff;
  border: 1px solid #cbd5e1;
  color: #475569;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  cursor: pointer;
}
.tc-drawer-close:hover {
  background: #fee2e2;
  color: #ef4444;
}

.tc-drawer-quick-actions {
  padding: 16px 20px;
  background: #f1f5f9;
  border-bottom: 1px solid #e2e8f0;
  display: flex;
  gap: 10px;
}
.tc-drawer-quick-btn {
  flex: 1;
  text-align: center;
  padding: 8px 10px;
  font-size: 12px;
  font-weight: 700;
  border-radius: 6px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}
.tc-drawer-quick-btn.call {
  background: #0066cc;
  color: white !important;
}
.tc-drawer-quick-btn.whatsapp {
  background: #25d366;
  color: white !important;
}

.tc-drawer-menu {
  list-style: none;
  padding: 10px 0;
  margin: 0;
  flex-grow: 1;
}
.tc-drawer-menu > li {
  border-bottom: 1px solid #f1f5f9;
}
.tc-drawer-menu > li > a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  font-size: 15px;
  font-weight: 600;
  color: #1e293b;
  text-decoration: none;
  transition: all 0.2s ease;
}
.tc-drawer-menu > li > a:hover {
  background: #f8fafc;
  color: var(--tc-primary);
}

/* Mobile Accordion Submenu */
.tc-drawer-submenu {
  list-style: none;
  padding: 0;
  margin: 0;
  background: #f8fafc;
  display: none;
  border-top: 1px solid #e2e8f0;
}
.tc-drawer-submenu.show {
  display: block;
}
.tc-drawer-submenu li a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px 12px 35px;
  font-size: 14px;
  font-weight: 500;
  color: #475569;
  text-decoration: none;
  border-bottom: 1px dashed #e2e8f0;
}
.tc-drawer-submenu li a:hover {
  color: var(--tc-primary);
  background: #eff6ff;
}

.tc-drawer-footer {
  padding: 20px;
  border-top: 1px solid #e2e8f0;
  background: #ffffff;
}
.tc-drawer-footer p {
  font-size: 12px;
  color: #64748b;
  margin-bottom: 6px;
}

/* Responsive Breakpoints */
@media (max-width: 991px) {
  .tc-desktop-nav,
  .tc-topbar .col-lg-6:first-child {
    display: none !important;
  }
  .tc-mobile-actions {
    display: flex;
  }
  .tc-navbar-inner {
    padding: 10px 0;
  }
}

/* Hero Section with Lead Form */
.tc-hero {
  background: linear-gradient(135deg, #0b1528 0%, #17305c 60%, #0d3b66 100%);
  position: relative;
  padding: 80px 0 70px 0;
  color: #000;
  overflow: hidden;
}
.tc-hero::after {
  content: '';
  position: absolute;
  top: 0; right: 0; bottom: 0; left: 0;
  background: radial-gradient(circle at 80% 20%, rgba(0, 180, 216, 0.15), transparent 50%);
  pointer-events: none;
}
.tc-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(8px);
  padding: 6px 16px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 600;
  color: #38bdf8;
  margin-bottom: 20px;
}
.tc-hero-title {
  font-size: 42px;
  font-weight: 800;
  line-height: 1.25;
  color: #ffffff;
  margin-bottom: 20px;
}
.tc-hero-title span {
  color: #38bdf8;
  text-decoration: underline;
  text-decoration-color: #ff6b35;
  text-underline-offset: 6px;
}
.tc-hero-lead {
  font-size: 17px;
  line-height: 1.65;
  color: #cbd5e1;
  margin-bottom: 25px;
}
.tc-hero-checklist {
  list-style: none;
  padding: 0;
  margin: 0 0 30px 0;
}
.tc-hero-checklist li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 15px;
  color: #e2e8f0;
}
.tc-hero-checklist i {
  color: #22c55e;
  font-size: 18px;
}
.tc-btn-primary {
  background: linear-gradient(135deg, #0066cc, #0284c7);
  color: #ffffff !important;
  font-weight: 700;
  padding: 14px 30px;
  border-radius: 50px;
  box-shadow: 0 10px 20px -5px rgba(2, 132, 199, 0.5);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
  border: none;
  text-decoration: none;
}
.tc-btn-primary:hover {
  background: linear-gradient(135deg, #0284c7, #0369a1);
  transform: translateY(-2px);
  box-shadow: 0 15px 25px -5px rgba(2, 132, 199, 0.6);
}
.tc-btn-secondary {
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff !important;
  border: 1px solid rgba(255, 255, 255, 0.3);
  font-weight: 600;
  padding: 14px 26px;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
  text-decoration: none;
}
.tc-btn-secondary:hover {
  background: rgba(255, 255, 255, 0.2);
  color: #38bdf8 !important;
}

/* Callback Lead Form Card in Hero */
.tc-lead-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 32px 28px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.35);
  color: var(--tc-text-dark);
  position: relative;
  z-index: 2;
  border-top: 4px solid var(--tc-primary);
}
.tc-lead-card h3 {
  font-size: 24px;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 6px;
  text-align: center;
}
.tc-lead-card p {
  color: #64748b;
  font-size: 14px;
  text-align: center;
  margin-bottom: 20px;
}
.tc-form-group {
  margin-bottom: 16px;
  position: relative;
}
.tc-form-group label {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #475569;
  margin-bottom: 6px;
  display: block;
}
.tc-input-wrapper {
  position: relative;
}
.tc-input-wrapper i {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: #94a3b8;
  font-size: 15px;
}
.tc-input {
  width: 100%;
  padding: 11px 14px 11px 40px;
  border: 1px solid #cbd5e1;
  border-radius: 8px;
  font-size: 14px;
  color: #1e293b;
  background: #f8fafc;
  transition: all 0.2s ease;
}
.tc-input:focus {
  border-color: var(--tc-primary);
  background: #ffffff;
  outline: none;
  box-shadow: 0 0 0 3px rgba(0, 102, 204, 0.15);
}
.tc-lead-btn {
  width: 100%;
  padding: 13px;
  background: linear-gradient(135deg, #ff6b35, #e0531c);
  color: white;
  font-weight: 700;
  font-size: 16px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  box-shadow: 0 8px 16px -4px rgba(255, 107, 53, 0.5);
  transition: all 0.2s ease;
  margin-top: 8px;
}
.tc-lead-btn:hover {
  background: linear-gradient(135deg, #e0531c, #c93f0b);
  transform: translateY(-1px);
}

/* Feature Highlights Grid (AAA Benefits) */
.tc-benefits-section {
  padding: 70px 0;
  background: #f8fafc;
}
.tc-benefit-box {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 28px 24px;
  transition: all 0.3s ease;
  height: 100%;
  text-align: center;
  box-shadow: var(--tc-shadow-sm);
}
.tc-benefit-box:hover {
  transform: translateY(-5px);
  box-shadow: var(--tc-shadow-lg);
  border-color: #93c5fd;
}
.tc-benefit-icon {
  width: 65px;
  height: 65px;
  border-radius: 50%;
  background: #eff6ff;
  color: var(--tc-primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin-bottom: 18px;
  transition: all 0.3s ease;
}
.tc-benefit-box:hover .tc-benefit-icon {
  background: var(--tc-primary);
  color: white;
  transform: rotateY(180deg);
}
.tc-benefit-box h4 {
  font-size: 18px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 10px;
}
.tc-benefit-box p {
  font-size: 14px;
  line-height: 1.6;
  color: #64748b;
  margin: 0;
}

/* Pricing Section */
.tc-pricing-section {
  padding: 80px 0;
  background: #ffffff;
}
.tc-section-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 50px auto;
}
.tc-section-tag {
  color: var(--tc-primary);
  font-weight: 800;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
  display: block;
}
.tc-section-header h2 {
  font-size: 36px;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 15px;
}
.tc-section-header p {
  color: #64748b;
  font-size: 16px;
  line-height: 1.6;
}

.tc-pricing-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 35px 28px;
  position: relative;
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  box-shadow: var(--tc-shadow-sm);
}
.tc-pricing-card:hover {
  transform: translateY(-7px);
  box-shadow: var(--tc-shadow-lg);
  border-color: #60a5fa;
}
.tc-pricing-card.popular {
  border: 2px solid var(--tc-primary);
  box-shadow: 0 15px 30px -10px rgba(0, 102, 204, 0.25);
  background: linear-gradient(180deg, #f0f7ff 0%, #ffffff 25%);
}
.tc-ribbon {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(90deg, #ff6b35, #ea580c);
  color: white;
  padding: 4px 16px;
  font-size: 11px;
  font-weight: 800;
  border-radius: 20px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  box-shadow: 0 4px 10px rgba(234, 88, 12, 0.3);
}
.tc-plan-header {
  text-align: center;
  padding-bottom: 20px;
  border-bottom: 1px solid #f1f5f9;
  margin-bottom: 20px;
}
.tc-plan-header h3 {
  font-size: 22px;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 6px;
}
.tc-plan-target {
  font-size: 13px;
  color: #64748b;
  font-weight: 500;
}
.tc-price-tag {
  margin: 18px 0 8px 0;
}
.tc-price-tag .currency {
  font-size: 22px;
  font-weight: 700;
  color: #0f172a;
  vertical-align: top;
}
.tc-price-tag .amount {
  font-size: 42px;
  font-weight: 800;
  color: #0066cc;
  line-height: 1;
}
.tc-price-tag .period {
  font-size: 14px;
  color: #64748b;
  font-weight: 500;
}
.tc-plan-features {
  list-style: none;
  padding: 0;
  margin: 0 0 25px 0;
  flex-grow: 1;
}
.tc-plan-features li {
  font-size: 14px;
  color: #334155;
  padding: 8px 0;
  display: flex;
  align-items: center;
  gap: 10px;
  border-bottom: 1px dashed #f1f5f9;
}
.tc-plan-features li i {
  color: #10b981;
  font-size: 16px;
}
.tc-plan-btn {
  width: 100%;
  text-align: center;
  padding: 12px 20px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  transition: all 0.2s ease;
  display: block;
}
.tc-plan-btn.primary {
  background: var(--tc-primary);
  color: white !important;
}
.tc-plan-btn.primary:hover {
  background: var(--tc-primary-dark);
}
.tc-plan-btn.outline {
  border: 1px solid #0066cc;
  color: #0066cc !important;
  background: transparent;
}
.tc-plan-btn.outline:hover {
  background: #0066cc;
  color: white !important;
}

/* Interactive Calculator */
.tc-calc-card {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  border-radius: 20px;
  padding: 40px;
  color: white;
  box-shadow: var(--tc-shadow-lg);
  margin-top: 40px;
}
.tc-calc-slider {
  width: 100%;
  accent-color: #00b4d8;
  height: 8px;
  cursor: pointer;
}
.tc-calc-output {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  padding: 24px;
  text-align: center;
}

/* Comparison Matrix */
.tc-comparison-section {
  padding: 80px 0;
  background: #f8fafc;
}
.tc-comp-table {
  width: 100%;
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--tc-shadow-sm);
  border-collapse: collapse;
}
.tc-comp-table th, .tc-comp-table td {
  padding: 16px 20px;
  border: 1px solid #e2e8f0;
  font-size: 14px;
}
.tc-comp-table th {
  background: #0f172a;
  color: white;
  font-weight: 700;
  text-align: center;
}
.tc-comp-table th:first-child {
  text-align: left;
  background: #1e293b;
}
.tc-comp-table tr:nth-child(even) {
  background: #f8fafc;
}
.tc-comp-badge-good {
  color: #10b981;
  font-weight: 700;
}
.tc-comp-badge-avg {
  color: #f59e0b;
  font-weight: 600;
}

/* Floating Action Bars */
.tc-floating-contact {
  position: fixed;
  bottom: 25px;
  right: 25px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 9999;
}
.tc-float-btn {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white !important;
  font-size: 24px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  text-decoration: none;
}
.tc-float-btn:hover {
  transform: scale(1.1);
}
.tc-float-whatsapp {
  background: #25d366;
}
.tc-float-phone {
  background: #0066cc;
}

/* ===================================================
   Modern Free Trial Modal UI Styles
   =================================================== */
.tc-trial-modal .modal-dialog {
  max-width: 520px !important;
  width: 92% !important;
  margin: 2rem auto !important;
}
.tc-trial-modal .modal-content {
  width: 100% !important;
  max-width: 100% !important;
  margin: 0 !important;
  border-radius: 20px !important;
  overflow: hidden !important;
  border: 1px solid rgba(0, 102, 204, 0.15);
  box-shadow: 0 25px 60px rgba(15, 23, 42, 0.35);
  background: #ffffff;
}
.tc-trial-modal .tc-modal-header {
  background: linear-gradient(135deg, #0052cc 0%, #0284c7 100%);
  color: #ffffff;
  padding: 24px 28px 20px 28px;
  position: relative;
  border-bottom: none;
}
.tc-trial-modal .tc-modal-header .tc-modal-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: #ffd166;
  color: #0f172a;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 4px 10px;
  border-radius: 20px;
  margin-bottom: 8px;
}
.tc-trial-modal .tc-modal-header h5 {
  font-size: 24px;
  font-weight: 800;
  color: #ffffff;
  margin: 0 0 4px 0;
  letter-spacing: -0.3px;
}
.tc-trial-modal .tc-modal-header p {
  font-size: 13px;
  color: #e0f2fe;
  margin: 0;
}
.tc-trial-modal .tc-modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  border: none;
  color: #ffffff;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
  outline: none;
}
.tc-trial-modal .tc-modal-close:hover {
  background: rgba(255, 255, 255, 0.35);
  transform: rotate(90deg);
}

.tc-trial-modal .modal-body {
  padding: 28px;
  background: #ffffff;
}

.tc-modal-field {
  margin-bottom: 16px;
}
.tc-modal-label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #475569;
  margin-bottom: 6px;
}
.tc-modal-input-wrap {
  position: relative;
  display: flex;
  align-items: center;
}
.tc-modal-input-wrap .tc-field-icon {
  position: absolute;
  left: 14px;
  color: #94a3b8;
  font-size: 14px;
  pointer-events: none;
  z-index: 5;
}
.tc-modal-input-wrap input.form-control,
.tc-modal-input-wrap select.form-select,
.tc-modal-input-wrap select.form-control {
  width: 100%;
  height: 48px;
  padding: 10px 14px 10px 42px !important;
  font-size: 14px;
  font-weight: 500;
  color: #0f172a;
  background: #f8fafc;
  border: 1.5px solid #e2e8f0;
  border-radius: 10px;
  transition: all 0.2s ease;
  outline: none;
}
.tc-modal-input-wrap input.form-control:focus,
.tc-modal-input-wrap select.form-select:focus,
.tc-modal-input-wrap select.form-control:focus {
  background: #ffffff;
  border-color: #0066cc;
  box-shadow: 0 0 0 4px rgba(0, 102, 204, 0.12);
}

.tc-modal-submit-btn {
  width: 100%;
  height: 52px;
  border-radius: 10px;
  background: linear-gradient(135deg, #0066cc 0%, #0084ff 100%);
  color: #ffffff;
  font-size: 16px;
  font-weight: 800;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-shadow: 0 10px 20px rgba(0, 102, 204, 0.25);
  transition: all 0.25s ease;
  cursor: pointer;
  margin-top: 20px;
}
.tc-modal-submit-btn:hover {
  background: linear-gradient(135deg, #004ecc 0%, #0070e0 100%);
  transform: translateY(-2px);
  box-shadow: 0 14px 25px rgba(0, 102, 204, 0.35);
  color: #ffffff;
}

.tc-modal-trust-bar {
  display: flex;
  align-items: center;
  justify-content: space-around;
  padding-top: 18px;
  margin-top: 18px;
  border-top: 1px dashed #e2e8f0;
  text-align: center;
}
.tc-modal-trust-item {
  font-size: 11px;
  font-weight: 600;
  color: #64748b;
  display: flex;
  align-items: center;
  gap: 5px;
}
.tc-modal-trust-item i {
  font-size: 13px;
}

/* ===================================================
   FAQ Accordion Global Styles
   =================================================== */
.tc-faq-item {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  margin-bottom: 14px;
  transition: all 0.25s ease;
  overflow: hidden;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.03);
}
.tc-faq-item:hover {
  border-color: #93c5fd;
  box-shadow: 0 8px 20px rgba(0, 102, 204, 0.08);
}
.tc-faq-item.active {
  border-color: #0066cc;
  box-shadow: 0 10px 25px rgba(0, 102, 204, 0.12);
}
.tc-faq-question {
  padding: 18px 24px;
  font-size: 16px;
  font-weight: 700;
  color: #0f172a;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  user-select: none;
}
.tc-faq-question .badge-cat {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  background: #eff6ff;
  color: #0066cc;
  padding: 3px 10px;
  border-radius: 20px;
  margin-right: 12px;
}
.tc-faq-arrow {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #f1f5f9;
  color: #0066cc;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  transition: transform 0.3s ease, background 0.3s ease, color 0.3s ease;
  flex-shrink: 0;
  margin-left: 15px;
}
.tc-faq-item.active .tc-faq-arrow {
  transform: rotate(180deg);
  background: #0066cc;
  color: #ffffff;
}
.tc-faq-answer {
  padding: 0 24px 20px 24px;
  font-size: 15px;
  line-height: 1.7;
  color: #475569;
  display: none;
  border-top: 1px dashed #f1f5f9;
  padding-top: 15px;
}
.tc-faq-item.active .tc-faq-answer {
  display: block;
}

/* Responsive adjustments */
@media (max-width: 991px) {
  .tc-hero-title {
    font-size: 32px;
  }
  .tc-hero {
    padding: 50px 0;
  }
  .tc-lead-card {
    margin-top: 30px;
  }
}
@media (max-width: 576px) {
  .tc-hero-title {
    font-size: 26px;
  }
  .tc-btn-primary, .tc-btn-secondary {
    width: 100%;
    justify-content: center;
    margin-bottom: 10px;
  }
}
