@import '/sentichat-green-v2/main.css';
/* Enable smooth scrolling for anchor links */
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700&display=swap");
html {
  scroll-behavior: smooth;
}

/* Offset scroll position for fixed header */
#sentichat_knowledgebase_section {
  scroll-margin-top: 100px; /* Accounts for fixed header height + extra padding */
}

/* Mobile responsive adjustments */
@media (max-width: 640px) {
  /* Add top margin to main content to avoid navigation blocking */
  main.flex.min-h-screen.flex-col {
    margin-top: 80px !important;
  }
  /* Reset container padding that was added */
  .sc-container {
    padding-top: 0 !important;
  }
  /* Adjust scroll offset for mobile */
  #sentichat_knowledgebase_section {
    scroll-margin-top: 140px !important;
  }
  /* Hero section mobile adjustments */
  .relative.flex.justify-end {
    flex-direction: column !important;
    padding: 1rem !important;
  }
  /* Hero text container mobile adjustments */
  .absolute.left-0.top-\[50\%\] {
    position: relative !important;
    top: auto !important;
    left: auto !important;
    transform: none !important;
    max-width: 100% !important;
    margin-bottom: 1.5rem !important;
    z-index: 1 !important;
  }
  /* Hero image mobile adjustments */
  .z-0.h-auto.max-w-\[55\%\] {
    max-width: 100% !important;
    height: auto !important;
    margin: 0 auto !important;
  }
  /* Learn More button mobile improvements */
  .enhanced-sc-button {
    display: inline-block !important;
    padding: 0.75rem 1.5rem !important;
    font-size: 0.875rem !important;
    font-weight: 600 !important;
    text-align: center !important;
    min-width: auto !important;
    width: auto !important;
  }
}
/* Navigation hover effects */
.nav-link {
  transition: all 0.3s ease;
  position: relative;
  color: #000;
  text-decoration: none;
  font-family: "Montserrat", sans-serif;
}

/* Workflow headings with Montserrat font */
.workflow-heading {
  font-family: "Montserrat", sans-serif !important;
}

/* Real Solution section titles */
.section-title {
  font-family: "Montserrat", sans-serif !important;
  font-weight: bold !important;
}

/* Real Solution grid layout */
.real-solution-grid {
  display: grid !important;
  grid-template-columns: 1fr !important;
  gap: 1rem !important;
}

@media (min-width: 640px) {
  .real-solution-grid {
    grid-template-columns: 1fr 1fr !important;
    gap: 1.5rem !important;
  }
}
@media (min-width: 1024px) {
  .real-solution-grid {
    width: 70% !important;
    gap: 1.5rem !important;
  }
}
/* Ultra-thin borders for Real Solution boxes */
.solution-box {
  border: 0.5px solid rgba(255, 255, 255, 0.285) !important;
}

/* Tight spacing for Real Solution box content */
.solution-box .flex-col {
  gap: 0.25rem !important; /* Override gap-y-1 to be even tighter */
}

.solution-box h3 {
  margin-bottom: 0.25rem !important;
}

.solution-box p {
  margin: 0 !important;
}

/* Why Sentichat section icon styling */
.bg-green-500 img {
  filter: brightness(0) invert(1) !important; /* Force white color for icons */
}

/* Ensure perfect circles for icon containers */
.bg-green-500.rounded-full {
  border-radius: 50% !important;
  width: 6rem !important;
  height: 6rem !important;
  min-width: 6rem !important;
  min-height: 6rem !important;
}

/* Position icon circles on top of cards */
.flex.flex-1.flex-col .bg-green-500.rounded-full {
  position: relative;
  z-index: 10;
  margin-bottom: -2rem !important; /* Overlap with card below */
  align-self: flex-start !important; /* Move to left side */
  margin-left: 1rem !important; /* Add some spacing from edge */
}

.flex.flex-1.flex-col .rounded-lg.bg-white {
  padding-top: 5rem !important; /* Add more space for larger overlapping circles */
}

/* Different green shades for circle backgrounds */
.cost-effective-circle {
  background-color: #24d683 !important; /* Lightest green (emerald-500) */
}

.security-first-circle {
  background-color: #05a45c !important; /* Medium green (emerald-600) */
}

.accelerate-decision-circle {
  background-color: #047857 !important; /* Darkest green (emerald-700) */
}

/* Mobile adjustments for Why Sentichat section */
@media (max-width: 640px) {
  /* Reduce circle size on mobile */
  .bg-green-500.rounded-full {
    width: 4rem !important;
    height: 4rem !important;
    min-width: 4rem !important;
    min-height: 4rem !important;
  }
  /* Adjust card padding for smaller circles */
  .flex.flex-1.flex-col .rounded-lg.bg-white {
    padding-top: 3rem !important;
  }
  /* Reduce circle overlap on mobile */
  .flex.flex-1.flex-col .bg-green-500.rounded-full {
    margin-bottom: -1rem !important;
    margin-left: 0.5rem !important;
  }
  /* Real Solution grid mobile adjustments */
  .real-solution-grid {
    grid-template-columns: 1fr !important;
    gap: 1rem !important;
  }
}
.nav-link:hover {
  color: #10b981;
  font-weight: 600;
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #10b981;
  transition: width 0.3s ease;
}

.nav-link:hover::after {
  width: 100%;
}

/* Mobile menu styles */
.mobile-menu {
  background-color: white;
  border-top: 1px solid #e5e7eb;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  z-index: 10000 !important; /* Force highest z-index */
}

/* Mobile menu button styling */
.mobile-menu-button {
  position: relative;
  z-index: 10001 !important; /* Even higher than mobile menu */
  background-color: white;
  border-radius: 0.375rem;
  padding: 0.5rem;
  transition: all 0.2s ease;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  border: 1px solid #e5e7eb;
}

.mobile-menu-button:hover {
  background-color: #f9fafb;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.mobile-menu-button svg {
  color: #374151;
  transition: color 0.2s ease;
}

.mobile-menu-button:hover svg {
  color: #10b981;
}

.mobile-menu-item {
  transition: background-color 0.2s ease;
}

.mobile-menu-item:hover {
  background-color: #f3f4f6;
}

.mobile-menu-link {
  color: #374151;
  text-decoration: none;
  transition: color 0.2s ease;
  font-family: "Montserrat", sans-serif;
}

.mobile-menu-link:hover {
  color: #10b981;
}

.mobile-dropdown-button {
  background-color: #10b981;
  transition: all 0.2s ease;
}

.mobile-dropdown-button:hover {
  background-color: #059669;
  transform: translateY(-1px);
}

.mobile-menu-close {
  transition: all 0.2s ease;
  border-radius: 0.375rem;
}

.mobile-menu-close:hover {
  background-color: #f3f4f6;
  transform: scale(1.05);
}

.mobile-menu-close svg {
  color: #374151;
  transition: color 0.2s ease;
}

.mobile-menu-close:hover svg {
  color: #dc2626;
}

.mobile-menu-enter {
  transform: translateX(100%);
  opacity: 0;
}

.mobile-menu-enter-active {
  transform: translateX(0);
  opacity: 1;
  transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
}

.mobile-menu-exit {
  transform: translateX(0);
  opacity: 1;
}

.mobile-menu-exit-active {
  transform: translateX(100%);
  opacity: 0;
  transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
}

/* Plan card styling and hover effects */
.plan-card {
  transition: all 0.3s ease;
  border-radius: 0.75rem;
  position: relative;
}

.plan-card:hover,
.highlight-plan-card {
  background-color: white !important;
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.plan-card:hover::before,
.highlight-plan-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: -8px;
  border: 3px solid #10b981;
  border-radius: 0.75rem 0.75rem 0 0;
  border-bottom: none;
  pointer-events: none;
  z-index: 1;
}

.plan-card:hover .plan-quote-btn,
.highlight-plan-card .plan-quote-btn {
  transform: scale(1.05);
}

/* Column highlight class applied by JavaScript */
.highlight-column {
  position: relative;
}

.highlight-column::before {
  content: "";
  position: absolute;
  top: -8px;
  left: 0;
  right: 0;
  bottom: 0;
  border-left: 3px solid #10b981;
  border-right: 3px solid #10b981;
  pointer-events: none;
  z-index: 1;
}

/* Add bottom border to last highlighted column */
.table-row:last-of-type .highlight-column::before {
  border-bottom: 3px solid #10b981;
  border-bottom-left-radius: 0.75rem;
  border-bottom-right-radius: 0.75rem;
}

.plan-quote-btn {
  transition: all 0.2s ease;
  position: relative;
  z-index: 2;
}

/* Dropdown styles for TRY NOW button - Updated to link to Knowledgebase Chatbot section */
.dropdown-content {
  display: none;
  position: absolute;
  background-color: white;
  min-width: 260px;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  z-index: 1000;
  right: 0;
  top: 100%;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid #e5e7eb;
}

.dropdown-content.show {
  display: block;
}

.dropdown-item {
  display: block;
  padding: 12px 16px;
  text-decoration: none;
  color: #333;
  border-bottom: 1px solid #f0f0f0;
}

.dropdown-item:last-child {
  border-bottom: none;
}

.dropdown-item:hover {
  background-color: #f8f9fa;
}

.dropdown-item h4 {
  margin: 0;
  font-size: 14px;
  font-weight: 500;
  color: #333;
}

/* Button styles */
.sc-button {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  background-color: #22c55e;
  color: white;
  text-decoration: none;
  border-radius: 1.5rem;
  font-weight: 600;
  transition: all 0.2s ease;
}

.sc-button:hover {
  background-color: #16a34a;
  transform: translateY(-1px);
}

.enhanced-sc-button {
  background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
  box-shadow: 0 4px 12px rgba(34, 197, 94, 0.3);
}

.plan-quote-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* Image styles */
img {
  color: transparent;
}

/* Contact Form Styles - Based on original Sentichat inline CSS */
/* Import Montserrat font */
/* CSS Variables from original */
:root {
  --nimvio-blue: #4169e1;
  --nimvio-white: #fff;
  --nimvio-light: #e5e7eb;
  --nimvio-black: #374151;
}

/* Typography from original inline styles */
h1, h2, h3, p {
  font-family: Montserrat, sans-serif;
}

h1 {
  font-size: 3rem;
  font-weight: 600;
  line-height: 56px;
  margin-bottom: 30px;
}
@media (max-width: 1169px) {
  h1 {
    font-size: 1.875rem;
    line-height: 30px;
  }
}

h2 {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 48px;
  margin-bottom: 30px;
}
@media (max-width: 1169px) {
  h2 {
    font-size: 1.875rem;
    line-height: 30px;
  }
}

h3 {
  font-size: 1.875rem;
  font-weight: 700;
  line-height: 38px;
  margin-bottom: 30px;
}

p {
  font-size: 1rem;
  line-height: 24px;
}

/* Contact Us section link styles */
section[class=contactus] a {
  color: #127357;
  text-decoration: underline;
}
section[class=contactus] a:hover {
  text-decoration: none;
}

/* Container responsive styles from original */
@media (max-width: 659px) {
  footer .container,
  main .container {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}
@media (max-width: 481px) {
  footer .container,
  main .container {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}
/* Footer styles from original */
@media (min-width: 768px) {
  .footer {
    margin-top: 6rem;
  }
}
.footer {
  background-color: #010b40;
  color: #fff;
  margin-top: 3rem;
}

/* Contact Form Styles from transformContent.8bb5fe65.css */
.contactus {
  display: flex;
  margin: 40px auto;
}
@media screen and (max-width: 920px) {
  .contactus {
    flex-direction: column;
  }
}

.contactus__copy {
  flex: 1;
}

.contactus__form {
  margin-left: 5%;
  width: 62%;
}
@media screen and (max-width: 920px) {
  .contactus__form {
    margin-left: 0;
    margin-top: 40px;
    width: 100%;
  }
}
@media (max-width: 481px) {
  .contactus__form {
    margin-top: 50px;
  }
}
.contactus__form form {
  position: relative;
}
.contactus__form form:before {
  background: #ccc;
  content: "";
  height: 100%;
  left: -50px;
  position: absolute;
  top: 0;
  width: 1px;
}
@media (max-width: 1280px) {
  .contactus__form form:before {
    left: -25px;
  }
}
@media (max-width: 920px) {
  .contactus__form form:before {
    height: 1px;
    left: 0;
    top: -25px;
    width: 100%;
  }
}

.form__group {
  margin-bottom: 12px;
}

.contactus .form-field {
  margin-bottom: 12px;
}

.contactus .form-action-group {
  align-items: center;
  display: flex;
  gap: 20px;
}

.contactus .form-state {
  color: #127357;
  margin-top: 25px;
}

.contactus .form-bottom {
  align-items: center;
  display: flex;
  margin-top: 32px;
}
.contactus .form-bottom .btn {
  margin-right: 20px;
}
@media (max-width: 1169px) {
  .contactus .form-bottom {
    flex-direction: column;
  }
  .contactus .form-bottom .btn,
  .contactus .form-bottom .form-action-group {
    margin-right: 0;
    width: 100%;
  }
}

/* Input Field Styles */
.input {
  align-items: center;
  background-color: #fff;
  border: 1px solid #c9c9c9;
  border-radius: 6px;
  display: flex;
  position: relative;
  width: 100%;
}
@media (max-width: 659px) {
  .input {
    align-items: flex-start;
    flex-direction: column;
  }
}
.input.error {
  border-color: #e74c3c;
}

.input__divider {
  align-self: stretch;
  background-color: #ccc;
  margin: 4px 0;
  width: 1px;
}
@media (max-width: 659px) {
  .input__divider {
    display: none;
  }
}

.input__element {
  border: none;
  border-bottom-right-radius: 20px;
  border-top-right-radius: 20px;
  color: #444;
  flex-basis: 0;
  flex-grow: 1;
  font-family: inherit;
  font-size: 16px;
  padding: 13px 20px;
  resize: horizontal;
}
@media (max-width: 1169px) {
  .input__element {
    padding: 5px 20px 13px;
  }
}
@media (max-width: 659px) {
  .input__element {
    border-bottom-left-radius: 20px;
    border-top-right-radius: 0;
    flex-basis: unset;
    width: 100%;
  }
}
.input__element:focus {
  outline: none;
}
.input__element::placeholder {
  color: #c1c1c1;
}
.input__element.textarea {
  min-height: 120px;
  resize: vertical;
}

.input__label {
  background-color: #fff;
  border-bottom-left-radius: 20px;
  border-top-left-radius: 20px;
  color: #444;
  display: flex;
  font-family: inherit;
  font-size: 16px;
  font-weight: 600;
  min-width: 170px;
  padding: 13px 20px;
  align-items: center;
}
@media (max-width: 1169px) {
  .input__label {
    padding: 5px 20px 13px;
  }
}
@media (max-width: 659px) {
  .input__label {
    border-bottom-left-radius: 0;
    border-top-right-radius: 20px;
    min-width: unset;
    width: 100%;
  }
}

/* Phone Number Container */
.tel-container {
  display: flex;
  align-items: center;
  flex-grow: 1;
}

.tel-dropdown {
  border-right: 1px solid #ccc;
  margin-right: 8px;
  padding-right: 8px;
}

.tel-divider {
  align-self: stretch;
  background-color: #ccc;
  margin: 4px 0;
  width: 1px;
}

/* Vue Tel Input Styles */
.vue-tel-input .vti__dropdown {
  background-color: transparent;
  border: none;
  padding: 0;
  position: relative;
}
.vue-tel-input .vti__dropdown .vti__selection {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  font-size: 14px;
  color: #444;
  cursor: pointer;
  border-radius: 4px;
  transition: background-color 0.2s;
}
.vue-tel-input .vti__dropdown .vti__selection:hover {
  background-color: #f8f9fa;
}
.vue-tel-input .vti__dropdown .vti__selection .vti__flag {
  width: 20px;
  height: 15px;
  border-radius: 2px;
  background-size: cover;
  background-position: center;
  border: 1px solid #e0e0e0;
  flex-shrink: 0;
}
.vue-tel-input .vti__dropdown .vti__selection .vti__country-code {
  font-weight: 600;
  font-size: 13px;
}
.vue-tel-input .vti__dropdown .vti__selection .vti__dropdown-arrow {
  font-size: 10px;
  color: #666;
  margin-left: 4px;
}
.vue-tel-input .vti__input {
  border: none;
  background: none;
  font-size: 16px;
  color: #444;
  padding: 0;
}
.vue-tel-input .vti__input:focus {
  outline: none;
}

/* Enhanced Country Dropdown Styles */
.vti__dropdown {
  position: relative;
  cursor: pointer;
  background-color: transparent;
  border: none;
  padding: 0;
}
.vti__dropdown:hover {
  background-color: #f8f9fa;
  border-radius: 4px;
}

.vti__dropdown-list,
.country-dropdown-list {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background-color: white;
  border: 1px solid #ddd;
  border-radius: 6px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  max-height: 200px;
  overflow-y: auto;
  z-index: 1000;
  margin-top: 4px;
  min-width: 250px;
}

.vti__dropdown-item,
.country-dropdown-item {
  display: flex;
  align-items: center;
  padding: 10px 12px;
  cursor: pointer;
  transition: background-color 0.2s ease;
  border-bottom: 1px solid #f0f0f0;
}
.vti__dropdown-item:last-child,
.country-dropdown-item:last-child {
  border-bottom: none;
}
.vti__dropdown-item:hover,
.country-dropdown-item:hover {
  background-color: #f8f9fa;
}
.vti__dropdown-item .vti__flag,
.country-dropdown-item .vti__flag {
  width: 20px;
  height: 15px;
  margin-right: 10px;
  border-radius: 2px;
  background-size: cover;
  background-position: center;
  flex-shrink: 0;
  border: 1px solid #e0e0e0;
}
.vti__dropdown-item .vti__country-name,
.country-dropdown-item .vti__country-name {
  flex-grow: 1;
  font-size: 13px;
  color: #333;
  font-weight: 500;
}
.vti__dropdown-item .vti__dial-code,
.country-dropdown-item .vti__dial-code {
  font-size: 13px;
  color: #666;
  font-weight: 600;
  margin-left: 8px;
}

/* Contact Form Button Styles */
.btn {
  background-color: #1ad079;
  border: none;
  border-radius: 4px;
  color: #fff;
  cursor: pointer;
  display: inline-flex;
  font-family: Montserrat, sans-serif;
  font-size: 16px;
  font-weight: 600;
  padding: 16px 24px;
  position: relative;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
  overflow: hidden;
  align-items: center;
  justify-content: center;
  min-width: 120px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.btn:hover:not(:disabled) {
  background-color: #127357;
  transform: translateY(-1px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}
.btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
  background-color: #ccc;
}
.btn.btn-primary {
  background-color: #1ad079;
}
.btn.btn-primary:hover:not(:disabled) {
  background-color: #127357;
}

/* Contact Form Notes */
.contact-form-notes {
  font-size: 14px;
  color: #666;
}
.contact-form-notes p {
  margin: 0;
  line-height: 1.4;
}
.contact-form-notes a {
  color: #127357;
  text-decoration: underline;
}
.contact-form-notes a:hover {
  text-decoration: none;
}

/* Form validation and error styles */
.form-error {
  color: #dc2626;
  font-size: 0.875rem;
  margin-top: 0.25rem;
  margin-left: 170px; /* Align with input fields */
  font-weight: 500;
}

.input__element.error {
  border-color: #dc2626 !important;
  box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.1) !important;
}

.input__element.error:focus {
  border-color: #dc2626 !important;
  box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.2) !important;
}

/* Form submit button states */
.btn.submitting {
  opacity: 0.7;
  cursor: not-allowed;
  pointer-events: none;
}

.btn.success {
  background-color: #059669 !important;
  border-color: #059669 !important;
}

.btn.error {
  background-color: #dc2626 !important;
  border-color: #dc2626 !important;
}

/* Form status message styles */
.form-state.success {
  color: #059669;
  background-color: #f0fdf4;
  border: 1px solid #bbf7d0;
  border-radius: 0.375rem;
  padding: 0.75rem;
  margin-top: 1rem;
}

.form-state.error {
  color: #dc2626;
  background-color: #fef2f2;
  border: 1px solid #fecaca;
  border-radius: 0.375rem;
  padding: 0.75rem;
  margin-top: 1rem;
}

/* Loading animation for submit button */
.btn.submitting::after {
  content: "";
  display: inline-block;
  width: 16px;
  height: 16px;
  margin-left: 8px;
  border: 2px solid transparent;
  border-top-color: currentColor;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.vti__flag {
  display: inline-block;
  background-size: cover;
  background-position: center;
  width: 24px;
  height: 18px;
  border-radius: 2px;
}
.vti__flag.id {
  background-image: url("/flags/id.png");
}
.vti__flag.sg {
  background-image: url("/flags/sg.png");
}
.vti__flag.my {
  background-image: url("/flags/my.png");
}
.vti__flag.th {
  background-image: url("/flags/th.png");
}
.vti__flag.ph {
  background-image: url("/flags/ph.png");
}
.vti__flag.vn {
  background-image: url("/flags/vn.png");
}
.vti__flag.us {
  background-image: url("/flags/us.png");
}
.vti__flag.gb {
  background-image: url("/flags/gb.png");
}
.vti__flag.au {
  background-image: url("/flags/au.png");
}
.vti__flag.ca {
  background-image: url("/flags/ca.png");
}
.vti__flag.jp {
  background-image: url("/flags/jp.png");
}
.vti__flag.kr {
  background-image: url("/flags/kr.png");
}
.vti__flag.cn {
  background-image: url("/flags/cn.png");
}
.vti__flag.in {
  background-image: url("/flags/in.png");
}
